From 13659bd833c9e6de789a868068060f0d8c687967 Mon Sep 17 00:00:00 2001 From: Define101 <93603962+Define101@users.noreply.github.com> Date: Wed, 20 Nov 2024 12:52:35 +0000 Subject: [PATCH] astherus-basis-trading (#12366) --- projects/astherus-basis-trading/index.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 projects/astherus-basis-trading/index.js diff --git a/projects/astherus-basis-trading/index.js b/projects/astherus-basis-trading/index.js new file mode 100644 index 0000000000..79fcfcc24c --- /dev/null +++ b/projects/astherus-basis-trading/index.js @@ -0,0 +1,10 @@ +const USDF = "0x5A110fC00474038f6c02E89C707D638602EA44B5" + +module.exports = { + bsc: { + tvl: async (api) => { + const supply = await api.call({ abi: 'erc20:totalSupply', target: USDF }) + api.add(USDF, supply) + }, + } +} \ No newline at end of file