Skip to content

Commit fe4999f

Browse files
authored
add eth to unit (DefiLlama#14279)
1 parent cedb60c commit fe4999f

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

projects/unit-btc/index.js

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
const { sumTokensExport } = require('../helper/sumTokens');
2-
const bitcoinAddressBook = require('../helper/bitcoin-book/index.js')
2+
const bitcoinAddressBook = require('../helper/bitcoin-book/index.js');
3+
const ADDRESSES = require('../helper/coreAssets.json');
34

4-
//https://docs.hyperunit.xyz/developers/key-addresses
5+
// https://docs.hyperunit.xyz/developers/key-addresses
56

67
module.exports = {
78
methodology: 'BTC wallets on bc1pdwu79dady576y3fupmm82m3g7p2p9f6hgyeqy0tdg7ztxg7xrayqlkl8j9',
89
bitcoin: {
910
tvl: sumTokensExport({ owners: bitcoinAddressBook.unitbtc }),
1011
},
11-
};
12+
ethereum: {
13+
tvl: sumTokensExport({
14+
owners: ["0xBEa9f7FD27f4EE20066F18DEF0bc586eC221055A"],
15+
tokens: [ADDRESSES.ethereum.WETH, "0x0000000000000000000000000000000000000000"],
16+
}),
17+
},
18+
};

0 commit comments

Comments
 (0)