Network statistics

Kronex Network

Every figure on this page can be checked against a public endpoint, and each row says which one.

TestnetNothing here is reported on our authority. Six chain metrics: five read from the public explorer and one derived from a block read. The rest have no source yet — each row says which it is.

01 · How to read this page

How to read this page

Every figure below cites the field it came from and the endpoint that served it. One figure is derived rather than read, and its row says so.

explorer-testnet.kronex.network/api/v2/stats
Blockscout's public stats endpoint. Five of the six chain figures are fields in its response.
rpc.kronex.network
The public JSON-RPC endpoint. The block read behind the derived hashrate comes from here.

No number on this page comes from anywhere a reader cannot query themselves. Coin price, market cap and TVL are present in the stats response and are never read — the no-price rule holds at any value, including null.

02 · Chain Testnet

Chain

Six metrics. Each row carries the value, its source field, and the call that returns it.

MetricValueSource fieldHow it is obtained
Average block time against a 10-second target average_block_time GET /api/v2/stats · explorer
Block height blocks total_blocks GET /api/v2/stats · explorer
Network hashrateDerived, not read computed at read time difficulty ÷ 10s POST eth_getBlockByNumber · RPC
Average fee per gas gas_prices.average GET /api/v2/stats · explorer
Transactions total total_transactions GET /api/v2/stats · explorer
Addresses total total_addresses GET /api/v2/stats · explorer

Ordered by what a chain this young shows clearly: a rate holds its meaning at any age, a cumulative count does not. Transaction and address counts sit last and are on the page in full.

Refreshes every 12s · last update —

Metric tile · states

Average block time, five ways

The five states a tile can be in. Their existence in the design is what proves the section is infrastructure, not a marketing panel.

Live
Average block time 8.3s target 10s · explorer API

A figure read successfully within the refresh window.

Loading
Average block time

The request is in flight. Held 0.9s minimum so the bar cannot flash.

Stale
Average block time 8.3s last update 4m ago

The last read succeeded but is older than the refresh window.

Source pending
Average block time Source pending

The metric is real but nothing public reports it. KRNX supply and active nodes sit here.

Error
Average block time Source unreachable Retry

The endpoint did not answer. The failure is the source's, and the tile says so.

03 · No source yet

No source yet

Two metrics with a stated reason each, rather than a chip and a shrug.

KRNX supply
Source pending
The explorer's stats endpoint carries no supply field. Nothing else public reports it, so the tile stays empty rather than carrying a figure assembled from somewhere else.
Active nodes
Source pending
net_peerCount returns the peer count of whichever endpoint you ask, which is not a census of the network. Substituting it would put a smaller true number under a larger claim's label.

04 · Awaiting the marketplace Planned

Awaiting the marketplace

  • Active providers

    Awaiting marketplace
  • Compute capacity

    Awaiting marketplace
  • Marketplace volume

    Awaiting marketplace
  • Active orders

    Awaiting marketplace

These four are not waiting on a launch. They are waiting on a layer that is not built, so there is nothing yet for them to count. Which phase builds it →

05 · Verify it yourself Testnet

Verify it yourself

The two requests that produce every figure above. Both return real values today.

Testnet · live endpoints · real code — paste it into a terminal
# the five explorer figures — block height, block time, transactions, addresses, gas
curl https://explorer-testnet.kronex.network/api/v2/stats

# the difficulty behind the derived hashrate — hashrate = difficulty ÷ 10s
curl -X POST https://rpc.kronex.network \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_getBlockByNumber","params":["latest",false]}'

Related

Check it against the chain

Open explorer ↗Read the Docs ↗