Files
DefiLlama-Adapters/projects/waxfun/index.js
mdcryptonfts 10a31fd9e5 Added waxfun project (#12710)
Co-authored-by: Mike D <admin@Admins-MacBook-Pro.local>
2024-12-14 23:18:41 +01:00

18 lines
410 B
JavaScript

const { get_account_tvl } = require("../helper/chain/eos");
// WaxFun
// https://wax.fun
async function wax() {
const accounts = ["main.waxfun"];
const tokens = [
["eosio.token", "WAX", "wax"]
];
return await get_account_tvl(accounts, tokens, "wax");
}
module.exports = {
methodology: `WaxFun TVL is achieved by querying token balances from a launchpad contract`,
wax: {
tvl: wax
},
}