-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
54 lines (51 loc) · 1.36 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
import {HardhatUserConfig} from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import "@nomiclabs/hardhat-ganache";
import "hardhat-contract-sizer";
import "hardhat-gas-reporter";
import "solidity-coverage";
import "@typechain/hardhat";
import "@nomiclabs/hardhat-ethers";
import "@nomiclabs/hardhat-waffle";
import "@nomiclabs/hardhat-etherscan";
import * as dotenv from "dotenv";
dotenv.config();
const HARDHAT = process.env.HARDHAT;
const BNB_RPC_URL = process.env.BNB_RPC_URL;
const PRIVATE_KEY: any = process.env.PRIVATE_KEY;
const GOERLI_RPC_URL = process.env.ETH_GOERLI_RPC_URL;
const ETHERSCAN_API_KEY = process.env.ETHERSCAN_API_KEY;
const config: HardhatUserConfig = {
defaultNetwork: "hardhat",
gasReporter: {
enabled: true,
currency: "USD"
},
contractSizer: {
alphaSort: true,
disambiguatePaths: false,
runOnCompile: true,
strict: true
},
networks: {
localhost: {
url: HARDHAT,
chainId: 31337
},
goerli: {
url: GOERLI_RPC_URL,
chainId: 5,
accounts: [PRIVATE_KEY]
},
bnb: {
url: BNB_RPC_URL,
chainId: 97,
accounts: [PRIVATE_KEY]
}
},
etherscan: {
apiKey: ETHERSCAN_API_KEY
},
solidity: "0.8.17"
};
export default config;