We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3445b2 commit ed0f8deCopy full SHA for ed0f8de
hardhat.config.ts
@@ -5,6 +5,7 @@ import '@nomiclabs/hardhat-waffle'
5
import '@nomiclabs/hardhat-etherscan'
6
import '@openzeppelin/hardhat-upgrades'
7
import type { HardhatUserConfig } from 'hardhat/config'
8
+import { utils } from 'ethers'
9
10
dotenv.config()
11
@@ -58,6 +59,8 @@ const config: HardhatUserConfig = {
58
59
accounts: {
60
mnemonic: mnemnoc,
61
},
62
+ gas: 3000000,
63
+ gasPrice: utils.parseUnits('130', 'gwei').toNumber(),
64
65
polygonMumbai: {
66
url: `https://polygon-mumbai.g.alchemy.com/v2/${process.env
0 commit comments