Skip to content

Commit

Permalink
add genesis dao
Browse files Browse the repository at this point in the history
  • Loading branch information
0xGenesisDAO committed Aug 20, 2024
1 parent 15a5a16 commit 019d8b9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions projects/genesis-dao/index.js
Original file line number Diff line number Diff line change
@@ -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
}
};

0 comments on commit 019d8b9

Please sign in to comment.