-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d3af182
commit 0555b02
Showing
2 changed files
with
26 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,13 @@ | ||
const ADDRESSES = require('../helper/coreAssets.json') | ||
const { staking } = require("../helper/staking"); | ||
|
||
const ROCK = "0x826628622a8B55F4AF6aC2A1DD1273bF837e651a"; | ||
const stakingContract = "0xFDfd4A3CfECD29E00942ee3E01cDa6f92E9270BA"; | ||
|
||
module.exports = { | ||
bitrock: { | ||
tvl: staking(stakingContract, ROCK, "bitrock"), | ||
}, | ||
methodology: "Rock tokens locked in staking contract", | ||
}; | ||
|
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,13 @@ | ||
const ADDRESSES = require('../helper/coreAssets.json') | ||
const { staking } = require("../helper/staking"); | ||
|
||
const WBROCK = ADDRESSES.bitrock.WBR; | ||
const stakingContract = "0x1a71F508d536c7Ab1D1B53a5D261abD494524C96"; | ||
|
||
module.exports = { | ||
bitrock: { | ||
tvl: staking(stakingContract, WBROCK, "bitrock"), | ||
}, | ||
methodology: "Wrapped Bitrock tokens locked in staking contract", | ||
}; | ||
|