Solana Network Health Dashboard
Pricing
Pay per usage
Solana Network Health Dashboard
Real-time Solana network metrics: TPS (real vs vote), epoch progress, SOL supply/circulating, validator count, Nakamoto coefficient, price. Uses Solana public RPC + CoinGecko. No API key. $0.005/run.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Hojun Lee
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Real-time Solana network metrics using the public Solana JSON-RPC endpoint. No API key required.
What It Does
Fetches and structures key Solana health metrics into a flat dataset suitable for dashboards, alerts, and time-series databases:
- Network: Current TPS (real non-vote transactions vs total), vote transaction percentage
- Epoch: Current epoch number, slot height, epoch completion %, hours until next epoch
- All-time: Total confirmed transaction count on Solana mainnet
- Supply: Total supply, circulating supply, non-circulating (locked/governance), circulating %
- Market: SOL price (USD), 24h change, volume, market cap via CoinGecko
- Validators (optional): Active/delinquent count, total staked SOL, Nakamoto coefficient
Input
| Field | Type | Default | Description |
|---|---|---|---|
includeValidators | boolean | false | Include validator count + Nakamoto coefficient. Adds ~2s (extra RPC call). |
Output Schema
Each row is one metric:
{"metric": "tps_real","value": 1680.3,"unit": "tx/s","category": "network","description": "Real user TPS (excl. vote transactions)","fetched_at": "2026-07-08T14:00:00+00:00"}
Categories: network, economics, market, validators
Key Value Store
A SNAPSHOT object is saved with all metrics as key-value pairs for easy programmatic access.
Pricing
$0.005 per run (Pay-Per-Event) — flat rate, no per-metric charge.
Use Cases
- Validators monitoring: track delinquent validator count over time
- TPS dashboards: real vs vote TPS ratio reveals network utilization
- Epoch-based alerts: automate actions at epoch boundaries (staking reward distributions)
- Supply inflation tracking: monitor circulating supply growth over time
Data Sources
- Solana JSON-RPC:
api.mainnet-beta.solana.com(public, no auth) - CoinGecko: Free API for SOL price
Metrics Reference
| Metric | Unit | Description |
|---|---|---|
tps_total | tx/s | Total TPS including validator votes |
tps_real | tx/s | Real user TPS (non-vote) |
tps_vote_pct | % | Share of transactions that are validator votes |
current_epoch | - | Current epoch number |
slot_height | slot | Current absolute slot |
epoch_progress_pct | % | Current epoch completion |
hours_to_epoch_end | hours | Estimated hours until epoch ends |
all_time_tx_count | txs | Total confirmed transactions ever |
total_supply_sol | M SOL | Total supply (millions) |
circulating_supply_sol | M SOL | Circulating supply (millions) |
circulating_pct | % | Circulating / total ratio |
sol_price_usd | USD | Current SOL price |
sol_24h_change_pct | % | 24h price change |
active_validators | - | Active validators (when enabled) |
nakamoto_coefficient | - | Min validators to control 33% stake |