-
Notifications
You must be signed in to change notification settings - Fork 6
/
validator_pb2.py
1827 lines (1728 loc) · 80.9 KB
/
validator_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: validator.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
import beacon_block_pb2 as beacon__block__pb2
import attestation_pb2 as attestation__pb2
DESCRIPTOR = _descriptor.FileDescriptor(
name='validator.proto',
package='ethereum.eth.v1alpha1',
syntax='proto3',
serialized_options=b'\n\031org.ethereum.eth.v1alpha1B\016ValidatorProtoP\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\x0fvalidator.proto\x12\x15\x65thereum.eth.v1alpha1\x1a\x1cgoogle/api/annotations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x12\x62\x65\x61\x63on_block.proto\x1a\x11\x61ttestation.proto\".\n\rDomainRequest\x12\r\n\x05\x65poch\x18\x01 \x01(\x04\x12\x0e\n\x06\x64omain\x18\x02 \x01(\x0c\"*\n\x0e\x44omainResponse\x12\x18\n\x10signature_domain\x18\x01 \x01(\x0c\"1\n\x1aValidatorActivationRequest\x12\x13\n\x0bpublic_keys\x18\x01 \x03(\x0c\"\xd7\x01\n\x1bValidatorActivationResponse\x12K\n\x08statuses\x18\x01 \x03(\x0b\x32\x39.ethereum.eth.v1alpha1.ValidatorActivationResponse.Status\x1ak\n\x06Status\x12\x12\n\npublic_key\x18\x01 \x01(\x0c\x12>\n\x06status\x18\x02 \x01(\x0b\x32..ethereum.eth.v1alpha1.ValidatorStatusResponse\x12\r\n\x05index\x18\x03 \x01(\x04\"?\n\x12\x43hainStartResponse\x12\x0f\n\x07started\x18\x01 \x01(\x08\x12\x14\n\x0cgenesis_time\x18\x02 \x01(\x04:\x02\x18\x01\"6\n\x0eSyncedResponse\x12\x0e\n\x06synced\x18\x01 \x01(\x08\x12\x14\n\x0cgenesis_time\x18\x02 \x01(\x04\"+\n\x15ValidatorIndexRequest\x12\x12\n\npublic_key\x18\x01 \x01(\x0c\"\'\n\x16ValidatorIndexResponse\x12\r\n\x05index\x18\x01 \x01(\x04\",\n\x16ValidatorStatusRequest\x12\x12\n\npublic_key\x18\x01 \x01(\x0c\"\xd4\x01\n\x17ValidatorStatusResponse\x12\x36\n\x06status\x18\x01 \x01(\x0e\x32&.ethereum.eth.v1alpha1.ValidatorStatus\x12!\n\x19\x65th1_deposit_block_number\x18\x02 \x01(\x04\x12\x1e\n\x16\x64\x65posit_inclusion_slot\x18\x03 \x01(\x04\x12\x18\n\x10\x61\x63tivation_epoch\x18\x04 \x01(\x04\x12$\n\x1cposition_in_activation_queue\x18\x05 \x01(\x04\"F\n\x1eMultipleValidatorStatusRequest\x12\x13\n\x0bpublic_keys\x18\x01 \x03(\x0c\x12\x0f\n\x07indices\x18\x02 \x03(\x03\"\x89\x01\n\x1fMultipleValidatorStatusResponse\x12\x13\n\x0bpublic_keys\x18\x01 \x03(\x0c\x12@\n\x08statuses\x18\x02 \x03(\x0b\x32..ethereum.eth.v1alpha1.ValidatorStatusResponse\x12\x0f\n\x07indices\x18\x03 \x03(\x04\"3\n\rDutiesRequest\x12\r\n\x05\x65poch\x18\x01 \x01(\x04\x12\x13\n\x0bpublic_keys\x18\x02 \x03(\x0c\"\xaa\x03\n\x0e\x44utiesResponse\x12>\n\x06\x64uties\x18\x01 \x03(\x0b\x32*.ethereum.eth.v1alpha1.DutiesResponse.DutyB\x02\x18\x01\x12H\n\x14\x63urrent_epoch_duties\x18\x02 \x03(\x0b\x32*.ethereum.eth.v1alpha1.DutiesResponse.Duty\x12\x45\n\x11next_epoch_duties\x18\x03 \x03(\x0b\x32*.ethereum.eth.v1alpha1.DutiesResponse.Duty\x1a\xc6\x01\n\x04\x44uty\x12\x11\n\tcommittee\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\x36\n\x06status\x18\x06 \x01(\x0e\x32&.ethereum.eth.v1alpha1.ValidatorStatus\x12\x17\n\x0fvalidator_index\x18\x07 \x01(\x04\"E\n\x0c\x42lockRequest\x12\x0c\n\x04slot\x18\x01 \x01(\x04\x12\x15\n\rrandao_reveal\x18\x02 \x01(\x0c\x12\x10\n\x08graffiti\x18\x03 \x01(\x0c\"%\n\x0fProposeResponse\x12\x12\n\nblock_root\x18\x01 \x01(\x0c\"(\n\x13ProposeExitResponse\x12\x11\n\texit_root\x18\x01 \x01(\x0c\"?\n\x16\x41ttestationDataRequest\x12\x0c\n\x04slot\x18\x01 \x01(\x04\x12\x17\n\x0f\x63ommittee_index\x18\x02 \x01(\x04\"/\n\x0e\x41ttestResponse\x12\x1d\n\x15\x61ttestation_data_root\x18\x01 \x01(\x0c\"n\n\x19\x41ggregateSelectionRequest\x12\x0c\n\x04slot\x18\x01 \x01(\x04\x12\x17\n\x0f\x63ommittee_index\x18\x02 \x01(\x04\x12\x12\n\npublic_key\x18\x03 \x01(\x0c\x12\x16\n\x0eslot_signature\x18\x04 \x01(\x0c\"n\n\x1a\x41ggregateSelectionResponse\x12P\n\x13\x61ggregate_and_proof\x18\x01 \x01(\x0b\x32\x33.ethereum.eth.v1alpha1.AggregateAttestationAndProof\"}\n\x1cSignedAggregateSubmitRequest\x12]\n\x1asigned_aggregate_and_proof\x18\x01 \x01(\x0b\x32\x39.ethereum.eth.v1alpha1.SignedAggregateAttestationAndProof\">\n\x1dSignedAggregateSubmitResponse\x12\x1d\n\x15\x61ttestation_data_root\x18\x01 \x01(\x0c\"_\n CommitteeSubnetsSubscribeRequest\x12\r\n\x05slots\x18\x01 \x03(\x04\x12\x15\n\rcommittee_ids\x18\x02 \x03(\x04\x12\x15\n\ris_aggregator\x18\x03 \x03(\x08\"\xdb\x01\n\tValidator\x12\x12\n\npublic_key\x18\x01 \x01(\x0c\x12\x1e\n\x16withdrawal_credentials\x18\x02 \x01(\x0c\x12\x19\n\x11\x65\x66\x66\x65\x63tive_balance\x18\x03 \x01(\x04\x12\x0f\n\x07slashed\x18\x04 \x01(\x08\x12$\n\x1c\x61\x63tivation_eligibility_epoch\x18\x05 \x01(\x04\x12\x18\n\x10\x61\x63tivation_epoch\x18\x06 \x01(\x04\x12\x12\n\nexit_epoch\x18\x07 \x01(\x04\x12\x1a\n\x12withdrawable_epoch\x18\x08 \x01(\x04\"\x8f\x03\n\x16ValidatorParticipation\x12%\n\x19global_participation_rate\x18\x01 \x01(\x02\x42\x02\x18\x01\x12\x17\n\x0bvoted_ether\x18\x02 \x01(\x04\x42\x02\x18\x01\x12\x1a\n\x0e\x65ligible_ether\x18\x03 \x01(\x04\x42\x02\x18\x01\x12!\n\x19\x63urrent_epoch_active_gwei\x18\x04 \x01(\x04\x12$\n\x1c\x63urrent_epoch_attesting_gwei\x18\x05 \x01(\x04\x12+\n#current_epoch_target_attesting_gwei\x18\x06 \x01(\x04\x12\"\n\x1aprevious_epoch_active_gwei\x18\x07 \x01(\x04\x12%\n\x1dprevious_epoch_attesting_gwei\x18\x08 \x01(\x04\x12,\n$previous_epoch_target_attesting_gwei\x18\t \x01(\x04\x12*\n\"previous_epoch_head_attesting_gwei\x18\n \x01(\x04\"\xc3\x01\n\rValidatorInfo\x12\x12\n\npublic_key\x18\x01 \x01(\x0c\x12\r\n\x05index\x18\x02 \x01(\x04\x12\r\n\x05\x65poch\x18\x03 \x01(\x04\x12\x36\n\x06status\x18\x04 \x01(\x0e\x32&.ethereum.eth.v1alpha1.ValidatorStatus\x12\x1c\n\x14transition_timestamp\x18\x05 \x01(\x04\x12\x0f\n\x07\x62\x61lance\x18\x06 \x01(\x04\x12\x19\n\x11\x65\x66\x66\x65\x63tive_balance\x18\x07 \x01(\x04*\x9a\x01\n\x0fValidatorStatus\x12\x12\n\x0eUNKNOWN_STATUS\x10\x00\x12\r\n\tDEPOSITED\x10\x01\x12\x0b\n\x07PENDING\x10\x02\x12\n\n\x06\x41\x43TIVE\x10\x03\x12\x0b\n\x07\x45XITING\x10\x04\x12\x0c\n\x08SLASHING\x10\x05\x12\n\n\x06\x45XITED\x10\x06\x12\x0b\n\x07INVALID\x10\x07\x12\x17\n\x13PARTIALLY_DEPOSITED\x10\x08\x32\xa5\x14\n\x13\x42\x65\x61\x63onNodeValidator\x12\x80\x01\n\tGetDuties\x12$.ethereum.eth.v1alpha1.DutiesRequest\x1a%.ethereum.eth.v1alpha1.DutiesResponse\"&\x82\xd3\xe4\x93\x02 \x12\x1e/eth/v1alpha1/validator/duties\x12\x8c\x01\n\x0cStreamDuties\x12$.ethereum.eth.v1alpha1.DutiesRequest\x1a%.ethereum.eth.v1alpha1.DutiesResponse\"-\x82\xd3\xe4\x93\x02\'\x12%/eth/v1alpha1/validator/duties/stream0\x01\x12\x81\x01\n\nDomainData\x12$.ethereum.eth.v1alpha1.DomainRequest\x1a%.ethereum.eth.v1alpha1.DomainResponse\"&\x82\xd3\xe4\x93\x02 \x12\x1e/eth/v1alpha1/validator/domain\x12\x8e\x01\n\x11WaitForChainStart\x12\x16.google.protobuf.Empty\x1a).ethereum.eth.v1alpha1.ChainStartResponse\"4\x88\x02\x01\x82\xd3\xe4\x93\x02+\x12)/eth/v1alpha1/validator/chainstart/stream0\x01\x12\x7f\n\rWaitForSynced\x12\x16.google.protobuf.Empty\x1a%.ethereum.eth.v1alpha1.SyncedResponse\"-\x82\xd3\xe4\x93\x02\'\x12%/eth/v1alpha1/validator/synced/stream0\x01\x12\xaf\x01\n\x11WaitForActivation\x12\x31.ethereum.eth.v1alpha1.ValidatorActivationRequest\x1a\x32.ethereum.eth.v1alpha1.ValidatorActivationResponse\"1\x82\xd3\xe4\x93\x02+\x12)/eth/v1alpha1/validator/activation/stream0\x01\x12\x94\x01\n\x0eValidatorIndex\x12,.ethereum.eth.v1alpha1.ValidatorIndexRequest\x1a-.ethereum.eth.v1alpha1.ValidatorIndexResponse\"%\x82\xd3\xe4\x93\x02\x1f\x12\x1d/eth/v1alpha1/validator/index\x12\x98\x01\n\x0fValidatorStatus\x12-.ethereum.eth.v1alpha1.ValidatorStatusRequest\x1a..ethereum.eth.v1alpha1.ValidatorStatusResponse\"&\x82\xd3\xe4\x93\x02 \x12\x1e/eth/v1alpha1/validator/status\x12\xb2\x01\n\x17MultipleValidatorStatus\x12\x35.ethereum.eth.v1alpha1.MultipleValidatorStatusRequest\x1a\x36.ethereum.eth.v1alpha1.MultipleValidatorStatusResponse\"(\x82\xd3\xe4\x93\x02\"\x12 /eth/v1alpha1/validator/statuses\x12z\n\x08GetBlock\x12#.ethereum.eth.v1alpha1.BlockRequest\x1a\".ethereum.eth.v1alpha1.BeaconBlock\"%\x82\xd3\xe4\x93\x02\x1f\x12\x1d/eth/v1alpha1/validator/block\x12\x87\x01\n\x0cProposeBlock\x12(.ethereum.eth.v1alpha1.SignedBeaconBlock\x1a&.ethereum.eth.v1alpha1.ProposeResponse\"%\x82\xd3\xe4\x93\x02\x1f\"\x1d/eth/v1alpha1/validator/block\x12\x98\x01\n\x12GetAttestationData\x12-.ethereum.eth.v1alpha1.AttestationDataRequest\x1a&.ethereum.eth.v1alpha1.AttestationData\"+\x82\xd3\xe4\x93\x02%\x12#/eth/v1alpha1/validator/attestation\x12\x8c\x01\n\x12ProposeAttestation\x12\".ethereum.eth.v1alpha1.Attestation\x1a%.ethereum.eth.v1alpha1.AttestResponse\"+\x82\xd3\xe4\x93\x02%\"#/eth/v1alpha1/validator/attestation\x12\xaf\x01\n\x1dSubmitAggregateSelectionProof\x12\x30.ethereum.eth.v1alpha1.AggregateSelectionRequest\x1a\x31.ethereum.eth.v1alpha1.AggregateSelectionResponse\")\x82\xd3\xe4\x93\x02#\"!/eth/v1alpha1/validator/aggregate\x12\xbb\x01\n#SubmitSignedAggregateSelectionProof\x12\x33.ethereum.eth.v1alpha1.SignedAggregateSubmitRequest\x1a\x34.ethereum.eth.v1alpha1.SignedAggregateSubmitResponse\")\x82\xd3\xe4\x93\x02#\"!/eth/v1alpha1/validator/aggregate\x12\x8b\x01\n\x0bProposeExit\x12*.ethereum.eth.v1alpha1.SignedVoluntaryExit\x1a*.ethereum.eth.v1alpha1.ProposeExitResponse\"$\x82\xd3\xe4\x93\x02\x1e\"\x1c/eth/v1alpha1/validator/exit\x12\x9e\x01\n\x19SubscribeCommitteeSubnets\x12\x37.ethereum.eth.v1alpha1.CommitteeSubnetsSubscribeRequest\x1a\x16.google.protobuf.Empty\"0\x82\xd3\xe4\x93\x02*\"(/eth/v1alpha1/validator/subnet/subscribeB\x95\x01\n\x19org.ethereum.eth.v1alpha1B\x0eValidatorProtoP\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,beacon__block__pb2.DESCRIPTOR,attestation__pb2.DESCRIPTOR,])
_VALIDATORSTATUS = _descriptor.EnumDescriptor(
name='ValidatorStatus',
full_name='ethereum.eth.v1alpha1.ValidatorStatus',
filename=None,
file=DESCRIPTOR,
create_key=_descriptor._internal_create_key,
values=[
_descriptor.EnumValueDescriptor(
name='UNKNOWN_STATUS', index=0, number=0,
serialized_options=None,
type=None,
create_key=_descriptor._internal_create_key),
_descriptor.EnumValueDescriptor(
name='DEPOSITED', index=1, number=1,
serialized_options=None,
type=None,
create_key=_descriptor._internal_create_key),
_descriptor.EnumValueDescriptor(
name='PENDING', index=2, number=2,
serialized_options=None,
type=None,
create_key=_descriptor._internal_create_key),
_descriptor.EnumValueDescriptor(
name='ACTIVE', index=3, number=3,
serialized_options=None,
type=None,
create_key=_descriptor._internal_create_key),
_descriptor.EnumValueDescriptor(
name='EXITING', index=4, number=4,
serialized_options=None,
type=None,
create_key=_descriptor._internal_create_key),
_descriptor.EnumValueDescriptor(
name='SLASHING', index=5, number=5,
serialized_options=None,
type=None,
create_key=_descriptor._internal_create_key),
_descriptor.EnumValueDescriptor(
name='EXITED', index=6, number=6,
serialized_options=None,
type=None,
create_key=_descriptor._internal_create_key),
_descriptor.EnumValueDescriptor(
name='INVALID', index=7, number=7,
serialized_options=None,
type=None,
create_key=_descriptor._internal_create_key),
_descriptor.EnumValueDescriptor(
name='PARTIALLY_DEPOSITED', index=8, number=8,
serialized_options=None,
type=None,
create_key=_descriptor._internal_create_key),
],
containing_type=None,
serialized_options=None,
serialized_start=3264,
serialized_end=3418,
)
_sym_db.RegisterEnumDescriptor(_VALIDATORSTATUS)
ValidatorStatus = enum_type_wrapper.EnumTypeWrapper(_VALIDATORSTATUS)
UNKNOWN_STATUS = 0
DEPOSITED = 1
PENDING = 2
ACTIVE = 3
EXITING = 4
SLASHING = 5
EXITED = 6
INVALID = 7
PARTIALLY_DEPOSITED = 8
_DOMAINREQUEST = _descriptor.Descriptor(
name='DomainRequest',
full_name='ethereum.eth.v1alpha1.DomainRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='epoch', full_name='ethereum.eth.v1alpha1.DomainRequest.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='domain', full_name='ethereum.eth.v1alpha1.DomainRequest.domain', 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=140,
serialized_end=186,
)
_DOMAINRESPONSE = _descriptor.Descriptor(
name='DomainResponse',
full_name='ethereum.eth.v1alpha1.DomainResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='signature_domain', full_name='ethereum.eth.v1alpha1.DomainResponse.signature_domain', 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),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=188,
serialized_end=230,
)
_VALIDATORACTIVATIONREQUEST = _descriptor.Descriptor(
name='ValidatorActivationRequest',
full_name='ethereum.eth.v1alpha1.ValidatorActivationRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='public_keys', full_name='ethereum.eth.v1alpha1.ValidatorActivationRequest.public_keys', index=0,
number=1, 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=232,
serialized_end=281,
)
_VALIDATORACTIVATIONRESPONSE_STATUS = _descriptor.Descriptor(
name='Status',
full_name='ethereum.eth.v1alpha1.ValidatorActivationResponse.Status',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='public_key', full_name='ethereum.eth.v1alpha1.ValidatorActivationResponse.Status.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='status', full_name='ethereum.eth.v1alpha1.ValidatorActivationResponse.Status.status', 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),
_descriptor.FieldDescriptor(
name='index', full_name='ethereum.eth.v1alpha1.ValidatorActivationResponse.Status.index', 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=392,
serialized_end=499,
)
_VALIDATORACTIVATIONRESPONSE = _descriptor.Descriptor(
name='ValidatorActivationResponse',
full_name='ethereum.eth.v1alpha1.ValidatorActivationResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='statuses', full_name='ethereum.eth.v1alpha1.ValidatorActivationResponse.statuses', 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=[_VALIDATORACTIVATIONRESPONSE_STATUS, ],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=284,
serialized_end=499,
)
_CHAINSTARTRESPONSE = _descriptor.Descriptor(
name='ChainStartResponse',
full_name='ethereum.eth.v1alpha1.ChainStartResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='started', full_name='ethereum.eth.v1alpha1.ChainStartResponse.started', index=0,
number=1, 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='genesis_time', full_name='ethereum.eth.v1alpha1.ChainStartResponse.genesis_time', 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),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=b'\030\001',
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=501,
serialized_end=564,
)
_SYNCEDRESPONSE = _descriptor.Descriptor(
name='SyncedResponse',
full_name='ethereum.eth.v1alpha1.SyncedResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='synced', full_name='ethereum.eth.v1alpha1.SyncedResponse.synced', index=0,
number=1, 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='genesis_time', full_name='ethereum.eth.v1alpha1.SyncedResponse.genesis_time', 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),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=566,
serialized_end=620,
)
_VALIDATORINDEXREQUEST = _descriptor.Descriptor(
name='ValidatorIndexRequest',
full_name='ethereum.eth.v1alpha1.ValidatorIndexRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='public_key', full_name='ethereum.eth.v1alpha1.ValidatorIndexRequest.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),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=622,
serialized_end=665,
)
_VALIDATORINDEXRESPONSE = _descriptor.Descriptor(
name='ValidatorIndexResponse',
full_name='ethereum.eth.v1alpha1.ValidatorIndexResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='index', full_name='ethereum.eth.v1alpha1.ValidatorIndexResponse.index', 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),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=667,
serialized_end=706,
)
_VALIDATORSTATUSREQUEST = _descriptor.Descriptor(
name='ValidatorStatusRequest',
full_name='ethereum.eth.v1alpha1.ValidatorStatusRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='public_key', full_name='ethereum.eth.v1alpha1.ValidatorStatusRequest.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),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=708,
serialized_end=752,
)
_VALIDATORSTATUSRESPONSE = _descriptor.Descriptor(
name='ValidatorStatusResponse',
full_name='ethereum.eth.v1alpha1.ValidatorStatusResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='status', full_name='ethereum.eth.v1alpha1.ValidatorStatusResponse.status', 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='eth1_deposit_block_number', full_name='ethereum.eth.v1alpha1.ValidatorStatusResponse.eth1_deposit_block_number', 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='deposit_inclusion_slot', full_name='ethereum.eth.v1alpha1.ValidatorStatusResponse.deposit_inclusion_slot', 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='activation_epoch', full_name='ethereum.eth.v1alpha1.ValidatorStatusResponse.activation_epoch', 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='position_in_activation_queue', full_name='ethereum.eth.v1alpha1.ValidatorStatusResponse.position_in_activation_queue', 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),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=755,
serialized_end=967,
)
_MULTIPLEVALIDATORSTATUSREQUEST = _descriptor.Descriptor(
name='MultipleValidatorStatusRequest',
full_name='ethereum.eth.v1alpha1.MultipleValidatorStatusRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='public_keys', full_name='ethereum.eth.v1alpha1.MultipleValidatorStatusRequest.public_keys', index=0,
number=1, 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.MultipleValidatorStatusRequest.indices', index=1,
number=2, type=3, cpp_type=2, 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=969,
serialized_end=1039,
)
_MULTIPLEVALIDATORSTATUSRESPONSE = _descriptor.Descriptor(
name='MultipleValidatorStatusResponse',
full_name='ethereum.eth.v1alpha1.MultipleValidatorStatusResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='public_keys', full_name='ethereum.eth.v1alpha1.MultipleValidatorStatusResponse.public_keys', index=0,
number=1, 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='statuses', full_name='ethereum.eth.v1alpha1.MultipleValidatorStatusResponse.statuses', 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='indices', full_name='ethereum.eth.v1alpha1.MultipleValidatorStatusResponse.indices', index=2,
number=3, 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=1042,
serialized_end=1179,
)
_DUTIESREQUEST = _descriptor.Descriptor(
name='DutiesRequest',
full_name='ethereum.eth.v1alpha1.DutiesRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='epoch', full_name='ethereum.eth.v1alpha1.DutiesRequest.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='public_keys', full_name='ethereum.eth.v1alpha1.DutiesRequest.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=1181,
serialized_end=1232,
)
_DUTIESRESPONSE_DUTY = _descriptor.Descriptor(
name='Duty',
full_name='ethereum.eth.v1alpha1.DutiesResponse.Duty',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='committee', full_name='ethereum.eth.v1alpha1.DutiesResponse.Duty.committee', 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),
_descriptor.FieldDescriptor(
name='committee_index', full_name='ethereum.eth.v1alpha1.DutiesResponse.Duty.committee_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='attester_slot', full_name='ethereum.eth.v1alpha1.DutiesResponse.Duty.attester_slot', 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='proposer_slots', full_name='ethereum.eth.v1alpha1.DutiesResponse.Duty.proposer_slots', 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='public_key', full_name='ethereum.eth.v1alpha1.DutiesResponse.Duty.public_key', index=4,
number=5, 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='status', full_name='ethereum.eth.v1alpha1.DutiesResponse.Duty.status', index=5,
number=6, 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='validator_index', full_name='ethereum.eth.v1alpha1.DutiesResponse.Duty.validator_index', 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),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1463,
serialized_end=1661,
)
_DUTIESRESPONSE = _descriptor.Descriptor(
name='DutiesResponse',
full_name='ethereum.eth.v1alpha1.DutiesResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='duties', full_name='ethereum.eth.v1alpha1.DutiesResponse.duties', 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=b'\030\001', file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
_descriptor.FieldDescriptor(
name='current_epoch_duties', full_name='ethereum.eth.v1alpha1.DutiesResponse.current_epoch_duties', 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_epoch_duties', full_name='ethereum.eth.v1alpha1.DutiesResponse.next_epoch_duties', index=2,
number=3, 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=[_DUTIESRESPONSE_DUTY, ],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1235,
serialized_end=1661,
)
_BLOCKREQUEST = _descriptor.Descriptor(
name='BlockRequest',
full_name='ethereum.eth.v1alpha1.BlockRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='slot', full_name='ethereum.eth.v1alpha1.BlockRequest.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='randao_reveal', full_name='ethereum.eth.v1alpha1.BlockRequest.randao_reveal', 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),
_descriptor.FieldDescriptor(
name='graffiti', full_name='ethereum.eth.v1alpha1.BlockRequest.graffiti', 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),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1663,
serialized_end=1732,
)
_PROPOSERESPONSE = _descriptor.Descriptor(
name='ProposeResponse',
full_name='ethereum.eth.v1alpha1.ProposeResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='block_root', full_name='ethereum.eth.v1alpha1.ProposeResponse.block_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),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1734,
serialized_end=1771,
)
_PROPOSEEXITRESPONSE = _descriptor.Descriptor(
name='ProposeExitResponse',
full_name='ethereum.eth.v1alpha1.ProposeExitResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='exit_root', full_name='ethereum.eth.v1alpha1.ProposeExitResponse.exit_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),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1773,
serialized_end=1813,
)
_ATTESTATIONDATAREQUEST = _descriptor.Descriptor(
name='AttestationDataRequest',
full_name='ethereum.eth.v1alpha1.AttestationDataRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='slot', full_name='ethereum.eth.v1alpha1.AttestationDataRequest.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='committee_index', full_name='ethereum.eth.v1alpha1.AttestationDataRequest.committee_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),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1815,
serialized_end=1878,
)
_ATTESTRESPONSE = _descriptor.Descriptor(
name='AttestResponse',
full_name='ethereum.eth.v1alpha1.AttestResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='attestation_data_root', full_name='ethereum.eth.v1alpha1.AttestResponse.attestation_data_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),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1880,
serialized_end=1927,
)
_AGGREGATESELECTIONREQUEST = _descriptor.Descriptor(
name='AggregateSelectionRequest',
full_name='ethereum.eth.v1alpha1.AggregateSelectionRequest',
filename=None,
file=DESCRIPTOR,
containing_type=None,
create_key=_descriptor._internal_create_key,
fields=[
_descriptor.FieldDescriptor(
name='slot', full_name='ethereum.eth.v1alpha1.AggregateSelectionRequest.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='committee_index', full_name='ethereum.eth.v1alpha1.AggregateSelectionRequest.committee_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='public_key', full_name='ethereum.eth.v1alpha1.AggregateSelectionRequest.public_key', 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='slot_signature', full_name='ethereum.eth.v1alpha1.AggregateSelectionRequest.slot_signature', index=3,
number=4, 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=1929,
serialized_end=2039,
)
_AGGREGATESELECTIONRESPONSE = _descriptor.Descriptor(
name='AggregateSelectionResponse',
full_name='ethereum.eth.v1alpha1.AggregateSelectionResponse',
filename=None,
file=DESCRIPTOR,
containing_type=None,