The Future ofDigital Currency
SUM Chain is a high-performance Layer-1 blockchain powering Koppa (Ϙ) — the native currency designed for instant, global peer-to-peer transactions.
Built for the Next Generation
SUM Chain combines cutting-edge technology with practical design to deliver a blockchain that's actually usable for everyday transactions.
Lightning Fast
3-second block times with instant finality. Your transactions confirm in the time it takes to blink.
Near-Zero Fees
Transaction fees of ~0.001 Ϙ mean you can send any amount without worrying about costs eating into your transfer.
Battle-Tested Security
Ed25519 signatures, Blake3 hashing, and BFT consensus provide enterprise-grade security without compromise.
Global Scale
800 billion Koppa total supply means ~100 Ϙ per person on Earth. Designed for worldwide adoption.
Pure Rust
Built entirely in Rust with zero C/C++ dependencies. Memory-safe, blazing fast, and auditable.
Decentralized
Proof of Authority consensus with a growing validator set ensures true decentralization and censorship resistance.
Powered by Pure Rust
SUM Chain is built entirely in Rust using only the stable toolchain. No C/C++, Python, Go, JavaScript, or Solidity. Just pure, memory-safe Rust that's auditable, maintainable, and blazing fast.
// Send 10.5 Koppa with minimal fee
let tx = Transaction::new(
chain_id,
sender.address(),
recipient,
koppa_to_base("10.5"), // 10.5 Ϙ
koppa_to_base("0.001"), // Fee: 0.001 Ϙ
nonce,
);
let signed = tx.sign(&sender)?;
node.broadcast(signed).await?;Ed25519
Elliptic curve signatures
Blake3
Lightning-fast hashing
libp2p
Peer-to-peer networking
Gossipsub
Message propagation
BFT Consensus
Byzantine fault tolerance
RocksDB
High-performance storage
Everything You Need to Get Started
A complete suite of tools and resources for users, developers, and validators.
Ready to Join the Future?
Start Using Koppa
Get the CLI Wallet
# Download and install
curl -sSL https://sum-chain.xyz/install.sh | bash
# Or build from source
git clone https://github.com/anthropics/sum-chain
cd sum-chain && cargo build --releaseCreate Your Wallet
# Generate a new keypair
sumchain keygen --output my-wallet.json
# Your address will be displayed
# Keep your wallet file safe!Receive & Send Koppa
# Check your balance
sumchain-wallet balance --key my-wallet.json
# Send Koppa to another address
sumchain-wallet transfer \
--key my-wallet.json \
--to RECIPIENT_ADDRESS \
--amount 10.5