-
Notifications
You must be signed in to change notification settings - Fork 2
/
hardhat.config.ts
148 lines (135 loc) · 3.56 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
import "@nomicfoundation/hardhat-toolbox";
import "@openzeppelin/hardhat-upgrades";
import dotenv from "dotenv";
import "hardhat-ignore-warnings";
import { HardhatUserConfig, extendProvider } from "hardhat/config";
import { task } from "hardhat/config";
import type { NetworkUserConfig } from "hardhat/types";
import { resolve } from "path";
import CustomProvider from "./CustomProvider";
import { setCodeMocked } from "./test/mockedSetup";
extendProvider(async (provider) => {
const newProvider = new CustomProvider(provider);
return newProvider;
});
task("compile:specific", "Compiles only the specified contract")
.addParam("contract", "The contract's path")
.setAction(async ({ contract }, hre) => {
// Adjust the configuration to include only the specified contract
hre.config.paths.sources = contract;
await hre.run("compile");
});
const dotenvConfigPath: string = process.env.DOTENV_CONFIG_PATH || "./.env";
dotenv.config({ path: resolve(__dirname, dotenvConfigPath) });
// Ensure that we have all the environment variables we need.
const mnemonic: string = process.env.MNEMONIC!;
const chainIds = {
zama: 8009,
local: 9000,
localCoprocessor: 12345,
sepolia: 11155111,
};
function getChainConfig(chain: keyof typeof chainIds): NetworkUserConfig {
let jsonRpcUrl: string;
switch (chain) {
case "local":
jsonRpcUrl = "http://localhost:8545";
break;
case "localCoprocessor":
jsonRpcUrl = "http://localhost:8745";
break;
case "zama":
jsonRpcUrl = "https://devnet.zama.ai";
break;
case "sepolia":
jsonRpcUrl = process.env.SEPOLIA_RPC_URL!;
}
return {
accounts: {
count: 10,
mnemonic,
path: "m/44'/60'/0'/0",
},
chainId: chainIds[chain],
url: jsonRpcUrl,
};
}
task("coverage").setAction(async (taskArgs, hre, runSuper) => {
hre.config.networks.hardhat.allowUnlimitedContractSize = true;
hre.config.networks.hardhat.blockGasLimit = 1099511627775;
await runSuper(taskArgs);
});
task("test", async (_taskArgs, hre, runSuper) => {
// Run modified test task
if (hre.network.name === "hardhat") {
await setCodeMocked(hre);
}
await runSuper();
});
const config: HardhatUserConfig = {
docgen: {
output: "docs",
pages: "files",
exclude: ["test/"],
},
defaultNetwork: "local",
namedAccounts: {
deployer: 0,
},
mocha: {
timeout: 500000,
},
gasReporter: {
currency: "USD",
enabled: process.env.REPORT_GAS ? true : false,
excludeContracts: [],
src: "./contracts",
},
networks: {
hardhat: {
accounts: {
count: 10,
mnemonic,
path: "m/44'/60'/0'/0",
},
},
sepolia: getChainConfig("sepolia"),
zama: getChainConfig("zama"),
localDev: getChainConfig("local"),
local: getChainConfig("local"),
localCoprocessor: getChainConfig("localCoprocessor"),
},
paths: {
artifacts: "./artifacts",
cache: "./cache",
sources: "./contracts",
tests: "./test",
},
solidity: {
version: "0.8.24",
settings: {
metadata: {
// Not including the metadata hash
// https://github.com/paulrberg/hardhat-template/issues/31
bytecodeHash: "none",
},
// Disable the optimizer when debugging
// https://hardhat.org/hardhat-network/#solidity-optimizer-support
optimizer: {
enabled: true,
runs: 800,
},
evmVersion: "cancun",
},
},
warnings: {
"*": {
"transient-storage": false,
},
},
typechain: {
outDir: "types",
target: "ethers-v6",
},
};
export default config;