-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added waxfusion adapter * added liquid.alcor to alcor TVL --------- Co-authored-by: Mike D <[email protected]>
- Loading branch information
1 parent
480df4d
commit 7c8a0e3
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
}, | ||
} |