Skip to content

Commit

Permalink
add base
Browse files Browse the repository at this point in the history
  • Loading branch information
realdealshaman committed Aug 5, 2024
1 parent 3375512 commit e8da7d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions projects/apex-omni/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const walletAddresses = {
const tokenAddress = {
bsc: [ADDRESSES.bsc.USDT],
arbitrum: [ADDRESSES.arbitrum.USDT],
//base: ['0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2'],
base: ['0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2'],
mantle: [ADDRESSES.mantle.USDT]
}

Expand All @@ -31,10 +31,10 @@ module.exports = {
},
arbitrum: {
tvl: sumTokensExport({ owners: walletAddresses.arbitrum, tokens: tokenAddress.arbitrum }),
},/*
},
base: {
tvl: sumTokensExport({ owners: walletAddresses.base, tokens: tokenAddress.base }),
},*/
},
mantle: {
tvl: sumTokensExport({ owners: walletAddresses.mantle, tokens: tokenAddress.mantle }),
},
Expand Down
3 changes: 3 additions & 0 deletions projects/helper/tokenMapping.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ const fixBalancesTokens = {
"0x6b48c2e6a32077ec17e8ba0d98ffc676dfab1a30": { coingeckoId: "ethereum", decimals: 18 },
"0xa9f32a851b1800742e47725da54a09a7ef2556a3": { coingeckoId: "usd-coin", decimals: 6 },
},
base: {
"0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2": { coingeckoId: "tether", decimals: 6 },
},
}

ibcChains.forEach(chain => fixBalancesTokens[chain] = { ...ibcMappings, ...(fixBalancesTokens[chain] || {}) })
Expand Down

0 comments on commit e8da7d5

Please sign in to comment.