-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.ts
80 lines (76 loc) · 2.03 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
import { HardhatUserConfig } from "hardhat/config";
import "dotenv/config";
import "@nomicfoundation/hardhat-toolbox";
import "@nomicfoundation/hardhat-chai-matchers";
const infuraKey = process.env.INFURA_API_KEY;
const privateKey = process.env.PRIVATE_KEY?process.env.PRIVATE_KEY:"";
const config: HardhatUserConfig = {
solidity: {
version: "0.8.24",
settings: {
optimizer: {
enabled: true,
runs: 100,
},
viaIR: true,
},
},
networks: {
sepolia: {
url: `https://sepolia.infura.io/v3/${infuraKey}`,
accounts: [privateKey],
},
mainnet: {
url: `https://mainnet.infura.io/v3/${infuraKey}`,
accounts: [privateKey],
},
bnb_testnet: {
url: `https://data-seed-prebsc-1-s1.binance.org:8545`,
accounts: [privateKey],
},
bnb_mainnet:{
url: "https://bsc-dataseed.binance.org/",
accounts:[privateKey],
},
base_sepolia:{
url: "https://base-sepolia.blockpi.network/v1/rpc/public",
accounts: [privateKey],
},
base_mainnet:{
url: "https://mainnet.base.org",
accounts: [privateKey],
},
holesky_testnet:{
url: "https://ethereum-holesky-rpc.publicnode.com",
accounts: [privateKey],
},
hardhat: {
chainId: 31337,
},
},
etherscan: {
apiKey: {
mainnet: "ED2NED96C214Y891MR98PZZ1Q45VTFYZRV",
basemainnect: "1SZX9N4CQNAX489BHPEW27C2FG5PPP4MB1",
baseSepolia: "1SZX9N4CQNAX489BHPEW27C2FG5PPP4MB1", // etherscan: ED2NED96C214Y891MR98PZZ1Q45VTFYZRV BSC: 1UME8V5UP4AZHYDF7RWC78GTIXXRPJHTQY Base: 1SZX9N4CQNAX489BHPEW27C2FG5PPP4MB1
holesky: "ED2NED96C214Y891MR98PZZ1Q45VTFYZRV",
},
// customChains: [
// {
// network: "base_sepolia",
// chainId: 84532,
// urls: {
// apiURL: "https://api-sepolia.etherscan.io/api/",
// browserURL: "https://sepolia.basescan.org/"
// }
// }
// ]
},
gasReporter: {
enabled: true,
},
sourcify: {
enabled: true,
},
};
export default config;