mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-30 05:45:32 +08:00
18 lines
410 B
JavaScript
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
|
|
},
|
|
} |