forked from dankrad/python-ssv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
beacon_chain_pb2.py
2820 lines (2697 loc) · 138 KB
/
beacon_chain_pb2.py
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
# -*- coding: utf-8 -*-
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: beacon_chain.proto
"""Generated protocol buffer code."""
from google.protobuf.internal import enum_type_wrapper
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
from google.protobuf import symbol_database as _symbol_database
# @@protoc_insertion_point(imports)
_sym_db = _symbol_database.Default()
from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2
import attestation_pb2 as attestation__pb2
import beacon_block_pb2 as beacon__block__pb2
import validator_pb2 as validator__pb2
DESCRIPTOR = _descriptor.FileDescriptor(
name='beacon_chain.proto',
package='ethereum.eth.v1alpha1',
syntax='proto3',
serialized_options=b'\n\031org.ethereum.eth.v1alpha1B\020BeaconChainProtoP\001Z6github.com/prysmaticlabs/ethereumapis/eth/v1alpha1;eth\252\002\025Ethereum.Eth.v1alpha1\312\002\025Ethereum\\Eth\\v1alpha1',
create_key=_descriptor._internal_create_key,
serialized_pb=b'\n\x12\x62\x65\x61\x63on_chain.proto\x12\x15\x65thereum.eth.v1alpha1\x1a\x1cgoogle/api/annotations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x19google/protobuf/any.proto\x1a\x11\x61ttestation.proto\x1a\x12\x62\x65\x61\x63on_block.proto\x1a\x0fvalidator.proto\"[\n\x12ValidatorChangeSet\x12\x30\n\x06\x61\x63tion\x18\x01 \x01(\x0e\x32 .ethereum.eth.v1alpha1.SetAction\x12\x13\n\x0bpublic_keys\x18\x02 \x03(\x0c\"\x81\x01\n\x1eListIndexedAttestationsRequest\x12\x0f\n\x05\x65poch\x18\x01 \x01(\x04H\x00\x12\x17\n\rgenesis_epoch\x18\x02 \x01(\x08H\x00\x12\x11\n\tpage_size\x18\x03 \x01(\x05\x12\x12\n\npage_token\x18\x04 \x01(\tB\x0e\n\x0cquery_filter\"z\n\x17ListAttestationsRequest\x12\x0f\n\x05\x65poch\x18\x01 \x01(\x04H\x00\x12\x17\n\rgenesis_epoch\x18\x02 \x01(\x08H\x00\x12\x11\n\tpage_size\x18\x03 \x01(\x05\x12\x12\n\npage_token\x18\x04 \x01(\tB\x0e\n\x0cquery_filter\"\x81\x01\n\x18ListAttestationsResponse\x12\x38\n\x0c\x61ttestations\x18\x01 \x03(\x0b\x32\".ethereum.eth.v1alpha1.Attestation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x12\n\ntotal_size\x18\x03 \x01(\x05\"\x97\x01\n\x1fListIndexedAttestationsResponse\x12G\n\x14indexed_attestations\x18\x01 \x03(\x0b\x32).ethereum.eth.v1alpha1.IndexedAttestation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x12\n\ntotal_size\x18\x03 \x01(\x05\"\x8e\x01\n\x11ListBlocksRequest\x12\x0e\n\x04root\x18\x01 \x01(\x0cH\x00\x12\x0e\n\x04slot\x18\x02 \x01(\x04H\x00\x12\x0f\n\x05\x65poch\x18\x03 \x01(\x04H\x00\x12\x11\n\x07genesis\x18\x04 \x01(\x08H\x00\x12\x11\n\tpage_size\x18\x05 \x01(\x05\x12\x12\n\npage_token\x18\x06 \x01(\tB\x0e\n\x0cquery_filter\"\x87\x01\n\x12ListBlocksResponse\x12\x44\n\x0f\x62lockContainers\x18\x01 \x03(\x0b\x32+.ethereum.eth.v1alpha1.BeaconBlockContainer\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x12\n\ntotal_size\x18\x03 \x01(\x05\"c\n\x14\x42\x65\x61\x63onBlockContainer\x12\x37\n\x05\x62lock\x18\x01 \x01(\x0b\x32(.ethereum.eth.v1alpha1.SignedBeaconBlock\x12\x12\n\nblock_root\x18\x02 \x01(\x0c\"\xd3\x02\n\tChainHead\x12\x11\n\thead_slot\x18\x01 \x01(\x04\x12\x12\n\nhead_epoch\x18\x02 \x01(\x04\x12\x17\n\x0fhead_block_root\x18\x03 \x01(\x0c\x12\x16\n\x0e\x66inalized_slot\x18\x04 \x01(\x04\x12\x17\n\x0f\x66inalized_epoch\x18\x05 \x01(\x04\x12\x1c\n\x14\x66inalized_block_root\x18\x06 \x01(\x0c\x12\x16\n\x0ejustified_slot\x18\x07 \x01(\x04\x12\x17\n\x0fjustified_epoch\x18\x08 \x01(\x04\x12\x1c\n\x14justified_block_root\x18\t \x01(\x0c\x12\x1f\n\x17previous_justified_slot\x18\n \x01(\x04\x12 \n\x18previous_justified_epoch\x18\x0b \x01(\x04\x12%\n\x1dprevious_justified_block_root\x18\x0c \x01(\x0c\"K\n\x15ListCommitteesRequest\x12\x0f\n\x05\x65poch\x18\x01 \x01(\x04H\x00\x12\x11\n\x07genesis\x18\x02 \x01(\x08H\x00\x42\x0e\n\x0cquery_filter\"\x82\x03\n\x10\x42\x65\x61\x63onCommittees\x12\r\n\x05\x65poch\x18\x01 \x01(\x04\x12K\n\ncommittees\x18\x02 \x03(\x0b\x32\x37.ethereum.eth.v1alpha1.BeaconCommittees.CommitteesEntry\x12\x1e\n\x16\x61\x63tive_validator_count\x18\x03 \x01(\x04\x1a*\n\rCommitteeItem\x12\x19\n\x11validator_indices\x18\x01 \x03(\x04\x1a[\n\x0e\x43ommitteesList\x12I\n\ncommittees\x18\x01 \x03(\x0b\x32\x35.ethereum.eth.v1alpha1.BeaconCommittees.CommitteeItem\x1ai\n\x0f\x43ommitteesEntry\x12\x0b\n\x03key\x18\x01 \x01(\x04\x12\x45\n\x05value\x18\x02 \x01(\x0b\x32\x36.ethereum.eth.v1alpha1.BeaconCommittees.CommitteesList:\x02\x38\x01\"\x9f\x01\n\x1cListValidatorBalancesRequest\x12\x0f\n\x05\x65poch\x18\x01 \x01(\x04H\x00\x12\x11\n\x07genesis\x18\x02 \x01(\x08H\x00\x12\x13\n\x0bpublic_keys\x18\x03 \x03(\x0c\x12\x0f\n\x07indices\x18\x04 \x03(\x04\x12\x11\n\tpage_size\x18\x05 \x01(\x05\x12\x12\n\npage_token\x18\x06 \x01(\tB\x0e\n\x0cquery_filter\"\xd2\x01\n\x11ValidatorBalances\x12\r\n\x05\x65poch\x18\x01 \x01(\x04\x12\x42\n\x08\x62\x61lances\x18\x02 \x03(\x0b\x32\x30.ethereum.eth.v1alpha1.ValidatorBalances.Balance\x12\x17\n\x0fnext_page_token\x18\x03 \x01(\t\x12\x12\n\ntotal_size\x18\x04 \x01(\x05\x1a=\n\x07\x42\x61lance\x12\x12\n\npublic_key\x18\x01 \x01(\x0c\x12\r\n\x05index\x18\x02 \x01(\x04\x12\x0f\n\x07\x62\x61lance\x18\x03 \x01(\x04\"\xa8\x01\n\x15ListValidatorsRequest\x12\x0f\n\x05\x65poch\x18\x01 \x01(\x04H\x00\x12\x11\n\x07genesis\x18\x02 \x01(\x08H\x00\x12\x0e\n\x06\x61\x63tive\x18\x03 \x01(\x08\x12\x11\n\tpage_size\x18\x04 \x01(\x05\x12\x12\n\npage_token\x18\x05 \x01(\t\x12\x13\n\x0bpublic_keys\x18\x06 \x03(\x0c\x12\x0f\n\x07indices\x18\x07 \x03(\x04\x42\x0e\n\x0cquery_filter\"L\n\x13GetValidatorRequest\x12\x0f\n\x05index\x18\x01 \x01(\x04H\x00\x12\x14\n\npublic_key\x18\x02 \x01(\x0cH\x00\x42\x0e\n\x0cquery_filter\"\xf0\x01\n\nValidators\x12\r\n\x05\x65poch\x18\x01 \x01(\x04\x12L\n\x0evalidator_list\x18\x02 \x03(\x0b\x32\x34.ethereum.eth.v1alpha1.Validators.ValidatorContainer\x12\x17\n\x0fnext_page_token\x18\x03 \x01(\t\x12\x12\n\ntotal_size\x18\x04 \x01(\x05\x1aX\n\x12ValidatorContainer\x12\r\n\x05index\x18\x01 \x01(\x04\x12\x33\n\tvalidator\x18\x02 \x01(\x0b\x32 .ethereum.eth.v1alpha1.Validator\"Y\n#GetValidatorActiveSetChangesRequest\x12\x0f\n\x05\x65poch\x18\x01 \x01(\x04H\x00\x12\x11\n\x07genesis\x18\x02 \x01(\x08H\x00\x42\x0e\n\x0cquery_filter\"\xfb\x01\n\x10\x41\x63tiveSetChanges\x12\r\n\x05\x65poch\x18\x01 \x01(\x04\x12\x1d\n\x15\x61\x63tivated_public_keys\x18\x02 \x03(\x0c\x12\x19\n\x11\x61\x63tivated_indices\x18\x03 \x03(\x04\x12\x1a\n\x12\x65xited_public_keys\x18\x04 \x03(\x0c\x12\x16\n\x0e\x65xited_indices\x18\x05 \x03(\x04\x12\x1b\n\x13slashed_public_keys\x18\x06 \x03(\x0c\x12\x17\n\x0fslashed_indices\x18\x07 \x03(\x04\x12\x1b\n\x13\x65jected_public_keys\x18\x08 \x03(\x0c\x12\x17\n\x0f\x65jected_indices\x18\t \x03(\x04\"G\n\x1bValidatorPerformanceRequest\x12\x17\n\x0bpublic_keys\x18\x01 \x03(\x0c\x42\x02\x18\x01\x12\x0f\n\x07indices\x18\x02 \x03(\x04\"\x84\x03\n\x1cValidatorPerformanceResponse\x12\"\n\x1a\x63urrent_effective_balances\x18\x01 \x03(\x04\x12\x17\n\x0finclusion_slots\x18\x02 \x03(\x04\x12\x1b\n\x13inclusion_distances\x18\x03 \x03(\x04\x12\x1e\n\x16\x63orrectly_voted_source\x18\x04 \x03(\x08\x12\x1e\n\x16\x63orrectly_voted_target\x18\x05 \x03(\x08\x12\x1c\n\x14\x63orrectly_voted_head\x18\x06 \x03(\x08\x12(\n balances_before_epoch_transition\x18\x07 \x03(\x04\x12\'\n\x1f\x62\x61lances_after_epoch_transition\x18\x08 \x03(\x04\x12\x1a\n\x12missing_validators\x18\t \x03(\x0c\x12(\n average_active_validator_balance\x18\n \x01(\x02\x12\x13\n\x0bpublic_keys\x18\x0b \x03(\x0c\"\xa5\x01\n\x0eValidatorQueue\x12\x13\n\x0b\x63hurn_limit\x18\x01 \x01(\x04\x12\x1e\n\x16\x61\x63tivation_public_keys\x18\x02 \x03(\x0c\x12\x18\n\x10\x65xit_public_keys\x18\x03 \x03(\x0c\x12$\n\x1c\x61\x63tivation_validator_indices\x18\x04 \x03(\x04\x12\x1e\n\x16\x65xit_validator_indices\x18\x05 \x03(\x04\"\xa2\x01\n\x1fListValidatorAssignmentsRequest\x12\x0f\n\x05\x65poch\x18\x01 \x01(\x04H\x00\x12\x11\n\x07genesis\x18\x02 \x01(\x08H\x00\x12\x13\n\x0bpublic_keys\x18\x03 \x03(\x0c\x12\x0f\n\x07indices\x18\x04 \x03(\x04\x12\x11\n\tpage_size\x18\x05 \x01(\x05\x12\x12\n\npage_token\x18\x06 \x01(\tB\x0e\n\x0cquery_filter\"\xd0\x02\n\x14ValidatorAssignments\x12\r\n\x05\x65poch\x18\x01 \x01(\x04\x12T\n\x0b\x61ssignments\x18\x02 \x03(\x0b\x32?.ethereum.eth.v1alpha1.ValidatorAssignments.CommitteeAssignment\x12\x17\n\x0fnext_page_token\x18\x03 \x01(\t\x12\x12\n\ntotal_size\x18\x04 \x01(\x05\x1a\xa5\x01\n\x13\x43ommitteeAssignment\x12\x19\n\x11\x62\x65\x61\x63on_committees\x18\x01 \x03(\x04\x12\x17\n\x0f\x63ommittee_index\x18\x02 \x01(\x04\x12\x15\n\rattester_slot\x18\x03 \x01(\x04\x12\x16\n\x0eproposer_slots\x18\x04 \x03(\x04\x12\x12\n\npublic_key\x18\x05 \x01(\x0c\x12\x17\n\x0fvalidator_index\x18\x06 \x01(\x04\"V\n GetValidatorParticipationRequest\x12\x0f\n\x05\x65poch\x18\x01 \x01(\x04H\x00\x12\x11\n\x07genesis\x18\x02 \x01(\x08H\x00\x42\x0e\n\x0cquery_filter\"\x88\x01\n\x1eValidatorParticipationResponse\x12\r\n\x05\x65poch\x18\x01 \x01(\x04\x12\x11\n\tfinalized\x18\x02 \x01(\x08\x12\x44\n\rparticipation\x18\x03 \x01(\x0b\x32-.ethereum.eth.v1alpha1.ValidatorParticipation\"?\n\x16\x41ttestationPoolRequest\x12\x11\n\tpage_size\x18\x01 \x01(\x05\x12\x12\n\npage_token\x18\x02 \x01(\t\"\x80\x01\n\x17\x41ttestationPoolResponse\x12\x38\n\x0c\x61ttestations\x18\x01 \x03(\x0b\x32\".ethereum.eth.v1alpha1.Attestation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x12\n\ntotal_size\x18\x03 \x01(\x05\"~\n\x0c\x42\x65\x61\x63onConfig\x12?\n\x06\x63onfig\x18\x01 \x03(\x0b\x32/.ethereum.eth.v1alpha1.BeaconConfig.ConfigEntry\x1a-\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"1\n\x16SubmitSlashingResponse\x12\x17\n\x0fslashed_indices\x18\x01 \x03(\x04\"M\n\x16IndividualVotesRequest\x12\r\n\x05\x65poch\x18\x01 \x01(\x04\x12\x13\n\x0bpublic_keys\x18\x02 \x03(\x0c\x12\x0f\n\x07indices\x18\x03 \x03(\x04\"\xed\x04\n\x16IndividualVotesRespond\x12V\n\x10individual_votes\x18\x01 \x03(\x0b\x32<.ethereum.eth.v1alpha1.IndividualVotesRespond.IndividualVote\x1a\xfa\x03\n\x0eIndividualVote\x12\r\n\x05\x65poch\x18\x01 \x01(\x04\x12\x12\n\npublic_key\x18\x02 \x01(\x0c\x12\x17\n\x0fvalidator_index\x18\x03 \x01(\x04\x12\x12\n\nis_slashed\x18\x04 \x01(\x08\x12(\n is_withdrawable_in_current_epoch\x18\x05 \x01(\x08\x12\"\n\x1ais_active_in_current_epoch\x18\x06 \x01(\x08\x12#\n\x1bis_active_in_previous_epoch\x18\x07 \x01(\x08\x12!\n\x19is_current_epoch_attester\x18\x08 \x01(\x08\x12(\n is_current_epoch_target_attester\x18\t \x01(\x08\x12\"\n\x1ais_previous_epoch_attester\x18\n \x01(\x08\x12)\n!is_previous_epoch_target_attester\x18\x0b \x01(\x08\x12\'\n\x1fis_previous_epoch_head_attester\x18\x0c \x01(\x08\x12,\n$current_epoch_effective_balance_gwei\x18\r \x01(\x04\x12\x16\n\x0einclusion_slot\x18\x0e \x01(\x04\x12\x1a\n\x12inclusion_distance\x18\x0f \x01(\x04*V\n\tSetAction\x12\x16\n\x12\x41\x44\x44_VALIDATOR_KEYS\x10\x00\x12\x19\n\x15REMOVE_VALIDATOR_KEYS\x10\x01\x12\x16\n\x12SET_VALIDATOR_KEYS\x10\x02\x32\xd6\x1b\n\x0b\x42\x65\x61\x63onChain\x12\x9e\x01\n\x10ListAttestations\x12..ethereum.eth.v1alpha1.ListAttestationsRequest\x1a/.ethereum.eth.v1alpha1.ListAttestationsResponse\")\x82\xd3\xe4\x93\x02#\x12!/eth/v1alpha1/beacon/attestations\x12\xbb\x01\n\x17ListIndexedAttestations\x12\x35.ethereum.eth.v1alpha1.ListIndexedAttestationsRequest\x1a\x36.ethereum.eth.v1alpha1.ListIndexedAttestationsResponse\"1\x82\xd3\xe4\x93\x02+\x12)/eth/v1alpha1/beacon/attestations/indexed\x12\x84\x01\n\x12StreamAttestations\x12\x16.google.protobuf.Empty\x1a\".ethereum.eth.v1alpha1.Attestation\"0\x82\xd3\xe4\x93\x02*\x12(/eth/v1alpha1/beacon/attestations/stream0\x01\x12\x9a\x01\n\x19StreamIndexedAttestations\x12\x16.google.protobuf.Empty\x1a).ethereum.eth.v1alpha1.IndexedAttestation\"8\x82\xd3\xe4\x93\x02\x32\x12\x30/eth/v1alpha1/beacon/attestations/indexed/stream0\x01\x12\xa0\x01\n\x0f\x41ttestationPool\x12-.ethereum.eth.v1alpha1.AttestationPoolRequest\x1a..ethereum.eth.v1alpha1.AttestationPoolResponse\".\x82\xd3\xe4\x93\x02(\x12&/eth/v1alpha1/beacon/attestations/pool\x12\x86\x01\n\nListBlocks\x12(.ethereum.eth.v1alpha1.ListBlocksRequest\x1a).ethereum.eth.v1alpha1.ListBlocksResponse\"#\x82\xd3\xe4\x93\x02\x1d\x12\x1b/eth/v1alpha1/beacon/blocks\x12~\n\x0cStreamBlocks\x12\x16.google.protobuf.Empty\x1a(.ethereum.eth.v1alpha1.SignedBeaconBlock\"*\x82\xd3\xe4\x93\x02$\x12\"/eth/v1alpha1/beacon/blocks/stream0\x01\x12|\n\x0fStreamChainHead\x12\x16.google.protobuf.Empty\x1a .ethereum.eth.v1alpha1.ChainHead\"-\x82\xd3\xe4\x93\x02\'\x12%/eth/v1alpha1/beacon/chainhead/stream0\x01\x12p\n\x0cGetChainHead\x12\x16.google.protobuf.Empty\x1a .ethereum.eth.v1alpha1.ChainHead\"&\x82\xd3\xe4\x93\x02 \x12\x1e/eth/v1alpha1/beacon/chainhead\x12\x96\x01\n\x14ListBeaconCommittees\x12,.ethereum.eth.v1alpha1.ListCommitteesRequest\x1a\'.ethereum.eth.v1alpha1.BeaconCommittees\"\'\x82\xd3\xe4\x93\x02!\x12\x1f/eth/v1alpha1/beacon/committees\x12\xa1\x01\n\x15ListValidatorBalances\x12\x33.ethereum.eth.v1alpha1.ListValidatorBalancesRequest\x1a(.ethereum.eth.v1alpha1.ValidatorBalances\")\x82\xd3\xe4\x93\x02#\x12!/eth/v1alpha1/validators/balances\x12\x83\x01\n\x0eListValidators\x12,.ethereum.eth.v1alpha1.ListValidatorsRequest\x1a!.ethereum.eth.v1alpha1.Validators\" \x82\xd3\xe4\x93\x02\x1a\x12\x18/eth/v1alpha1/validators\x12}\n\x0cGetValidator\x12*.ethereum.eth.v1alpha1.GetValidatorRequest\x1a .ethereum.eth.v1alpha1.Validator\"\x1f\x82\xd3\xe4\x93\x02\x19\x12\x17/eth/v1alpha1/validator\x12\xb6\x01\n\x1cGetValidatorActiveSetChanges\x12:.ethereum.eth.v1alpha1.GetValidatorActiveSetChangesRequest\x1a\'.ethereum.eth.v1alpha1.ActiveSetChanges\"1\x82\xd3\xe4\x93\x02+\x12)/eth/v1alpha1/validators/activesetchanges\x12z\n\x11GetValidatorQueue\x12\x16.google.protobuf.Empty\x1a%.ethereum.eth.v1alpha1.ValidatorQueue\"&\x82\xd3\xe4\x93\x02 \x12\x1e/eth/v1alpha1/validators/queue\x12\xb0\x01\n\x17GetValidatorPerformance\x12\x32.ethereum.eth.v1alpha1.ValidatorPerformanceRequest\x1a\x33.ethereum.eth.v1alpha1.ValidatorPerformanceResponse\",\x82\xd3\xe4\x93\x02&\x12$/eth/v1alpha1/validators/performance\x12\xad\x01\n\x18ListValidatorAssignments\x12\x36.ethereum.eth.v1alpha1.ListValidatorAssignmentsRequest\x1a+.ethereum.eth.v1alpha1.ValidatorAssignments\",\x82\xd3\xe4\x93\x02&\x12$/eth/v1alpha1/validators/assignments\x12\xbb\x01\n\x19GetValidatorParticipation\x12\x37.ethereum.eth.v1alpha1.GetValidatorParticipationRequest\x1a\x35.ethereum.eth.v1alpha1.ValidatorParticipationResponse\".\x82\xd3\xe4\x93\x02(\x12&/eth/v1alpha1/validators/participation\x12s\n\x0fGetBeaconConfig\x12\x16.google.protobuf.Empty\x1a#.ethereum.eth.v1alpha1.BeaconConfig\"#\x82\xd3\xe4\x93\x02\x1d\x12\x1b/eth/v1alpha1/beacon/config\x12\xa0\x01\n\x14StreamValidatorsInfo\x12).ethereum.eth.v1alpha1.ValidatorChangeSet\x1a$.ethereum.eth.v1alpha1.ValidatorInfo\"3\x82\xd3\xe4\x93\x02-\x12+/eth/v1alpha1/beacon/validators/info/stream(\x01\x30\x01\x12\xa8\x01\n\x16SubmitAttesterSlashing\x12\'.ethereum.eth.v1alpha1.AttesterSlashing\x1a-.ethereum.eth.v1alpha1.SubmitSlashingResponse\"6\x82\xd3\xe4\x93\x02\x30\x12./eth/v1alpha1/beacon/slashings/attester/submit\x12\xa8\x01\n\x16SubmitProposerSlashing\x12\'.ethereum.eth.v1alpha1.ProposerSlashing\x1a-.ethereum.eth.v1alpha1.SubmitSlashingResponse\"6\x82\xd3\xe4\x93\x02\x30\x12./eth/v1alpha1/beacon/slashings/proposer/submit\x12\xa1\x01\n\x12GetIndividualVotes\x12-.ethereum.eth.v1alpha1.IndividualVotesRequest\x1a-.ethereum.eth.v1alpha1.IndividualVotesRespond\"-\x82\xd3\xe4\x93\x02\'\x12%/eth/v1alpha1/beacon/individual_votesB\x97\x01\n\x19org.ethereum.eth.v1alpha1B\x10\x42\x65\x61\x63onChainProtoP\x01Z6github.com/prysmaticlabs/ethereumapis/eth/v1alpha1;eth\xaa\x02\x15\x45thereum.Eth.v1alpha1\xca\x02\x15\x45thereum\\Eth\\v1alpha1b\x06proto3'
,
dependencies=[google_dot_api_dot_annotations__pb2.DESCRIPTOR,google_dot_protobuf_dot_empty__pb2.DESCRIPTOR,google_dot_protobuf_dot_any__pb2.DESCRIPTOR,attestation__pb2.DESCRIPTOR,beacon__block__pb2.DESCRIPTOR,validator__pb2.DESCRIPTOR,])
_SETACTION = _descriptor.EnumDescriptor(
name='SetAction',
full_name='ethereum.eth.v1alpha1.SetAction',
filename=None,
file=DESCRIPTOR,
create_key=_descriptor._internal_create_key,
values=[
_descriptor.EnumValueDescriptor(
name='ADD_VALIDATOR_KEYS', index=0, number=0,
serialized_options=None,
type=None,
create_key=_descriptor._internal_create_key),
_descriptor.EnumValueDescriptor(
name='REMOVE_VALIDATOR_KEYS', index=1, number=1,
serialized_options=None,
type=None,
create_key=_descriptor._internal_create_key),
_descriptor.EnumValueDescriptor(
name='SET_VALIDATOR_KEYS', index=2, number=2,
serialized_options=None,
type=None,
create_key=_descriptor._internal_create_key),
],
containing_type=None,
serialized_options=None,
serialized_start=5667,
serialized_end=5753,
)
_sym_db.RegisterEnumDescriptor(_SETACTION)
SetAction = enum_type_wrapper.EnumTypeWrapper(_SETACTION)
ADD_VALIDATOR_KEYS = 0
REMOVE_VALIDATOR_KEYS = 1
SET_VALIDATOR_KEYS = 2
_VALIDATORCHANGESET = _descriptor.Descriptor(
name='ValidatorChangeSet',
full_name='ethereum.eth.v1alpha1.ValidatorChangeSet',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='action', full_name='ethereum.eth.v1alpha1.ValidatorChangeSet.action', index=0,
number=1, type=14, cpp_type=8, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='public_keys', full_name='ethereum.eth.v1alpha1.ValidatorChangeSet.public_keys', index=1,
number=2, type=12, cpp_type=9, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=187,
serialized_end=278,
)
_LISTINDEXEDATTESTATIONSREQUEST = _descriptor.Descriptor(
name='ListIndexedAttestationsRequest',
full_name='ethereum.eth.v1alpha1.ListIndexedAttestationsRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='epoch', full_name='ethereum.eth.v1alpha1.ListIndexedAttestationsRequest.epoch', index=0,
number=1, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='genesis_epoch', full_name='ethereum.eth.v1alpha1.ListIndexedAttestationsRequest.genesis_epoch', index=1,
number=2, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='page_size', full_name='ethereum.eth.v1alpha1.ListIndexedAttestationsRequest.page_size', index=2,
number=3, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='page_token', full_name='ethereum.eth.v1alpha1.ListIndexedAttestationsRequest.page_token', index=3,
number=4, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
_descriptor.OneofDescriptor(
name='query_filter', full_name='ethereum.eth.v1alpha1.ListIndexedAttestationsRequest.query_filter',
index=0, containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[]),
],
serialized_start=281,
serialized_end=410,
)
_LISTATTESTATIONSREQUEST = _descriptor.Descriptor(
name='ListAttestationsRequest',
full_name='ethereum.eth.v1alpha1.ListAttestationsRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='epoch', full_name='ethereum.eth.v1alpha1.ListAttestationsRequest.epoch', index=0,
number=1, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='genesis_epoch', full_name='ethereum.eth.v1alpha1.ListAttestationsRequest.genesis_epoch', index=1,
number=2, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='page_size', full_name='ethereum.eth.v1alpha1.ListAttestationsRequest.page_size', index=2,
number=3, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='page_token', full_name='ethereum.eth.v1alpha1.ListAttestationsRequest.page_token', index=3,
number=4, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
_descriptor.OneofDescriptor(
name='query_filter', full_name='ethereum.eth.v1alpha1.ListAttestationsRequest.query_filter',
index=0, containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[]),
],
serialized_start=412,
serialized_end=534,
)
_LISTATTESTATIONSRESPONSE = _descriptor.Descriptor(
name='ListAttestationsResponse',
full_name='ethereum.eth.v1alpha1.ListAttestationsResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='attestations', full_name='ethereum.eth.v1alpha1.ListAttestationsResponse.attestations', index=0,
number=1, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='next_page_token', full_name='ethereum.eth.v1alpha1.ListAttestationsResponse.next_page_token', index=1,
number=2, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='total_size', full_name='ethereum.eth.v1alpha1.ListAttestationsResponse.total_size', index=2,
number=3, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=537,
serialized_end=666,
)
_LISTINDEXEDATTESTATIONSRESPONSE = _descriptor.Descriptor(
name='ListIndexedAttestationsResponse',
full_name='ethereum.eth.v1alpha1.ListIndexedAttestationsResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='indexed_attestations', full_name='ethereum.eth.v1alpha1.ListIndexedAttestationsResponse.indexed_attestations', index=0,
number=1, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='next_page_token', full_name='ethereum.eth.v1alpha1.ListIndexedAttestationsResponse.next_page_token', index=1,
number=2, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='total_size', full_name='ethereum.eth.v1alpha1.ListIndexedAttestationsResponse.total_size', index=2,
number=3, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=669,
serialized_end=820,
)
_LISTBLOCKSREQUEST = _descriptor.Descriptor(
name='ListBlocksRequest',
full_name='ethereum.eth.v1alpha1.ListBlocksRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='root', full_name='ethereum.eth.v1alpha1.ListBlocksRequest.root', index=0,
number=1, type=12, cpp_type=9, label=1,
has_default_value=False, default_value=b"",
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='slot', full_name='ethereum.eth.v1alpha1.ListBlocksRequest.slot', index=1,
number=2, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='epoch', full_name='ethereum.eth.v1alpha1.ListBlocksRequest.epoch', index=2,
number=3, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='genesis', full_name='ethereum.eth.v1alpha1.ListBlocksRequest.genesis', index=3,
number=4, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='page_size', full_name='ethereum.eth.v1alpha1.ListBlocksRequest.page_size', index=4,
number=5, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='page_token', full_name='ethereum.eth.v1alpha1.ListBlocksRequest.page_token', index=5,
number=6, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
_descriptor.OneofDescriptor(
name='query_filter', full_name='ethereum.eth.v1alpha1.ListBlocksRequest.query_filter',
index=0, containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[]),
],
serialized_start=823,
serialized_end=965,
)
_LISTBLOCKSRESPONSE = _descriptor.Descriptor(
name='ListBlocksResponse',
full_name='ethereum.eth.v1alpha1.ListBlocksResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='blockContainers', full_name='ethereum.eth.v1alpha1.ListBlocksResponse.blockContainers', index=0,
number=1, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='next_page_token', full_name='ethereum.eth.v1alpha1.ListBlocksResponse.next_page_token', index=1,
number=2, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='total_size', full_name='ethereum.eth.v1alpha1.ListBlocksResponse.total_size', index=2,
number=3, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=968,
serialized_end=1103,
)
_BEACONBLOCKCONTAINER = _descriptor.Descriptor(
name='BeaconBlockContainer',
full_name='ethereum.eth.v1alpha1.BeaconBlockContainer',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='block', full_name='ethereum.eth.v1alpha1.BeaconBlockContainer.block', index=0,
number=1, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='block_root', full_name='ethereum.eth.v1alpha1.BeaconBlockContainer.block_root', index=1,
number=2, type=12, cpp_type=9, label=1,
has_default_value=False, default_value=b"",
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1105,
serialized_end=1204,
)
_CHAINHEAD = _descriptor.Descriptor(
name='ChainHead',
full_name='ethereum.eth.v1alpha1.ChainHead',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='head_slot', full_name='ethereum.eth.v1alpha1.ChainHead.head_slot', index=0,
number=1, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='head_epoch', full_name='ethereum.eth.v1alpha1.ChainHead.head_epoch', index=1,
number=2, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='head_block_root', full_name='ethereum.eth.v1alpha1.ChainHead.head_block_root', index=2,
number=3, type=12, cpp_type=9, label=1,
has_default_value=False, default_value=b"",
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='finalized_slot', full_name='ethereum.eth.v1alpha1.ChainHead.finalized_slot', index=3,
number=4, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='finalized_epoch', full_name='ethereum.eth.v1alpha1.ChainHead.finalized_epoch', index=4,
number=5, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='finalized_block_root', full_name='ethereum.eth.v1alpha1.ChainHead.finalized_block_root', index=5,
number=6, type=12, cpp_type=9, label=1,
has_default_value=False, default_value=b"",
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='justified_slot', full_name='ethereum.eth.v1alpha1.ChainHead.justified_slot', index=6,
number=7, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='justified_epoch', full_name='ethereum.eth.v1alpha1.ChainHead.justified_epoch', index=7,
number=8, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='justified_block_root', full_name='ethereum.eth.v1alpha1.ChainHead.justified_block_root', index=8,
number=9, type=12, cpp_type=9, label=1,
has_default_value=False, default_value=b"",
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='previous_justified_slot', full_name='ethereum.eth.v1alpha1.ChainHead.previous_justified_slot', index=9,
number=10, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='previous_justified_epoch', full_name='ethereum.eth.v1alpha1.ChainHead.previous_justified_epoch', index=10,
number=11, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='previous_justified_block_root', full_name='ethereum.eth.v1alpha1.ChainHead.previous_justified_block_root', index=11,
number=12, type=12, cpp_type=9, label=1,
has_default_value=False, default_value=b"",
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1207,
serialized_end=1546,
)
_LISTCOMMITTEESREQUEST = _descriptor.Descriptor(
name='ListCommitteesRequest',
full_name='ethereum.eth.v1alpha1.ListCommitteesRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='epoch', full_name='ethereum.eth.v1alpha1.ListCommitteesRequest.epoch', index=0,
number=1, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='genesis', full_name='ethereum.eth.v1alpha1.ListCommitteesRequest.genesis', index=1,
number=2, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
_descriptor.OneofDescriptor(
name='query_filter', full_name='ethereum.eth.v1alpha1.ListCommitteesRequest.query_filter',
index=0, containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[]),
],
serialized_start=1548,
serialized_end=1623,
)
_BEACONCOMMITTEES_COMMITTEEITEM = _descriptor.Descriptor(
name='CommitteeItem',
full_name='ethereum.eth.v1alpha1.BeaconCommittees.CommitteeItem',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='validator_indices', full_name='ethereum.eth.v1alpha1.BeaconCommittees.CommitteeItem.validator_indices', index=0,
number=1, type=4, cpp_type=4, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1770,
serialized_end=1812,
)
_BEACONCOMMITTEES_COMMITTEESLIST = _descriptor.Descriptor(
name='CommitteesList',
full_name='ethereum.eth.v1alpha1.BeaconCommittees.CommitteesList',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='committees', full_name='ethereum.eth.v1alpha1.BeaconCommittees.CommitteesList.committees', index=0,
number=1, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1814,
serialized_end=1905,
)
_BEACONCOMMITTEES_COMMITTEESENTRY = _descriptor.Descriptor(
name='CommitteesEntry',
full_name='ethereum.eth.v1alpha1.BeaconCommittees.CommitteesEntry',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='key', full_name='ethereum.eth.v1alpha1.BeaconCommittees.CommitteesEntry.key', index=0,
number=1, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='value', full_name='ethereum.eth.v1alpha1.BeaconCommittees.CommitteesEntry.value', index=1,
number=2, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=b'8\001',
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1907,
serialized_end=2012,
)
_BEACONCOMMITTEES = _descriptor.Descriptor(
name='BeaconCommittees',
full_name='ethereum.eth.v1alpha1.BeaconCommittees',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='epoch', full_name='ethereum.eth.v1alpha1.BeaconCommittees.epoch', index=0,
number=1, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='committees', full_name='ethereum.eth.v1alpha1.BeaconCommittees.committees', index=1,
number=2, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='active_validator_count', full_name='ethereum.eth.v1alpha1.BeaconCommittees.active_validator_count', index=2,
number=3, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[_BEACONCOMMITTEES_COMMITTEEITEM, _BEACONCOMMITTEES_COMMITTEESLIST, _BEACONCOMMITTEES_COMMITTEESENTRY, ],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1626,
serialized_end=2012,
)
_LISTVALIDATORBALANCESREQUEST = _descriptor.Descriptor(
name='ListValidatorBalancesRequest',
full_name='ethereum.eth.v1alpha1.ListValidatorBalancesRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='epoch', full_name='ethereum.eth.v1alpha1.ListValidatorBalancesRequest.epoch', index=0,
number=1, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='genesis', full_name='ethereum.eth.v1alpha1.ListValidatorBalancesRequest.genesis', index=1,
number=2, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='public_keys', full_name='ethereum.eth.v1alpha1.ListValidatorBalancesRequest.public_keys', index=2,
number=3, type=12, cpp_type=9, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='indices', full_name='ethereum.eth.v1alpha1.ListValidatorBalancesRequest.indices', index=3,
number=4, type=4, cpp_type=4, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='page_size', full_name='ethereum.eth.v1alpha1.ListValidatorBalancesRequest.page_size', index=4,
number=5, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='page_token', full_name='ethereum.eth.v1alpha1.ListValidatorBalancesRequest.page_token', index=5,
number=6, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
_descriptor.OneofDescriptor(
name='query_filter', full_name='ethereum.eth.v1alpha1.ListValidatorBalancesRequest.query_filter',
index=0, containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[]),
],
serialized_start=2015,
serialized_end=2174,
)
_VALIDATORBALANCES_BALANCE = _descriptor.Descriptor(
name='Balance',
full_name='ethereum.eth.v1alpha1.ValidatorBalances.Balance',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='public_key', full_name='ethereum.eth.v1alpha1.ValidatorBalances.Balance.public_key', index=0,
number=1, type=12, cpp_type=9, label=1,
has_default_value=False, default_value=b"",
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='index', full_name='ethereum.eth.v1alpha1.ValidatorBalances.Balance.index', index=1,
number=2, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='balance', full_name='ethereum.eth.v1alpha1.ValidatorBalances.Balance.balance', index=2,
number=3, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=2326,
serialized_end=2387,
)
_VALIDATORBALANCES = _descriptor.Descriptor(
name='ValidatorBalances',
full_name='ethereum.eth.v1alpha1.ValidatorBalances',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='epoch', full_name='ethereum.eth.v1alpha1.ValidatorBalances.epoch', index=0,
number=1, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='balances', full_name='ethereum.eth.v1alpha1.ValidatorBalances.balances', index=1,
number=2, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='next_page_token', full_name='ethereum.eth.v1alpha1.ValidatorBalances.next_page_token', index=2,
number=3, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='total_size', full_name='ethereum.eth.v1alpha1.ValidatorBalances.total_size', index=3,
number=4, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],
extensions=[
],
nested_types=[_VALIDATORBALANCES_BALANCE, ],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=2177,
serialized_end=2387,
)
_LISTVALIDATORSREQUEST = _descriptor.Descriptor(
name='ListValidatorsRequest',
full_name='ethereum.eth.v1alpha1.ListValidatorsRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='epoch', full_name='ethereum.eth.v1alpha1.ListValidatorsRequest.epoch', index=0,
number=1, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='genesis', full_name='ethereum.eth.v1alpha1.ListValidatorsRequest.genesis', index=1,
number=2, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='active', full_name='ethereum.eth.v1alpha1.ListValidatorsRequest.active', index=2,
number=3, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='page_size', full_name='ethereum.eth.v1alpha1.ListValidatorsRequest.page_size', index=3,
number=4, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='page_token', full_name='ethereum.eth.v1alpha1.ListValidatorsRequest.page_token', index=4,
number=5, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='public_keys', full_name='ethereum.eth.v1alpha1.ListValidatorsRequest.public_keys', index=5,
number=6, type=12, cpp_type=9, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='indices', full_name='ethereum.eth.v1alpha1.ListValidatorsRequest.indices', index=6,
number=7, type=4, cpp_type=4, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
],