
alphanumeric
Discovery, light snapshots, network status.
A resilient discovery and light snapshot layer for the Alphanumeric network. Nodes announce, clients discover peers, and the gateway stays available so clients can reconnect and sync.
Network Operations
Live gateway telemetry, chain health signals, and recent network activity.
Snapshot History (24h)
Waiting for snapshot history.
How It Works
Announce
Nodes publish signed status and optional stats snapshots.
Rank
Gateway dedupes endpoints and prioritizes fresher peer signals.
Verify
Header snapshots move from pending to verified by signer quorum.
Sync
Clients sync from the canonical chain tip exposed by discovery APIs.
Discovery
Nodes POST signed announcements and clients fetch ranked peers. Works at small scale and holds up to hundreds of nodes using KV-backed storage.
Light Snapshot
Validators submit signed header snapshots. The site shows last known height and timestamps with a clear stale marker.
Health
Simple uptime endpoint and CORS-friendly APIs for nodes and tools.
Run a Node
- Set
ALPHANUMERIC_DISCOVERY_BASES - Run the binary and keep it online
- Expose
ALPHANUMERIC_STATS_PORTif you host stats
Recommended Env
ALPHANUMERIC_DISCOVERY_BASES=https://alphanumeric.blue ALPHANUMERIC_STATS_PORT=8787 ALPHANUMERIC_STATS_ENABLED=true
Signed Announce Payload
{
"ip": "203.0.113.7",
"port": 7177,
"node_id": "node-abc",
"public_key": "<ed25519 pubkey>",
"version": "beta-7.2.7",
"height": 12345,
"last_seen": 1700000000,
"latency_ms": 42,
"signature": "<ed25519 signature>"
}