Skip to content

Commit db11adc

Browse files
committed
Add bid proofs to the builder bid response
1 parent b66471c commit db11adc

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

types/bellatrix/bid.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ Bellatrix:
1212
pubkey:
1313
$ref: "../../beacon-apis/types/primitive.yaml#/Pubkey"
1414
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"
1521

1622
SignedBuilderBid:
1723
type: object

types/proof.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Proofs:
2+
type: array
3+
items:
4+
allOf:
5+
- $ref: '#/Proof'
6+
maxItems: 2
7+
8+
Proof:
9+
type: array
10+
items:
11+
allOf:
12+
- $ref: "../beacon-apis/types/primitive.yaml#/Bytes32"
13+
maxItems: 32

0 commit comments

Comments
 (0)