Skip to content

Commit

Permalink
Add new pool for EVAA (#11728)
Browse files Browse the repository at this point in the history
  • Loading branch information
shuva10v authored Sep 24, 2024
1 parent 12ea3af commit fab9138
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions projects/evaa/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
const { sumTokensExport } = require("../helper/chain/ton");
const ADDRESSES = require("../helper/coreAssets.json");

const evaaScAddr = "EQC8rUZqR_pWV1BylWUlPNBzyiTYVoBEmQkMIQDZXICfnuRr"
const evaaMainPool = "EQC8rUZqR_pWV1BylWUlPNBzyiTYVoBEmQkMIQDZXICfnuRr"
const evaaLpPool = "EQBIlZX2URWkXCSg3QF2MJZU-wC5XkBoLww-hdWk2G37Jc6N"

module.exports = {
methodology: 'Counts EVAA smartcontract balance as TVL.',
ton: {
tvl: sumTokensExport({ owner: evaaScAddr, tokens: [ADDRESSES.null]}),
tvl: sumTokensExport({ owners: [evaaMainPool, evaaLpPool], tokens: [ADDRESSES.null]}),
}
}

0 comments on commit fab9138

Please sign in to comment.