Skip to content

Commit

Permalink
feat: List new pm (#10855)
Browse files Browse the repository at this point in the history
<!--
Before opening a pull request, please read the [contributing
guidelines](https://github.com/pancakeswap/pancake-frontend/blob/develop/CONTRIBUTING.md)
first
-->

<!-- start pr-codex -->

---

## PR-Codex overview
This PR introduces new vault configurations for the `BRIL` manager in
the `bsc.ts` file, adding two new vault entries with detailed properties
for each.

### Detailed summary
- Added a new vault configuration with `id: 30` for `BRIL`:
  - Includes addresses, strategy, and deposit token settings.
- Added another vault configuration with `id: 29` for `BRIL`:
- Similar properties as the first vault with different addresses and
deposit token settings.

> ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your
question}`

<!-- end pr-codex -->
  • Loading branch information
ChefMomota authored Oct 22, 2024
1 parent 168f947 commit 8e66138
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions packages/position-managers/src/constants/vaults/bsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,48 @@ import { Strategy, VaultConfig } from '../../types'
import { MANAGER } from '../managers'

export const vaults: VaultConfig[] = [
{
id: 30,
idByManager: 20,
name: 'BRIL',
bCakeWrapperAddress: '0xd3AC80D1e96b69C9D51593527CfAF431555F5b19',
address: '0xd3AC80D1e96b69C9D51593527CfAF431555F5b19',
adapterAddress: '0x3740c3a94914B79d0D5CC8a2590E3d1233667244',
vaultAddress: '0xa0bec9b22a22caD9D9813Ad861E331210FE6C589',
currencyA: bscTokens.sdt,
currencyB: bscTokens.wbnb,
earningToken: bscTokens.cake,
feeTier: FeeAmount.MEDIUM,
strategy: Strategy.YIELD_IQ,
manager: MANAGER.BRIL,
isSingleDepositToken: true,
allowDepositToken0: false,
allowDepositToken1: true,
managerInfoUrl: 'https://www.bril.finance/',
strategyInfoUrl: 'https://docs.bril.finance/yield-iq/overview',
learnMoreAboutUrl: 'https://docs.bril.finance/bril-finance/introduction',
},
{
id: 29,
idByManager: 19,
name: 'BRIL',
bCakeWrapperAddress: '0x9B7998c1FE240a764254bE36e916865eE0bFd10E',
address: '0x9B7998c1FE240a764254bE36e916865eE0bFd10E',
adapterAddress: '0x9e84C5551d148DAC6EABA50eF6ACFFbdEEdaFb90',
vaultAddress: '0x1dE329a4ADF92Fd61c24af18595e10843fc307e3',
currencyA: bscTokens.sdt,
currencyB: bscTokens.wbnb,
earningToken: bscTokens.cake,
feeTier: FeeAmount.MEDIUM,
strategy: Strategy.YIELD_IQ,
manager: MANAGER.BRIL,
isSingleDepositToken: true,
allowDepositToken0: true,
allowDepositToken1: false,
managerInfoUrl: 'https://www.bril.finance/',
strategyInfoUrl: 'https://docs.bril.finance/yield-iq/overview',
learnMoreAboutUrl: 'https://docs.bril.finance/bril-finance/introduction',
},
{
id: 28,
idByManager: 18,
Expand Down

0 comments on commit 8e66138

Please sign in to comment.