Skip to content

Commit

Permalink
add mantle
Browse files Browse the repository at this point in the history
  • Loading branch information
realdealshaman committed Aug 5, 2024
1 parent ae3215e commit 86d8301
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion projects/apex-omni/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@ const tokens = [
const walletAddresses = {
bsc: ['0xb8d9f005654b7b127b34dae8f973ba729ca3a2d9'],
ethereum: ['0x35D173cdfE4d484BC5985fDa55FABad5892c7B82'],
arbitrum: ['0x3169844a120c0f517b4eb4a750c08d8518c8466a']
arbitrum: ['0x3169844a120c0f517b4eb4a750c08d8518c8466a'],
base: ['0xee7981c4642de8d19aed11da3bac59277dfd59d7'],
mantle: ['0x3c7c0ebfcd5786ef48df5ed127cddeb806db976c']

};

const tokenAddress = {
bsc: [ADDRESSES.bsc.USDT],
arbitrum: [ADDRESSES.arbitrum.USDT],
//base: ['0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2'],
mantle: [ADDRESSES.mantle.USDT]
}

module.exports = {
Expand All @@ -27,5 +31,11 @@ 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 }),
},
};

0 comments on commit 86d8301

Please sign in to comment.