-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.js
77 lines (73 loc) · 2.14 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
require("@nomicfoundation/hardhat-toolbox")
require("dotenv").config()
require("hardhat-deploy")
require("@nomiclabs/hardhat-ethers")
const GOERLI_RPC_URL =
process.env.GOERLI_RPC_URL || "https://eth-goerli/example"
const PRIVATE_KEY =
process.env.PRIVATE_KEY ||
"0x0000000000000000000000000000000000000000000000000000000000000000"
const ETHERSCAN_API_KEY = process.env.ETHERSCAN_API_KEY || "key"
const LOCAL_HOST_API = process.env.LOCAL_HOST_API || "key"
const COIN_MARKET_CAP_API = process.env.COIN_MARKET_CAP_API || "key"
const RINKEBY_RPC_URL = process.env.RINKEBY_RPC_URL || "key"
const RINKEBY_PRIVATE_KEY =
process.env.RINKEBY_PRIVATE_KEY ||
"0x0000000000000000000000000000000000000000000000000000000000000000"
const POLYGON_RPC_URL = process.env.POLYGON_RPC_URL || "key"
const POLYGON_PRIVATE_KEY =
process.env.POLYGON_PRIVATE_KEY ||
"0x0000000000000000000000000000000000000000000000000000000000000000"
module.exports = {
//solidity: "0.8.8",
solidity: {
compilers: [{ version: "0.8.8" }, { version: "0.6.6" }],
},
networks: {
goerli: {
url: GOERLI_RPC_URL,
accounts: [PRIVATE_KEY],
chainId: 5,
blockConfirmations: 6,
},
rinkeby: {
url: RINKEBY_RPC_URL,
accounts: [RINKEBY_PRIVATE_KEY],
chainId: 4,
blockConfirmations: 6,
},
polygon: {
url: POLYGON_RPC_URL,
accounts: [POLYGON_PRIVATE_KEY],
chainId: 80001,
blockConfirmations: 6,
},
localhost: {
url: LOCAL_HOST_API,
//accounts:
chainId: 31337,
},
},
etherscan: {
apiKey: ETHERSCAN_API_KEY,
},
namedAccounts: {
deployer: {
default: 0,
},
user: {
default: 1,
},
},
gasReporter: {
enabled: false,
outputFile: "gas-report.txt",
noColors: true,
currency: "USD",
coinmarketcap: COIN_MARKET_CAP_API,
token: "MATIC",
},
mocha: {
timeout: 200000, // 200 seconds max for running tests
},
}