mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
20 lines
537 B
JavaScript
20 lines
537 B
JavaScript
const sdk = require('@defillama/sdk');
|
|
const tornado = '0x9cDb933eDab885bB767658B9ED5C3800bc1d761B';
|
|
const reserve = '0xC9B4Dff1ce5384C7014579099e63EA0092e14eD5';
|
|
const weth = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2';
|
|
|
|
async function tvl(timestamp, block) {
|
|
return { [weth] : Number((await sdk.api.eth.getBalance({
|
|
target: tornado,
|
|
block
|
|
})).output) + Number((await sdk.api.eth.getBalance({
|
|
target: reserve,
|
|
block
|
|
})).output)};
|
|
};
|
|
|
|
module.exports = {
|
|
ethereum: {
|
|
tvl
|
|
}
|
|
}; |