Skip to content

Commit

Permalink
added Sovryn RSK nodes to hh settings
Browse files Browse the repository at this point in the history
  • Loading branch information
tjcloa committed Mar 1, 2021
1 parent ae872a9 commit fe36f4e
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,26 @@ module.exports = {
},
networks: {
hardhat: {},
rskTestnet: {
rskPublicTestnet: {
url: "https://public-node.testnet.rsk.co/",
accounts: { mnemonic: "brownie", count: 10 },
network_id: 31,
confirmations: 4,
},
rskMainnet: {
rskPublicMainnet: {
url: "https://public-node.rsk.co/",
network_id: 30,
},
rskSovrynTestnet: {
url: "https://testnet.sovryn.app/rpc",
accounts: { mnemonic: "brownie", count: 10 },
network_id: 31,
confirmations: 4,
},
rskSovrynMainnet: {
url: "https://mainnet.sovryn.app/rpc",
network_id: 30,
},
},
paths: {
sources: "./contracts",
Expand Down

0 comments on commit fe36f4e

Please sign in to comment.