Keccak-256d Proof-of-Work
Keccak won the NIST SHA-3 competition. Simple, auditable, no hidden complexity. Mines on CPU and GPU — anyone with commodity hardware can participate.
FlowCoin is a Proof-of-Work cryptocurrency using Keccak-256d — a proven, auditable hash from the SHA-3 family. CPU and GPU mining. No premine. No ICO.
Bitcoin's monetary policy. Keccak-256d proof-of-work. Modern cryptography.
Keccak won the NIST SHA-3 competition. Simple, auditable, no hidden complexity. Mines on CPU and GPU — anyone with commodity hardware can participate.
21 million total supply. Halving every 210,000 blocks. 10-minute target. Exactly the same economic properties that made Bitcoin work — just more accessible mining.
Wire-compatible P2P. Bitcoin-Core-style JSON-RPC. Cookie auth. Same command-line patterns. If a tool works with bitcoind, it likely works with flowcoind.
Every single FLC is mined from genesis on. No developer tax, no treasury, no venture allocation. The only way to get coins is to mine them or receive them.
Ed25519 signatures (RFC 8032). keccak256d block IDs and merkle roots. Real Bech32 v0 addresses — structurally identical to Bitcoin P2WPKH, just with the fl prefix.
Vendored dependencies, no hidden magic. 500K+ lines of C/C++20. 55 assert-based test groups covering consensus, crypto, network, wallet. Reproducible builds.
On a typical Linux box — no pool, no account, no registration.
# Install build deps (Ubuntu / Debian)
$ sudo apt install -y build-essential cmake git
# Build FlowCoin
$ git clone https://github.com/KristianPilatovich/flowcoin.git
$ cd flowcoin && cmake -B build -DCMAKE_BUILD_TYPE=Release
$ cmake --build build -j$(nproc)
# Start node + miner
$ ./build/flowcoind -daemon
$ ./build/flowcoin-miner --cookie ~/.flowcoin/.cookie Full mining guide: Documentation → Mining. Benchmarks and hardware tables in the mining doc.