Skip to content

Commit 625d699

Browse files
authored
Add Base, BSC and Hype configurations to Rezerve Money (#16755)
1 parent 0b2342f commit 625d699

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

projects/rezerve/index.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,23 @@ const ethereum = {
1414
stakingContract: "0xcD43c9c6ECCA33a0C3EF6E509f7559c5C5e46399",
1515
tokenList: "0xb68b2BeD621dcE656Ddcc607769fb6AAc3F67B5C",
1616
}
17+
const bsc = {
18+
rzr: '0xb4444468e444f89e1c2CAc2F1D3ee7e336cBD1f5',
19+
depositContract: "0x0000030d7a7C4888851F35705B0852CF20Ac1bA6",
20+
tokenList: "0x3B3c534D22dEEd568813AfA1b75996B8241126E0",
21+
}
22+
23+
const hyperliquid = {
24+
rzr: '0xb4444468e444f89e1c2CAc2F1D3ee7e336cBD1f5',
25+
depositContract: "0x0000030d7a7C4888851F35705B0852CF20Ac1bA6",
26+
tokenList: "0xBf1607FDb610A246d957456cD844E228b6c712CE",
27+
}
28+
29+
const base = {
30+
rzr: '0xb4444468e444f89e1c2CAc2F1D3ee7e336cBD1f5',
31+
depositContract: "0x0000030d7a7C4888851F35705B0852CF20Ac1bA6",
32+
tokenList: "0x06f9617E604019af5e28c9e2e75F0886bBdc03aE",
33+
}
1734

1835
const tvl = (addresses) => async (api) => {
1936
const abi = 'function getTokens() external view returns (address[] memory)'
@@ -40,6 +57,18 @@ const data = {
4057
pool2: pool2(ethereum),
4158
staking: staking(ethereum.stakingContract, ethereum.rzr, "ethereum"),
4259
},
60+
base: {
61+
tvl: tvl(base),
62+
pool2: pool2(base),
63+
},
64+
bsc: {
65+
tvl: tvl(bsc),
66+
pool2: pool2(bsc),
67+
},
68+
hyperliquid: {
69+
tvl: tvl(hyperliquid),
70+
pool2: pool2(hyperliquid),
71+
},
4372
};
4473

4574
module.exports = data;

0 commit comments

Comments
 (0)