-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhardhat.config.ts
49 lines (45 loc) · 947 Bytes
/
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
import "@nomicfoundation/hardhat-toolbox";
import "@solarity/hardhat-zkit";
import "@solarity/chai-zkit";
import "tsconfig-paths/register";
import { HardhatUserConfig } from "hardhat/config";
import * as dotenv from "dotenv";
dotenv.config();
const config: HardhatUserConfig = {
networks: {
hardhat: {
allowUnlimitedContractSize: true,
},
},
solidity: {
compilers: [
{
version: "0.8.27",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
],
},
zkit: {
compilationSettings: {
onlyFiles: [],
},
},
gasReporter: {
currency: "USD",
gasPrice: 50,
enabled: false,
coinmarketcap: `${process.env.COINMARKETCAP_KEY}`,
},
typechain: {
outDir: "generated-types/ethers",
target: "ethers-v6",
alwaysGenerateOverloads: true,
discriminateTypes: true,
},
};
export default config;