# Explorer Block

Push a notification after each new block is finalized. No parameters — global subscription.

> **No auth.** Use this for chain heartbeat, block-height tracking, or as a trigger to re-query other endpoints.

## Subscribe

```json
{ "channel": "explorer_block" }
```

## Payload

| Field | Type         | REST equivalent |
| :---: | ------------ | --------------- |
|  `h`  | integer      | `height`        |
|  `x`  | string       | `block_hash`    |
|  `t`  | integer (ms) | `block_time`    |
|  `p`  | string       | `proposer`      |
|  `n`  | integer      | `num_txs`       |

## Example Push

```json
{
  "channel": "explorer_block",
  "ts": 1719500000150,
  "finality": "final",
  "data": {
    "h": 1234567,
    "x": "0xb1ock_hash…",
    "t": 1719500000120,
    "p": "0xpr0p0ser…",
    "n": 42
  }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.lynxtrade.world/websocket/explorer-channels/explorer-block.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
