Releases

Download FlowCoin

Open-source under the MIT license. Current release: v1.0.0. All binaries are built reproducibly — verify checksums before you trust them.

Linux

Recommended

x86-64 and ARM64. Debian, Ubuntu, Fedora, Arch — all supported.

$ tar xzf flowcoin-v1.0.0-linux-x86_64.tar.gz
$ cd flowcoin-v1.0.0
$ ./bin/flowcoind -daemon

macOS

Build from source

Apple Silicon (M1/M2/M3/M4) and Intel. Use Homebrew for the toolchain.

$ brew install cmake git
$ git clone https://github.com/KristianPilatovich/flowcoin
$ cd flowcoin && cmake -B build -DCMAKE_BUILD_TYPE=Release
$ cmake --build build -j$(sysctl -n hw.ncpu)

Windows

Via WSL2

Run inside WSL2 (Ubuntu). Native Windows builds on the roadmap.

PS> wsl --install
$ sudo apt install build-essential cmake git
$ git clone https://github.com/KristianPilatovich/flowcoin && cd flowcoin
$ cmake -B build && cmake --build build -j$(nproc)

Build from source

If you can't find a prebuilt binary for your platform, or you want to verify that the release matches the source, build it yourself.

1

Install toolchain

GCC 10+ or Clang 12+, CMake 3.20+, git. Nothing else — all crypto and DB libraries are vendored.

2

Clone and build

$ git clone https://github.com/KristianPilatovich/flowcoin
$ cd flowcoin
$ cmake -B build -DCMAKE_BUILD_TYPE=Release
$ cmake --build build -j$(nproc)
3

Run

$ ./build/flowcoind -daemon
$ ./build/flowcoin-cli getblockchaininfo

Full build guide including reproducible-build flags, cross-compilation notes, and troubleshooting: doc/build-unix.md.

Verify the release

Every release tarball ships with a SHA-256 manifest. Verify before you run.

$ sha256sum -c flowcoin-v1.0.0-linux-x86_64.tar.gz.sha256
flowcoin-v1.0.0-linux-x86_64.tar.gz: OK