Skip to content

Commit 2e0b4d4

Browse files
authored
Add yuzu-money (#16968)
1 parent 19a20ca commit 2e0b4d4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

projects/yuzu-money/index.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)