Skip to content

Commit 39287d6

Browse files
Update Arbitrum TVL for Anzen (DefiLlama#11403)
1 parent 0244f16 commit 39287d6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

projects/anzen-v2/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const USDz = '0xa469b7ee9ee773642b3e93e842e5d9b5baa10067';
66
const Base_USDz = '0x04d5ddf5f3a8939889f11e97f8c4bb48317f1938';
77
const Blast_USDz = '0x52056ed29fe015f4ba2e3b079d10c0b87f46e8c6';
88
const Manta_USDz = '0x73d23f3778a90be8846e172354a115543df2a7e4';
9+
const Arbitrum_USDz = '0x5018609ab477cc502e170a5accf5312b86a4b94f';
910
const SPCT = '0xf30a29f1c540724fd8c5c4be1af604a6c6800d29'; // Secured collateral
1011

1112
const mainnet_tvl = async (api) => {
@@ -28,6 +29,11 @@ const manta_tvl = async (api) => {
2829
api.add(Manta_USDz, supply)
2930
}
3031

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+
3137
const collateral_assets = async (api) => {
3238
const supply = await api.call({ abi: 'erc20:totalSupply', target: SPCT })
3339
api.add(SPCT, supply)
@@ -47,4 +53,7 @@ module.exports = {
4753
manta: {
4854
tvl: manta_tvl,
4955
},
56+
arbitrum: {
57+
tvl: arbitrum_tvl,
58+
},
5059
};

0 commit comments

Comments
 (0)