Downloads
Download Axiom Network v0.5.0 for your platform. Pre-built binaries include the unified CLI with wallet, node, and mining subcommands.
💻
Windows
x86_64
7.4 MB
🍎
macOS Apple Silicon
aarch64
24 MB
🍎
macOS Intel
x86_64
—
🐧
Linux
x86_64
—
Package Contents
Each download contains everything you need to run and manage an Axiom node.
axiom— unified CLI binary (wallet, node, mining, status)axiom-node— standalone full node daemonaxiom-keygen— key pair and address generation toolaxiom-bump-fee— transaction fee replacement utilityaxiom.conf.example— example configuration fileREADME.txt— quick start instructions and license
Verify Your Download
Always verify the SHA-256 checksum after downloading to ensure file integrity.
Linux / macOS
sha256sum axiom-0.5.0-linux-x86_64.tar.gz
# or on macOS:
shasum -a 256 axiom-0.5.0-macos-aarch64.tar.gz
Windows PowerShell
Get-FileHash axiom-0.5.0-windows-x86_64.zip -Algorithm SHA256 | Format-List
Quick Start
Three steps to get your node running.
1
Extract the archive
# Linux / macOS
tar xzf axiom-0.5.0-linux-x86_64.tar.gz
cd axiom-0.5.0
# Windows: right-click the .zip and select "Extract All"2
Install the binary
# Linux / macOS
sudo cp axiom /usr/local/bin/
# or add the directory to your PATH
# Windows: add the extracted folder to your system PATH3
Initialize and start
axiom init
axiom startBuild from Source
Compile Axiom directly from the source code for maximum trust and customization.
ⓘ
Requires Rust 1.80+
Install Rust via rustup.rs if you don't have it. The build uses stable Rust with no nightly features required.
git clone https://github.com/axiom-network/axiom.git
cd axiom
cargo build --release
# Binary output: target/release/axiom
./target/release/axiom --version