Files
DefiLlama-Adapters/projects/typhoon.js
waynebruce0x 9217bc66ef typhoon
2021-11-23 20:18:38 +00:00

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
}
};