Skip to content

Commit

Permalink
Add mint to hardhat config
Browse files Browse the repository at this point in the history
  • Loading branch information
TomiOhl committed Jul 3, 2024
1 parent cb94931 commit faa0da5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ Networks can be configured in _[hardhat.config.ts](hardhat.config.ts)_. We've pr
- `polygonzk` (Polygon zkEVM)
- `scroll` (Scroll)
- `zeta` (ZetaChain Mainnet)
- `mint` (Mint Blockchain Mainnet)

## Verification

Expand Down
5 changes: 5 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ const config: HardhatUserConfig = {
zeta: {
url: "https://zetachain-evm.blockpi.network/v1/rpc/public",
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : []
},
mint: {
url: "https://rpc.mintchain.io",
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : []
}
},
gasReporter: {
Expand Down Expand Up @@ -149,6 +153,7 @@ const config: HardhatUserConfig = {
polygonZkEVM: process.env.ZKEVM_POLYGONSCAN_API_KEY || "",
scroll: process.env.SCROLLSCAN_API_KEY || ""
// zeta: "", // no etherscan
// mint: "", // no etherscan
},
customChains: [
{
Expand Down

0 comments on commit faa0da5

Please sign in to comment.