-
Notifications
You must be signed in to change notification settings - Fork 2
/
hardhat.config.js
90 lines (82 loc) · 3.36 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
86
87
88
89
90
require("@nomiclabs/hardhat-waffle");
require('@nomiclabs/hardhat-ethers');
require('@openzeppelin/hardhat-upgrades');
require("hardhat-gas-reporter");
require("solidity-coverage");
require("@nomiclabs/hardhat-solhint");
// for using .env file which contains private info.
require('dotenv').config();
const POLYGON_TEST_PRIVATE_KEY = process.env.POLYGON_TEST_PRIVATE_KEY;
const POLYGON_TEST_API_KEY = process.env.POLYGON_TEST_API_KEY;
// This is a sample Hardhat task. To learn how to create your own go to
// https://hardhat.org/guides/create-task.html
task("accounts", "Prints the list of accounts", async (taskArgs, hre) => {
const accounts = await hre.ethers.getSigners();
for (const account of accounts) {
console.log(account.address);
}
});
// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
// You can customize which network is used by default when running Hardhat by setting
// the config's defaultNetwork field. If you omit this config, its default value is "hardhat"
defaultNetwork: "hardhat",
networks: {
hardhat: {
initialBaseFeePerGas: 0, // workaround from https://github.com/sc-forks/solidity-coverage/issues/652#issuecomment-896330136 . Remove when that issue is closed.
},
// rinkeby: {
// url: "https://eth-mainnet.alchemyapi.io/v2/123abc123abc123abc123abc123abcde",
// accounts: [privateKey1, privateKey2, ...]
// }
polygon_test: {
//url: `https://rpc-mumbai.maticvigil.com/v1/${POLYGON_TEST_API_KEY}`,
url: "https://matic-mumbai.chainstacklabs.com/",
chainId: 80001,
// The address to use as default sender. If not present the first account of the node is used
//from: ,
// Its value should be "auto" or a number. If a number is used, it will be the gas limit used by default in every transaction.
// If "auto" is used, the gas limit will be automatically estimated. Default value: "auto"
//gas: "auto",
// Its value should be "auto" or a number. This parameter behaves like gas. Default value: "auto"
//gasPrice: "auto",
//gasPrice: 8000000000, // default is 'auto' which breaks chains without the london hardfork
// A number used to multiply the results of gas estimation to give it some slack due to the uncertainty
// of the estimation process. Default value: 1
//gasMultiplier: 1,
// This field controls which accounts Hardhat uses. It can use the node's accounts (by setting it to "remote"), a list
// of local accounts (by setting it to an array of hex-encoded private keys), or use an HD Wallet. Default value: "remote"
accounts: [`0x${POLYGON_TEST_PRIVATE_KEY}`],
// You can use this field to set extra HTTP Headers to be used when making JSON-RPC requests. It accepts a JavaScript
// object which maps header names to their values. Default value: undefined
//httpHeaders: '',
timeout: 60000,
}
},
gasReporter: {
enabled: process.env.REPORT_GAS !== undefined,
currency: "USD",
},
solidity: {
version: "0.8.4",
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
},
paths: {
sources: "./contracts",
tests: "./test",
cache: "./cache",
artifacts: "./artifacts"
},
mocha: {
timeout: 20000
}
};