generated from pooltogether/pooltogether-contracts-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathhardhat.config.ts
104 lines (98 loc) · 3.1 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import '@nomiclabs/hardhat-ethers';
import '@nomiclabs/hardhat-etherscan';
import '@nomiclabs/hardhat-waffle';
import '@typechain/hardhat';
import 'hardhat-abi-exporter';
import 'hardhat-deploy';
import 'hardhat-deploy-ethers';
import 'hardhat-gas-reporter';
import 'hardhat-dependency-compiler';
import 'hardhat-log-remover';
import 'solidity-coverage';
import { HardhatUserConfig } from 'hardhat/config';
import * as forkTasks from './scripts/fork';
import networks from './hardhat.network';
const optimizerEnabled = !process.env.OPTIMIZER_DISABLED;
const config: HardhatUserConfig = {
abiExporter: {
path: './abis',
clear: true,
flat: true,
},
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,
dependencyCompiler: {
paths: [
'@openzeppelin/contracts/token/ERC20/IERC20.sol',
'@pooltogether/v4-core/contracts/Ticket.sol',
'@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol',
'@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol',
'@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol',
'@pooltogether/v4-core/contracts/interfaces/IReserve.sol',
'@pooltogether/v4-core/contracts/interfaces/IStrategy.sol',
'@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol',
'@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol',
'@pooltogether/v4-core/contracts/test/ERC20Mintable.sol',
'@pooltogether/v4-core/contracts/test/ReserveHarness.sol',
'@pooltogether/v4-core/contracts/test/TicketHarness.sol',
],
},
external: {
contracts: [
{
artifacts:
'node_modules/@pooltogether/aave-yield-source/artifacts/contracts/yield-source/ATokenYieldSource.sol/',
},
{
artifacts: 'node_modules/@pooltogether/v4-core/artifacts/contracts/',
},
],
},
solidity: {
compilers: [
{
version: '0.8.6',
settings: {
optimizer: {
enabled: optimizerEnabled,
runs: 2000,
},
evmVersion: 'berlin',
},
},
{
version: '0.7.6',
settings: {
optimizer: {
enabled: optimizerEnabled,
runs: 2000,
},
evmVersion: 'berlin',
},
},
],
},
typechain: {
outDir: './types',
target: 'ethers-v5',
},
};
forkTasks;
export default config;