POST
/
v1
/
subscribe
{
  "result": {
    "topic": "peer_connected",
    "value": {
      "ethAddress": "0x123...",
      "type": "provider"
    }
  },
  "error": {
    "code": 123,
    "message": "<string>",
    "details": [
      {
        "@type": "<string>"
      }
    ]
  }
}

Body

application/json
topics
string[]

List of topics to subscribe to. Available topics:

  • peer_connected: Emitted when a peer connects to the network
  • peer_disconnected: Emitted when a peer disconnects from the network
  • validator_opted_in: Emitted before an upcoming L1 block proposer has opted in to the mev-commit protocol
  • epoch_validators_opted_in: Emitted at the beginning of an epoch, specifying any slots where the L1 validator is opted-in to mev-commit
Example:
["peer_connected", "validator_opted_in"]

Response

200
application/json
A successful response.(streaming responses)
result
object
error
object