Skip to content

Commit

Permalink
fix: hardhat config to get the accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
kupermind committed May 10, 2023
1 parent 59bd5df commit d51202d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,12 @@ module.exports = {
},
mainnet: {
url: "https://eth-mainnet.g.alchemy.com/v2/" + ALCHEMY_API_KEY_MAINNET,
accounts: accounts,
chainId: 1,
},
polygon: {
url: "https://polygon-mainnet.g.alchemy.com/v2/" + ALCHEMY_API_KEY_MATIC,
accounts: accounts,
chainId: 137,
},
gnosis: {
Expand Down
1 change: 0 additions & 1 deletion scripts/deployment/l2/deploy_01_service_registry_l2.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ async function main() {
}

const provider = new ethers.providers.JsonRpcProvider(networkURL);
console.log(provider);
const signers = await ethers.getSigners();

if (useLedger) {
Expand Down

0 comments on commit d51202d

Please sign in to comment.