forked from trifle-labs/anybody-problem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.js
145 lines (143 loc) · 3.9 KB
/
hardhat.config.js
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
require("hardhat-circom");
require("@nomiclabs/hardhat-waffle");
require("hardhat-gas-reporter");
require("hardhat-contract-sizer");
require("dotenv").config();
require("@nomiclabs/hardhat-etherscan");
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
mocha: {
timeout: 100_000_000
},
solidity: {
compilers: [
{
version: "0.6.11",
},
{
version: "0.8.15",
settings: {
viaIR: false,
optimizer: { enabled: true, runs: 200 },
},
},
],
},
networks: {
hardhat: {
gasPrice: 10_000_000_000,
blockGasLimit: 30_000_000,
chainId: 12345,
// loggingEnabled: true
},
zkEVMGoerli: {
url: 'https://rpc.public.zkevm-test.net',
accounts: { mnemonic: process.env.deploymentKey },
},
zkEVM: {
url: 'https://zkevm-rpc.com',
accounts: { mnemonic: process.env.deploymentKey },
},
chiliz: {
url: "https://spicy-rpc.chiliz.com",
accounts: { mnemonic: process.env.deploymentKey },
},
linea: {
url: "https://linea-testnet.rpc.thirdweb.com",
accounts: { mnemonic: process.env.deploymentKey },
},
baseSepolia: {
url: "https://sepolia.base.org",
accounts: { mnemonic: process.env.deploymentKey },
},
localhost: {
url: "http://127.0.0.1:8545",
chainId: 1337,
accounts: { mnemonic: "candy maple cake sugar pudding cream honey rich smooth crumble sweet treat" }
},
optimistic: {
url: "http://127.0.0.1:8545",
accounts: { mnemonic: "test test test test test test test test test test test junk" },
},
rinkeby: {
url: 'https://rinkeby.infura.io/v3/' + process.env.INFURA_API_KEY,
accounts: { mnemonic: process.env.deploymentKey },
},
kovan: {
url: 'https://kovan.infura.io/v3/' + process.env.INFURA_API_KEY,
accounts: { mnemonic: process.env.deploymentKey },
gas: 5000000,
},
optimismkovan: {
url: "https://kovan.optimism.io",
accounts: { mnemonic: process.env.deploymentKey },
},
optimismgoerli: {
url: "https://opt-goerli.g.alchemy.com/v2/AABlV686HfIY7zb97aYZCx9uUDCb2m_R",
accounts: { mnemonic: process.env.deploymentKey },
},
goerli: {
url: 'https://goerli.infura.io/v3/' + process.env.INFURA_API_KEY,
accounts: { mnemonic: process.env.deploymentKey },
gasPrice: 10_000_000_000, // 10 GWEI
},
sepolia: {
url: 'https://sepolia.infura.io/v3/' + process.env.INFURA_API_KEY,
accounts: { mnemonic: process.env.deploymentKey },
gasPrice: 15_000_000_000, // 15 GWEI
},
mainnet: {
url: 'https://mainnet.infura.io/v3/' + process.env.INFURA_API_KEY,
accounts: { mnemonic: process.env.deploymentKey },
gasPrice: 50_000_000_000,
},
},
gasReporter: {
currency: "EUR",
gasPrice: 42,
url: "http://localhost:8545",
coinmarketcap: "38b60711-0559-45f4-8bda-e72f446c8278",
enabled: true,
},
etherscan: {
// Your API key for Etherscan
// Obtain one at https://etherscan.io/
apiKey: process.env.etherscanApiNew,
},
contractSizer: {
alphaSort: true,
disambiguatePaths: true,
runOnCompile: true,
strict: true,
},
circom: {
inputBasePath: "./circuits",
ptau: "https://hermez.s3-eu-west-1.amazonaws.com/powersOfTau28_hez_final_20.ptau",
circuits: [
{
name: "wanderMain",
// No protocol, so it defaults to groth16
},
{
name: "viperMain",
// No protocol, so it defaults to groth16
},
// {
// name: "division",
// // No protocol, so it defaults to groth16
// },
// {
// name: "simple-polynomial",
// // Generate PLONK
// protocol: "plonk",
// },
// {
// name: "hash",
// // Explicitly generate groth16
// protocol: "groth16",
// },
],
},
};