Skip to content

Commit

Permalink
add alphaX tvl (#11254)
Browse files Browse the repository at this point in the history
  • Loading branch information
liberhex authored Aug 10, 2024
1 parent 3c7eb75 commit bbff765
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions projects/alphaX-protocol/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
const ADDRESSES = require('../helper/coreAssets.json');
const { sumTokensExport } = require('../helper/unwrapLPs');

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

const walletAddresses = {
ethereum: ['0xA61a6E696B7C566DA42B80dA27d96e7104bcec99'],
arbitrum: ['0x552E7A55802f3350C707a243E402aa50Eda9D286']

};

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


}

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

};

0 comments on commit bbff765

Please sign in to comment.