-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathendpoints.json.example
More file actions
83 lines (83 loc) · 3.12 KB
/
endpoints.json.example
File metadata and controls
83 lines (83 loc) · 3.12 KB
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
{
"providers": [
{
"blockchain": "Ethereum",
"name": "Alchemy-Growth",
"websocket_endpoint": "wss://eth-mainnet.g.alchemy.com/v2/...",
"http_endpoint": "https://eth-mainnet.g.alchemy.com/v2/..."
},
{
"blockchain": "Base",
"name": "Alchemy-Growth",
"websocket_endpoint": "wss://base-mainnet.g.alchemy.com/v2/...",
"http_endpoint": "https://base-mainnet.g.alchemy.com/v2/..."
},
{
"blockchain": "Solana",
"name": "Alchemy-Growth",
"websocket_endpoint": "not_supported",
"http_endpoint": "https://solana-mainnet.g.alchemy.com/v2/..."
},
{
"blockchain": "Solana",
"name": "Helius-Developer",
"websocket_endpoint": "wss://mainnet.helius-rpc.com/?api-key=...",
"http_endpoint": "https://mainnet.helius-rpc.com/?api-key=..."
},
{
"blockchain": "Ethereum",
"name": "Quicknode-Growth",
"websocket_endpoint": "wss://quiknode.pro/...",
"http_endpoint": "https://quiknode.pro/..."
},
{
"blockchain": "Base",
"name": "Quicknode-Growth",
"websocket_endpoint": "wss://base-mainnet.quiknode.pro/...",
"http_endpoint": "https://base-mainnet.quiknode.pro/..."
},
{
"blockchain": "Solana",
"name": "Quicknode-Growth",
"websocket_endpoint": "wss://solana-mainnet.quiknode.pro/...",
"http_endpoint": "https://solana-mainnet.quiknode.pro/..."
},
{
"blockchain": "Ethereum",
"name": "Chainstack",
"websocket_endpoint": "wss://ethereum-mainnet.core.chainstack.com/...",
"http_endpoint": "https://ethereum-mainnet.core.chainstack.com/..."
},
{
"blockchain": "Base",
"name": "Chainstack",
"websocket_endpoint": "wss://base-mainnet.core.chainstack.com/...",
"http_endpoint": "https://base-mainnet.core.chainstack.com/..."
},
{
"blockchain": "Solana",
"name": "Chainstack",
"websocket_endpoint": "wss://solana-mainnet.core.chainstack.com/...",
"http_endpoint": "https://solana-mainnet.core.chainstack.com/...",
"tx_endpoint": "https://solana-mainnet.core.chainstack.com/..."
},
{
"blockchain": "TON",
"name": "Chainstack",
"websocket_endpoint": "not_supported",
"http_endpoint": "https://ton-mainnet.core.chainstack.com/.../api/v2/jsonRPC"
},
{
"blockchain": "TON",
"name": "Quicknode-Growth",
"websocket_endpoint": "not_supported",
"http_endpoint": "https://ton-mainnet.quiknode.pro/.../jsonRPC"
},
{
"blockchain": "TON",
"name": "TonCenter-WithAPIKey",
"websocket_endpoint": "not_supported",
"http_endpoint": "https://toncenter.com/api/v2/jsonRPC?api_key=..."
}
]
}