From 9382bb94074fe1214df9897d60c6fcfe4c1dff6d Mon Sep 17 00:00:00 2001 From: Jinsuk Park Date: Wed, 28 Aug 2024 03:32:27 +0900 Subject: [PATCH] nit changes --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 235f871b8c..a2ae9de74b 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ sequenceDiagram SEQ->>BOP: Send latest head update (p2p channel) BOP->>BUILDER: Publish attributes to the event stream BUILDER->>BUILDER: Start building blocks - SEQ->>BUILDER: GetPayload API request + SEQ->>BUILDER: GetPayload Builder API request BUILDER->>SEQ: VersionedSubmitBlockRequest SEQ->>ENGINE: Insert payload ``` @@ -53,6 +53,7 @@ Key Components: * Builder Op-Node: Op-node connected to the network to get the latest head update. * Builder: Flashbots block builder for Optimism. +Process: 1. Sequencer publishes the latest head update in p2p channel 2. Builder Op-Node receives the head update and publishes the attributes to the event stream. 3. Builder listens to the event stream and triggers the build process when the attributes are available.