-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathhardhat.config.ts
60 lines (56 loc) · 1.33 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
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import "hardhat-deploy";
import "./tasks/airdrop";
import "dotenv/config";
const config: HardhatUserConfig = {
solidity: {
version: "0.8.23",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
evmVersion: "paris",
metadata: {
bytecodeHash: "none",
},
},
},
networks: {
sepolia: {
url: "https://sepolia.drpc.org",
accounts: [process.env.METIS_DEPLOYER_PRIKEY as string],
verify: {
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
apiUrl: "https://api-sepolia.etherscan.io",
},
},
},
holesky: {
url: "https://holesky.drpc.org",
accounts: [process.env.METIS_DEPLOYER_PRIKEY as string],
verify: {
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
apiUrl: "https://api-holesky.etherscan.io",
},
},
},
devnet: {
url: process.env.DEVNET_RPC,
accounts: [process.env.DEVNET_DEPLOYER_KEY as string],
verify: {
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
apiUrl: process.env.DEVNET_EXPLORER_API,
},
},
},
},
namedAccounts: {
deployer: 0,
},
};
export default config;