This repository has been archived by the owner on Jan 24, 2023. It is now read-only.
forked from snapshot-labs/snapshot-hub
-
Notifications
You must be signed in to change notification settings - Fork 8
/
chains.ts
82 lines (81 loc) · 2.07 KB
/
chains.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
const chains = {
56: {
id: 56,
name: 'bsc',
rpc: 'https://bsc-dataseed.binance.org/',
subgraph: 'https://api.thegraph.com/subgraphs/name/apyvision/block-info',
},
128: {
id: 128,
name: 'heco',
rpc: 'https://http-mainnet.hecochain.com',
blockinterval: 3
},
25: {
id: 25,
name: 'cronos',
rpc: 'https://evm-cronos.crypto.org',
blockinterval: 5.8
},
1666600000: {
id: 1666600000,
name: 'harmony',
rpc: 'https://rpc.s0.t.hmny.io',
blockinterval: 3
},
137: {
id: 137,
name: 'polygon',
subgraph: 'https://api.thegraph.com/subgraphs/name/sameepsi/maticblocks',
},
250: {
id: 250,
name: 'fantom',
subgraph: 'https://api.thegraph.com/subgraphs/name/wigoswap/blocks',
},
1285: {
id: 1285,
name: 'moonriver',
subgraph: 'https://api.thegraph.com/subgraphs/name/solarbeamio/blocklytics',
},
42161: {
id: 42161,
name: 'arbitrum',
subgraph: 'https://api.thegraph.com/subgraphs/name/ianlapham/arbitrum-one-blocks',
},
42220: {
id: 42220,
name: 'celo',
subgraph: 'https://api.thegraph.com/subgraphs/name/ubeswap/celo-blocks',
},
43114: {
id: 43114,
name: 'avalanche',
subgraph: 'https://api.thegraph.com/subgraphs/name/dasconnor/avalanche-blocks',
},
// 1088: {
// id: 1088,
// name: 'metis',
// rpc: 'https://andromeda.metis.io/?owner=1088',
// blockinterval: 15
// },
122: {
id: 122,
name: 'fuse',
rpc: 'https://rpc.fuse.io',
subgraph: 'https://api.thegraph.com/subgraphs/name/sushiswap/fuse-blocks',
blockinterval: 5
},
1284: {
id: 1284,
name: 'moonbeam',
rpc: 'https://rpc.api.moonbeam.network',
blockinterval: 12
},
1313161554: {
id: 1313161554,
name: 'aurora',
rpc: 'https://mainnet.aurora.dev'
}
}
export default chains;