Skip to content

Commit

Permalink
feat: List position manager
Browse files Browse the repository at this point in the history
  • Loading branch information
ChefMomota committed Oct 17, 2024
1 parent f4230b6 commit 3c74a36
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 21 deletions.
63 changes: 42 additions & 21 deletions packages/position-managers/src/constants/vaults/bsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,48 @@ import { Strategy, VaultConfig } from '../../types'
import { MANAGER } from '../managers'

export const vaults: VaultConfig[] = [
// {
// id: 24,
// idByManager: 1,
// name: 'TEAHOUSE',
// bCakeWrapperAddress: '0x12635Cb59c4fC4Ef777358165D52c2909DBA2Eb6',
// address: '0x12635Cb59c4fC4Ef777358165D52c2909DBA2Eb6',
// vaultAddress: '0xB64Ba2A7613D8250FB9a94df6667B7b8a893c7F6',
// adapterAddress: '0x6fA17B8E95A3A8668d0e4e80be237CEa687a1358',
// currencyA: bscTokens.eth,
// currencyB: bscTokens.btcb,
// earningToken: bscTokens.cake,
// feeTier: FeeAmount.MEDIUM,
// strategy: Strategy.APS,
// manager: MANAGER.TEAHOUSE,
// isSingleDepositToken: false,
// allowDepositToken0: true,
// allowDepositToken1: true,
// managerInfoUrl: 'https://teahouse.finance/',
// strategyInfoUrl: 'https://docs.teahouse.finance/teahouse-finance-1/lp-vaults/strategies',
// learnMoreAboutUrl: 'https://docs.teahouse.finance/teahouse-finance-1/managed-vaults/about-managed-vaults',
// },
{
id: 28,
idByManager: 18,
name: 'BRIL',
bCakeWrapperAddress: '',
address: '',
adapterAddress: '',
vaultAddress: '0x2f0B78D0CaF03A81FEDe970909c6F6bb35dcA5Eb',
currencyA: bscTokens.ynBNB,
currencyB: bscTokens.wbnb,
earningToken: bscTokens.cake,
feeTier: FeeAmount.LOW,
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: 27,
idByManager: 17,
name: 'BRIL',
bCakeWrapperAddress: '',
address: '',
adapterAddress: '',
vaultAddress: '0x12aED05752F5Fb82a060968EF7DF37074a652800',
currencyA: bscTokens.ynBNB,
currencyB: bscTokens.wbnb,
earningToken: bscTokens.cake,
feeTier: FeeAmount.LOW,
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: 26,
idByManager: 16,
Expand Down
8 changes: 8 additions & 0 deletions packages/tokens/src/constants/bsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3333,4 +3333,12 @@ export const bscTokens = {
'xPufETH',
'https://www.puffer.fi/',
),
ynBNB: new ERC20Token(
ChainId.BSC,
'0x304B5845b9114182ECb4495Be4C91a273b74B509',
18,
'ynBNB',
'YieldNest: BNB Liquid Restaking',
'https://app.yieldnest.finance/restake/ynBNB',
),
}

0 comments on commit 3c74a36

Please sign in to comment.