Commit 9bd800d 1 parent 9de1869 commit 9bd800d Copy full SHA for 9bd800d
File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ Networks can be configured in _[hardhat.config.ts](hardhat.config.ts)_. We've pr
55
55
- ` polygonzk ` (Polygon zkEVM)
56
56
- ` scroll ` (Scroll)
57
57
- ` zeta ` (ZetaChain Mainnet)
58
+ - ` mint ` (Mint Blockchain Mainnet)
58
59
59
60
## Verification
60
61
Original file line number Diff line number Diff line change @@ -153,6 +153,11 @@ const config: HardhatUserConfig = {
153
153
url : "https://zetachain-evm.blockpi.network/v1/rpc/public" ,
154
154
accounts : process . env . PRIVATE_KEY !== undefined ? [ process . env . PRIVATE_KEY ] : [ ] ,
155
155
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
156
161
}
157
162
} ,
158
163
gasReporter : {
@@ -183,6 +188,7 @@ const config: HardhatUserConfig = {
183
188
polygonZkEVM : process . env . ZKEVM_POLYGONSCAN_API_KEY || "" ,
184
189
scroll : process . env . SCROLLSCAN_API_KEY || ""
185
190
// zeta: "", // no etherscan
191
+ // mint: "", // no etherscan
186
192
} ,
187
193
customChains : [
188
194
{
You can’t perform that action at this time.
0 commit comments