-
Notifications
You must be signed in to change notification settings - Fork 15
/
hardhat.config.ts
74 lines (72 loc) · 1.67 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
import "dotenv/config";
import "@nomiclabs/hardhat-etherscan";
import "@typechain/hardhat";
import "@nomiclabs/hardhat-ethers";
import "@nomiclabs/hardhat-waffle";
import "hardhat-dependency-compiler";
import "hardhat-abi-exporter";
import "hardhat-deploy";
import "hardhat-deploy-ethers";
import "hardhat-gas-reporter";
import "solidity-coverage";
import { HardhatUserConfig } from "hardhat/config";
import networks from "./hardhat.network";
const config: HardhatUserConfig = {
abiExporter: {
path: "./abis",
runOnCompile: true,
clear: true,
flat: false,
except: ["./abis/ERC20.sol", "./abis/ERC721.sol"],
},
// @ts-ignore
anvil: {
url: "http://127.0.0.1:8545/",
launch: false, // if set to `true`, it will spawn a new instance if the plugin is initialized, if set to `false` it expects an already running anvil instance
},
typechain: {
outDir: "types",
target: "ethers-v5",
},
external: {
contracts: [
{
artifacts:
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol:IERC721Enumerable",
},
],
},
dependencyCompiler: {
paths: [],
},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
},
gasReporter: {
currency: "USD",
gasPrice: 100,
enabled: process.env.REPORT_GAS ? true : false,
coinmarketcap: process.env.COINMARKETCAP_API_KEY,
maxMethodDiff: 10,
},
mocha: {
timeout: 30000,
},
namedAccounts: {
deployer: {
default: 0,
},
},
networks,
solidity: {
version: "0.8.15",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
evmVersion: "istanbul",
},
},
};
export default config;