forked from harvestfi/harvest-strategy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.js
56 lines (54 loc) · 1.17 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
require("@nomiclabs/hardhat-etherscan");
require("@nomiclabs/hardhat-truffle5");
require("@nomiclabs/hardhat-web3");
require("@nomiclabs/hardhat-ethers");
require('hardhat-contract-sizer');
const keys = require('./dev-keys.json');
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
defaultNetwork: "hardhat",
networks: {
hardhat: {
accounts: {
mnemonic: keys.mnemonic,
},
allowUnlimitedContractSize: true,
forking: {
url: "https://eth-mainnet.alchemyapi.io/v2/" + keys.alchemyKeyMainnet,
blockNumber: 20514630, // <-- edit here
},
},
mainnet: {
url: "https://eth-mainnet.alchemyapi.io/v2/" + keys.alchemyKeyMainnet,
accounts: {
mnemonic: keys.mnemonic,
},
},
},
solidity: {
compilers: [{
version: "0.8.26",
settings: {
optimizer: {
enabled: true,
runs: 200
},
},
},
],
},
mocha: {
timeout: 2000000,
},
etherscan: {
apiKey: keys.etherscanAPI,
},
contractSizer: {
alphaSort: false,
disambiguatePaths: false,
runOnCompile: false,
strict: false,
},
};