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.
| Column | Description |
|---|---|
| Address | Account address (truncated, with copy button) |
| XE Balance | Current XE balance |
| XUSD Balance | Current XUSD balance |
| Block Count | Number of blocks in the account chain |
| Frontier | Hash of the latest block |
| Last Block | Timestamp 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.
| Field | Description |
|---|---|
| Type | Block type with colored badge |
| Hash | Full block hash |
| Account | Account address (link to account page) |
| Previous | Previous block hash (link to block page) |
| Asset | Asset identifier |
| Balance | Post-transaction balance |
| Timestamp | Block creation time |
| Destination | Send/lease target (if applicable) |
| Source | Receive/accept/settle source hash (if applicable) |
| Amount | Transaction amount (if applicable) |
| Representative | Delegated representative address |
| Signature | Ed25519 signature |
| PoW Nonce | Proof 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
Info
Conflicts occur when two blocks reference the same previous hash (a fork). See Conflict Detection for how they are resolved.
Leases (/leases)¶
All compute leases in a sortable table.
| Column | Description |
|---|---|
| Status | Active, settled, or pending |
| Hash | Lease block hash |
| Consumer | Consumer account address |
| Provider | Provider account address |
| Resources | vCPUs, memory (MB), disk (GB) |
| Cost | XUSD cost |
| Stake | Provider stake amount |
| Duration | Lease duration |
| Start Time | When 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.
| Column | Description |
|---|---|
| Send Hash | Hash of the send block |
| From | Sender address |
| To | Recipient address |
| Amount | Amount sent |
| Asset | Asset type |
| Age | Time 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:
| Column | Description |
|---|---|
| Index | Block height in the state chain |
| Hash | Block hash (link to detail page) |
| Operations | Count of KV operations in the block |
| Signatures | Count of DAO member signatures |
| Timestamp | Block 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
SETorDELETEbadge, 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¶
- Explorer Overview -- tech stack and deployment
- API Reference -- endpoints backing each page
- State Chain -- governance model behind the state chain pages