-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhardhat.config.ts
51 lines (48 loc) · 1.21 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
import "@nomiclabs/hardhat-waffle";
import "@nomiclabs/hardhat-ethers";
import "@typechain/hardhat";
import "hardhat-gas-reporter";
import { HardhatUserConfig } from "hardhat/types";
const config: HardhatUserConfig = {
typechain: {
outDir: "contract-types",
target: "ethers-v5",
},
solidity: {
version: "0.8.10",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
networks: {
hardhat: {
hardfork: "london",
accounts: [
{
privateKey:
"0xe1743f0184b85ac1412311be9d6e5d333df23e22efdf615d0135ca2b9ed67938",
balance: "10000000000000000000000",
},
{
privateKey:
"0x23ac17b9c3590a8e67a1d1231ebab87dd2d3389d2f1526f842fd1326a0990f42",
balance: "10000000000000000000000",
},
{
privateKey:
"0x91f47a1911c0fd985b34c25962f661f0de606f7ad38ba156902dff48b4d05f97",
balance: "10000000000000000000000",
},
{
privateKey:
"0xf3d5b8ba24833578a22960b2c7a8be1ebb7907ffe0b346111b8839e981b28b0c",
balance: "10000000000000000000000",
},
],
},
},
};
export default config;