Skip to content

Commit 9bd800d

Browse files
committed
Add mint to hardhat config
1 parent 9de1869 commit 9bd800d

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ Networks can be configured in _[hardhat.config.ts](hardhat.config.ts)_. We've pr
5555
- `polygonzk` (Polygon zkEVM)
5656
- `scroll` (Scroll)
5757
- `zeta` (ZetaChain Mainnet)
58+
- `mint` (Mint Blockchain Mainnet)
5859

5960
## Verification
6061

hardhat.config.ts

+6
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,11 @@ const config: HardhatUserConfig = {
153153
url: "https://zetachain-evm.blockpi.network/v1/rpc/public",
154154
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
155155
zksync: false
156+
},
157+
mint: {
158+
url: "https://rpc.mintchain.io",
159+
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
160+
zksync: false
156161
}
157162
},
158163
gasReporter: {
@@ -183,6 +188,7 @@ const config: HardhatUserConfig = {
183188
polygonZkEVM: process.env.ZKEVM_POLYGONSCAN_API_KEY || "",
184189
scroll: process.env.SCROLLSCAN_API_KEY || ""
185190
// zeta: "", // no etherscan
191+
// mint: "", // no etherscan
186192
},
187193
customChains: [
188194
{

0 commit comments

Comments
 (0)