Kaspa node

Run a Kaspa node for integration work, either from source or through Docker.

When you want your own backend, run kaspad with UTXO indexing and wRPC listeners enabled.

From source

Build kaspad from rusty-kaspa, then run:

cargo run --release --bin kaspad -- \
  --utxoindex \
  --rpclisten=0.0.0.0 \
  --rpclisten-borsh=0.0.0.0
Note

Prebuilt binaries per platform are available on latest release

From Docker

Use the Docker image: kaspanet/rusty-kaspad.

services:
  kaspad:
    image: kaspanet/rusty-kaspad:latest
    command:
      - --utxoindex
      - --rpclisten=0.0.0.0
      - --rpclisten-borsh=0.0.0.0
    ports:
      - "16110:16110"
      - "17110:17110"

Resources