-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.js
47 lines (46 loc) · 1.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
/**
* @type import('hardhat/config').HardhatUserConfig
*/
require("@nomiclabs/hardhat-waffle");
require("@nomiclabs/hardhat-ethers");
require("@nomiclabs/hardhat-web3");
require("@nomiclabs/hardhat-etherscan");
require("hardhat-deploy");
require("./tasks/accounts");
require("./tasks/balance");
require("./tasks/fund-link");
require("./tasks/block-number");
require("./tasks/dNFT");
module.exports = {
defaultNetwork: "rinkeby",
networks: {
hardhat: {
forking: {
//this env var isn't mandatory for users who want to deploy on public networks
url:
process.env.ALCHEMY_MAINNET_RPC_URL ||
"https://eth-mainnet.alchemyapi.io/v2/your-api-key",
},
},
rinkeby: {
url: process.env.RINKEBY_RPC_URL,
accounts: [process.env.PRIVATE_KEY],
saveDeployments: true,
},
},
etherscan: {
// Your API key for Etherscan
// Obtain one at https://etherscan.io/
apiKey: process.env.ETHSCAN_API_KEY,
},
namedAccounts: {
deployer: {
default: 0, // here this will by default take the first account as deployer
1: 0, // similarly on mainnet it will take the first account as deployer. Note though that depending on how hardhat network are configured, the account 0 on one network can be different than on another
},
feeCollector: {
default: 1,
},
},
solidity: "0.6.7",
};