diff --git a/projects/alcor/index.js b/projects/alcor/index.js index 3ef74175e374..f23d4dc835a3 100644 --- a/projects/alcor/index.js +++ b/projects/alcor/index.js @@ -14,7 +14,7 @@ async function eos() { // Alcor // https://wax.alcor.exchange async function wax() { - const accounts = ["swap.alcor", "alcordexmain"]; + const accounts = ["swap.alcor", "alcordexmain", "liquid.alcor"]; const tokens = [ ["eosio.token", "WAX", "wax"], ["alien.worlds", "TLM", "alien-worlds"], diff --git a/projects/waxfusion/index.js b/projects/waxfusion/index.js new file mode 100644 index 000000000000..4dba2e750e40 --- /dev/null +++ b/projects/waxfusion/index.js @@ -0,0 +1,18 @@ +const { get_account_tvl } = require("../helper/chain/eos"); + +// WaxFusion +// https://waxfusion.io +async function wax() { + const accounts = ["dapp.fusion", "pol.fusion", "cpu1.fusion", "cpu2.fusion", "cpu3.fusion"]; + const tokens = [ + ["eosio.token", "WAX", "wax"] + ]; + return await get_account_tvl(accounts, tokens, "wax"); +} + +module.exports = { + methodology: `WaxFusion TVL is achieved by querying token balances from liquid staking contracts`, + wax: { + tvl: wax + }, +} \ No newline at end of file