-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathhardhat.config.ts
More file actions
134 lines (125 loc) · 3.81 KB
/
hardhat.config.ts
File metadata and controls
134 lines (125 loc) · 3.81 KB
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
import "@nomicfoundation/hardhat-toolbox";
import type { HardhatUserConfig, HttpNetworkUserConfig } from "hardhat/types";
import "hardhat-deploy";
import type { DeterministicDeploymentInfo } from "hardhat-deploy/dist/types";
import dotenv from "dotenv";
import yargs from "yargs";
import { hideBin } from "yargs/helpers";
import { getSingletonFactoryInfo } from "@safe-global/safe-singleton-factory";
import "./src/tasks/local_verify";
import "./src/tasks/deploy_contracts";
import "./src/tasks/show_codesize";
const argv = yargs(hideBin(process.argv))
.option("network", {
type: "string",
default: "hardhat",
})
.help(false)
.version(false)
.parseSync();
dotenv.config({ quiet: true });
const {
NODE_URL,
INFURA_KEY,
MNEMONIC,
ETHERSCAN_API_KEY,
PK,
SOLIDITY_VERSION,
SOLIDITY_SETTINGS,
HARDHAT_CHAIN_ID,
HARDHAT_SECP256R1_PRECOMPILE,
HARDHAT_ENABLE_GAS_REPORTER,
} = process.env;
if (["mainnet", "sepolia"].includes(argv.network) && INFURA_KEY === undefined) {
throw new Error(`Could not find Infura key in env, unable to connect to network ${argv.network}`);
}
const DEFAULT_MNEMONIC = "candy maple cake sugar pudding cream honey rich smooth crumble sweet treat";
const DEFAULT_SOLIDITY_VERSION = "0.7.6";
const sharedNetworkConfig: HttpNetworkUserConfig = {};
if (PK) {
sharedNetworkConfig.accounts = [PK];
} else {
sharedNetworkConfig.accounts = {
mnemonic: MNEMONIC ?? DEFAULT_MNEMONIC,
};
}
const soliditySettings = SOLIDITY_SETTINGS ? JSON.parse(SOLIDITY_SETTINGS) : undefined;
const deterministicDeployment = (network: string): DeterministicDeploymentInfo => {
const info = getSingletonFactoryInfo(parseInt(network));
if (!info) {
throw new Error(
`Safe factory not found for network ${network}. You can request a new deployment at https://github.com/safe-global/safe-singleton-factory.`,
);
}
return {
factory: info.address,
deployer: info.signerAddress,
funding: `${BigInt(info.gasLimit) * BigInt(info.gasPrice)}`,
signedTx: info.transaction,
};
};
const userConfig: HardhatUserConfig = {
paths: {
artifacts: "build/artifacts",
cache: "build/cache",
deploy: "src/deploy",
sources: "contracts",
},
typechain: {
outDir: "typechain-types",
target: "ethers-v6",
},
solidity: {
compilers: [
{ version: SOLIDITY_VERSION ?? DEFAULT_SOLIDITY_VERSION, settings: soliditySettings },
{ version: DEFAULT_SOLIDITY_VERSION },
],
},
networks: {
hardhat: {
allowUnlimitedContractSize: true,
blockGasLimit: 100000000,
gas: 100000000,
chainId: Number(HARDHAT_CHAIN_ID ?? 31337),
enableRip7212: HARDHAT_SECP256R1_PRECOMPILE === "1",
},
mainnet: {
...sharedNetworkConfig,
url: `https://mainnet.infura.io/v3/${INFURA_KEY}`,
},
sepolia: {
...sharedNetworkConfig,
url: `https://sepolia.infura.io/v3/${INFURA_KEY}`,
},
gnosis: {
...sharedNetworkConfig,
url: `https://rpc.gnosischain.com`,
},
zksync: {
...sharedNetworkConfig,
url: "https://mainnet.era.zksync.io",
},
...(NODE_URL
? {
custom: {
...sharedNetworkConfig,
url: NODE_URL,
},
}
: {}),
},
deterministicDeployment,
namedAccounts: {
deployer: 0,
},
mocha: {
timeout: 2000000,
},
etherscan: {
apiKey: ETHERSCAN_API_KEY,
},
gasReporter: {
enabled: HARDHAT_ENABLE_GAS_REPORTER === "1",
},
};
export default userConfig;