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 7a0fadd commit 03dc62f
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 @@ -40,6 +40,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 @@ -62,6 +62,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 03dc62f

Please sign in to comment.