Skip to content

Commit

Permalink
Add WBROCK and ROCK Staking TVL
Browse files Browse the repository at this point in the history
  • Loading branch information
BitrockChain committed Jun 25, 2024
1 parent d3af182 commit 0555b02
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions projects/rockstaking/index.js
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",
};

13 changes: 13 additions & 0 deletions projects/wbrockstaking/index.js
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",
};

0 comments on commit 0555b02

Please sign in to comment.