-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathself-hosted-deployments.json
More file actions
589 lines (589 loc) · 24.9 KB
/
Copy pathself-hosted-deployments.json
File metadata and controls
589 lines (589 loc) · 24.9 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
{
"_comment": "Single source of truth for Chainstack Self-Hosted deployments. Hand-maintained from upstream preset/network definitions and client port definitions. When a preset changes, edit this file and regenerate the tables in docs/self-hosted/supported-clients-and-protocols.mdx and docs/self-hosted/requirements.mdx. Storage is given per client in GiB; deployment totals are the sum across the deployment's clients. Light presets use half the CPU/RAM of the standard preset with the same storage.",
"clients": {
"xrpld": {
"label": "xrpld",
"role": "full",
"ports": [
{ "port": 5005, "proto": "TCP", "purpose": "HTTP JSON-RPC", "exposed": true },
{ "port": 6006, "proto": "TCP", "purpose": "WebSocket API", "exposed": true },
{ "port": 2459, "proto": "TCP", "purpose": "P2P", "exposed": false }
]
},
"reth": {
"label": "Reth",
"role": "execution",
"ports": [
{ "port": 8545, "proto": "TCP", "purpose": "HTTP JSON-RPC", "exposed": true },
{ "port": 8546, "proto": "TCP", "purpose": "WS JSON-RPC", "exposed": true },
{ "port": 8551, "proto": "TCP", "purpose": "Auth RPC (engine API, execution to consensus only)", "exposed": false }
]
},
"prysm": {
"label": "Prysm",
"role": "consensus",
"ports": [
{ "port": 5052, "proto": "TCP", "purpose": "Beacon API (HTTP)", "exposed": true },
{ "port": 13000, "proto": "TCP", "purpose": "P2P", "exposed": false }
]
},
"op-reth": {
"label": "OP-Reth",
"role": "execution",
"ports": [
{ "port": 8545, "proto": "TCP", "purpose": "HTTP JSON-RPC", "exposed": true },
{ "port": 8546, "proto": "TCP", "purpose": "WS JSON-RPC", "exposed": true },
{ "port": 8551, "proto": "TCP", "purpose": "Auth RPC (engine API, execution to consensus only)", "exposed": false }
]
},
"op-node": {
"label": "OP-Node",
"role": "consensus",
"ports": [
{ "port": 9545, "proto": "TCP", "purpose": "Rollup HTTP RPC", "exposed": true }
]
},
"base-reth": {
"label": "Base-Reth",
"role": "execution",
"ports": [
{ "port": 8545, "proto": "TCP", "purpose": "HTTP JSON-RPC", "exposed": true },
{ "port": 8546, "proto": "TCP", "purpose": "WS JSON-RPC", "exposed": true },
{ "port": 8551, "proto": "TCP", "purpose": "Auth RPC (engine API, execution to consensus only)", "exposed": false }
]
},
"base-node": {
"label": "Base-Node",
"role": "consensus",
"ports": [
{ "port": 9545, "proto": "TCP", "purpose": "Rollup HTTP RPC", "exposed": true }
]
},
"bor": {
"label": "Bor",
"role": "execution",
"ports": [
{ "port": 8545, "proto": "TCP", "purpose": "HTTP JSON-RPC", "exposed": true },
{ "port": 8546, "proto": "TCP", "purpose": "WS JSON-RPC", "exposed": true },
{ "port": 30303, "proto": "TCP", "purpose": "P2P", "exposed": false }
]
},
"heimdall": {
"label": "Heimdall",
"role": "consensus",
"ports": [
{ "port": 1317, "proto": "TCP", "purpose": "REST API (Cosmos LCD)", "exposed": true },
{ "port": 26657, "proto": "TCP", "purpose": "CometBFT RPC", "exposed": false },
{ "port": 26656, "proto": "TCP", "purpose": "P2P", "exposed": false }
]
},
"bitcoind": {
"label": "Bitcoin Core (bitcoind)",
"role": "full",
"ports": [
{ "port": 8332, "proto": "TCP", "purpose": "HTTP JSON-RPC", "exposed": true },
{ "port": 8333, "proto": "TCP", "purpose": "P2P", "exposed": false }
]
},
"pathfinder": {
"label": "Pathfinder",
"role": "full",
"ports": [
{ "port": 9545, "proto": "TCP", "purpose": "HTTP RPC and WS (/ws)", "exposed": true }
]
},
"java-tron": {
"label": "Java-Tron",
"role": "full",
"ports": [
{ "port": 8090, "proto": "TCP", "purpose": "HTTP JSON-RPC", "exposed": true },
{ "port": 50051, "proto": "TCP", "purpose": "gRPC API", "exposed": false }
]
},
"agave": {
"label": "Agave",
"role": "full",
"ports": [
{ "port": 8899, "proto": "TCP", "purpose": "HTTP JSON-RPC", "exposed": true },
{ "port": 8900, "proto": "TCP", "purpose": "WS JSON-RPC", "exposed": true }
]
},
"nitro": {
"label": "Nitro",
"role": "full",
"ports": [
{ "port": 8547, "proto": "TCP", "purpose": "HTTP JSON-RPC", "exposed": true },
{ "port": 8548, "proto": "TCP", "purpose": "WS JSON-RPC", "exposed": true }
]
},
"sui-node": {
"label": "Sui-Node",
"role": "full",
"ports": [
{ "port": 9000, "proto": "TCP", "purpose": "JSON-RPC and gRPC (multiplexed)", "exposed": true },
{ "port": 8084, "proto": "UDP", "purpose": "P2P", "exposed": false },
{ "port": 8080, "proto": "TCP", "purpose": "Validator network address", "exposed": false }
]
},
"tempo": {
"label": "Tempo",
"role": "full",
"ports": [
{ "port": 8545, "proto": "TCP", "purpose": "HTTP JSON-RPC", "exposed": true },
{ "port": 8546, "proto": "TCP", "purpose": "WS JSON-RPC", "exposed": true },
{ "port": 30303, "proto": "TCP", "purpose": "P2P (RLPx)", "exposed": false },
{ "port": 30303, "proto": "UDP", "purpose": "Peer discovery", "exposed": false }
]
},
"plasma": {
"label": "PlasmaBFT",
"role": "consensus",
"ports": [
{ "port": 35070, "proto": "TCP", "purpose": "Consensus API (HTTP)", "exposed": true },
{ "port": 34070, "proto": "TCP", "purpose": "P2P", "exposed": false },
{ "port": 9745, "proto": "TCP", "purpose": "Telemetry", "exposed": false }
]
},
"avalanchego": {
"label": "AvalancheGo",
"role": "full",
"ports": [
{ "port": 9650, "proto": "TCP", "purpose": "HTTP and WS JSON-RPC for the C-Chain, X-Chain, and P-Chain (one port, per-chain paths)", "exposed": true },
{ "port": 9651, "proto": "TCP", "purpose": "P2P", "exposed": false }
]
},
"arc-execution": {
"label": "Arc-Execution",
"role": "execution",
"ports": [
{ "port": 8545, "proto": "TCP", "purpose": "HTTP JSON-RPC", "exposed": true },
{ "port": 8546, "proto": "TCP", "purpose": "WS JSON-RPC", "exposed": true },
{ "port": 8551, "proto": "TCP", "purpose": "Auth RPC (engine API, execution to consensus only)", "exposed": false },
{ "port": 9001, "proto": "TCP", "purpose": "Metrics", "exposed": false }
]
},
"arc-consensus": {
"label": "Arc-Consensus",
"role": "consensus",
"ports": [
{ "port": 31000, "proto": "TCP", "purpose": "Consensus RPC (upstream of the execution client's arc namespace only)", "exposed": false },
{ "port": 27000, "proto": "TCP", "purpose": "P2P", "exposed": false },
{ "port": 29000, "proto": "TCP", "purpose": "Metrics", "exposed": false }
]
},
"world-chain": {
"label": "World-Chain",
"role": "execution",
"ports": [
{ "port": 8545, "proto": "TCP", "purpose": "HTTP JSON-RPC", "exposed": true },
{ "port": 8546, "proto": "TCP", "purpose": "WS JSON-RPC", "exposed": true },
{ "port": 8551, "proto": "TCP", "purpose": "Auth RPC (engine API, execution to consensus only)", "exposed": false }
]
}
},
"families": {
"xrpl": {
"label": "XRP Ledger",
"notes": [
"Runs a single full node client that serves both the JSON-RPC and the WebSocket API.",
"Syncs from the network rather than from a snapshot, retaining a minimum practical ledger window."
]
},
"evm-l1-dual": {
"label": "EVM Layer 1 (execution + consensus)",
"notes": [
"Runs a paired execution client and consensus client. CPU and RAM are split across the two clients.",
"Bootstraps from a pre-built chain snapshot. Snapshot bootstrap temporarily needs about 2x the steady-state storage while the archive is downloaded and extracted."
]
},
"op-stack-l2": {
"label": "EVM Layer 2 — OP Stack",
"notes": [
"Runs a paired execution client and rollup (consensus) client. CPU and RAM are split across the two clients.",
"Requires an Ethereum Layer 1 RPC endpoint and a Beacon API endpoint that you supply."
]
},
"polygon": {
"label": "Polygon PoS",
"notes": [
"Runs a paired execution client (Bor) and consensus client (Heimdall). CPU and RAM are split across the two clients.",
"Requires an Ethereum Layer 1 RPC endpoint that you supply."
]
},
"starknet": {
"label": "Starknet",
"notes": [
"Runs a single full node client.",
"Requires an Ethereum Layer 1 RPC endpoint that you supply."
]
},
"tron": {
"label": "TRON",
"notes": [
"Runs a single full node client."
]
},
"bitcoin": {
"label": "Bitcoin (UTXO)",
"notes": [
"Runs a single full node client with the transaction index (txindex) enabled."
]
},
"solana": {
"label": "Solana",
"notes": [
"Runs a single full node (validator in RPC mode)."
]
},
"arbitrum-nitro": {
"label": "EVM Layer 2 — Arbitrum Nitro",
"notes": [
"Runs a single Arbitrum Nitro full node client.",
"Requires an Ethereum Layer 1 RPC endpoint and a Beacon API endpoint that you supply.",
"Bootstraps from a pre-built chain snapshot. Snapshot bootstrap temporarily needs about 2x the steady-state storage while the archive is downloaded and extracted."
]
},
"sui": {
"label": "Sui",
"notes": [
"Runs a single full node client.",
"Bootstraps from a pre-built chain snapshot. Snapshot bootstrap temporarily needs about 2x the steady-state storage while the archive is downloaded and extracted.",
"Client version is pinned per network, so Mainnet and Testnet can run different versions."
]
},
"tempo": {
"label": "Tempo",
"notes": [
"Runs a single full node client that serves both the execution and the consensus layers, following an upstream endpoint as a non-validator.",
"Bootstraps from a chain snapshot that the client downloads itself. The listed storage already covers the temporary peak during download and extraction."
]
},
"plasma": {
"label": "Plasma",
"notes": [
"Runs a paired execution client and consensus client as a non-validator node. CPU and RAM are split across the two clients.",
"Syncs from genesis over the network's public peers rather than restoring from a snapshot, so no extra storage headroom is needed for the initial sync."
]
},
"avalanche": {
"label": "Avalanche",
"notes": [
"Runs a single full node client that serves the Primary Network's C-Chain, X-Chain, and P-Chain on one port, addressed by per-chain paths.",
"Mainnet bootstraps from a pre-built chain snapshot and temporarily needs about 2x the steady-state storage while the archive is downloaded and extracted. Fuji syncs from genesis over the network's public peers.",
"Client version is pinned per network, so Mainnet and Fuji can run different versions."
]
},
"arc": {
"label": "Arc",
"notes": [
"Runs a paired execution client and consensus client as a non-validator node that follows the network's public endpoints. CPU and RAM are split across the two clients.",
"Bootstraps from a pre-built chain snapshot. Snapshot bootstrap temporarily needs about 2x the steady-state storage while the archive is downloaded and extracted."
]
}
},
"deployments": [
{
"protocol": "Ethereum", "network": "Mainnet", "chainId": 1,
"explorer": "https://etherscan.io",
"family": "evm-l1-dual", "status": "available", "snapshotBootstrap": true,
"presets": ["standard", "light"],
"clients": [
{ "client": "reth", "version": "v2.2.0", "cpu": 4, "ramGi": 16, "storageGi": 1700 },
{ "client": "prysm", "version": "v7.1.3", "cpu": 4, "ramGi": 16, "storageGi": 300 }
],
"totals": { "cpu": 8, "ramGi": 32, "storageGi": 2000 }
},
{
"protocol": "Ethereum", "network": "Sepolia", "chainId": 11155111,
"explorer": "https://sepolia.etherscan.io",
"family": "evm-l1-dual", "status": "available", "snapshotBootstrap": true,
"presets": ["standard", "light"],
"clients": [
{ "client": "reth", "version": "v2.2.0", "cpu": 4, "ramGi": 16, "storageGi": 1200 },
{ "client": "prysm", "version": "v7.1.3", "cpu": 4, "ramGi": 16, "storageGi": 100 }
],
"totals": { "cpu": 8, "ramGi": 32, "storageGi": 1300 }
},
{
"protocol": "Ethereum", "network": "Hoodi", "chainId": 560048,
"explorer": "https://hoodi.etherscan.io",
"family": "evm-l1-dual", "status": "available", "snapshotBootstrap": true,
"presets": ["standard", "light"],
"clients": [
{ "client": "reth", "version": "v2.2.0", "cpu": 4, "ramGi": 16, "storageGi": 200 },
{ "client": "prysm", "version": "v7.1.3", "cpu": 4, "ramGi": 16, "storageGi": 50 }
],
"totals": { "cpu": 8, "ramGi": 32, "storageGi": 250 }
},
{
"protocol": "Optimism", "network": "Mainnet", "chainId": 10,
"explorer": "https://optimistic.etherscan.io",
"family": "op-stack-l2", "status": "available", "snapshotBootstrap": true,
"presets": ["standard"],
"clients": [
{ "client": "op-reth", "version": "v2.3.1", "cpu": 8, "ramGi": 32, "storageGi": 2000 },
{ "client": "op-node", "version": "v1.19.0", "cpu": 4, "ramGi": 16, "storageGi": 0 }
],
"totals": { "cpu": 12, "ramGi": 48, "storageGi": 2000 }
},
{
"protocol": "Base", "network": "Mainnet", "chainId": 8453,
"explorer": "https://basescan.org",
"family": "op-stack-l2", "status": "available", "snapshotBootstrap": false,
"presets": ["standard"],
"clients": [
{ "client": "base-reth", "version": "v1.1.0", "cpu": 8, "ramGi": 32, "storageGi": 3500 },
{ "client": "base-node", "version": "v1.1.0", "cpu": 4, "ramGi": 16, "storageGi": 0 }
],
"totals": { "cpu": 12, "ramGi": 48, "storageGi": 3500 }
},
{
"protocol": "Unichain", "network": "Mainnet", "chainId": 130,
"explorer": "https://uniscan.xyz",
"family": "op-stack-l2", "status": "available", "snapshotBootstrap": false,
"presets": ["standard"],
"clients": [
{ "client": "op-reth", "version": "v2.3.1", "cpu": 8, "ramGi": 32, "storageGi": 2000 },
{ "client": "op-node", "version": "v1.19.0", "cpu": 4, "ramGi": 16, "storageGi": 0 }
],
"totals": { "cpu": 12, "ramGi": 48, "storageGi": 2000 }
},
{
"protocol": "Zora", "network": "Mainnet", "chainId": 7777777,
"explorer": "https://explorer.zora.energy",
"family": "op-stack-l2", "status": "available", "snapshotBootstrap": false,
"presets": ["standard"],
"clients": [
{ "client": "op-reth", "version": "v2.3.1", "cpu": 8, "ramGi": 32, "storageGi": 2000 },
{ "client": "op-node", "version": "v1.19.0", "cpu": 4, "ramGi": 16, "storageGi": 0 }
],
"totals": { "cpu": 12, "ramGi": 48, "storageGi": 2000 }
},
{
"protocol": "World Chain", "network": "Mainnet", "chainId": 480,
"explorer": "https://worldscan.org",
"family": "op-stack-l2", "status": "available", "snapshotBootstrap": true,
"presets": ["standard"],
"clients": [
{ "client": "world-chain", "version": "v2.4.0", "cpu": 8, "ramGi": 32, "storageGi": 1300 },
{ "client": "op-node", "version": "v1.19.3", "cpu": 4, "ramGi": 16, "storageGi": 0 }
],
"totals": { "cpu": 12, "ramGi": 48, "storageGi": 1300 }
},
{
"protocol": "World Chain", "network": "Sepolia", "chainId": 4801,
"explorer": "https://worldchain-sepolia.explorer.alchemy.com",
"family": "op-stack-l2", "status": "available", "snapshotBootstrap": true,
"presets": ["standard"],
"clients": [
{ "client": "world-chain", "version": "v2.4.0", "cpu": 4, "ramGi": 16, "storageGi": 100 },
{ "client": "op-node", "version": "v1.19.3", "cpu": 2, "ramGi": 8, "storageGi": 0 }
],
"totals": { "cpu": 6, "ramGi": 24, "storageGi": 100 }
},
{
"protocol": "Arbitrum", "network": "Mainnet", "chainId": 42161,
"explorer": "https://arbiscan.io",
"family": "arbitrum-nitro", "status": "available", "snapshotBootstrap": true,
"presets": ["standard"],
"clients": [
{ "client": "nitro", "version": "v3.11.2", "cpu": 8, "ramGi": 64, "storageGi": 2500 }
],
"totals": { "cpu": 8, "ramGi": 64, "storageGi": 2500 }
},
{
"protocol": "Arbitrum", "network": "Sepolia", "chainId": 421614,
"explorer": "https://sepolia.arbiscan.io",
"family": "arbitrum-nitro", "status": "available", "snapshotBootstrap": true,
"presets": ["standard"],
"clients": [
{ "client": "nitro", "version": "v3.11.2", "cpu": 4, "ramGi": 32, "storageGi": 1500 }
],
"totals": { "cpu": 4, "ramGi": 32, "storageGi": 1500 }
},
{
"protocol": "Robinhood Chain", "network": "Mainnet", "chainId": 4663,
"explorer": "https://robinhoodchain.blockscout.com",
"family": "arbitrum-nitro", "status": "available", "snapshotBootstrap": true,
"presets": ["standard"],
"clients": [
{ "client": "nitro", "version": "v3.11.2", "cpu": 8, "ramGi": 64, "storageGi": 200 }
],
"totals": { "cpu": 8, "ramGi": 64, "storageGi": 200 }
},
{
"protocol": "Robinhood Chain", "network": "Testnet", "chainId": 46630,
"explorer": "https://explorer.testnet.chain.robinhood.com",
"family": "arbitrum-nitro", "status": "available", "snapshotBootstrap": true,
"presets": ["standard"],
"clients": [
{ "client": "nitro", "version": "v3.11.2", "cpu": 4, "ramGi": 32, "storageGi": 300 }
],
"totals": { "cpu": 4, "ramGi": 32, "storageGi": 300 }
},
{
"protocol": "Polygon PoS", "network": "Mainnet", "chainId": 137,
"explorer": "https://polygonscan.com",
"family": "polygon", "status": "available", "snapshotBootstrap": false,
"presets": ["standard"],
"clients": [
{ "client": "bor", "version": "2.8.3", "cpu": 8, "ramGi": 32, "storageGi": 5120 },
{ "client": "heimdall", "version": "0.9.0", "cpu": 4, "ramGi": 32, "storageGi": 500 }
],
"totals": { "cpu": 12, "ramGi": 64, "storageGi": 5620 }
},
{
"protocol": "Starknet", "network": "Mainnet", "chainId": null,
"explorer": "https://starkscan.co",
"family": "starknet", "status": "available", "snapshotBootstrap": false,
"presets": ["standard"],
"clients": [
{ "client": "pathfinder", "version": "v0.22.5", "cpu": 8, "ramGi": 32, "storageGi": 1000 }
],
"totals": { "cpu": 8, "ramGi": 32, "storageGi": 1000 }
},
{
"protocol": "TRON", "network": "Mainnet", "chainId": null,
"explorer": "https://tronscan.org",
"family": "tron", "status": "available", "snapshotBootstrap": false,
"presets": ["standard"],
"clients": [
{ "client": "java-tron", "version": "GreatVoyage-v4.8.1.1", "cpu": 8, "ramGi": 32, "storageGi": 3000 }
],
"totals": { "cpu": 8, "ramGi": 32, "storageGi": 3000 }
},
{
"protocol": "Bitcoin", "network": "Mainnet", "chainId": null,
"explorer": "https://blockstream.info",
"family": "bitcoin", "status": "available", "snapshotBootstrap": false,
"presets": ["standard"],
"clients": [
{ "client": "bitcoind", "version": "31", "cpu": 4, "ramGi": 8, "storageGi": 1000 }
],
"totals": { "cpu": 4, "ramGi": 8, "storageGi": 1000 }
},
{
"protocol": "Sui", "network": "Mainnet", "chainId": null,
"explorer": "https://suivision.xyz",
"family": "sui", "status": "available", "snapshotBootstrap": true,
"presets": ["standard"],
"clients": [
{ "client": "sui-node", "version": "v1.75.2", "cpu": 16, "ramGi": 64, "storageGi": 400 }
],
"totals": { "cpu": 16, "ramGi": 64, "storageGi": 400 }
},
{
"protocol": "Sui", "network": "Testnet", "chainId": null,
"explorer": "https://testnet.suivision.xyz",
"family": "sui", "status": "available", "snapshotBootstrap": true,
"presets": ["standard"],
"clients": [
{ "client": "sui-node", "version": "v1.76.0", "cpu": 16, "ramGi": 64, "storageGi": 2200 }
],
"totals": { "cpu": 16, "ramGi": 64, "storageGi": 2200 }
},
{
"protocol": "Tempo", "network": "Mainnet", "chainId": 4217,
"explorer": "https://explore.tempo.xyz",
"family": "tempo", "status": "available", "snapshotBootstrap": true,
"presets": ["standard"],
"clients": [
{ "client": "tempo", "version": "1.11.0", "cpu": 4, "ramGi": 16, "storageGi": 70 }
],
"totals": { "cpu": 4, "ramGi": 16, "storageGi": 70 }
},
{
"protocol": "Tempo", "network": "Testnet", "chainId": 42431,
"explorer": "https://explore.testnet.tempo.xyz",
"family": "tempo", "status": "available", "snapshotBootstrap": true,
"presets": ["standard"],
"clients": [
{ "client": "tempo", "version": "1.11.0", "cpu": 4, "ramGi": 16, "storageGi": 1100 }
],
"totals": { "cpu": 4, "ramGi": 16, "storageGi": 1100 }
},
{
"protocol": "Plasma", "network": "Mainnet", "chainId": 9745,
"explorer": "https://plasmascan.to",
"family": "plasma", "status": "available", "snapshotBootstrap": false,
"presets": ["standard"],
"clients": [
{ "client": "reth", "version": "v1.11.3", "cpu": 4, "ramGi": 16, "storageGi": 300 },
{ "client": "plasma", "version": "0.15.0", "cpu": 1, "ramGi": 4, "storageGi": 50 }
],
"totals": { "cpu": 5, "ramGi": 20, "storageGi": 350 }
},
{
"protocol": "Plasma", "network": "Testnet", "chainId": 9746,
"explorer": "https://testnet.plasmascan.to",
"family": "plasma", "status": "available", "snapshotBootstrap": false,
"presets": ["standard"],
"clients": [
{ "client": "reth", "version": "v1.11.3", "cpu": 4, "ramGi": 16, "storageGi": 200 },
{ "client": "plasma", "version": "0.15.0", "cpu": 1, "ramGi": 4, "storageGi": 50 }
],
"totals": { "cpu": 5, "ramGi": 20, "storageGi": 250 }
},
{
"protocol": "Avalanche", "network": "Mainnet", "chainId": 43114,
"explorer": "https://snowscan.xyz",
"family": "avalanche", "status": "available", "snapshotBootstrap": true,
"presets": ["standard"],
"clients": [
{ "client": "avalanchego", "version": "v1.14.2", "cpu": 4, "ramGi": 16, "storageGi": 400 }
],
"totals": { "cpu": 4, "ramGi": 16, "storageGi": 400 }
},
{
"protocol": "Avalanche", "network": "Fuji", "chainId": 43113,
"explorer": "https://testnet.snowscan.xyz",
"family": "avalanche", "status": "available", "snapshotBootstrap": false,
"presets": ["standard"],
"clients": [
{ "client": "avalanchego", "version": "v1.15.0-fuji", "cpu": 4, "ramGi": 16, "storageGi": 300 }
],
"totals": { "cpu": 4, "ramGi": 16, "storageGi": 300 }
},
{
"protocol": "Arc", "network": "Testnet", "chainId": 5042002,
"explorer": "https://testnet.arcscan.app",
"family": "arc", "status": "available", "snapshotBootstrap": true,
"presets": ["standard"],
"clients": [
{ "client": "arc-execution", "version": "0.7.3", "cpu": 6, "ramGi": 24, "storageGi": 250 },
{ "client": "arc-consensus", "version": "0.7.3", "cpu": 2, "ramGi": 8, "storageGi": 64 }
],
"totals": { "cpu": 8, "ramGi": 32, "storageGi": 314 }
},
{
"protocol": "XRP Ledger", "network": "Mainnet", "chainId": null,
"explorer": "https://livenet.xrpl.org",
"family": "xrpl", "status": "available", "snapshotBootstrap": false,
"presets": ["standard"],
"clients": [
{ "client": "xrpld", "version": "3.2.1", "cpu": 8, "ramGi": 32, "storageGi": 50 }
],
"totals": { "cpu": 8, "ramGi": 32, "storageGi": 50 }
},
{
"protocol": "XRP Ledger", "network": "Testnet", "chainId": null,
"explorer": "https://testnet.xrpl.org",
"family": "xrpl", "status": "available", "snapshotBootstrap": false,
"presets": ["standard"],
"clients": [
{ "client": "xrpld", "version": "3.2.1", "cpu": 4, "ramGi": 16, "storageGi": 50 }
],
"totals": { "cpu": 4, "ramGi": 16, "storageGi": 50 }
},
{
"protocol": "Solana", "network": "Mainnet", "chainId": null,
"explorer": "https://solscan.io",
"family": "solana", "status": "coming-soon", "snapshotBootstrap": null,
"presets": [],
"clients": [
{ "client": "agave", "version": null, "cpu": null, "ramGi": null, "storageGi": null }
],
"totals": { "cpu": null, "ramGi": null, "storageGi": null }
}
]
}