forked from ethereum/sourcify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchains.json
107 lines (107 loc) · 3.02 KB
/
chains.json
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
95
96
97
98
99
100
101
102
103
104
105
106
107
[
{
"name": "Ethereum Mainnet",
"chainId": 1,
"rpc": [
"https://rpc.mainnet.ethpandaops.io",
"https://eth-mainnet.g.alchemy.com/v2/{ALCHEMY_API_KEY}"
],
"etherscanAPI": "https://api.etherscan.io"
},
{
"name": "Ethereum Testnet Goerli",
"title": "Ethereum Testnet Goerli",
"chainId": 5,
"rpc": [
"https://rpc.goerli.ethpandaops.io",
"https://eth-goerli.g.alchemy.com/v2/{ALCHEMY_API_KEY}"
],
"etherscanAPI": "https://api-goerli.etherscan.io"
},
{
"name": "Ethereum Testnet Sepolia",
"title": "Ethereum Testnet Sepolia",
"chainId": 11155111,
"rpc": [
"https://rpc.sepolia.ethpandaops.io",
"https://eth-sepolia.g.alchemy.com/v2/{ALCHEMY_API_KEY}"
],
"etherscanAPI": "https://api-sepolia.etherscan.io"
},
{
"name": "Arbitrum Goerli",
"title": "Arbitrum Goerli Rollup Testnet",
"chainId": 421613,
"rpc": ["https://arb-goerli.g.alchemy.com/v2/{ALCHEMY_API_KEY}"],
"etherscanAPI": "https://api-goerli.arbiscan.io"
},
{
"name": "Arbitrum One",
"chainId": 42161,
"rpc": ["https://arb-mainnet.g.alchemy.com/v2/{ALCHEMY_API_KEY}"],
"etherscanAPI": "https://api.arbiscan.io"
},
{
"name": "Base Goerli Testnet",
"chainId": 84531,
"rpc": [
"https://goerli.base.org",
"https://base-goerli.gateway.tenderly.co",
"wss://base-goerli.gateway.tenderly.co",
"https://base-goerli.publicnode.com"
],
"etherscanAPI": "https://api-goerli.basescan.org/"
},
{
"name": "Gnosis",
"chainId": 100,
"rpc": [
"https://rpc.gnosischain.com",
"https://rpc.gnosis.gateway.fm",
"https://rpc.ankr.com/gnosis",
"https://gnosischain-rpc.gateway.pokt.network",
"https://gnosis-mainnet.public.blastapi.io",
"https://gnosis.api.onfinality.io/public",
"https://gnosis.blockpi.network/v1/rpc/public",
"https://web3endpoints.com/gnosischain-mainnet",
"https://gnosis.oat.farm",
"wss://rpc.gnosischain.com/wss"
],
"etherscanAPI": "https://api.gnosisscan.io"
},
{
"name": "Meter Mainnet",
"chainId": 82,
"rpc": ["https://rpc.meter.io"]
},
{
"name": "Meter Testnet",
"chainId": 83,
"rpc": ["https://rpctest.meter.io"]
},
{
"name": "Mumbai",
"title": "Polygon Testnet Mumbai",
"chainId": 80001,
"rpc": ["https://polygon-mumbai.g.alchemy.com/v2/{ALCHEMY_API_KEY}"],
"etherscanAPI": "https://api-testnet.polygonscan.com"
},
{
"name": "OP Mainnet",
"chainId": 10,
"rpc": ["https://opt-mainnet.g.alchemy.com/v2/{ALCHEMY_API_KEY}"],
"etherscanAPI": "https://api-optimistic.etherscan.io"
},
{
"name": "Optimism Goerli Testnet",
"chainId": 420,
"rpc": ["https://opt-goerli.g.alchemy.com/v2/{ALCHEMY_API_KEY}"],
"etherscanAPI": "https://api-goerli-optimism.etherscan.io"
},
{
"name": "Polygon Mainnet",
"chainId": 137,
"rpc": ["https://polygon-mainnet.g.alchemy.com/v2/{ALCHEMY_API_KEY}"],
"etherscanAPI": "https://api.polygonscan.com"
}
]