Explorer Pages

Explorer Pages

A page-by-page reference for the XE block explorer. Each page fetches data from the node's HTTP API and renders it in the TUI-inspired interface.

#Home (/)

The dashboard landing page. Provides a high-level overview of the network.

Content:

  • Stats grid -- account count, total blocks, active leases, connected peers, active conflicts
  • Node info -- peer ID, listen address, software version
  • Top 10 accounts -- table sorted by XE balance showing address, XE balance, XUSD balance, and block count
  • Recent transactions -- latest blocks across the network with type, account, amount, and timestamp
  • Pending receives -- summary of unreceived sends
  • Navigation cards -- quick links to all major sections

#Accounts (/accounts)

All accounts on the network in a sortable table.

ColumnDescription
AddressAccount address (truncated, with copy button)
XE BalanceCurrent XE balance
XUSD BalanceCurrent XUSD balance
Block CountNumber of blocks in the account chain
FrontierHash of the latest block
Last BlockTimestamp of the most recent block

All columns are sortable. Clicking an address navigates to the account detail page.

#Account Detail (/accounts/[address])

Full view of a single account.

Header:

  • Full address with copy-to-clipboard button
  • Multi-asset balance display (XE and XUSD)
  • Total block count
  • Pending receive count

Block chain:

The complete block chain is displayed as a series of cards, newest first. Each card shows:

  • Block type (send, receive, claim, lease, lease_accept, lease_settle)
  • Block hash
  • Previous hash
  • Asset and balance
  • Timestamp
  • Type-specific fields (destination, source, amount, resources)

#Block Detail (/blocks/[hash])

Complete display of a single block, accessed by hash.

FieldDescription
TypeBlock type with colored badge
HashFull block hash
AccountAccount address (link to account page)
PreviousPrevious block hash (link to block page)
AssetAsset identifier
BalancePost-transaction balance
TimestampBlock creation time
DestinationSend/lease target (if applicable)
SourceReceive/accept/settle source hash (if applicable)
AmountTransaction amount (if applicable)
RepresentativeDelegated representative address
SignatureEd25519 signature
PoW NonceProof of work nonce

#Conflicts (/conflicts)

Active and recently resolved conflicts.

Each conflict is displayed as a card grouped by the account involved. Cards show:

  • Account address
  • Competing block hashes (up to 10)
  • Detection timestamp
  • Resolution status

#Leases (/leases)

All compute leases in a sortable table.

ColumnDescription
StatusActive, settled, or pending
HashLease block hash
ConsumerConsumer account address
ProviderProvider account address
ResourcesvCPUs, memory (MB), disk (GB)
CostXUSD cost
StakeProvider stake amount
DurationLease duration
Start TimeWhen the lease began

#Peers (/peers)

Network connectivity information.

Node info section:

  • Peer ID
  • Listen address
  • Software version
  • Role (standard or provider)

Connected peers table:

  • Peer ID
  • Multiaddress
  • Connection direction (inbound/outbound)

#Pending (/pending)

All pending (unreceived) transactions across the network.

ColumnDescription
Send HashHash of the send block
FromSender address
ToRecipient address
AmountAmount sent
AssetAsset type
AgeTime since the send block was created

#Providers (/providers)

Provider nodes offering compute resources.

Each provider is displayed as a card showing:

  • Capacity metrics -- vCPU, memory, and disk as progress bars (used vs. total)
  • Active leases -- count of currently active leases
  • Settled leases -- count of completed leases
  • Earnings -- total XE earned from settlements

#State Chain (/statechain)

The DAO state chain block history.

Block table:

ColumnDescription
IndexBlock height in the state chain
HashBlock hash (link to detail page)
OperationsCount of KV operations in the block
SignaturesCount of DAO member signatures
TimestampBlock creation time

Links to the KV Explorer for browsing the current state.

#State Chain Block (/statechain/blocks/[index])

Detailed view of a single state chain block.

Content:

  • Block metadata (index, hash, previous hash, timestamp)
  • Operations list -- each operation displayed with a SET or DELETE badge, showing key and value
  • Signatures -- list of DAO member signatures with signer address
  • Navigation -- previous/next block links

#KV Explorer (/statechain/kv)

Browse the current key-value state produced by the state chain.

Features:

  • Filter by key prefix
  • Keys grouped by namespace (the part before the first / or .)
  • Pretty-printed values (JSON formatting where applicable)
  • Copy buttons for keys and values

#See also