Chain-tip
Returns the identifier of the most recently processed block on the network
Responses
- 200
- 500
Get details of the chain-tip (lastest block)
application/json
Schema
Example (from schema)
Example
Schema
data object required
Blockchain chain-tip (most recently adopted block)
block_hash string required
Block hash of the most recent block
height int64 required
Height (number) of the most recent block
slot int64 required
Absolute slot of the most recent block
last_updated object required
Details of the most recent block processed by the indexer (aka chain tip); that is, the data returned is correct as of this block in time.
block_hash string required
Hex-encoded hash of the most recently processed block (aka chain tip)
block_slot int64 required
Absolute slot of the most recently processed block (aka chain tip)
timestamp string required
UTC timestamp of when the most recently processed block was minted
{
"data": {
"block_hash": "string",
"height": 0,
"slot": 0
},
"last_updated": {
"block_hash": "string",
"block_slot": 0,
"timestamp": "string"
}
}
{
"data": {
"block_hash": "4c0916eea22254efc2a35f72b4fa8ec5caaf3cd0b193a4df8efb4c0f5ff2be4a",
"slot": 32284578,
"height": 1102039
},
"last_updated": {
"timestamp": "2022-10-10 20:25:28",
"block_hash": "4c0916eea22254efc2a35f72b4fa8ec5caaf3cd0b193a4df8efb4c0f5ff2be4a",
"block_slot": 32284578
}
}
Internal server error
Loading...