-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.chain1.config.js
35 lines (34 loc) · 1 KB
/
hardhat.chain1.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
require("@nomicfoundation/hardhat-toolbox");
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
solidity: "0.8.18",
networks: {
hardhat: {
bip44_chainId: 1,
chainId: 8888,
mining: {
auto: true,
// interval: 5000
},
accounts: {
mnemonic: "rule guard corn kidney giraffe town beef comic exercise shift depend arch",
count: 5,
initialIndex: 0,
path: "m/44'/60'/0'/0",
accountsBalance: "1000000000000000000000000",
},
},
chain1: {
bip44ChainId: 1,
chainId: 8888,
url: "http://localhost:18545",
accounts: ["0xed90a083f22658db3b557a22832b5d719e65764eb3169053d96f6221725bbfd2"] // Sandbox PRIVATE_KEY do not use in production
},
chain2: {
bip44ChainId: 2,
chainId: 9999,
url: "http://localhost:28545",
accounts: ["0xed90a083f22658db3b557a22832b5d719e65764eb3169053d96f6221725bbfd2"] // Sandbox PRIVATE_KEY do not use in production
},
}
};