-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.js
94 lines (93 loc) · 2.1 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
require("@nomicfoundation/hardhat-toolbox");
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
solidity: {
compilers: [
{
version: "0.8.18",
settings: {
optimizer: {
enabled: true,
runs: 200
},
}
},
{
version: "0.8.20",
settings: {
optimizer: {
enabled: true,
runs: 200
},
evmVersion: "london"
}
}
]
},
mocha: {
timeout: 100000000
},
networks: {
dioneMainnet:{
url: "https://node.dioneprotocol.com/ext/bc/D/rpc",
accounts: [process.env.PK],
bip44ChainId: 1073741848,
},
waterfallMainnet: {
url: "https://rpc.waterfall.network",
accounts: [process.env.PK],
},
wanchainTestnet: {
url: "https://gwan-ssl.wandevs.org:46891",
accounts: [process.env.PK],
chainId: 999,
gasPrice: 2e9,
gas: 30000000,
},
wanchainMainnet: {
url: "https://gwan-ssl.wandevs.org:56891",
accounts: [process.env.PK],
chainId: 888,
gasPrice: 2e9,
gas: 30000000,
},
goerli: {
url: 'https://rpc.ankr.com/eth_goerli',
accounts: [process.env.PK],
},
fuji: {
url: 'https://ava-testnet.public.blastapi.io/ext/bc/C/rpc',
accounts: [process.env.PK],
chainId: 43113,
},
xdcTestnet: {
url: 'https://erpc.apothem.network',
accounts: [process.env.PK],
},
arbitrumGoerli: {
url: 'https://arbitrum-goerli.publicnode.com',
accounts: [process.env.PK],
},
optimisticGoerli: {
url: 'https://optimism-goerli.publicnode.com',
accounts: [process.env.PK],
gasPrice: 0.01e9,
},
polygonMumbai: {
url: 'https://polygon-mumbai-bor.publicnode.com',
accounts: [process.env.PK],
},
polygon: {
url: 'https://polygon-bor.publicnode.com',
accounts: [process.env.PK],
},
mainnet: {
url: 'https://ethereum.publicnode.com',
accounts: [process.env.PK],
}
},
etherscan: {
apiKey: {
}
}
};