Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: show NS RPL deposits and detail limiting factors #51

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions web/src/contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ import RocketNodeDistributorInterface from "./generated/contracts/RocketNodeDist
import RocketNodeManager from "./generated/contracts/RocketNodeManager.json";
import RocketRewardsPool from "./generated/contracts/RocketRewardsPool.json";
import RocketStorageK from "./generated/contracts/RocketStorage.json";
import RocketVault from "./generated/contracts/RocketVault.json";
import RPL from "./generated/contracts/RPL.json";
import RPLVault from "./generated/contracts/RPLVault.json";
import SuperNodeAccount from "./generated/contracts/SuperNodeAccount.json";
import WETH from "./generated/contracts/WETH.json";
import WETHVault from "./generated/contracts/WETHVault.json";
Expand Down Expand Up @@ -72,6 +75,18 @@ const contracts = {
address: "0x1d8f8f00cfa6758d7bE78336684788Fb0ee0Fa46",
abi: RocketStorageK.abi,
},
RocketVault: {
address: "0x3bdc69c4e5e13e52a65f5583c23efb9636b469d6",
abi: RocketVault.abi,
},
RPL: {
address: "0xD33526068D116cE69F19A9ee46F0bd304F21A51f",
abi: RPL.abi,
},
RPLVault: {
address: "0x1DB1Afd9552eeB28e2e36597082440598B7F1320",
abi: RPLVault.abi,
},
SuperNodeAccount: {
address: "0x2A906f92B0378Bb19a3619E2751b1e0b8cab6B29",
abi: SuperNodeAccount.abi,
Expand Down
Loading
Loading