Skip to content

Commit

Permalink
Add Ontology to hardhat config
Browse files Browse the repository at this point in the history
  • Loading branch information
TomiOhl committed Jan 18, 2024
1 parent f523d80 commit 4037ba6
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 @@ -51,6 +51,7 @@ Networks can be configured in _[hardhat.config.ts](hardhat.config.ts)_. We've pr
- `optimism` (Optimism Mainnet)
- `cronos` (Cronos Mainnet)
- `mantle` (Mantle Network Mainnet)
- `ontology` (Ontology EVM 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 = {
mantle: {
url: "https://rpc.mantle.xyz",
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : []
},
ontology: {
url: "https://dappnode2.ont.io:10339",
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : []
}
},
gasReporter: {
Expand Down

0 comments on commit 4037ba6

Please sign in to comment.