Network
Public Miden testnet services — explorer, RPC, faucet, remote prover, and status. The canonical live inventory lives at status.testnet.miden.io; the page below is an editorial overview that won't go stale as new endpoints ship.
Testnet status ↗
Dashboard showing every public Miden testnet endpoint with live health checks. Bookmark this when something looks off — it's the source of truth for "is the network up."
MidenScan (block explorer) ↗
Search by account ID, transaction ID, note ID, or block height. The verification surface referenced throughout the tutorials.
Developer endpoints
RPC
gRPC endpoint the node exposes for submitting proven transactions and querying account / note / block state. Clients connect here by default; see status.testnet.miden.io for the current URL.
Faucet
Dispenses test assets (testnet MID and fungible test tokens) to the account ID you specify. Check status for the current faucet endpoint.
Remote prover
Off-loads proof generation to a hosted prover when the client doesn't have the compute for client-side proving. Opt in via the client's proverUrl option.
Block explorer
Same as the top-right card — included here so the developer-endpoint view is complete.
Typical flow
Install the toolchain —
midenuppulls the client, CLI, and compiler in one step. See Installation.Point the client at testnet — default config targets the testnet RPC, so
miden newprojects work out of the box.Top up with the faucet — mint testnet assets to your account ID before attempting transactions.
Submit + verify — send a proven transaction via the RPC; watch the account and transaction IDs land on MidenScan.
Offload proving if needed — the remote prover URL is configurable if client-side proving isn't feasible (mobile, low-power clients).