-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.5.ts
89 lines (87 loc) · 1.95 KB
/
hardhat.config.5.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
80
81
82
83
84
85
86
87
88
89
/*
* @Description:
* @Author: Hungry
* @Date: 2022-03-16 20:44:13
* @LastEditors: Hungry
* @LastEditTime: 2022-05-24 14:15:14
*/
import { config as dotEnvConfig } from "dotenv";
dotEnvConfig();
import "@openzeppelin/hardhat-upgrades";
import "@nomiclabs/hardhat-waffle";
import "@typechain/hardhat";
import "@nomiclabs/hardhat-ethers";
import "hardhat-deploy";
import "solidity-coverage";
import "@nomiclabs/hardhat-etherscan";
module.exports = {
defaultNetwork: "hardhat",
networks: {
hardhat: {
chainId: 31337,
gas: 12000000,
blockGasLimit: 0x1fffffffffffff,
allowUnlimitedContractSize: true,
timeout: 1800000,
accounts: [
{
privateKey: process.env.LOCAL_PRIVATE_KEY_1,
balance: "10000000000000000000000",
},
{
privateKey: process.env.LOCAL_PRIVATE_KEY_2,
balance: "10000000000000000000000",
},
{
privateKey: process.env.LOCAL_PRIVATE_KEY_3,
balance: "10000000000000000000000",
},
{
privateKey: process.env.LOCAL_PRIVATE_KEY_4,
balance: "10000000000000000000000",
},
],
}
},
namedAccounts: {
deployer: {
default: 0,
},
},
solidity: {
version: "0.5.16",
settings: {
optimizer: {
enabled: true,
runs: 1,
},
evmVersion: "istanbul",
outputSelection: {
"*": {
"": ["ast"],
"*": [
"evm.bytecode.object",
"evm.deployedBytecode.object",
"abi",
"evm.bytecode.sourceMap",
"evm.deployedBytecode.sourceMap",
"metadata",
],
},
},
},
},
paths: {
sources: "./contracts/5",
tests: "./test",
cache: "./cache",
artifacts: "./artifacts",
},
typechain: {
outDir: "./typechain",
target: process.env.TYPECHAIN_TARGET || "ethers-v5",
},
mocha: {
timeout: 50000,
}
};