Skip to content

Commit e290b80

Browse files
authored
Update IX swap tvl on Base (DefiLlama#12437)
1 parent 95fe94a commit e290b80

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

projects/ixswap/index.js

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
const { getUniTVL } = require("../helper/unknownTokens");
2-
const { staking } = require('../helper/staking')
1+
const {getUniTVL} = require("../helper/unknownTokens");
2+
const {staking} = require('../helper/staking')
33

44
const IXS_POLYGON = "0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8"
55
const IXS_BASE = "0xfe550bffb51eb645ea3b324d772a19ac449e92c5"
66
const STAKING_CONTRACTS = [
7-
"0xad644F3cC768bc6dceF97096790e2210D5191cec", // stake bank
7+
"0xad644F3cC768bc6dceF97096790e2210D5191cec", // stake bank
88
]
99

1010
module.exports = {
11-
polygon:{
12-
tvl: getUniTVL({ factory: '0xc2D0e0bc81494adB71Ce9Aa350cC875DaE12D81D', blacklistedTokens: [IXS_POLYGON] }),
11+
polygon: {
12+
tvl: getUniTVL({factory: '0xc2D0e0bc81494adB71Ce9Aa350cC875DaE12D81D', blacklistedTokens: [IXS_POLYGON]}),
1313
staking: staking(STAKING_CONTRACTS, IXS_POLYGON),
1414
},
15-
base:{
15+
base: {
16+
tvl: getUniTVL({factory: '0x2eE28d1Bbc2EcB1fFDB83E8055d585E9F0fb757f'}),
1617
staking: staking(['0x44F07B446e14127136f3554A16014b49BC67D9E6'], IXS_BASE),
1718
},
18-
}
19+
}

0 commit comments

Comments
 (0)