-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
experimental: local Block Builder API #116
base: main
Are you sure you want to change the base?
Changes from all commits
a67f282
925e176
76b764f
0abfa1d
d03222e
dff38f9
c396200
5b1430c
9c1e7cf
aab8435
3a1f59b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,172 @@ | ||||||
# Builder API | ||||||
<!-- START doctoc generated TOC please keep comment here to allow auto update --> | ||||||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> | ||||||
**Table of Contents** | ||||||
|
||||||
- [Overview](#overview) | ||||||
- [Sequencer Builder Interaction](#sequencer-builder-interaction) | ||||||
- [Requesting a Block](#requesting-a-block) | ||||||
- [Liveness Failsafe](#liveness-failsafe) | ||||||
- [Mempool Forwarding](#mempool-forwarding) | ||||||
- [Builder Configuration](#builder-configuration) | ||||||
- [Structures](#structures) | ||||||
- [`PayloadRequestV1`](#payloadrequestv1) | ||||||
- [`BuilderPayloadV1`](#builderpayloadv1) | ||||||
- [Methods](#methods) | ||||||
- [`builder_getPayloadV1`](#builder_getpayloadv1) | ||||||
- [`builder_forwardTransactionV1`](#builder_forwardtransactionv1) | ||||||
|
||||||
<!-- END doctoc generated TOC please keep comment here to allow auto update --> | ||||||
|
||||||
## Overview | ||||||
|
||||||
This document provides an in-depth specification for integrating a Builder API within the Optimism Protocol | ||||||
and Stack. The Builder API provides a standardized interface for block construction and transaction management | ||||||
between the Sequencer and a local Block Builder. The specified interactions are the minimum viable design | ||||||
needed to allow a local Block Builder. | ||||||
|
||||||
By decoupling the block construction process from the Sequencer's Execution Engine, operators can tailor transaction | ||||||
sequencing rules without diverging from the standard Optimism Protocol Client. This flexibility allows individual chains | ||||||
to experiment on seqeuncing features, providing a means for differentiation. This minimum viable design also includes | ||||||
a local block production fallback as a training wheel to ensure liveness and network performance in the event of | ||||||
local Block Builder failure. | ||||||
|
||||||
It is important to note that this document ***does not*** outline how to safely enable a permissionless | ||||||
Block Builder Network to serve payloads or how to manage Block Builder configs on L1. | ||||||
|
||||||
## Sequencer Builder Interaction | ||||||
|
||||||
```mermaid | ||||||
sequenceDiagram | ||||||
participant EES as Exec Engine (Sequencer) | ||||||
participant OPS as Op-Node (Sequencer) | ||||||
participant OPB as Op-Node (Block Builder) | ||||||
participant BB as Block Builder | ||||||
OPS-->> OPB: Fork Choice Update (p2p) | ||||||
OPB-->>BB: Fork Choice Update | ||||||
|
||||||
EES-->>BB: builder_forwardTransactionV1 | ||||||
Note right of Builder: timespan for building blocks | ||||||
OPS->> BB: builder_getPayloadV1 | ||||||
BB-->>OPS: BuilderPayloadV1 | ||||||
OPS-->>OPS: SimulatePayload | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. how is the payload simulated and confirmed? is it via rpc to the exec engine? |
||||||
OPS-->>OPS: ConfirmPaylaod | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
OPS ->> EES: engine_forkchoiceUpdatedV3 | ||||||
|
||||||
``` | ||||||
|
||||||
- **Fork Choice Update**: The Sequencer propagates a Fork Choice Update to the Block Builder, indicating an update | ||||||
to the chain's latest head. | ||||||
- **Forward Transaction**: The Sequencer's Execution Engine forwards transactions it received to the Block Builder | ||||||
to be included in a block. *This step is not necessary if the Block Builder can get transactions elsewise and forwarding | ||||||
does not give any specific inclusion gurantees.* | ||||||
- **Get Payload**: The Sequencer requests a block from the Block Builder for a specific head. | ||||||
|
||||||
### Requesting a Block | ||||||
|
||||||
The block request mechanism ***MUST*** be triggered when the Driver schedules a new Fork Choice Update on the | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. could you clarify what the |
||||||
Sequencer. The Sequencer will translate the received Payload Attributes into a Payload Request for the | ||||||
Block Builder. As specified lower, the Sequencer ***MUST*** simulate the received payload to ensure correctness until | ||||||
an accountability mechanism can be introdcued. | ||||||
|
||||||
#### Liveness Failsafe | ||||||
|
||||||
To maintain network liveness while utilizing the Builder API, the Sequencer ***MUST*** operate an auxiliary process | ||||||
when building blocks. This process concurrently executes a Builder API request to the Block Builder alongside a local | ||||||
block production request through its local execution engine. This two-pronged strategy for generating blocks ensures | ||||||
that network liveness persists, even in instances where the Block Builder's block construction process experiences | ||||||
delays or is offline. This fallback mechanism should be seen as a training wheel. | ||||||
|
||||||
### Mempool Forwarding | ||||||
|
||||||
A builder network's throughput is conditional on the transactions it sees. Thus the Sequencer's Execution Engine, | ||||||
or simply it's RPC, can forward transactions to the Builder as part of regular mempool management, ensuring that | ||||||
user transactions are included in the Block Builder's block construction process efficiently. | ||||||
|
||||||
### Builder Configuration | ||||||
|
||||||
A builder is defined as the tuple (`builderPubkey`, `builderUrl`). The Sequencer is responsible for managing this | ||||||
tuple, but it will eventually live on the | ||||||
L1 [`SystemConfig`](https://github.com/ethereum-optimism/specs/blob/main/specs/protocol/system_config.md) | ||||||
where changes are emitted as an event. ***Builder's have no restriction or policies enforced on them at this time.*** | ||||||
|
||||||
## Structures | ||||||
|
||||||
### `PayloadRequestV1` | ||||||
|
||||||
This structure contains information necessary to request a block from a local Block Builder. | ||||||
|
||||||
- `blockNumber`: `uint256` | ||||||
- `parentHash`: `Hash32` | ||||||
- `pubKey`: `Address` | ||||||
- `gasLimit`: `uint256` | ||||||
- `parentBeaconBlockRoot`: `Hash32` | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what is this used for? no need for timestamp? |
||||||
|
||||||
### `BuilderPayloadV1` | ||||||
|
||||||
This structure represents the Block Builder's response to the request for payload. | ||||||
|
||||||
- `executionPayload`: `ExecutionPayloadV2` | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should this be updated to |
||||||
- ([spec](https://github.com/ethereum/execution-apis/blob/main/src/engine/shanghai.md#executionpayloadv2)) | ||||||
- `pubKey`: `Address` | ||||||
- `value`: `uint256` | ||||||
|
||||||
## Methods | ||||||
|
||||||
### `builder_getPayloadV1` | ||||||
|
||||||
**Request** | ||||||
|
||||||
- **method**: `builder_getPayloadV1` | ||||||
- **params**: | ||||||
1. `payload`: `PayloadRequestV1` | ||||||
- **Required**: true | ||||||
- **Description**: Details of block construction request for local Block Builder | ||||||
- `signature` : `Signature` | ||||||
- **Required**: true | ||||||
- **Description**: `secp256k1` signature over `payload` | ||||||
- **timeout**: 200ms | ||||||
- **retries**: 0 | ||||||
- Timeout does not leave enough time to retry for this block, Sequencer ***SHOULD*** use local block and move on. | ||||||
|
||||||
**Response** | ||||||
|
||||||
- **result**: `BuilderPayloadV1` | ||||||
- **error**: code and message set in case an exception happens while getting the payload. | ||||||
|
||||||
**Specification** | ||||||
|
||||||
1. Client software ***MAY*** call this method if `builderPubkey` and `builderUrl` are set. | ||||||
2. Client software ***MUST*** validate that the response object `BuilderPayloadV1` contains `executionPayload` | ||||||
and that `pubKey` matches the registered `builderPubkey`. | ||||||
3. Client software ***MUST*** follow the same specification | ||||||
as [`engine_newPayloadV3`](https://github.com/ethereum/execution-apis/blob/main/src/engine/cancun.md#executionpayloadv3) | ||||||
with the response body `executionPayload`. | ||||||
4. Client software ***MUST*** simulate transactions in `executionPayload` on `parentHash` in`payload` all fields | ||||||
in `executionPayload` are correct as compared to local view of chain. | ||||||
5. Client ***SHOULD*** use local block in the event of a timeout from calling `builder_getPayloadV1`. | ||||||
|
||||||
### `builder_forwardTransactionV1` | ||||||
|
||||||
**Request** | ||||||
|
||||||
- **method**: `builder_forwardTransactionV1` | ||||||
- **params**: | ||||||
1. `transaction`: `string` | ||||||
- **Required**: true | ||||||
- **Description**: Hex Encoded RLP string of the transaction | ||||||
- **timeout**: 200ms | ||||||
- Short timeout to increase chance of including high priority gas transactions in the Builder's current block | ||||||
- **retries**: 5 | ||||||
- Needed to ensure user transactions do not get "lost" in event of a failed post. Client ***SHOULD*** log | ||||||
loudly in event all 5 retries fail. | ||||||
|
||||||
**Response** | ||||||
|
||||||
- **result**: `status` | ||||||
- **error**: code and message set in case an exception happens while storing the transaction. | ||||||
|
||||||
**Specification** | ||||||
|
||||||
1. Client software ***MAY*** call this method if `builderPubkey` and `builderUrl` are set. | ||||||
2. Client software ***MUST*** retry if status is not `200`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
small nit: nothing about this proposal enshrines PBS into the protocol but saying "within the Optimism Protocol" makes it sound like ePBS
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good point, will change to "Optimism Stack". I was a bit confused because
/specs
defines "the plain english specs for Optimism, a minimal optimistic rollup protocol" but this change is actually for the "Optimism Stack".