forked from OriginTrail/dkg-evm-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.node.config.ts
84 lines (80 loc) · 1.98 KB
/
hardhat.node.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
80
81
82
83
84
import 'hardhat-deploy';
import 'hardhat-deploy-ethers';
import { HardhatUserConfig, extendEnvironment } from 'hardhat/config';
import { lazyObject } from 'hardhat/plugins';
import { HardhatRuntimeEnvironment } from 'hardhat/types';
import { Helpers } from './utils/helpers';
import { accounts, rpc } from './utils/network';
extendEnvironment((hre: HardhatRuntimeEnvironment) => {
hre.helpers = lazyObject(() => new Helpers(hre));
});
const config: HardhatUserConfig = {
defaultNetwork: 'hardhat',
namedAccounts: {
deployer: 0,
minter: 0,
},
networks: {
localhost: {
url: rpc('localhost'),
accounts: accounts('localhost'),
saveDeployments: false,
},
hardhat: {
chainId: 31337,
gas: 15_000_000,
gasMultiplier: 1,
blockGasLimit: 30_000_000,
hardfork: 'shanghai',
throwOnTransactionFailures: true,
throwOnCallFailures: true,
loggingEnabled: false,
allowUnlimitedContractSize: false,
saveDeployments: false,
mining: {
auto: true,
interval: [3000, 5000],
},
},
},
solidity: {
compilers: [
{
version: '0.8.16',
settings: {
evmVersion: 'london',
optimizer: {
enabled: true,
runs: 200,
details: {
peephole: true,
inliner: true,
jumpdestRemover: true,
orderLiterals: true,
deduplicate: true,
cse: true,
constantOptimizer: true,
yul: true,
yulDetails: {
stackAllocation: true,
},
},
},
viaIR: process.env.COVERAGE_REPORT ? false : true,
},
},
],
overrides: {
'contracts/v1/MultiSigWallet.sol': {
version: '0.4.15',
},
},
},
paths: {
sources: './contracts',
tests: './test',
cache: './cache',
artifacts: './artifacts',
},
};
export default config;