-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.js
54 lines (47 loc) · 1.27 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
require("@nomicfoundation/hardhat-toolbox");
require("dotenv").config({ path: ".env" });
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
networks: {
localhost: {
url: "http://127.0.0.1:8545",
accounts: {mnemonic: process.env.DEV_CHAIN_MNEMONIC,},
},
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: {
apiKey: {
// Get it from here: https://celoscan.io/myapikey
alfajores: process.env.CELOSCAN_API_KEY,
celo: process.env.CELOSCAN_API_KEY,
},
},
solidity:{
version: "0.8.24",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
};