File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ const USDz = '0xa469b7ee9ee773642b3e93e842e5d9b5baa10067';
6
6
const Base_USDz = '0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938' ;
7
7
const Blast_USDz = '0x52056ed29fe015f4ba2e3b079d10c0b87f46e8c6' ;
8
8
const Manta_USDz = '0x73d23f3778a90be8846e172354a115543df2a7e4' ;
9
+ const Arbitrum_USDz = '0x5018609ab477cc502e170a5accf5312b86a4b94f' ;
9
10
const SPCT = '0xf30a29f1c540724fd8c5c4be1af604a6c6800d29' ; // Secured collateral
10
11
11
12
const mainnet_tvl = async ( api ) => {
@@ -28,6 +29,11 @@ const manta_tvl = async (api) => {
28
29
api . add ( Manta_USDz , supply )
29
30
}
30
31
32
+ const arbitrum_tvl = async ( api ) => {
33
+ const supply = await api . call ( { abi : 'erc20:totalSupply' , target : Arbitrum_USDz } )
34
+ api . add ( Arbitrum_USDz , supply )
35
+ }
36
+
31
37
const collateral_assets = async ( api ) => {
32
38
const supply = await api . call ( { abi : 'erc20:totalSupply' , target : SPCT } )
33
39
api . add ( SPCT , supply )
@@ -47,4 +53,7 @@ module.exports = {
47
53
manta : {
48
54
tvl : manta_tvl ,
49
55
} ,
56
+ arbitrum : {
57
+ tvl : arbitrum_tvl ,
58
+ } ,
50
59
} ;
You can’t perform that action at this time.
0 commit comments