-
Notifications
You must be signed in to change notification settings - Fork 5
/
hardhat.config.ts
50 lines (47 loc) · 1.13 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
import "@nomicfoundation/hardhat-verify";
import "@nomiclabs/hardhat-ethers";
import "@nomiclabs/hardhat-waffle";
import "@openzeppelin/hardhat-upgrades";
import "@typechain/hardhat";
import "hardhat-abi-exporter";
import "hardhat-deploy";
import "hardhat-deploy-ethers";
import "hardhat-gas-reporter";
import { HardhatUserConfig } from "hardhat/config";
import "solidity-coverage";
import {
EtherscanConfig,
HardhatGasReporterConfig,
HardhatSolidityConfig,
getHardhatNetworkConfig,
} from "./SmartContractProjectConfig/config";
const networks = getHardhatNetworkConfig();
const solidity = HardhatSolidityConfig;
const gasReporter = HardhatGasReporterConfig;
const etherscan = EtherscanConfig;
const config: HardhatUserConfig = {
networks,
mocha: {
timeout: 500000,
},
solidity,
namedAccounts: {
deployer: {
default: 0,
},
},
etherscan,
gasReporter,
abiExporter: {
path: "./abi",
runOnCompile: true,
flat: true,
only: ["HappyRedPacket", "HappyRedPacket_ERC721"],
},
typechain: {
outDir: "types",
target: "ethers-v5",
alwaysGenerateOverloads: false,
},
};
export default config;