-
Notifications
You must be signed in to change notification settings - Fork 3
/
hardhat.config.ts
62 lines (56 loc) · 1.21 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 "@openzeppelin/hardhat-upgrades";
import "@nomiclabs/hardhat-waffle";
import "@nomiclabs/hardhat-web3";
import "hardhat-typechain";
import "solidity-coverage";
import * as dotenv from "dotenv";
dotenv.config();
function getCustomUrl(url: string | undefined) {
if (url) {
return url;
} else {
return "http://127.0.0.1:8545"
}
}
function getCustomPrivateKey(privateKey: string | undefined) {
if (privateKey) {
return [privateKey];
} else {
return [];
}
}
function getGasPrice(gasPrice: string | undefined) {
if (gasPrice) {
return parseInt(gasPrice, 10);
} else {
return "auto";
}
}
const config: HardhatUserConfig = {
defaultNetwork: "hardhat",
solidity: {
version: '0.8.13',
settings: {
optimizer:{
enabled: true,
runs: 200
}
}
},
mocha: {
timeout: 1000000
},
networks: {
hardhat: {
blockGasLimit: 12000000,
allowUnlimitedContractSize: true
},
custom: {
url: getCustomUrl(process.env.ENDPOINT),
accounts: getCustomPrivateKey(process.env.PRIVATE_KEY),
gasPrice: getGasPrice(process.env.GASPRICE)
}
}
};
export default config;