Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 654 Bytes

top-bid-websocket.md

File metadata and controls

21 lines (17 loc) · 654 Bytes

Endpoint: ws://relay-builders-eu.ultrasound.money/ws/v1/top_bid

It sends ping frames, clients should respond with pong.

It emits SSZ encoded data of the following (rust) types:

pub struct TopBidUpdate {
    pub timestamp: u64,
    pub slot: u64,
    pub block_number: u64,
    pub block_hash: B256,
    pub parent_hash: B256,
    pub builder_pubkey: BlsPublicKey,
    pub fee_recipient: Address,
    pub value: U256,
}

Use persistent connections if possible. When closing connections please make sure to close the socket properly.

You can find an example implementation here: https://github.com/ultrasoundmoney/top-bid-websocket-client