-
Notifications
You must be signed in to change notification settings - Fork 33
/
keymanager-oapi.yaml
1455 lines (1439 loc) · 56.4 KB
/
keymanager-oapi.yaml
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
openapi: 3.0.3
info:
title: Eth2 key manager API
description: |
API specification for a key manager client, which enables users to manage keystores.
The key manager API is served by the binary holding the validator keys. This binary may be a remote signer or a validator client.
All routes SHOULD be exposed through a secure channel, such as with HTTPs, an SSH tunnel, a VPN, etc.
All requests by default send and receive JSON, and as such should have either or both of the "Content-Type: application/json"
and "Accept: application/json" headers.
All sensitive routes are to be authenticated with a token. This token should be provided by the user via a secure channel:
- Log the token to stdout when running the binary with the key manager API enabled
- Read the token from a file available to the binary
version: v1.0.0-alpha
contact:
name: Ethereum Github
url: 'https://github.com/ethereum/keymanager-APIs/issues'
license:
name: Creative Commons Zero v1.0 Universal
url: 'https://creativecommons.org/publicdomain/zero/1.0/'
servers:
- url: '{server_url}'
variables:
server_url:
description: key manager API url
default: 'https://public-mainnet-node.ethereum.org'
tags:
- name: Fee Recipient
description: Set of endpoints for management of fee recipient.
- name: Gas Limit
description: Set of endpoints for management of gas limits.
- name: Local Key Manager
description: Set of endpoints for key management of local keys.
- name: Remote Key Manager
description: Set of endpoints for key management of external keys.
paths:
/eth/v1/keystores:
get:
operationId: listKeys
summary: List Keys.
description: |
List all validating pubkeys known to and decrypted by this keymanager binary
security:
- bearerAuth: []
tags:
- Local Key Manager
responses:
'200':
description: Success response
content:
application/json:
schema:
title: ListKeysResponse
type: object
required:
- data
properties:
data:
type: array
items:
type: object
required:
- validating_pubkey
properties:
validating_pubkey:
type: string
pattern: '^0x[a-fA-F0-9]{96}$'
description: |
The validator's BLS public key, uniquely identifying them. _48-bytes, hex encoded with 0x prefix, case insensitive._
example: '0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a'
derivation_path:
type: string
description: The derivation path (if present in the imported keystore).
example: m/12381/3600/0/0/0
readonly:
type: boolean
description: The key associated with this pubkey cannot be deleted from the API
'401':
description: 'Unauthorized, no token is found'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'403':
description: 'Forbidden, a token is found but is invalid'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'500':
description: |
Internal server error. The server encountered an unexpected error indicative of
a serious fault in the system, or a bug.
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
post:
operationId: importKeystores
summary: Import Keystores.
description: |
Import keystores generated by the Eth2.0 deposit CLI tooling. `passwords[i]` must unlock `keystores[i]`.
Users SHOULD send slashing_protection data associated with the imported pubkeys. MUST follow the format defined in
EIP-3076: Slashing Protection Interchange Format.
security:
- bearerAuth: []
tags:
- Local Key Manager
requestBody:
content:
application/json:
schema:
type: object
required:
- keystores
- passwords
properties:
keystores:
type: array
description: JSON-encoded keystore files generated with the Launchpad.
items:
type: string
description: |
JSON serialized representation of a single keystore in EIP-2335: BLS12-381 Keystore format.
example: '{"version":4,"uuid":"9f75a3fa-1e5a-49f9-be3d-f5a19779c6fa","path":"m/12381/3600/0/0/0","pubkey":"0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a","crypto":{"kdf":{"function":"pbkdf2","params":{"dklen":32,"c":262144,"prf":"hmac-sha256","salt":"8ff8f22ef522a40f99c6ce07fdcfc1db489d54dfbc6ec35613edf5d836fa1407"},"message":""},"checksum":{"function":"sha256","params":{},"message":"9678a69833d2576e3461dd5fa80f6ac73935ae30d69d07659a709b3cd3eddbe3"},"cipher":{"function":"aes-128-ctr","params":{"iv":"31b69f0ac97261e44141b26aa0da693f"},"message":"e8228bafec4fcbaca3b827e586daad381d53339155b034e5eaae676b715ab05e"}}}'
passwords:
type: array
description: 'Passwords to unlock imported keystore files. `passwords[i]` must unlock `keystores[i]`.'
items:
type: string
example: ABCDEFGH01234567ABCDEFGH01234567
slashing_protection:
type: string
description: |
JSON serialized representation of the slash protection data in format defined in EIP-3076: Slashing Protection Interchange Format.
example: '{"metadata":{"interchange_format_version":"5","genesis_validators_root":"0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2"},"data":[{"pubkey":"0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a","signed_blocks":[],"signed_attestations":[]}]}'
responses:
'200':
description: Success response
content:
application/json:
schema:
title: ImportKeystoresResponse
type: object
required:
- data
properties:
data:
type: array
description: Status result of each `request.keystores` with same length and order of `request.keystores`
items:
type: object
required:
- status
properties:
status:
type: string
description: |
- imported: Keystore successfully decrypted and imported to keymanager permanent storage
- duplicate: Keystore's pubkey is already known to the keymanager
- error: Any other status different to the above: decrypting error, I/O errors, etc.
enum:
- imported
- duplicate
- error
example: imported
message:
type: string
description: error message if status == error
'400':
description: Bad request. Request was malformed and could not be processed
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'401':
description: 'Unauthorized, no token is found'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'403':
description: 'Forbidden, a token is found but is invalid'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'500':
description: |
Internal server error. The server encountered an unexpected error indicative of
a serious fault in the system, or a bug.
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
delete:
operationId: deleteKeys
summary: Delete Keys.
description: |
DELETE must delete all keys from `request.pubkeys` that are known to the keymanager and exist in its
persistent storage. Additionally, DELETE must fetch the slashing protection data for the requested keys from
persistent storage, which must be retained (and not deleted) after the response has been sent. Therefore in the
case of two identical delete requests being made, both will have access to slashing protection data.
In a single atomic sequential operation the keymanager must:
1. Guarantee that key(s) can not produce any more signature; only then
2. Delete key(s) and serialize its associated slashing protection data
DELETE should never return a 404 response, even if all pubkeys from request.pubkeys have no extant keystores
nor slashing protection data.
Slashing protection data must only be returned for keys from `request.pubkeys` for which a
`deleted` or `not_active` status is returned.
security:
- bearerAuth: []
tags:
- Local Key Manager
requestBody:
content:
application/json:
schema:
type: object
required:
- pubkeys
properties:
pubkeys:
type: array
description: List of public keys to delete.
items:
type: string
pattern: '^0x[a-fA-F0-9]{96}$'
description: |
The validator's BLS public key, uniquely identifying them. _48-bytes, hex encoded with 0x prefix, case insensitive._
example: '0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a'
responses:
'200':
description: Success response
content:
application/json:
schema:
title: DeleteKeysResponse
type: object
required:
- data
- slashing_protection
properties:
data:
type: array
description: Deletion status of all keys in `request.pubkeys` in the same order.
items:
type: object
required:
- status
properties:
status:
type: string
description: |
- deleted: key was active and removed
- not_active: slashing protection data returned but key was not active
- not_found: key was not found to be removed, and no slashing data can be returned
- error: unexpected condition meant the key could not be removed (the key was actually found, but we couldn't stop using it) - this would be a sign that making it active elsewhere would almost certainly cause you headaches / slashing conditions etc.
enum:
- deleted
- not_active
- not_found
- error
example: deleted
message:
type: string
description: error message if status == error
slashing_protection:
type: string
description: |
JSON serialized representation of the slash protection data in format defined in EIP-3076: Slashing Protection Interchange Format.
example: '{"metadata":{"interchange_format_version":"5","genesis_validators_root":"0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2"},"data":[{"pubkey":"0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a","signed_blocks":[],"signed_attestations":[]}]}'
'400':
description: Bad request. Request was malformed and could not be processed
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'401':
description: 'Unauthorized, no token is found'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'403':
description: 'Forbidden, a token is found but is invalid'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'500':
description: |
Internal server error. The server encountered an unexpected error indicative of
a serious fault in the system, or a bug.
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
/eth/v1/remotekeys:
get:
operationId: listRemoteKeys
summary: List Remote Keys.
description: |
List all remote validating pubkeys known to this validator client binary
security:
- bearerAuth: []
tags:
- Remote Key Manager
responses:
'200':
description: Success response
content:
application/json:
schema:
title: ListRemoteKeysResponse
type: object
required:
- data
properties:
data:
type: array
items:
type: object
required:
- pubkey
properties:
pubkey:
type: string
pattern: '^0x[a-fA-F0-9]{96}$'
description: |
The validator's BLS public key, uniquely identifying them. _48-bytes, hex encoded with 0x prefix, case insensitive._
example: '0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a'
url:
description: 'URL to API implementing EIP-3030: BLS Remote Signer HTTP API'
type: string
example: 'https://remote.signer'
readonly:
type: boolean
description: The signer associated with this pubkey cannot be deleted from the API
'401':
description: 'Unauthorized, no token is found'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'403':
description: 'Forbidden, a token is found but is invalid'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'500':
description: |
Internal server error. The server encountered an unexpected error indicative of
a serious fault in the system, or a bug.
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
post:
operationId: importRemoteKeys
summary: Import Remote Keys.
description: |
Import remote keys for the validator client to request duties for.
security:
- bearerAuth: []
tags:
- Remote Key Manager
requestBody:
content:
application/json:
schema:
type: object
required:
- remote_keys
properties:
remote_keys:
type: array
items:
type: object
required:
- pubkey
properties:
pubkey:
type: string
pattern: '^0x[a-fA-F0-9]{96}$'
description: |
The validator's BLS public key, uniquely identifying them. _48-bytes, hex encoded with 0x prefix, case insensitive._
example: '0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a'
url:
description: 'URL to API implementing EIP-3030: BLS Remote Signer HTTP API'
type: string
example: 'https://remote.signer'
responses:
'200':
description: Success response
content:
application/json:
schema:
title: ImportRemoteKeysResponse
type: object
required:
- data
properties:
data:
type: array
description: Status result of each `request.remote_keys` with same length and order of `request.remote_keys`
items:
type: object
required:
- status
properties:
status:
type: string
description: |
- imported: Remote key successfully imported to validator client permanent storage
- duplicate: Remote key's pubkey is already known to the validator client
- error: Any other status different to the above: I/O errors, etc.
enum:
- imported
- duplicate
- error
example: imported
message:
type: string
description: error message if status == error
'401':
description: 'Unauthorized, no token is found'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'403':
description: 'Forbidden, a token is found but is invalid'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'500':
description: |
Internal server error. The server encountered an unexpected error indicative of
a serious fault in the system, or a bug.
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
delete:
operationId: deleteRemoteKeys
summary: Delete Remote Keys.
description: |
DELETE must delete all keys from `request.pubkeys` that are known to the validator client and exist in its
persistent storage.
DELETE should never return a 404 response, even if all pubkeys from request.pubkeys have no existing keystores.
security:
- bearerAuth: []
tags:
- Remote Key Manager
requestBody:
content:
application/json:
schema:
type: object
required:
- pubkeys
properties:
pubkeys:
type: array
description: List of public keys to delete.
items:
type: string
pattern: '^0x[a-fA-F0-9]{96}$'
description: |
The validator's BLS public key, uniquely identifying them. _48-bytes, hex encoded with 0x prefix, case insensitive._
example: '0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a'
responses:
'200':
description: Success response
content:
application/json:
schema:
title: DeleteRemoteKeysResponse
type: object
required:
- data
properties:
data:
type: array
description: Deletion status of all keys in `request.pubkeys` in the same order.
items:
type: object
required:
- status
properties:
status:
type: string
description: |
- deleted: key was active and removed
- not_found: key was not found to be removed
- error: unexpected condition meant the key could not be removed (the key was actually found,
but we couldn't stop using it) - this would be a sign that making it active elsewhere would
almost certainly cause you headaches / slashing conditions etc.
enum:
- deleted
- not_found
- error
example: deleted
message:
type: string
description: error message if status == error
'401':
description: 'Unauthorized, no token is found'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'403':
description: 'Forbidden, a token is found but is invalid'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'500':
description: |
Internal server error. The server encountered an unexpected error indicative of
a serious fault in the system, or a bug.
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'/eth/v1/validator/{pubkey}/feerecipient':
get:
operationId: listFeeRecipient
summary: List Fee Recipient.
description: |
List the validator public key to eth address mapping for fee recipient feature on a specific public key.
The validator public key will return with the default fee recipient address if a specific one was not found.
WARNING: The fee_recipient is not used on Phase0 or Altair networks.
security:
- bearerAuth: []
tags:
- Fee Recipient
parameters:
- in: path
name: pubkey
schema:
type: string
pattern: '^0x[a-fA-F0-9]{96}$'
description: |
The validator's BLS public key, uniquely identifying them. _48-bytes, hex encoded with 0x prefix, case insensitive._
example: '0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a'
required: true
responses:
'200':
description: success response
content:
application/json:
schema:
title: ListFeeRecipientResponse
type: object
required:
- data
properties:
data:
type: object
required:
- ethaddress
properties:
pubkey:
type: string
pattern: '^0x[a-fA-F0-9]{96}$'
description: |
The validator's BLS public key, uniquely identifying them. _48-bytes, hex encoded with 0x prefix, case insensitive._
example: '0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a'
ethaddress:
type: string
description: An address on the execution (Ethereum 1) network.
example: '0xabcf8e0d4e9587369b2301d0790347320302cc09'
pattern: '^0x[a-fA-F0-9]{40}$'
'401':
description: 'Unauthorized, no token is found'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'403':
description: 'Forbidden, a token is found but is invalid'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'404':
description: Path not found
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'500':
description: |
Internal server error. The server encountered an unexpected error indicative of
a serious fault in the system, or a bug.
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
post:
operationId: setFeeRecipient
summary: Set Fee Recipient.
description: |
Sets the validator client fee recipient mapping which will then update the beacon node.
Existing mappings for the same validator public key will be overwritten.
Specific Public keys not mapped will continue to use the default address for fee recipient in accordance to the startup of the validator client and beacon node.
Cannot specify the 0x00 fee recipient address through the API.
WARNING: The fee_recipient is not used on Phase0 or Altair networks.
security:
- bearerAuth: []
tags:
- Fee Recipient
parameters:
- in: path
name: pubkey
schema:
type: string
pattern: '^0x[a-fA-F0-9]{96}$'
description: |
The validator's BLS public key, uniquely identifying them. _48-bytes, hex encoded with 0x prefix, case insensitive._
example: '0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a'
required: true
requestBody:
content:
application/json:
schema:
title: SetFeeRecipientRequest
type: object
required:
- ethaddress
properties:
ethaddress:
type: string
description: An address on the execution (Ethereum 1) network.
example: '0xabcf8e0d4e9587369b2301d0790347320302cc09'
pattern: '^0x[a-fA-F0-9]{40}$'
responses:
'202':
description: successfully updated
'400':
description: Bad request. Request was malformed and could not be processed
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'401':
description: 'Unauthorized, no token is found'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'403':
description: 'Forbidden, a token is found but is invalid'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'404':
description: Path not found
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'500':
description: |
Internal server error. The server encountered an unexpected error indicative of
a serious fault in the system, or a bug.
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
delete:
operationId: deleteFeeRecipient
summary: Delete Configured Fee Recipient
description: Delete a configured fee recipient mapping for the specified public key.
security:
- bearerAuth: []
tags:
- Fee Recipient
parameters:
- in: path
name: pubkey
schema:
type: string
pattern: '^0x[a-fA-F0-9]{96}$'
description: |
The validator's BLS public key, uniquely identifying them. _48-bytes, hex encoded with 0x prefix, case insensitive._
example: '0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a'
required: true
responses:
'204':
description: 'Successfully removed the mapping, or there was no mapping to remove for a key that the server is managing.'
'401':
description: 'Unauthorized, no token is found'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'403':
description: 'A mapping was found, but cannot be removed. This may be because the mapping was in configuration files that cannot be updated.'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'404':
description: 'The key was not found on the server, nothing to delete.'
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'500':
description: |
Internal server error. The server encountered an unexpected error indicative of
a serious fault in the system, or a bug.
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
description: Detailed error message
type: string
example: description of the error that occurred
'/eth/v1/validator/{pubkey}/gas_limit':
get:
operationId: getGasLimit
summary: Get Gas Limit.
description: |
Get the execution gas limit for an individual validator. This gas limit is the one used by the
validator when proposing blocks via an external builder. If no limit has been set explicitly for
a key then the process-wide default will be returned.
The server may return a 400 status code if no external builder is configured.
WARNING: The gas_limit is not used on Phase0 or Altair networks.
security:
- bearerAuth: []
tags:
- Gas Limit
parameters:
- in: path
name: pubkey
schema:
type: string
pattern: '^0x[a-fA-F0-9]{96}$'
description: |
The validator's BLS public key, uniquely identifying them. _48-bytes, hex encoded with 0x prefix, case insensitive._
example: '0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a'
required: true
responses:
'200':
description: success response
content:
application/json:
schema:
title: ListGasLimitResponse
type: object
required:
- data