Skip to content

Commit

Permalink
Add Cronos to hardhat config
Browse files Browse the repository at this point in the history
  • Loading branch information
TomiOhl committed Nov 15, 2023
1 parent adcb5ea commit 82e7ad1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ Networks can be configured in _[hardhat.config.ts](hardhat.config.ts)_. We've pr
- `arbitrum` (Arbitrum One (Mainnet))
- `base` (Base Mainnet)
- `optimism` (Optimism Mainnet)
- `cronos` (Cronos Mainnet)

## Verification

Expand Down
4 changes: 4 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ const config: HardhatUserConfig = {
optimism: {
url: "https://optimism-mainnet.public.blastapi.io",
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : []
},
cronos: {
url: "https://cronos-evm.publicnode.com",
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : []
}
},
gasReporter: {
Expand Down

0 comments on commit 82e7ad1

Please sign in to comment.