-
Notifications
You must be signed in to change notification settings - Fork 112
/
hardhat.config.8.13.ts
72 lines (70 loc) · 1.63 KB
/
hardhat.config.8.13.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
63
64
65
66
67
68
69
70
71
72
import { config as dotEnvConfig } from "dotenv";
dotEnvConfig();
import "@openzeppelin/hardhat-upgrades";
import "@nomiclabs/hardhat-waffle";
import "@typechain/hardhat";
import "@nomiclabs/hardhat-ethers";
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" },
},
testnet: {
url: "https://data-seed-prebsc-1-s1.binance.org:8545/",
accounts: [process.env.BSC_TESTNET_PRIVATE_KEY],
},
mainnet: {
url: process.env.BSC_MAINNET_RPC,
accounts: [process.env.BSC_MAINNET_PRIVATE_KEY],
},
},
namedAccounts: {
deployer: {
default: 0,
},
},
solidity: {
version: "0.8.13",
settings: {
optimizer: {
enabled: true,
runs: 1,
},
evmVersion: "istanbul",
outputSelection: {
"*": {
"": ["ast"],
"*": [
"evm.bytecode.object",
"evm.deployedBytecode.object",
"abi",
"evm.bytecode.sourceMap",
"evm.deployedBytecode.sourceMap",
"metadata",
],
},
},
},
},
paths: {
sources: "./solidity/contracts/8.13",
tests: "./test",
cache: "./cache",
artifacts: "./artifacts",
},
typechain: {
outDir: "./typechain",
target: process.env.TYPECHAIN_TARGET || "ethers-v5",
},
mocha: {
timeout: 50000,
},
};