We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b66471c commit db11adcCopy full SHA for db11adc
types/bellatrix/bid.yaml
@@ -12,6 +12,12 @@ Bellatrix:
12
pubkey:
13
$ref: "../../beacon-apis/types/primitive.yaml#/Pubkey"
14
description: "BLS public key of builder."
15
+ fee_recipient:
16
+ $ref: '../../beacon-apis/types/primitive.yaml#/ExecutionAddress'
17
+ description: "The address the bid is paid to"
18
+ proofs:
19
+ $ref: "../proof.yaml#/Proofs"
20
+ description: "Proofs of pre and post balances of the `fee_recipient` account"
21
22
SignedBuilderBid:
23
type: object
types/proof.yaml
@@ -0,0 +1,13 @@
1
+Proofs:
2
+ type: array
3
+ items:
4
+ allOf:
5
+ - $ref: '#/Proof'
6
+ maxItems: 2
7
+
8
+Proof:
9
10
11
+ - $ref: "../beacon-apis/types/primitive.yaml#/Bytes32"
+ maxItems: 32
0 commit comments