-
Notifications
You must be signed in to change notification settings - Fork 3
/
hardhat.config.ts
62 lines (57 loc) · 1.37 KB
/
hardhat.config.ts
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
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import "@openzeppelin/hardhat-upgrades";
import "@nomicfoundation/hardhat-chai-matchers";
import * as dotenv from "dotenv";
dotenv.config();
const RPC_URL = process.env.RPC_URL;
const PRIVATE_KEY = process.env.PRIVATE_KEY;
const COINMARKETCAP_API_KEY = process.env.COINMARKETCAP_API_KEY
const config: HardhatUserConfig = {
solidity: {
version: '0.8.24',
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
defaultNetwork: "testnet",
networks: {
mainnet: {
chainId: 295, // hedera mainnet chainId
url: RPC_URL,
accounts: [PRIVATE_KEY || ""],
},
testnet: {
chainId: 296, // hedera testnet chainId
url: RPC_URL,
accounts: [PRIVATE_KEY || ""],
timeout: 200000000,
allowUnlimitedContractSize: true,
},
previewnet: {
chainId: 297, // hedera previewnet chainId
url: RPC_URL,
accounts: [PRIVATE_KEY || ""],
},
hardhat: {
gas: 30000000,
allowUnlimitedContractSize: true,
// forking: {
// url: process.env.RPC_URL || "",
// },
},
},
gasReporter: {
enabled: true,
currency: "USD",
coinmarketcap: COINMARKETCAP_API_KEY,
token: 'HBAR'
},
mocha: {
timeout: 100000000,
},
};
export default config;