Skip to content

Commit

Permalink
Merge 3c780a4 into b6fc163
Browse files Browse the repository at this point in the history
  • Loading branch information
tjcloa committed Mar 1, 2021
2 parents b6fc163 + 3c780a4 commit 30e59d9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,34 @@ module.exports = {
},
networks: {
hardhat: {},
rskPublicTestnet: {
url: "https://public-node.testnet.rsk.co/",
accounts: { mnemonic: "brownie", count: 10 },
network_id: 31,
confirmations: 4,
gasMultiplier: 1.25,
//timeout: 20000, // increase if needed; 20000 is the default value
//allowUnlimitedContractSize, //EIP170 contrtact size restriction temporal testnet workaround
},
rskPublicMainnet: {
url: "https://public-node.rsk.co/",
network_id: 30,
//timeout: 20000, // increase if needed; 20000 is the default value
},
rskSovrynTestnet: {
url: "https://testnet.sovryn.app/rpc",
accounts: { mnemonic: "brownie", count: 10 },
network_id: 31,
confirmations: 4,
gasMultiplier: 1.25,
//timeout: 20000, // increase if needed; 20000 is the default value
//allowUnlimitedContractSize, //EIP170 contrtact size restriction temporal testnet workaround
},
rskSovrynMainnet: {
url: "https://mainnet.sovryn.app/rpc",
network_id: 30,
//timeout: 20000, // increase if needed; 20000 is the default value
},
},
paths: {
sources: "./contracts",
Expand Down

0 comments on commit 30e59d9

Please sign in to comment.