-
Notifications
You must be signed in to change notification settings - Fork 9
/
hardhat.config.8.19.ts
58 lines (56 loc) · 1.31 KB
/
hardhat.config.8.19.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
import { config as dotEnvConfig } from "dotenv";
dotEnvConfig();
import "@openzeppelin/hardhat-upgrades";
import "@nomiclabs/hardhat-waffle";
import "hardhat-typechain";
import "hardhat-deploy";
import "solidity-coverage";
module.exports = {
defaultNetwork: "hardhat",
networks: {
hardhat: {
chainId: 31337,
gas: 12000000,
blockGasLimit: 0x1fffffffffffff,
allowUnlimitedContractSize: true,
timeout: 1800000,
accounts: { mnemonic: "test test test test test test test test test test test junk" },
},
mainnet: {
url: process.env.BSC_MAINNET_RPC || "",
accounts: process.env.BSC_MAINNET_PRIVATE_KEY ? [process.env.BSC_MAINNET_PRIVATE_KEY] : [],
},
mainnetfork: {
url: process.env.FORK_RPC || "",
accounts: process.env.BSC_MAINNET_PRIVATE_KEY ? [process.env.BSC_MAINNET_PRIVATE_KEY] : [],
timeout: 500000,
},
},
namedAccounts: {
deployer: {
default: 0,
},
},
solidity: {
version: "0.8.19",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
paths: {
sources: "./contracts/8.19",
tests: "./tests/unit",
cache: "./cache",
artifacts: "./artifacts",
},
typechain: {
outDir: "./typechain",
target: "ethers-v5",
},
mocha: {
timeout: 50000,
},
};