-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
51 lines (48 loc) · 1.24 KB
/
hardhat.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import "@nomiclabs/hardhat-waffle"
import "@nomiclabs/hardhat-etherscan"
import "@nomiclabs/hardhat-ethers"
import "hardhat-deploy"
import "hardhat-deploy-ethers"
import "hardhat-gas-reporter"
import "dotenv/config"
import { HardhatUserConfig } from "hardhat/config"
const MAINNET_RPC = "https://rpc-mainnet.maticvigil.com"
const MUMBAI_RPC = "https://rpc-mumbai.maticvigil.com/"
const config: HardhatUserConfig = {
etherscan: {
apiKey: process.env.POLYGONSCAN_API_KEY,
},
networks: {
matic: {
url: MAINNET_RPC,
chainId: 137,
live: true,
saveDeployments: true,
accounts: [process.env.PRIVATE_KEY],
},
mumbai: {
url: MUMBAI_RPC,
chainId: 80001,
live: true,
saveDeployments: true,
gasMultiplier: 2,
accounts: [process.env.PRIVATE_KEY],
},
},
gasReporter: {
enabled: true,
currency: "USD",
outputFile: "gas-report.txt",
noColors: true,
},
solidity: {
version: "0.8.17",
settings: {
optimizer: {
enabled: true,
runs: 1000000,
},
},
},
}
export default config