Skip to content

Commit

Permalink
git push origin apex-omni (#10780)
Browse files Browse the repository at this point in the history
  • Loading branch information
Define101 authored Jun 26, 2024
1 parent 987feb5 commit 0152764
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions projects/apex-omni/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
const ADDRESSES = require('../helper/coreAssets.json');
const { sumTokensExport } = require('../helper/unwrapLPs');

const tokens = [
ADDRESSES.ethereum.USDC,
ADDRESSES.ethereum.USDT,
];

const walletAddresses = {
bsc: ['0xb8d9f005654b7b127b34dae8f973ba729ca3a2d9'],
ethereum: ['0x35D173cdfE4d484BC5985fDa55FABad5892c7B82'],
arbitrum: ['0x3169844a120c0f517b4eb4a750c08d8518c8466a']

};

const tokenAddress = {
bsc: [ADDRESSES.bsc.USDT],
arbitrum: [ADDRESSES.arbitrum.USDT],
}

module.exports = {
ethereum: {
tvl: sumTokensExport({ owners: walletAddresses.ethereum, tokens }),
},
bsc: {
tvl: sumTokensExport({ owners: walletAddresses.bsc, tokens: tokenAddress.bsc }),
},
arbitrum: {
tvl: sumTokensExport({ owners: walletAddresses.arbitrum, tokens: tokenAddress.arbitrum }),
},
};

0 comments on commit 0152764

Please sign in to comment.