Neptune Explorer (network: main)

The blockchain tip is at height: 44,919
Block Lookup
Provide a numeric block height or hexadecimal digest identifier to lookup any block in the Neptune blockchain. Block height or digest:
Quick Lookup: Genesis Block | Tip
UTXO Lookup
An Unspent Transaction Output (UTXO) index can be found in the output of neptune-cli wallet-status. Look for the field: aocl_leaf_index UTXO index:
Transaction Output Lookup
Track a transaction output by its addition record: the 80-character hexadecimal canonical commitment of the output. Reports whether it is not known, in the mempool, or mined into a canonical block. When the output is in a publishable mempool transaction, basic transaction details are shown as well. Addition record (hex):
Announcement Lookup
A numeric block height or hexadecimal digest to identify the block in which the announcement lives. Block height or digest: The index of the announcement within the block (as a block can have many announcements). Announcement index:
REST RPCs
RPC endpoints are available for automating block explorer queries:
/block_info
/block_digest
/utxo_digest
/output_status
Reports whether a transaction output (addition record) is not_known, in_mempool, or mined (with block height and digest). Argument is the 80-character hex addition record. A mined answer is computed fresh on every request; in_mempool / not_known are derived from a mempool snapshot taken at mempool_checked_at and reused for mempool_cache_ttl_seconds, so mempool status can lag by up to that many seconds. Primitive-witness-backed transactions are excluded from this public mempool view because they are local-only. For in_mempool, the response also includes the transaction id, fee, input/output counts, proof quality, and queue position among publishable transactions in fee-density order.

Example

  • /rpc/output_status/<addition_record_hex>