-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
53 lines (49 loc) · 1.13 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
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],
},
hardhat: {
chainId: 31337,
},
},
etherscan: {
apiKey: "ED2NED96C214Y891MR98PZZ1Q45VTFYZRV",
},
gasReporter: {
enabled: true,
},
sourcify: {
enabled: true,
},
};
export default config;