-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathhardhat.config.ts
65 lines (62 loc) · 1.69 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
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import "dotenv/config";
const infuraKey: string = process.env.INFURA_API_KEY as string;
const privateKey: string = process.env.PRIVATE_KEY ? process.env.PRIVATE_KEY as string: "";
const etherscanKey: string = process.env.ETHERSCAN_KEY ? process.env.ETHERSCAN_KEY as string: "";
const basescanKey: string = process.env.BASESCAN_KEY ? process.env.BASESCAN_KEY as string: "";
const bscscanKey: string = process.env.BSCSCAN_KEY ? process.env.BSCSCAN_KEY as string: "";
const config: HardhatUserConfig = {
solidity: {
version: "0.8.28",
settings: {
optimizer: {
enabled: true,
runs: 100,
},
// viaIR: true,
},
},
networks: {
sepolia: {
url: `https://sepolia.infura.io/v3/${infuraKey}`,
accounts: [`0x${privateKey}`],
},
mainnet: {
url: `https://mainnet.infura.io/v3/${infuraKey}`,
accounts: [`0x${privateKey}`],
},
base_sepolia: {
url: "https://base-sepolia.blockpi.network/v1/rpc/public",
accounts: [`0x${privateKey}`],
},
base_mainnet: {
url: "https://mainnet.base.org",
accounts: [`0x${privateKey}`],
},
holesky_testnet: {
url: "https://ethereum-holesky-rpc.publicnode.com",
accounts: [`0x${privateKey}`],
},
hardhat: {
chainId: 31337,
},
},
etherscan: {
apiKey: {
mainnet: etherscanKey,
sepolia: etherscanKey,
base_mainnet: basescanKey,
base_sepolia: basescanKey,
holesky: etherscanKey,
bsc_testnet: bscscanKey
},
},
gasReporter: {
enabled: true,
},
sourcify: {
enabled: true,
},
};
export default config;