Skip to main content
Version: 0.15 (unstable)

Quick Start

Launch a testnet full node after completing Installation.

Bootstrap an empty data directory from the official testnet genesis state:

miden-node bootstrap \
--data-directory full-node-data \
--network testnet

Start the full node and sync from the official testnet RPC endpoint:

miden-node full \
--data-directory full-node-data \
--rpc.listen 127.0.0.1:57291 \
--sync.block-source.url https://rpc.testnet.miden.io

Check the local RPC endpoint from another terminal:

grpcurl -plaintext localhost:57291 rpc.Api/Status

The -plaintext flag is required for the local full node RPC listener because it does not use TLS.

Replace testnet, <release-tag>, and https://rpc.testnet.miden.io with the network, version, and upstream source you intend to follow.