-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.yaml
More file actions
1864 lines (1855 loc) · 51 KB
/
config.yaml
File metadata and controls
1864 lines (1855 loc) · 51 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
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
datasets:
- name: Beacon API Event Stream
description: Events derived from the Beacon API event stream. This data is usually useful for 'timing' events, such as when a block was seen by a sentry. Because of this it usually has the same data but from many different instances. These tables are usually fairly slim and contain only a few columns. These tables can be joined with the canonical tables to get a more complete view of the data. For example, you can join the beacon_api_eth_v1_events_block table on block_root or slot with the canonical_beacon_block table to get the block data for each block.
tables:
prefix: beacon_api_
availability:
- public
- ethpandaops-clickhouse
- name: Execution Layer P2P
description: Events from the execution layer p2p network. This data is usually useful for 'timing' events, such as when a transaction was seen in the mempool by an instance. Because of this it usually has the same data but from many different instances.
tables:
prefix: mempool_
availability:
- ethpandaops-clickhouse
- public
- name: Canonical Beacon
description: Events derived from the finalized beacon chain. This data is only derived by a single instance, are deduped, and are more complete and reliable than the beacon_api_ tables. These tables can be reliably JOINed on to hydrate other tables with information
tables:
prefix: canonical_beacon_
availability:
- ethpandaops-clickhouse
- public
- name: Canonical Execution
description: Data extracted from the execution layer. This data is only derived by a single instance, are deduped, and are more complete and reliable than the execution_layer_p2p tables. These tables can be reliably JOINed on to hydrate other tables with information
tables:
prefix: canonical_execution_
availability:
- ethpandaops-clickhouse
- public
- name: Consensus Layer P2P
description: Events from the consensus layer p2p network. This data is usually useful for 'timing' events, such as when a block was seen by a sentry. Because of this it usually has the same data but from many different instances.
additional_info: "The libp2p dataset captures peer-to-peer network events from the consensus layer, however due to the large volume of network traffic, data is sampled using a sharding strategy. This ensures manageable data sizes while maintaining significance. Not all events are captured - the sampling rate varies by event type and topic, with high-volume topics being more aggressively sampled.\n\n## Event Categorization\n\nEvents are categorized into four groups based on their available sharding keys:\n\n### Group A: Topic + MsgID Events\nEvents with both topic and message ID, enabling full sharding flexibility:\n- `PUBLISH_MESSAGE`, `DELIVER_MESSAGE`, `DUPLICATE_MESSAGE`, `REJECT_MESSAGE`\n- `GOSSIPSUB_BEACON_BLOCK`, `GOSSIPSUB_BEACON_ATTESTATION`, `GOSSIPSUB_BLOB_SIDECAR`\n- `RPC_META_MESSAGE`, `RPC_META_CONTROL_IHAVE`\n\n**Sharding**: Uses message ID for sharding, with topic-based configuration\n\n### Group B: Topic-Only Events\nEvents with only topic information:\n- `JOIN`, `LEAVE`, `GRAFT`, `PRUNE`\n- `RPC_META_CONTROL_GRAFT`, `RPC_META_CONTROL_PRUNE`, `RPC_META_SUBSCRIPTION`\n\n**Sharding**: Uses topic hash for sharding decisions\n\n### Group C: MsgID-Only Events\nEvents with only message ID:\n- `RPC_META_CONTROL_IWANT`, `RPC_META_CONTROL_IDONTWANT`\n\n**Sharding**: Uses message ID with default configuration\n\n### Group D: No Sharding Key Events\nEvents without sharding keys:\n- `ADD_PEER`, `REMOVE_PEER`, `CONNECTED`, `DISCONNECTED`\n- `RECV_RPC`, `SEND_RPC`, `DROP_RPC` (parent events only)\n- `HANDLE_METADATA`, `HANDLE_STATUS`\n\n**Sharding**: All-or-nothing based on configuration\n\n### Sharding Decision Flow\n```\n┌─────────────┐\n│Event Arrives│\n└──────┬──────┘\n │\n ▼\n┌──────────────┐ ┌─────────────────┐\n│Get Event Info├────►│ Event Category? │\n└──────────────┘ └────────┬────────┘\n │\n ┌─────────────────────┼─────────────────────┬─────────────────────┐\n ▼ ▼ ▼ ▼\n ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐\n │ Group A │ │ Group B │ │ Group C │ │ Group D │\n │Topic+Msg│ │Topic Only│ │Msg Only │ │ No Keys │\n └────┬────┘ └────┬────┘ └────┬────┘ └────┬────┘\n │ │ │ │\n ▼ ▼ ▼ ▼\n Topic Config? Topic Config? Default Shard Enabled?\n │ │ │ │\n Yes/No Yes/No │ Yes/No\n │ │ │ │\n ▼ ▼ ▼ ▼\n Shard by Msg Shard by Topic Shard by Msg Process/Drop\n```\n"
tables:
prefix: libp2p_
availability:
- ethpandaops-clickhouse
- public
- name: MEV Relay
description: Events derived from MEV relays. Data is scraped from multiple MEV Relays by multiple instances.
tables:
prefix: mev_relay_
availability:
- public
- ethpandaops-clickhouse
- name: CBT (ClickHouse Build Tools)
description: Pre-aggregated analytical tables for common blockchain queries. These tables are transformation tables similar to DBT, powered by [xatu-cbt](https://github.com/ethpandaops/xatu-cbt) using [ClickHouse Build Tools (CBT)](https://github.com/ethpandaops/cbt).
additional_info: 'CBT tables are organized by network-specific databases. To query these tables, you must target the correct database for your network:
- `mainnet.table_name` for Mainnet data
- `sepolia.table_name` for Sepolia data
- `holesky.table_name` for Holesky data
- `hoodi.table_name` for Hoodi data
Unlike other Xatu datasets, CBT tables do not use `meta_network_name` for filtering. The network is determined by the database you query.
CBT tables include dimension tables (prefixed with `dim_`), fact tables (prefixed with `fct_`), and intermediate tables (prefixed with `int_`).
'
tables:
prefix: ''
availability:
- ethpandaops-clickhouse
tables:
- name: beacon_api_eth_v1_beacon_committee
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: hourly
networks:
mainnet:
from: '2023-09-04'
to: '2026-04-29'
holesky:
from: '2023-09-28'
to: '2025-10-26'
sepolia:
from: '2022-06-25'
to: '2026-04-29'
tags:
- Consensus layer
quirks: Sometimes sentries may [publish different committees](https://github.com/ethpandaops/xatu/issues/288) for the same epoch.
description: Contains beacon API /eth/v1/beacon/states/{state_id}/committees data from each sentry client attached to a beacon node.
- name: beacon_api_eth_v1_events_attestation
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: hourly
networks:
mainnet:
from: '2023-06-01'
to: '2026-04-29'
holesky:
from: '2023-09-18'
to: '2025-11-17'
sepolia:
from: '2023-08-31'
to: '2026-04-29'
tags:
- Consensus layer
description: Contains beacon API eventstream "attestation" data from each sentry client attached to a beacon node.
- name: beacon_api_eth_v1_events_blob_sidecar
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2024-03-13'
to: '2025-12-09'
holesky:
from: '2024-02-07'
to: '2025-11-03'
sepolia:
from: '2024-01-30'
to: '2025-10-20'
tags:
- Consensus layer
description: Contains beacon API eventstream "blob_sidecar" data from each sentry client attached to a beacon node.
- name: beacon_api_eth_v1_events_block
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2026-04-29'
holesky:
from: '2020-12-02'
to: '2026-04-29'
sepolia:
from: '2023-12-24'
to: '2026-04-29'
tags:
- Consensus layer
description: Contains beacon API eventstream "block" data from each sentry client attached to a beacon node.
- name: beacon_api_eth_v1_events_block_gossip
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2025-05-14'
to: '2026-04-29'
holesky:
from: '2025-05-14'
to: '2025-11-22'
sepolia:
from: '2025-05-14'
to: '2026-04-29'
tags:
- Consensus layer
description: Contains beacon API eventstream "block_gossip" data from each sentry client attached to a beacon node.
- name: beacon_api_eth_v1_events_chain_reorg
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2023-03-01'
to: '2026-04-29'
holesky:
from: '2024-02-05'
to: '2026-04-29'
sepolia:
from: '2023-12-30'
to: '2026-04-29'
tags:
- Consensus layer
description: Contains beacon API eventstream "chain reorg" data from each sentry client attached to a beacon node.
- name: beacon_api_eth_v1_events_contribution_and_proof
database: default
excluded_columns: []
partitioning:
type: datetime
column: contribution_slot_start_date_time
interval: daily
networks:
mainnet:
from: '2023-08-31'
to: '2026-04-29'
holesky:
from: '2023-12-24'
to: '2025-10-26'
sepolia:
from: '2023-12-24'
to: '2026-04-29'
tags:
- Consensus layer
description: Contains beacon API eventstream "contribution and proof" data from each sentry client attached to a beacon node.
- name: beacon_api_eth_v1_events_data_column_sidecar
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2025-12-03'
to: '2026-04-29'
holesky:
from: '2025-10-01'
to: '2025-11-09'
hoodi:
from: '2025-10-28'
to: '2026-04-29'
sepolia:
from: '2025-10-14'
to: '2026-04-29'
tags:
- Consensus layer
description: Contains beacon API eventstream "data_column_sidecar" data from each sentry client attached to a beacon node.
- name: beacon_api_eth_v1_events_finalized_checkpoint
database: default
excluded_columns: []
partitioning:
type: datetime
column: epoch_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2026-04-29'
holesky:
from: '2023-03-26'
to: '2026-04-29'
sepolia:
from: '2023-03-26'
to: '2026-04-29'
tags:
- Consensus layer
description: Contains beacon API eventstream "finalized checkpoint" data from each sentry client attached to a beacon node.
- name: beacon_api_eth_v1_events_head
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2026-04-29'
holesky:
from: '2023-12-05'
to: '2026-04-29'
sepolia:
from: '2023-12-05'
to: '2026-04-29'
tags:
- Consensus layer
description: Contains beacon API eventstream "head" data from each sentry client attached to a beacon node.
- name: beacon_api_eth_v1_events_voluntary_exit
database: default
excluded_columns: []
partitioning:
type: datetime
column: wallclock_epoch_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2026-04-29'
holesky:
from: '2023-09-28'
to: '2025-08-12'
sepolia:
from: '2023-10-01'
to: 'null'
tags:
- Consensus layer
description: Contains beacon API eventstream "voluntary exit" data from each sentry client attached to a beacon node.
- name: beacon_api_eth_v1_validator_attestation_data
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2023-08-31'
to: '2026-04-29'
holesky:
from: '2023-12-24'
to: '2025-10-26'
sepolia:
from: '2023-12-24'
to: '2026-04-29'
tags:
- Consensus layer
description: Contains beacon API validator attestation data from each sentry client attached to a beacon node.
- name: beacon_api_eth_v2_beacon_block
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2026-04-29'
holesky:
from: '2023-09-28'
to: '2025-10-26'
sepolia:
from: '2022-06-20'
to: '2026-04-29'
tags:
- Consensus layer
description: Contains beacon API /eth/v2/beacon/blocks/{block_id} data from each sentry client attached to a beacon node.
- name: mempool_transaction
database: default
excluded_columns: []
partitioning:
type: datetime
column: event_date_time
interval: daily
networks:
mainnet:
from: '2023-03-03'
to: '2026-04-29'
holesky:
from: '2024-01-08'
to: '2025-10-26'
sepolia:
from: '2024-01-08'
to: '2026-04-29'
tags:
- Execution layer
- Transaction
- Mempool
description: Each row represents a transaction that was seen in the mempool by a sentry client. Sentries can report the same transaction multiple times if it has been long enough since the last report.
- name: beacon_api_eth_v1_proposer_duty
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2024-04-03'
to: '2026-04-29'
holesky:
from: '2024-04-03'
to: '2025-10-26'
sepolia:
from: '2024-04-03'
to: '2026-04-29'
tags:
- Consensus layer
description: Contains a proposer duty from a beacon block.
- name: beacon_api_eth_v3_validator_block
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2024-11-25'
to: '2026-04-29'
holesky:
from: '2024-11-25'
to: '2025-10-26'
sepolia:
from: '2024-11-25'
to: '2026-04-29'
tags:
- Consensus layer
description: Contains beacon API /eth/v3/validator/blocks/{slot} data from each sentry client attached to a beacon node.
- name: canonical_beacon_block
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2026-04-29'
holesky:
from: '2023-09-23'
to: '2025-10-26'
sepolia:
from: '2022-06-20'
to: '2026-04-29'
tags:
- Consensus layer
- Finalized
description: Contains beacon block from a beacon node.
- name: canonical_beacon_committee
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2026-04-29'
holesky:
from: '2023-09-23'
to: '2025-10-26'
sepolia:
from: '2022-06-20'
to: '2026-04-29'
tags:
- Consensus layer
- Finalized
description: Contains canonical beacon API /eth/v1/beacon/committees data.
- name: canonical_beacon_block_attester_slashing
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2026-04-06'
holesky:
from: '2023-09-23'
to: '2025-10-03'
sepolia:
from: '2022-06-22'
to: 'null'
tags:
- Consensus layer
- Finalized
description: Contains attester slashing from a beacon block.
- name: canonical_beacon_block_proposer_slashing
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2025-04-27'
holesky:
from: '2023-09-23'
to: '2025-04-27'
sepolia:
from: '2022-06-22'
to: 'null'
tags:
- Consensus layer
- Finalized
description: Contains proposer slashing from a beacon block.
- name: canonical_beacon_block_bls_to_execution_change
database: default
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
excluded_columns: []
networks:
mainnet:
from: '2023-04-12'
to: '2026-04-29'
holesky:
from: '2023-09-28'
to: '2025-05-09'
sepolia:
from: '2022-06-22'
to: '2025-05-16'
tags:
- Consensus layer
- Finalized
description: Contains bls to execution change from a beacon block.
- name: canonical_beacon_block_execution_transaction
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2022-09-06'
to: '2026-04-29'
holesky:
from: '2023-09-23'
to: '2025-10-26'
sepolia:
from: '2022-06-22'
to: '2026-04-29'
tags:
- Consensus layer
- Finalized
description: Contains execution transaction from a beacon block.
- name: canonical_beacon_block_voluntary_exit
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2026-04-29'
holesky:
from: '2023-09-23'
to: '2025-08-06'
sepolia:
from: '2022-06-22'
to: '2025-10-22'
tags:
- Consensus layer
- Finalized
description: Contains a voluntary exit from a beacon block.
- name: canonical_beacon_block_deposit
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2025-05-14'
holesky:
from: '2023-09-23'
to: '2025-04-27'
sepolia:
from: '2022-06-22'
to: '2025-04-27'
tags:
- Consensus layer
- Finalized
description: Contains a deposit from a beacon block.
- name: canonical_beacon_block_withdrawal
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2023-04-12'
to: '2026-04-29'
holesky:
from: '2023-09-23'
to: '2025-10-26'
sepolia:
from: '2023-02-28'
to: '2026-04-29'
tags:
- Consensus layer
- Finalized
description: Contains a withdrawal from a beacon block.
- name: canonical_beacon_blob_sidecar
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2024-03-13'
to: '2026-04-29'
holesky:
from: '2024-02-07'
to: '2025-10-15'
sepolia:
from: '2024-01-30'
to: '2026-04-29'
tags:
- Consensus layer
- Finalized
description: Contains a blob sidecar from a beacon block.
- name: canonical_beacon_proposer_duty
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2026-04-29'
holesky:
from: '2023-09-23'
to: '2025-10-26'
sepolia:
from: '2022-06-20'
to: '2026-04-29'
tags:
- Consensus layer
- Finalized
description: Contains a proposer duty from a beacon block.
- name: canonical_beacon_elaborated_attestation
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2026-04-29'
holesky:
from: '2023-09-23'
to: '2025-10-26'
sepolia:
from: '2022-06-20'
to: '2026-04-29'
tags:
- Consensus layer
- Finalized
description: Contains elaborated attestations from beacon blocks.
- name: canonical_beacon_validators
database: default
excluded_columns: []
partitioning:
type: datetime
column: epoch_start_date_time
interval: hourly
networks:
mainnet:
from: '2020-12-01'
to: '2026-04-29'
holesky:
from: '2023-09-23'
to: '2025-10-26'
sepolia:
from: '2022-06-20'
to: '2026-04-28'
tags:
- Consensus layer
- Finalized
description: Contains a validator state for an epoch.
- name: canonical_beacon_validators_pubkeys
database: default
excluded_columns: []
partitioning:
type: integer
column: index
interval: 50
networks:
mainnet:
from: '0'
to: '2265250'
holesky:
from: '0'
to: '1923800'
sepolia:
from: '0'
to: '1900'
tags:
- Consensus layer
- Finalized
quirks: A new parquet file is only created once there is 50 new validator index's assigned and finalized. Also available in chunks of 10,000.
description: Contains a validator state for an epoch.
- name: libp2p_gossipsub_beacon_attestation
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: hourly
networks:
mainnet:
from: '2024-05-01'
to: '2026-04-29'
holesky:
from: '2024-05-01'
to: '2025-10-26'
sepolia:
from: '2024-05-01'
to: '2026-04-29'
tags:
- Consensus layer
- P2P
description: Table for libp2p gossipsub beacon attestation data.
- name: libp2p_gossipsub_beacon_block
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2026-04-29'
holesky:
from: '2024-04-26'
to: '2025-10-26'
sepolia:
from: '2024-04-26'
to: '2026-04-29'
tags:
- Consensus layer
- P2P
description: Table for libp2p gossipsub beacon block data.
- name: libp2p_gossipsub_blob_sidecar
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2020-12-01'
to: '2025-12-09'
holesky:
from: '2024-06-03'
to: '2025-10-07'
sepolia:
from: '2024-06-03'
to: '2025-10-20'
tags:
- Consensus layer
- P2P
description: Table for libp2p gossipsub blob sidecar data
- name: libp2p_gossipsub_data_column_sidecar
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2025-12-03'
to: '2026-04-29'
holesky:
from: '2025-10-01'
to: '2025-10-26'
hoodi:
from: '2025-10-28'
to: '2026-04-29'
sepolia:
from: '2025-10-14'
to: '2026-04-29'
tags:
- Consensus layer
- P2P
description: Table for libp2p gossipsub data column sidecar data.
- name: libp2p_gossipsub_aggregate_and_proof
database: default
excluded_columns: []
partitioning:
type: datetime
column: slot_start_date_time
interval: daily
networks:
mainnet:
from: '2025-07-11'
to: '2026-04-29'
holesky:
from: '2025-07-11'
to: '2025-10-26'
sepolia:
from: '2025-07-11'
to: '2026-04-29'
tags:
- Consensus layer
- P2P
description: Table for libp2p gossipsub aggregate and proof attestation data
- name: libp2p_connected
database: default
excluded_columns: []
partitioning:
type: datetime
column: event_date_time
interval: daily
networks:
mainnet:
from: '2024-04-24'
to: '2026-04-29'
hoodi:
from: '2025-03-17'
to: '2026-04-29'
sepolia:
from: '2024-04-22'
to: '2026-04-29'
tags:
- Consensus layer
- P2P
description: Table for libp2p connected events
- name: libp2p_disconnected
database: default
excluded_columns: []
partitioning:
type: datetime
column: event_date_time
interval: daily
networks:
mainnet:
from: '2024-04-24'
to: '2026-04-29'
hoodi:
from: '2025-03-17'
to: '2026-04-29'
sepolia:
from: '2024-04-22'
to: '2026-04-29'
tags:
- Consensus layer
- P2P
description: Table for libp2p disconnected events
- name: libp2p_add_peer
database: default
excluded_columns: []
partitioning:
type: datetime
column: event_date_time
interval: daily
networks:
mainnet:
from: '2024-04-24'
to: '2026-04-29'
hoodi:
from: '2025-03-17'
to: '2026-04-29'
sepolia:
from: '2024-04-22'
to: '2026-04-29'
tags:
- Consensus layer
- P2P
description: Table for libp2p add peer events
- name: libp2p_remove_peer
database: default
excluded_columns: []
partitioning:
type: datetime
column: event_date_time
interval: daily
networks:
mainnet:
from: '2024-04-24'
to: '2026-04-29'
hoodi:
from: '2025-03-17'
to: '2026-04-29'
sepolia:
from: '2024-04-22'
to: '2026-04-29'
tags:
- Consensus layer
- P2P
description: Table for libp2p remove peer events
- name: libp2p_recv_rpc
database: default
excluded_columns: []
partitioning:
type: datetime
column: event_date_time
interval: daily
networks:
mainnet:
from: '2025-05-30'
to: '2026-04-29'
hoodi:
from: '2025-05-29'
to: '2026-04-29'
sepolia:
from: '2025-05-29'
to: '2026-04-29'
tags:
- Consensus layer
- P2P
description: Table for libp2p recv rpc events
- name: libp2p_send_rpc
database: default
excluded_columns: []
partitioning:
type: datetime
column: event_date_time
interval: daily
networks:
mainnet:
from: '2025-05-30'
to: '2026-04-29'
hoodi:
from: '2025-05-29'
to: '2026-04-29'
sepolia:
from: '2025-05-29'
to: '2026-04-29'
tags:
- Consensus layer
- P2P
description: Table for libp2p send rpc events
- name: libp2p_drop_rpc
database: default
excluded_columns: []
partitioning:
type: datetime
column: event_date_time
interval: daily
networks:
mainnet:
from: '2025-05-30'
to: '2026-04-29'
hoodi:
from: '2025-05-29'
to: '2026-04-29'
sepolia:
from: '2025-05-30'
to: '2026-04-17'
tags:
- Consensus layer
- P2P
description: Table for libp2p drop rpc events
- name: libp2p_join
database: default
excluded_columns: []
partitioning:
type: datetime
column: event_date_time
interval: daily
networks:
mainnet:
from: '2024-05-01'
to: '2026-04-29'
hoodi:
from: '2025-03-17'
to: '2026-04-29'
sepolia:
from: '2024-05-01'
to: '2026-04-29'
tags:
- Consensus layer
- P2P
description: Table for libp2p join events
- name: libp2p_leave
database: default
excluded_columns: []
partitioning:
type: datetime
column: event_date_time
interval: daily
networks:
mainnet:
from: '2025-06-01'
to: '2026-04-29'
hoodi:
from: '2025-06-01'
to: '2025-06-01'
sepolia:
from: '2025-06-01'
to: '2025-06-01'
tags:
- Consensus layer
- P2P
description: Table for libp2p leave events
- name: libp2p_graft
database: default
excluded_columns: []
partitioning:
type: datetime
column: event_date_time
interval: daily
networks:
mainnet:
from: '2025-05-30'
to: '2026-04-29'
hoodi:
from: '2025-05-29'
to: '2026-04-29'