Block Explorer — Blocks

Block List

The Blockchain page shows all blocks in reverse chronological order with:

  • Block height (index)
  • Block hash (truncated)
  • Timestamp
  • Number of transactions
  • Proposer address

Click any block to view its full details.

Block Detail Page

URL: /block/:height

Shows:

FieldDescription
HeightBlock number in the chain
HashSHA-256 hash of the block
Previous HashHash of the parent block
TimestampWhen the block was created
ProposerPublic key of the block proposer
Transaction CountNumber of transactions in the block

Below the header, all transactions in the block are listed with their type, sender, recipient, amount, and fee.

API

GET /api/blocks              — List all blocks (paginated)
GET /api/block/:height       — Get a specific block by height
GET /api/blocks/summary      — Block summary for charts