Skip to content

Commit

Permalink
add commonwealth tvl (DefiLlama#12219)
Browse files Browse the repository at this point in the history
Co-authored-by: samswealth <[email protected]>
Co-authored-by: g1nt0ki <[email protected]>
  • Loading branch information
3 people authored Nov 9, 2024
1 parent 18bdd69 commit a6d9045
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
26 changes: 26 additions & 0 deletions projects/commonwealth/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
const { staking } = require('../helper/staking');

const TREASURY = [
'0xdE70B8BC5215BdF03f839BB8cD0F639D4E3E2881',
'0xA205fD6A798A9Ba8b107A00b8A6a5Af742d6aCb5',
'0x990eCdf73704f9114Ee28710D171132b5Cfdc6f0',
'0xa653879692D4D0e6b6E0847ceDd58eAD2F1CC136'
]


const CONTRACTS = [
'0xf4aa59f5192856f41ae19caab4929ccd3a265e70', // staked
'0x7519461fbd96abb539c770d57f38c2e91f8262aa',
'0xd7e31990883250e53314b15ee555345f04d011e8',
'0x87412c03979cc19c60071f5f98313a7cbe9f6d65', // rewards

];

const WLTH = '0x99b2B1A2aDB02B38222ADcD057783D7e5D1FCC7D';

module.exports = {
base: {
tvl: () => ({}),
staking: staking(CONTRACTS, WLTH)
}
};
13 changes: 13 additions & 0 deletions projects/treasury/commonwealth.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const { treasuryExports } = require("../helper/treasury");

const owners = [
'0xdE70B8BC5215BdF03f839BB8cD0F639D4E3E2881',
'0xA205fD6A798A9Ba8b107A00b8A6a5Af742d6aCb5',
'0x990eCdf73704f9114Ee28710D171132b5Cfdc6f0',
'0xa653879692D4D0e6b6E0847ceDd58eAD2F1CC136'
]

const WLTH = '0x99b2B1A2aDB02B38222ADcD057783D7e5D1FCC7D';
module.exports = treasuryExports({
base: { owners, ownTokens: [WLTH], },
})

0 comments on commit a6d9045

Please sign in to comment.