forked from wighawag/blockies-nft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
102 lines (99 loc) · 2.4 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
import 'dotenv/config';
import {HardhatUserConfig} from 'hardhat/types';
import 'hardhat-deploy';
import '@nomiclabs/hardhat-ethers';
import 'hardhat-gas-reporter';
import '@typechain/hardhat';
import 'solidity-coverage';
import 'hardhat-deploy-tenderly';
import {node_url, accounts, addForkConfiguration} from './utils/network';
const config: HardhatUserConfig = {
solidity: {
compilers: [
{
version: '0.8.16',
settings: {
optimizer: {
enabled: true,
runs: 2000,
},
},
},
],
},
namedAccounts: {
deployer: {
default: 0,
mainnet: 'external://0xf78cd306b23031de9e739a5bcde61764e82ad5ef',
},
initialOwnerOfBlockyZero: {
hardhat: 'deployer',
default: '0xf78cd306b23031de9e739a5bcde61764e82ad5ef',
},
},
networks: addForkConfiguration({
hardhat: {
initialBaseFeePerGas: 0, // to fix : https://github.com/sc-forks/solidity-coverage/issues/652, see https://github.com/sc-forks/solidity-coverage/issues/652#issuecomment-896330136
},
localhost: {
url: node_url('localhost'),
accounts: accounts(),
},
staging: {
url: node_url('rinkeby'),
accounts: accounts('rinkeby'),
},
production: {
url: node_url('mainnet'),
accounts: accounts('mainnet'),
},
mainnet: {
url: node_url('mainnet'),
accounts: accounts('mainnet'),
},
rinkeby: {
url: node_url('rinkeby'),
accounts: accounts('rinkeby'),
},
kovan: {
url: node_url('kovan'),
accounts: accounts('kovan'),
},
goerli: {
url: node_url('goerli'),
accounts: accounts('goerli'),
},
}),
paths: {
sources: process.env.COVERAGE_SRC ? process.env.COVERAGE_SRC : 'src',
},
gasReporter: {
currency: 'USD',
gasPrice: 100,
enabled: process.env.REPORT_GAS ? true : false,
coinmarketcap: process.env.COINMARKETCAP_API_KEY,
maxMethodDiff: 10,
},
typechain: {
outDir: 'typechain',
target: 'ethers-v5',
},
mocha: {
timeout: 0,
},
external: process.env.HARDHAT_FORK
? {
deployments: {
// process.env.HARDHAT_FORK will specify the network that the fork is made from.
// these lines allow it to fetch the deployments from the network being forked from both for node and deploy task
hardhat: ['deployments/' + process.env.HARDHAT_FORK],
localhost: ['deployments/' + process.env.HARDHAT_FORK],
},
}
: undefined,
tenderly: {
project: 'blockies',
username: process.env.TENDERLY_USERNAME as string,
},
};
export default config;