-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7846868
commit 9101f94
Showing
14 changed files
with
125 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import type { Chain } from '../../types/chain.js'; | ||
import { convertSymbolTokenMapToAddressTokenMap } from '../../util/convertSymbolTokenMapToAddressTokenMap.js'; | ||
import * as platforms from './platforms/index.js'; | ||
import { tokens } from './tokens/tokens.js'; | ||
|
||
export const rootstock = { | ||
platforms, | ||
tokens, | ||
tokenAddressMap: convertSymbolTokenMapToAddressTokenMap(tokens), | ||
} as const satisfies Chain; |
32 changes: 32 additions & 0 deletions
32
packages/address-book/src/address-book/rootstock/platforms/beefyfinance.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
const devMultisig = '0xB7775ce77ea0dE48699ee5fce86DbD32aAb3B741'; | ||
const treasuryMultisig = '0x2052e5744d1dC4D095e758120779E0f5a660f655'; | ||
|
||
export const beefyfinance = { | ||
devMultisig: devMultisig, | ||
treasuryMultisig: treasuryMultisig, | ||
strategyOwner: '0x09D19184F46A32213DF06b981122e06882B61309', | ||
vaultOwner: '0xf2EeC1baC39306C0761c816d1D33cF7C9Ad6C0Fe', | ||
keeper: '0x4fED5491693007f0CD49f4614FFC38Ab6A04B619', | ||
treasurer: treasuryMultisig, | ||
launchpoolOwner: devMultisig, | ||
rewardPool: '0x0000000000000000000000000000000000000000', | ||
treasury: treasuryMultisig, | ||
beefyFeeRecipient: '0x02Ae4716B9D5d48Db1445814b0eDE39f5c28264B', | ||
multicall: '0x3B60F7f25b09E71356cdFFC6475c222A466a2AC9', | ||
bifiMaxiStrategy: '0x0000000000000000000000000000000000000000', | ||
voter: '0x5e1caC103F943Cd84A1E92dAde4145664ebf692A', | ||
beefyFeeConfig: '0xfc69704cC3cAac545cC7577009Ea4AA04F1a61Eb', | ||
vaultFactory: '0xe103ab2f922aa1a56EC058AbfDA2CeEa1e95bCd7', | ||
//zap: '0x6f66F246Bb436B6f4E66A992C2218b57cD906109', | ||
//zapTokenManager: '0xD3D46FF34cD495d5B91b8F3C5C552E81E5e3eab5', | ||
/* | ||
/// CLM Contracts | ||
clmFactory: '0xD19ab62F83380908D65E344567378cF104cE46c2', | ||
clmStrategyFactory: '0xaF0f1B33Ef5A61b88F84BA2Ed2388f2C69fEaB55', | ||
clmRewardPoolFactory: '0x3C0b1765C379833b86A1704997019A7496Afdfae',*/ | ||
|
||
/// Beefy Swapper Contracts | ||
beefySwapper: '0x3C0b1765C379833b86A1704997019A7496Afdfae', | ||
beefyOracle: '0x70127945067E4224d7B6ABfDc6f57e3ea45d5CA4', | ||
beefyOracleUniswapV3: '0xA5Cd8A60a05571141370D184e255777e5c2d5968', | ||
} as const; |
1 change: 1 addition & 0 deletions
1
packages/address-book/src/address-book/rootstock/platforms/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { beefyfinance } from './beefyfinance.js'; |
21 changes: 21 additions & 0 deletions
21
packages/address-book/src/address-book/rootstock/tokens/tokens.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import type { Token } from '../../../types/token.js'; | ||
|
||
const RBTC = { | ||
name: 'Wrapped Rootstock BTC', | ||
address: '0x542fDA317318eBF1d3DEAf76E0b632741A7e677d', | ||
symbol: 'WRBTC', | ||
oracleId: 'WRBTC', | ||
decimals: 18, | ||
chainId: 30, | ||
website: 'https://rootstock.io/rbtc/', | ||
description: 'RBTC, the smart version of Bitcoin.Allowing BTC owners to interact with DeFi protocols and dApps on Rootstock network for minting, swaps, gas fees and more.', | ||
bridge: 'rootstock-canonical', | ||
logoURI: '', | ||
documentation: 'https://dev.rootstock.io/concepts/rbtc/?_gl=1*jp93v6*_gcl_au*ODQ3NTgwNDM3LjE3MjcyNjIwNDI.', | ||
} as const satisfies Token; | ||
|
||
export const tokens = { | ||
RBTC, | ||
WRBTC: RBTC, | ||
WNATIVE: RBTC, | ||
} as const satisfies Record<string, Token>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters