mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 22:43:12 +08:00
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
const sdk = require("@defillama/sdk");
|
|
|
|
const tokens = {
|
|
IBFR: "0xa296aD1C47FE6bDC133f39555C1D1177BD51fBc5",
|
|
POOL: "0x7338ee5535F1E0f1a210a6Ef6dB34f5357EB9860",
|
|
STAKING: "0xE6C2cDD466Eb1Fa6bDFDb8af1BD072d4A57734C2",
|
|
WBNB: "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c",
|
|
};
|
|
|
|
async function staking_tvl(_timestamp, ethBlock, chainBlocks) {
|
|
const ibfrV1 = (
|
|
await sdk.api.erc20.balanceOf({
|
|
target: tokens.IBFR,
|
|
owner: tokens.STAKING,
|
|
block: chainBlocks["bsc"],
|
|
chain: "bsc",
|
|
})
|
|
).output;
|
|
let iBFR_address = `bsc:${tokens.IBFR}`;
|
|
var balances = {};
|
|
balances[iBFR_address] = ibfrV1;
|
|
|
|
return balances;
|
|
}
|
|
|
|
async function tvl(_timestamp, ethBlock, chainBlocks) {
|
|
const bnbV1 = (
|
|
await sdk.api.eth.getBalance({
|
|
target: tokens.POOL,
|
|
block: chainBlocks["bsc"],
|
|
chain: "bsc",
|
|
})
|
|
).output;
|
|
let WBNB_address = `bsc:${tokens.WBNB}`;
|
|
var balances = {};
|
|
balances[WBNB_address] = bnbV1;
|
|
|
|
return balances;
|
|
}
|
|
|
|
module.exports = {
|
|
methodology: `TVL for Buffer is calculated by using the BNB deposited in the write pool and the iBFR deposited in the revenue share pool`,
|
|
bsc: {
|
|
staking: staking_tvl,
|
|
tvl: tvl,
|
|
},
|
|
};
|