-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
54 lines (51 loc) · 1.16 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 { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import secrets from './.secrets.json';
/**
* @type import('hardhat/config').HardhatUserConfig
*/
const config: HardhatUserConfig = {
solidity: {
version: "0.8.17",
settings: {
viaIR: false,
optimizer: {
enabled: true,
runs: 200
}
}
},
networks: {
hardhat: {
allowUnlimitedContractSize: true,
chainId: 1337,
forking: {
url: secrets.nodeUrls.goerli,
blockNumber: 7334900
},
},
goerli: {
url: secrets.nodeUrls.goerli,
accounts: [secrets.privateKeys.goerli.deployer],
gasPrice: "auto"
},
mainnetEth: {
url: secrets.nodeUrls.mainnetEth,
accounts: [secrets.privateKeys.mainnetEth.deployer],
gasPrice: "auto"
},
mainnetPoly: {
url: secrets.nodeUrls.mainnetPoly,
accounts: [secrets.privateKeys.mainnetPoly.deployer],
gasPrice: "auto"
}
},
etherscan: {
apiKey: {
goerli: secrets.etherscanAPI,
mainnet: secrets.etherscanAPI,
polygon: secrets.polygonscanAPI
}
}
};
export default config;