diff --git a/projects/genesis-dao/index.js b/projects/genesis-dao/index.js new file mode 100644 index 000000000000..060d5973b47d --- /dev/null +++ b/projects/genesis-dao/index.js @@ -0,0 +1,18 @@ +const genAddress = '0x99999999999997fceB5549c58aB66dF52385ca4d'; +const sGenAddress = '0x8888888888888e9b808caA0a8BB7e2268fd17351'; + +async function stakedGen(api) { + const sGenSupply = await api.call({ + abi: 'erc20:totalSupply', + target: sGenAddress + }); + + api.add(genAddress, sGenSupply) +} + +module.exports = { + ethereum: { + tvl: () => ({}), + staking: stakedGen + } +};