forked from axelarnetwork/axelar-cgp-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.js
85 lines (77 loc) · 2.5 KB
/
hardhat.config.js
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
require('@nomicfoundation/hardhat-toolbox');
require('solidity-coverage');
if (process.env.STORAGE_LAYOUT) {
require('hardhat-storage-layout');
}
if (process.env.CHECK_CONTRACT_SIZE) {
require('hardhat-contract-sizer');
}
const { importNetworks, readJSON } = require('@axelar-network/axelar-chains-config');
const env = process.env.ENV || 'testnet';
const chains = require(`@axelar-network/axelar-chains-config/info/${env}.json`);
const keys = readJSON(`${__dirname}/keys.json`);
const { networks, etherscan } = importNetworks(chains, keys);
networks.hardhat.hardfork = process.env.EVM_VERSION || 'merge';
const optimizerSettings = {
enabled: true,
runs: 1000,
details: {
peephole: process.env.COVERAGE === undefined,
inliner: process.env.COVERAGE === undefined,
jumpdestRemover: true,
orderLiterals: true,
deduplicate: true,
cse: process.env.COVERAGE === undefined,
constantOptimizer: true,
yul: true,
yulDetails: {
stackAllocation: true,
},
},
};
const compilerSettings = {
version: '0.8.9',
settings: {
evmVersion: process.env.EVM_VERSION || 'london',
optimizer: optimizerSettings,
},
};
const gasServiceSettings = {
version: '0.8.23',
settings: {
evmVersion: process.env.EVM_VERSION || 'london',
optimizer: optimizerSettings,
},
};
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
solidity: {
compilers: [compilerSettings],
// Fix the Proxy bytecodes
overrides: process.env.NO_OVERRIDES
? {}
: {
'contracts/AxelarGatewayProxy.sol': compilerSettings,
'contracts/BurnableMintableCappedERC20.sol': compilerSettings,
'contracts/DepositHandler.sol': compilerSettings,
'contracts/gas-service/AxelarGasServiceProxy.sol': compilerSettings,
'contracts/deposit-service/AxelarDepositServiceProxy.sol': compilerSettings,
'contracts/gas-service/AxelarGasService.sol': gasServiceSettings, // use optimized setting for the gas service
},
},
defaultNetwork: 'hardhat',
networks,
etherscan,
mocha: {
timeout: 4 * 60 * 60 * 1000, // 4 hrs
},
gasReporter: {
enabled: process.env.REPORT_GAS !== undefined,
},
contractSizer: {
runOnCompile: process.env.CHECK_CONTRACT_SIZE,
strict: process.env.CHECK_CONTRACT_SIZE,
},
};