Skip to content

Commit 0154729

Browse files
authored
Update tvl and treasury of wand protocol (DefiLlama#9152)
1 parent 5c848de commit 0154729

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

projects/treasury/wand.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
const { treasuryExports } = require("../helper/treasury")
2+
3+
const config = {
4+
blast: {
5+
owners: [
6+
"0x462bd2d3c020f6986c98160bc4e189954f49634b", // treasury
7+
],
8+
tokens: [
9+
'0x0000000000000000000000000000000000000000' // $ETH
10+
],
11+
},
12+
}
13+
14+
module.exports = treasuryExports(config)

projects/wand/index.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
const { sumTokensExport } = require("../helper/unwrapLPs");
2+
3+
module.exports = {
4+
blast: {
5+
tvl: sumTokensExport({
6+
owners: [
7+
'0xDC3985196D263E5259AB946a4b52CEDCBaDC1390', // $ETH vault's token pot
8+
'0xfD7D3d51b081FBeA178891839a9FEd5ca7896bDA', // $ETH vault's pty pool buy low
9+
'0x2F5007df87c043552f3c6b6e5487B2bDc92F0232' // $ETH vault's pty pool sell high
10+
],
11+
tokens: [ '0x0000000000000000000000000000000000000000'], // $ETH
12+
}),
13+
}
14+
};

0 commit comments

Comments
 (0)