generated from turbo-eth/template-hardhat-sol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
66 lines (63 loc) · 1.51 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import 'dotenv/config';
import '@nomiclabs/hardhat-etherscan';
import '@typechain/hardhat';
import '@nomiclabs/hardhat-ethers';
import '@nomiclabs/hardhat-waffle';
import 'hardhat-dependency-compiler';
import 'hardhat-abi-exporter';
import 'hardhat-deploy';
import 'hardhat-deploy-ethers';
import 'hardhat-gas-reporter';
import 'solidity-coverage';
import { HardhatUserConfig } from 'hardhat/config';
import networks from './hardhat.network';
const optimizerEnabled = !process.env.OPTIMIZER_DISABLED;
const config: HardhatUserConfig = {
abiExporter: {
path: './abis',
runOnCompile: true,
clear: true,
flat: false,
except: ['./abis/ERC20.sol', './abis/ERC721.sol'],
},
typechain: {
outDir: 'types',
target: 'ethers-v5',
},
dependencyCompiler: {
paths: [
'@delegatable/delegatable-sol/contracts/enforcers/TimestampAfterEnforcer.sol',
'@delegatable/delegatable-sol/contracts/enforcers/TimestampBeforeEnforcer.sol',
],
},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
},
gasReporter: {
currency: 'USD',
gasPrice: 100,
enabled: process.env.REPORT_GAS ? true : false,
coinmarketcap: process.env.COINMARKETCAP_API_KEY,
maxMethodDiff: 10,
},
mocha: {
timeout: 30000,
},
namedAccounts: {
deployer: {
default: 0,
},
},
networks,
solidity: {
version: '0.8.15',
settings: {
optimizer: {
enabled: optimizerEnabled,
runs: 200,
},
evmVersion: 'istanbul',
},
},
};
export default config;