We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19a20ca commit 2e0b4d4Copy full SHA for 2e0b4d4
projects/yuzu-money/index.js
@@ -0,0 +1,10 @@
1
+const yzUSD = '0x6695c0f8706c5ace3bdf8995073179cca47926dc';
2
+
3
+module.exports = {
4
+ plasma: {
5
+ tvl: async (api) => {
6
+ const supply = await api.call({ abi: 'erc20:totalSupply', target: yzUSD });
7
+ api.add(yzUSD, supply);
8
+ },
9
+ }
10
+};
0 commit comments