File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
- const yBTC = "0xba3e932310cd1dbf5bd13079bd3d6bae4570886f"
1
+ const yBTC = {
2
+ arbitrum : "0xba3e932310cd1dbf5bd13079bd3d6bae4570886f" ,
3
+ base : "0xB7EcE25d412210499C35A9525FF01553E39A2927" ,
4
+ } ;
2
5
3
6
//BASIS TRADING, BTC COLLECTOR WALLET IS bc1qmus43e5gascs00t7jsf02k7gllhc5antew6n5y
4
7
module . exports = {
5
8
arbitrum : {
6
9
tvl : async ( api ) => {
7
- const supply = await api . call ( { abi : 'erc20:totalSupply' , target : yBTC } )
8
- api . add ( yBTC , supply )
10
+ const supply = await api . call ( { abi : 'erc20:totalSupply' , target : yBTC . arbitrum } )
11
+ api . add ( yBTC . arbitrum , supply )
12
+ } ,
13
+ } ,
14
+ base : {
15
+ tvl : async ( api ) => {
16
+ const supply = await api . call ( { abi : 'erc20:totalSupply' , target : yBTC . base } )
17
+ api . add ( yBTC . base , supply )
9
18
} ,
10
19
}
11
20
}
You can’t perform that action at this time.
0 commit comments