💻

Windows

x86_64
7.4 MB
Filename
axiom-network-mainnet-latest.zip
SHA-256
8273a31cff28552e231bdd2685d0a20356da8d2031c076f3747b804a66bc87b8
⬇ Download .zip (7.4 MB)
🍎

macOS Apple Silicon

aarch64
24 MB
Filename
axiom-0.5.0-macos-aarch64.tar.gz
SHA-256
a1b2c3d4e5f60718293a4b5c6d7e8f9001122334455667788990aabbccddeeff
Coming soon
🍎

macOS Intel

x86_64
Filename
axiom-v0.5.0-x86_64-apple-darwin.tar.gz
SHA-256
Available on release
Coming soon
🐧

Linux

x86_64
Filename
axiom-v0.5.0-x86_64-unknown-linux-gnu.tar.gz
SHA-256
Available on release
Coming soon

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 daemon
  • axiom-keygen — key pair and address generation tool
  • axiom-bump-fee — transaction fee replacement utility
  • axiom.conf.example — example configuration file
  • README.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 PATH
3

Initialize and start

axiom init
axiom start

Build 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