-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathhardhat.config.ts
71 lines (66 loc) · 1.7 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
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import "@openzeppelin/hardhat-upgrades";
import * as tenderly from "@tenderly/hardhat-tenderly";
tenderly.setup({ automaticVerifications: false });
const config: HardhatUserConfig = {
networks: {
tenderly: {
// npm run spawn-devnet-to-hardhat project-slug devnet-template-slug
// or spawn in Dashboard and copy manually
url: "RPC URL",
},
},
// point to your project
tenderly: {
project: "project-slug",
username: "username or orgname",
},
solidity: {
compilers: [{ version: "0.8.18" }],
overrides: {
// indicate the exact settings used by OZ for compiling the contracts you're using
"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol": {
version: "0.8.9",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
"@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol":
{
version: "0.8.9",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
"@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol": {
version: "0.8.9",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
"@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol": {
version: "0.8.9",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
},
},
mocha: {
timeout: 4 * 60 * 1000,
},
};
export default config;