Skip to content

Commit

Permalink
Add Linea and Cyber chains
Browse files Browse the repository at this point in the history
  • Loading branch information
TomiOhl committed May 24, 2024
1 parent 9696b70 commit c5e6cdd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ Networks can be configured in _[hardhat.config.ts](hardhat.config.ts)_. We've pr
- `cronos` (Cronos Mainnet)
- `mantle` (Mantle Network Mainnet)
- `ontology` (Ontology EVM Mainnet)
- `linea` (Linea Mainnet)
- `cyber` (Cyber Mainnet)

## Verification

Expand Down
8 changes: 8 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ const config: HardhatUserConfig = {
ontology: {
url: "https://dappnode2.ont.io:10339",
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : []
},
linea: {
url: "https://linea.decubate.com",
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : []
},
cyber: {
url: "https://cyber.alt.technology",
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : []
}
},
gasReporter: {
Expand Down

0 comments on commit c5e6cdd

Please sign in to comment.