-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhardhat.config.echidna.js
More file actions
42 lines (40 loc) · 994 Bytes
/
hardhat.config.echidna.js
File metadata and controls
42 lines (40 loc) · 994 Bytes
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
require("@nomiclabs/hardhat-truffle5");
require("@nomiclabs/hardhat-ethers");
require("solidity-coverage");
require("hardhat-gas-reporter");
const accountsList = [
{
privateKey: "0x60ddFE7f579aB6867cbE7A2Dc03853dC141d7A4aB6DBEFc0Dae2d2B1Bd4e487F",
balance: "0xffffffffffffffffffffffff"
},
]
module.exports = {
paths: {
// contracts: "./contracts",
// artifacts: "./artifacts"
},
solc: {
version: "0.6.11",
optimizer: {
enabled: true,
runs: 100
}
},
networks: {
buidlerevm: {
accounts: accountsList,
gas: 1000000000, // tx gas limit
blockGasLimit: 1000000000,
gasPrice: 20000000000,
allowUnlimitedContractSize: true
}
},
mocha: { timeout: 12000000 },
rpc: {
host: "localhost",
port: 8545
},
gasReporter: {
enabled: (process.env.REPORT_GAS) ? true : false
}
};