Skip to content

Instantly share code, notes, and snippets.

@jmcph4
Last active March 17, 2024 23:26
Show Gist options
  • Select an option

  • Save jmcph4/5e8cd620d17d1535f35cd2467653f667 to your computer and use it in GitHub Desktop.

Select an option

Save jmcph4/5e8cd620d17d1535f35cd2467653f667 to your computer and use it in GitHub Desktop.
sequenceDiagram
  actor Searcher
  actor Builder
  actor Relay
  actor Proposer
  
  Note over Searcher,Builder: Custom API
  Note over Builder,Relay: Relay API
  Note over Relay,Proposer: Builder API
Loading
sequenceDiagram
  actor Searcher
  actor Builder
  actor Relay
  actor Proposer
  
  Searcher->>Builder: Bundle
  
  loop Every slot
    Builder->>Relay: `SubmitBlockRequest`
    Proposer->>Relay: GET /eth/v1/builder/header
    Relay->>Proposer: `GetHeaderResponse`
    Proposer->>Relay: `SignedBlindedBeaconBlock`
    Relay->>Proposer: `SubmitBlindedBlockResponse`
  end
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment