forked from DefiLlama/DefiLlama-Adapters
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Rootstock Collective (DefiLlama#11751)
Co-authored-by: g1nt0ki <[email protected]>
- Loading branch information
1 parent
6897960
commit dd7be04
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const { sumTokensExport } = require('../helper/unwrapLPs') | ||
|
||
module.exports = { | ||
rsk: { | ||
tvl: () => ({}), | ||
staking: sumTokensExport({ owner: '0x5db91e24BD32059584bbDb831A901f1199f3d459', tokens: ['0x2aCc95758f8b5F583470bA265Eb685a8f45fC9D5']}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
const ADDRESSES = require('../helper/coreAssets.json') | ||
const { nullAddress, treasuryExports } = require("../helper/treasury"); | ||
|
||
// Treasury | ||
const treasuryGrants = "0x48229e5D82a186Aa89a99212D2D59f5674aa5b6C"; | ||
const treasuryActive = "0xf016fA6B237BB56E3AEE7022C6947a6A103E3C47"; | ||
const treasuryGrowth = "0x267a6073637408b6A1d34d685ff5720A0CbCbD9d"; | ||
const treasuryGeneral = "0xfE3d9B7D68aE13455475F28089968336414FD358"; | ||
|
||
|
||
module.exports = treasuryExports({ | ||
rsk: { | ||
tokens: [ | ||
// Rootstock Assets | ||
nullAddress, | ||
"0x2aCc95758f8b5F583470bA265Eb685a8f45fC9D5", // RIF | ||
], | ||
owners: [treasuryGrants, treasuryActive, treasuryGrowth, treasuryGeneral], | ||
}, | ||
}); |