mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 22:43:12 +08:00
28 lines
813 B
JavaScript
28 lines
813 B
JavaScript
const { sui } = require("../helper/chain/rpcProxy");
|
|
const { getConfig } = require("../helper/cache");
|
|
|
|
const PACKAGE_ID =
|
|
"0xc83d5406fd355f34d3ce87b35ab2c0b099af9d309ba96c17e40309502a49976f";
|
|
|
|
async function suiTvl(api) {
|
|
const vaults = (
|
|
await getConfig('ember-protocol/vaults', `https://vaults.api.sui-prod.bluefin.io/api/v1/vaults/info`)
|
|
).Vaults;
|
|
for (const vault of Object.values(vaults)) {
|
|
const vaultTvl = await sui.query({
|
|
target: `${PACKAGE_ID}::vault::get_vault_tvl`,
|
|
contractId: vault.ObjectId,
|
|
typeArguments: [vault.DepositCoinType, vault.ReceiptCoinType],
|
|
sender:
|
|
"0xbaef681eafe323b507b76bdaf397731c26f46a311e5f3520ebb1bde091fff295",
|
|
});
|
|
api.add(vault.DepositCoinType, vaultTvl[0]);
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
sui: {
|
|
tvl: suiTvl,
|
|
},
|
|
};
|