-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathhardhat.config.ts
81 lines (75 loc) · 1.86 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-verify";
import "@nomicfoundation/hardhat-chai-matchers";
import "@openzeppelin/hardhat-upgrades";
import "@typechain/hardhat";
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.16',
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)
},
mainnet: {
url: getCustomUrl(process.env.URL_W3_ETHEREUM),
accounts: getCustomPrivateKey(process.env.PRIVATE_KEY_FOR_ETHEREUM),
gasPrice: getGasPrice(process.env.GASPRICE)
},
schain: {
url: getCustomUrl(process.env.URL_W3_S_CHAIN),
accounts: getCustomPrivateKey(process.env.PRIVATE_KEY_FOR_SCHAIN),
}
},
etherscan: {
apiKey: process.env.ETHERSCAN
},
typechain: {
outDir: "typechain/",
externalArtifacts: [
'node_modules/@openzeppelin/upgrades-core/artifacts/AdminUpgradeabilityProxy.json',
'node_modules/@openzeppelin/upgrades-core/artifacts/ProxyAdmin.json'
]
}
};
export default config;