SPEARMINT SPMTC

Spearmint/Guides Articles/Network

Spearmint network · live figures at launch

Network statistics

What the chain is doing right now, read from a Spearmint Core node and checkable against your own. Until mainnet launches, this page shows the layout and the sources, not numbers.

Pre-launch · no mainnet Dashboard concept
Block height
live at launch
Network hashrateTH/s
live at launch
Difficulty
live at launch
Last block
live at launch
Blocks (24h)
live at launch
Avg block intervals
live at launch · target 30 s
Pool share of network hashrate%
live at launch · Spearmint Mining only
Active workers
live at launch · Spearmint Mining only

01 What this page will show

Network figures describe the whole Spearmint chain. Pool figures describe only Spearmint Mining, one participant among however many there are. The two are never mixed in one tile.

Chain

Height, hashrate, difficulty

Current tip, estimated network hashrate over 1h / 6h / 24h windows, and the current target expressed as difficulty. Because difficulty retargets every block, the difficulty chart is effectively a hashrate chart with a one-block lag.

Blocks

Recent blocks

Height, time, interval since the previous block, size, transaction count, finder (Spearmint Mining, another identified pool, or unattributed solo), coinbase transaction ID, and confirmations. Orphaned blocks shown struck through with the competing hash.

Nodes

Count and versions

Reachable node count from a crawler, version distribution, and how many enforce the current consensus rules. A rising count of nodes not run by the operator is the metric that matters most.

Health

Concentration and orphans

Share of blocks by finder over 24h and 7d, the Nakamoto coefficient (fewest finders needed to exceed 50%), and the orphan rate. These are the numbers the October 2025 meeting asked to be watched; they are published because they may look bad.

02 Where the numbers come from

  • A Spearmint Core node the operator runs, queried over RPC on localhost: getblockchaininfo, getnetworkhashps, getblock, getchaintips. The node's RPC is not reachable from the internet; a small exporter reads it and publishes JSON.
  • A peer crawler for node counts and version strings, which sees only nodes that accept inbound connections and therefore undercounts.
  • Spearmint Mining's own share accounting for the two pool tiles, clearly labelled as such.
  • Block attribution from coinbase text and published pool addresses. Anything not matched is shown as unattributed, never guessed.

Every network figure can be reproduced from your own node with the same RPC calls. If this page and your node disagree, your node is right, and the discrepancy is a bug worth reporting.

03 Recent blocks

Most recent 25 blocks — live at launch
Height Time (UTC) Interval Finder Coinbase txid Txs Confirmations
No blocks — mainnet has not launched

04 Pool statistics

Scope The figures in this section describe Spearmint Mining only — the pool operated by Instant Access. They say nothing about other pools or solo miners, whose activity appears on this page only as blocks they find.
Spearmint Mining — live at launch
FigureMeaning
Pool hashrateSum of accepted share difficulty over the last 10 minutes, converted to hashes per second
Active workers / addressesWorkers that submitted a valid share in the last 10 minutes, and distinct payout addresses among them
Blocks foundCount over 24h / 7d / all time, with links into the block list
LuckExpected shares per block divided by actual, over the last 50 blocks; 100% is average, above is lucky
Pool fee1% of block rewards attributable to participating miners (proposed)
Reward methodologyPPLNS, window = 2 × network difficulty (proposed) — see how rewards work
Last payout runTime, transaction ID, number of payout addresses, total distributed

05 Data access

The same figures will be available as JSON, read-only, without authentication or rate keys, so that anyone can build a better dashboard than this one.

# planned — paths may change before launch GET /api/network # height, hashrate estimates, difficulty, tip hash, node counts GET /api/blocks # most recent 100 blocks; ?before=<height> to page back GET /api/pool # Spearmint Mining hashrate, workers, blocks found, luck, fee, last payout run

Responses carry a source_height so you can tell how far behind the tip the exporter was when it answered. No endpoint accepts a POST, takes an address, or returns anything about an individual miner; per-address statistics live on the mining dashboard, looked up by the address itself.

06 Questions

Why is the pool's share of hashrate shown at all?
Because a pool run by the same people who direct the software is a concentration risk, and hiding it would not make it smaller. If Spearmint Mining's share gets uncomfortably high, the honest response is to say so on this page and encourage solo mining and other pools.
Is the hashrate figure exact?
No. Network hashrate is inferred from how fast blocks arrive relative to difficulty, which is noisy over short windows. The 24h figure is the one to quote. Pool hashrate is measured directly from shares and is accurate to within a few percent.
Will there be a full block explorer?
After launch, once the node software is stable. Until then the block list here, plus getblock on your own node, covers what most people need.