Skip to content

Commit b8d9483

Browse files
authored
Add Blastoff TVL (DefiLlama#9204)
* Add Blastoff TVL * Merge branch 'DefiLlama:main' into main * code refactor
1 parent 3aa9691 commit b8d9483

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

projects/blastoff/index.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
const { sumTokensExport } = require('../helper/unwrapLPs')
2+
const ADDRESSES = require('../helper/coreAssets.json')
3+
4+
const LOCKED_STAKING = "0xd95773e5b1eedc7ff302a70acd0eb370927397d2";
5+
const NONLOCK_STAKING = "0xd9747a98624f0B64B4412632C420672E16432334";
6+
7+
module.exports = {
8+
blast: {
9+
tvl: sumTokensExport({ owners: [LOCKED_STAKING, NONLOCK_STAKING], tokens: [ADDRESSES.null, ADDRESSES.blast.USDB] }),
10+
},
11+
methodology: "counts the amount of USDB and ETH locked in 2 staking contracts",
12+
};

0 commit comments

Comments
 (0)