-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.js
59 lines (57 loc) · 1.63 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
require("dotenv").config();
require("@nomicfoundation/hardhat-toolbox");
//require("@nomiclabs/hardhat-etherscan");
require('hardhat-deploy');
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
solidity: {
compilers: [
{
version: "0.8.20",
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
}
]
},
paths: {
artifacts: "./src",
},
networks: {
zkfair: {
url: "https://rpc.zkfair.io",
accounts: [process.env.DEPLOYER_PRIVATE_KEY],
},
sepolia: {
//url: `https://sepolia.infura.io/v3/${process.env.INFURA_API_KEY}`,
url: `https://eth-sepolia.g.alchemy.com/v2/${process.env.ALCHEMY_API_KEY}`,
accounts: [process.env.DEPLOYER_PRIVATE_KEY],
allowUnlimitedContractSize: true
},
goerli: {
//url: `https://goerli.infura.io/v3/${process.env.INFURA_API_KEY}`,
url: `https://eth-goerli.g.alchemy.com/v2/${process.env.ALCHEMY_API_KEY}`,
accounts: [process.env.DEPLOYER_PRIVATE_KEY],
allowUnlimitedContractSize: true,
}
},
sourcify: {
enabled: false
},
etherscan: {
apiKey: process.env.ETHER_SCAN_API_KEY,
customChains: [
{
network: "zkfair",
chainId: 42766,
urls: {
apiURL: "https://scan.zkfair.io/api/?module=contract&action=verify",
browserURL: "https://scan.zkfair.io"
}
}
]
},
};