-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.js
71 lines (64 loc) · 1.7 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
require("@nomicfoundation/hardhat-toolbox");
require("dotenv").config({ path: ".env" });
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
networks: {
hardhat: {
allowUnlimitedContractSize: false,
},
// for testnet
'lisk-sepolia': {
url: 'https://rpc.sepolia-api.lisk.com',
accounts: [process.env.WALLET_PRIVATE_KEY],
gasPrice: 1000000000,
},
sepolia: {
url: `https://eth-sepolia.g.alchemy.com/v2/${process.env.ALCHEMY_API_KEY_SEPOLIA}`,
accounts: [process.env.WALLET_PRIVATE_KEY],
},
ethereum: {
url: `https://eth-mainnet.g.alchemy.com/v2/${process.env.ALCHEMY_API_KEY_MAIN}`,
accounts: [process.env.WALLET_PRIVATE_KEY],
chainId: 44787,
},
alfajores: {
url: "https://alfajores-forno.celo-testnet.org",
accounts: [process.env.WALLET_PRIVATE_KEY],
chainId: 44787,
},
celo: {
url: "https://forno.celo.org",
accounts: [process.env.WALLET_PRIVATE_KEY],
chainId: 42220,
},
},
// ethereum - celo - explorer API keys
etherscan: {
// Use "123" as a placeholder, because Blockscout doesn't need a real API key, and Hardhat will complain if this property isn't set.
apiKey: {
"lisk-sepolia": "123"
},
customChains: [
{
network: "lisk-sepolia",
chainId: 4202,
urls: {
apiURL: "https://sepolia-blockscout.lisk.com/api",
browserURL: "https://sepolia-blockscout.lisk.com"
}
}
]
},
sourcify: {
enabled: false
},
solidity:{
version: "0.5.16",
settings: {
optimizer: {
enabled: true,
runs: 800,
},
},
}
};