Skip to content

Commit

Permalink
Feat: Adapter, Sygnum-Bank (RWA) (#11740)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xpeluche authored Sep 25, 2024
1 parent 94ef152 commit 702c3a9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions projects/sygnum-bank/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const fund = "0x2AB105A3eAd22731082B790CA9A00D9A3A7627F9";

module.exports = {
methodology: "TVL represents the total sum of all tokens minted in Fidelity's investment fund (FIUSD)",
era: {
tvl: async (api) => {
const supply = await api.call({ target: fund, abi: "erc20:totalSupply" });
api.add("0x2AB105A3eAd22731082B790CA9A00D9A3A7627F9", supply);
},
},
};

0 comments on commit 702c3a9

Please sign in to comment.