-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhardhat.config.js
More file actions
66 lines (64 loc) · 1.78 KB
/
hardhat.config.js
File metadata and controls
66 lines (64 loc) · 1.78 KB
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
require("@nomicfoundation/hardhat-toolbox");
require("@nomiclabs/hardhat-etherscan");
require("dotenv").config();
require("hardhat-gas-reporter");
require("solidity-coverage");
// Load Environment Variables
const PRIVATE_KEY = process.env.PRIVATE_KEY;
const NOVANET_RPC_TESTNET = process.env.NOVANET_RPC_TESTNET || "https://testnet-rpc.novanet.io";
const NOVANET_RPC_MAINNET = process.env.NOVANET_RPC_MAINNET || "https://rpc.novanet.io";
const ETHERSCAN_API_KEY = process.env.ETHERSCAN_API_KEY; // For contract verification
module.exports = {
defaultNetwork: "hardhat",
networks: {
hardhat: {
allowUnlimitedContractSize: false,
forking: {
url: NOVANET_RPC_TESTNET,
blockNumber: 100000, // Adjust as needed
}
},
testnet: {
url: NOVANET_RPC_TESTNET,
accounts: [PRIVATE_KEY],
chainId: 1030,
gas: "auto",
gasPrice: 5000000000, // 5 Gwei
},
mainnet: {
url: NOVANET_RPC_MAINNET,
accounts: [PRIVATE_KEY],
chainId: 2030,
gas: "auto",
gasPrice: 5000000000, // 5 Gwei
}
},
etherscan: {
apiKey: ETHERSCAN_API_KEY,
},
solidity: {
version: "0.8.20",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
paths: {
sources: "./contracts",
tests: "./test",
cache: "./cache",
artifacts: "./artifacts"
},
mocha: {
timeout: 40000,
},
gasReporter: {
enabled: true,
currency: "USD",
coinmarketcap: process.env.COINMARKETCAP_API_KEY,
outputFile: "gas-report.txt",
noColors: true,
}
};