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

Deploy BalanceHelpers on Rootstock mainnet and testnet #144

Merged
merged 3 commits into from
Apr 4, 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 DEPLOYMENTS.md

Large diffs are not rendered by default.

8 changes: 3 additions & 5 deletions deploy/001_create-common.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import { DeployFunction } from "hardhat-deploy/types";

const func: DeployFunction = async hre => {
const {
deployments: { deploy },
getNamedAccounts,
} = hre;
const { deployments, getNamedAccounts } = hre;
const { deploy } = deployments;
const { from } = await getNamedAccounts();

await deploy("BalancesHelper", {
Expand All @@ -18,6 +16,6 @@ const func: DeployFunction = async hre => {
});
};

func.tags = ["create", "common"];
func.tags = ["create", "common", "balanceHelpers"];

module.exports = func;
1 change: 1 addition & 0 deletions deployments/rootstock/.chainId
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
30
81 changes: 81 additions & 0 deletions deployments/rootstock/BalancesHelper.json

Large diffs are not rendered by default.

160 changes: 160 additions & 0 deletions deployments/rootstock/BalancesHelperV2.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

157 changes: 157 additions & 0 deletions deployments/rootstock/solcInputs/c6bcc786074bb5f47af1ba8ec29021b3.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions deployments/rootstockTestnet/.chainId
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
31
65 changes: 65 additions & 0 deletions deployments/rootstockTestnet/BalancesHelper.json

Large diffs are not rendered by default.

160 changes: 160 additions & 0 deletions deployments/rootstockTestnet/BalancesHelperV2.json

Large diffs are not rendered by default.

Loading
Loading