generated from PaulRBerg/hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhardhat.config.ts
157 lines (152 loc) · 4.45 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
import "@nomicfoundation/hardhat-toolbox";
import { config as dotenvConfig } from "dotenv";
import "hardhat-deploy";
import "hardhat-gas-reporter";
import type { HardhatUserConfig } from "hardhat/config";
import { resolve } from "path";
dotenvConfig({ path: resolve(__dirname, ".env") });
const devMode = process.env.DEV_MODE || true;
let key = process.env.ACCOUNT_KEY_PRIV_DEV01 || "";
const devKey = process.env.ACCOUNT_KEY_PRIV_DEV01 || "";
const devKey1 = process.env.ACCOUNT_KEY_PRIV_DEV01 || "";
const devKey2 = process.env.ACCOUNT_KEY_PRIV_DEV01 || "";
const devKey4 = process.env.ACCOUNT_KEY_PRIV_DEV04 || "";
if (devMode) {
console.log("devMode: ", devMode);
key = devKey;
}
const chainIds = {
"arbitrum-mainnet": 42161,
avalanche: 43114,
bsc: 56,
ganache: 1337,
hardhat: 31337,
mainnet: 1,
"optimism-mainnet": 10,
"polygon-mainnet": 137,
"polygon-mumbai": 80001,
sepolia: 11155111,
};
const config: HardhatUserConfig = {
defaultNetwork: "hardhat",
namedAccounts: {
deployer: 0,
},
etherscan: {
apiKey: {
arbitrumOne: process.env.ARBISCAN_API_KEY || "",
avalanche: process.env.SNOWTRACE_API_KEY || "",
bsc: process.env.BSCSCAN_API_KEY || "",
mainnet: process.env.ETHERSCAN_API_KEY || "",
optimisticEthereum: process.env.OPTIMISM_API_KEY || "",
polygon: process.env.POLYGONSCAN_API_KEY || "",
polygonMumbai: process.env.POLYGONSCAN_API_KEY || "",
sepolia: process.env.ETHERSCAN_API_KEY || "",
},
},
gasReporter: {
token: "ETH",
currency: "USD",
gasPrice: 1, // 1 Gwei is the lowest possible setting - L2s are lower in reality
coinmarketcap: `${process.env.COIN_MARKET_CAP}`,
enabled: process.env.REPORT_GAS ? true : false,
excludeContracts: [],
src: "./contracts",
},
networks: {
hardhat: {
accounts: [
{
privateKey: devKey,
balance: "10000000000000000000",
},
{
privateKey: devKey1,
balance: "10000000000000000000",
},
{
privateKey: devKey2,
balance: "10000000000000000000",
},
{
privateKey: devKey4,
balance: "10000000000000000000",
},
],
chainId: chainIds.hardhat,
},
local: {
url: `${process.env.NETWORK_LOCAL}`,
// chainId: 31337,
accounts: [`0x${process.env.ACCOUNT_KEY_PRIV_LOCAL}`],
forking: {
url: `${process.env.NETWORK_FORK}`,
},
},
polygon: {
url: `${process.env.NETWORK_POLYGON}`,
accounts: [`0x${process.env.ACCOUNT_KEY_PRIV_DEV04}`],
gasPrice: 150000000000, // 150 Gwei
},
optimism: {
url: `${process.env.NETWORK_OPTIMISM}`,
accounts: [`0x${process.env.ACCOUNT_KEY_PRIV_DEV04}`],
// gasPrice: 1000000000, // 1 Gwei
},
"optimism-goerli": {
url: `${process.env.NETWORK_OPTIMISM_GOERLI}`,
accounts: [`0x${process.env.ACCOUNT_KEY_PRIV_DEV04}`],
gasPrice: 1000000000, // 1 Gwei
},
"zk-evm": {
url: "https://zkevm-rpc.com",
accounts: [key as string],
gasPrice: 2000000000, // 2 Gwei
},
zksync: {
url: "https://mainnet.era.zksync.io",
accounts: [key as string],
gasPrice: 1000000000, // 1 Gwei
},
"zora-goerli": {
url: "https://testnet.rpc.zora.energy/",
accounts: [key as string],
},
"zora-mainnet": {
url: "https://rpc.zora.energy/",
chainId: 7777777,
accounts: [key as string],
gasPrice: 2000000000, // 2 Gwei
},
},
paths: {
artifacts: "./artifacts",
cache: "./cache",
sources: "./contracts",
tests: "./test",
},
solidity: {
version: "0.8.17",
settings: {
metadata: {
// Not including the metadata hash
// https://github.com/paulrberg/hardhat-template/issues/31
bytecodeHash: "none",
},
// Disable the optimizer when debugging
// https://hardhat.org/hardhat-network/#solidity-optimizer-support
optimizer: {
enabled: true,
runs: 800,
},
viaIR: true,
},
},
typechain: {
outDir: "types",
target: "ethers-v6",
// alwaysGenerateOverloads: false, // should overloads with full signatures like deposit(uint256) be generated always, even if there are no overloads?
// externalArtifacts: ["node_modules/@openzeppelin/**/*.json"], // allows you to manually specify the external artifacts that should be processed by the TypeChain (glob pattern)
},
};
export default config;