-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.ts
61 lines (59 loc) · 1.37 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
/**
* @type import('hardhat/config').HardhatUserConfig
*/
require('dotenv').config()
require("@nomiclabs/hardhat-etherscan");
require('@nomiclabs/hardhat-ethers')
require('@nomiclabs/hardhat-waffle')
module.exports = {
solidity: {
compilers: [
{
version: '0.8.17',
settings: {
optimizer: {
enabled: true,
runs: 5000,
},
},
},
],
},
networks: {
hardhat: {
settings: {
debug: {
revertStrings: 'debug',
},
},
},
base : {
url: 'https://mainnet.base.org',
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
},
mainnet: {
url: `https://mainnet.infura.io/v3/${process.env.INFURA_KEY}`, // or any other JSON-RPC provider
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
},
avalanche: {
url: "https://api.avax.network/ext/bc/C/rpc",
chainId: 43114,
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
},
},
etherscan: {
apiKey: {
base: process.env.ETHERSCAN_API_KEY,
},
customChains: [
{
network: "base",
chainId: 8453,
urls: {
apiURL: "https://api.basescan.org/api",
browserURL: "https://basescan.org"
}
}
]
}
}