-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironments_template.js
65 lines (58 loc) · 2.07 KB
/
environments_template.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
module.exports = {
"apiKey": {
"block_explorer": {
"poly-test": "YOUR_POLYGONSCAN_API_KEY",
"eth-main": "YOUR_ETHERSCAN_API_KEY"
},
"coinmarketcap": "YOUR_COINMARKETCAP_API_KEY"
},
"network": {
"hardhat": { // hardhat local network
"gasLimit": "5000000"
},
"eth-test": { // Ethereum Rinkeby testnet
"mnemonic": "your twelve word mnemonic phrase here...",
"txNode": "https://rinkeby.infura.io/v3/[API_KEY_HERE]",
"explorer": "https://rinkeby.etherscan.io/",
"gasLimit": "5000000",
"chain": {
"title": "Rinkeby Testnet",
"name": "rinkeby",
"chainId": 4
}
},
"eth-main": { // Ethereum Homestead mainnet
"mnemonic": "your twelve word mnemonic phrase here...",
"txNode": "https://mainnet.infura.io/v3/[API_KEY_HERE]",
"explorer": "https://etherscan.io/",
"gasLimit": "5000000",
"chain": {
"title": "Ethereum Mainnet",
"name": "homestead",
"chainId": 1
}
},
"poly-test": { // Polygon Amoy testnet
"mnemonic": "your twelve word mnemonic phrase here...",
"txNode": "https://rpc-amoy.polygon.technology/[API_KEY_HERE]",
"explorer": "https://amoy.polygonscan.com/",
"gasLimit": "10000000",
"chain": {
"title": "Polygon Amoy Testnet",
"name": "amoy",
"chainId": 80002
}
},
"poly-main": { // Polygon Matic mainnet
"mnemonic": "your twelve word mnemonic phrase here...",
"txNode": "https://rpc-mainnet.maticvigil.com/v1/[API_KEY_HERE]",
"explorer": "https://polygonscan.com/",
"gasLimit": "10000000",
"chain": {
"title": "Polygon Matic Mainnet",
"name": "matic",
"chainId": 137
}
}
},
};