-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
54 lines (51 loc) · 1.09 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
52
53
54
import "@nomicfoundation/hardhat-toolbox";
import "@nomiclabs/hardhat-ethers";
import "@nomiclabs/hardhat-etherscan";
import 'dotenv/config';
const infuraUrlGoerli = process.env.GOERLI_INFURA_URL;
const infuraUrlMumbai = process.env.MUMBAI_INFURA_URL;
const privateKey = process.env.ADMIN_PRIVATE_KEY;
module.exports = {
defaultNetwork: "hardhat",
networks: {
hardhat: {
},
goerli: {
url: `${infuraUrlGoerli}`,
accounts: [privateKey]
},
mainnet: {
url: `${infuraUrlGoerli}`,
accounts: [privateKey]
},
polygonMumbai: {
url: `${infuraUrlMumbai}`,
accounts: [privateKey]
}
},
etherscan: {
apiKey: {
mainnet: process.env.ETHERSCAN_API_KEY,
goerli: process.env.ETHERSCAN_API_KEY,
polygonMumbai: process.env.POLYGONSCAN_API_KEY,
}
},
solidity: {
version: "0.8.17",
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
},
paths: {
sources: "./contracts",
tests: "./test",
cache: "./cache",
artifacts: "./artifacts"
},
mocha: {
timeout: 40000
}
};