Mainnet Live

Sparrow
Cryptocurrency

Small but complete, wild and resilient.
Pure proof-of-work. No pre-mine. No founders' fee.

โ€”
Block Height
โ€”
Difficulty
โ€”
Block Reward
โ€”
Mempool
โ€”
Min Fee

Why Sparrow?

A sparrow is small โ€” yet it navigates the world with instinct and precision. It survives winters that fell larger creatures. It builds with what it has.

SPW is built on the same philosophy. No bloated VM, no governance tokens, no venture capital. Just a clean proof-of-work blockchain with honest rules and a supply cap of 21,000,000 SPW.

1 SPW = 100,000,000 feathers. Halvings every 210,000 blocks. The chain started with 50 SPW per block โ€” the same trajectory as the original vision.

๐Ÿฆ

SPW ยท SPARROW

Built to Last

Every design decision favours simplicity, honesty, and longevity.

โ›

Proof of Work

SHA-256d PoW with automatic difficulty adjustment every 2,016 blocks. Anyone can mine โ€” CPU, GPU, or ASIC. No shortcuts, no stake.

๐Ÿ”’

UTXO Model

Bitcoin-style unspent transaction outputs. Clean, auditable, and resistant to double-spend. No global state, no hidden complexity.

๐Ÿ’ธ

Low Fees

Minimum fee of 0.0001 SPW per transaction. Miners collect fees as an incentive. Cheap to use, sustainable to run.

๐Ÿ“ฆ

Compact Chain

Designed for a single server with ~100 GB disk. Lean SQLite storage with WAL mode. The full history stays manageable for life.

๐ŸŒ

REST API

Simple JSON API for balances, UTXOs, transactions, blocks, and broadcasting. No SDK required โ€” any HTTP client works.

๐Ÿ”‘

Browser Wallet

Keys generated and transactions signed entirely in your browser. Your private key never leaves your device. No extension needed.

Technical Specifications

Everything you need to know about the protocol.

Ticker
SPW
Full name
Sparrow
Max supply
21,000,000 SPW
Smallest unit
1 feather = 0.00000001 SPW
Consensus
Proof of Work (SHA-256d)
Target block time
60 seconds
Difficulty adjustment
Every 2,016 blocks (~1.4 days), max 4ร— per period
Initial block reward
50 SPW
Halving interval
210,000 blocks (~4 years)
Address prefix
Sโ€ฆ (secp256k1, Base58Check, version 0x1e)
Signature scheme
secp256k1, DER-encoded, SHA-256d digest
Minimum fee
0.0001 SPW per transaction
API port
TCP 8333
Storage
SQLite (WAL mode)
Pre-mine
None

Start Mining

Anyone can mine SPW. All you need is a server and Python 3.10+.

01

Clone the node

Pull the full node software from the repository onto your server. Python 3.10+ required.

02

Create your wallet

Generate a new SPW wallet address. Mining rewards will be sent here every block you find.

03

Start the node

Launch the node with your wallet. It syncs the chain and begins mining automatically.

04

Earn rewards

Every block you find earns you the block reward plus all transaction fees in that block.

# 1. Install dependencies pip install ecdsa flask # 2. Create a wallet python sparrow.py wallet new --name mywallet # โ†’ Address: SxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxX # โ†’ Private key: (keep this secret!) # 3. Start the node + miner (full speed) python sparrow.py start --wallet wallets/mywallet.json # 3b. Start with CPU limit (recommended for shared servers) python sparrow.py start --wallet wallets/mywallet.json --cpu 30 # --cpu 1-100 limits miner to N% of one CPU core # e.g. --cpu 30 uses ~30%, leaving the rest for other tasks # [Node] API running at http://0.0.0.0:8333 # [Miner] CPU limit: 30% per core # 4. Check your balance python sparrow.py balance <your-address>
Light mining (shared server)
--cpu 20
~20% of one core ยท barely noticeable
Balanced (recommended)
--cpu 50
~50% of one core ยท good trade-off
Full speed
--cpu 100
100% of one core ยท max throughput
๐Ÿ’ก Since difficulty auto-adjusts to network hash rate, CPU% does not affect long-term earnings โ€” it only determines how fast you find blocks. Any setting earns the same SPW per day over time.

Your keys, your coins.

The SPW web wallet runs entirely in your browser. Keys are generated locally using secp256k1 โ€” the same curve as Bitcoin. Nothing is ever sent to a server.

Roadmap

Where we've been, where we're going.

Done

Genesis & Core Protocol

PoW chain, UTXO model, Merkle tree, difficulty adjustment, block halving logic.

Done

Transaction Fees

Minimum-fee enforcement, fee collection by miners, CLI send with fee support.

Done

REST API & Web Wallet

Full JSON REST API. Browser wallet with in-browser key generation and signing.

Done

spw.network Launch

Official website live. Mainnet running.

In Progress

P2P Network

Peer discovery, block propagation, transaction relay. Multiple independent nodes.

Planned

Block Explorer

Full-featured public explorer at explorer.spw.network.

Planned

Mining Pool Protocol

Stratum-compatible pool support so miners can work together.

Planned

SPW DEX

Atomic swap support for peer-to-peer trading without a trusted intermediary.