Install aeX CLI

v0.13.0 — Linux, macOS, Windows, Android

Quick Install

npx aex (coming soon) CLICK TO COPY
Binary installer for your platform. (npm package coming soon)
or via curl:
curl -fsSL https://aex402.com/install.sh | sh CLICK TO COPY

Direct Downloads

Platform Architecture Download Size
Linux x86_64 aex-0.13.0-linux-amd64.tar.gz --
Linux aarch64 aex-0.13.0-linux-arm64.tar.gz --
macOS x86_64 (Intel) aex-0.13.0-macos-amd64.tar.gz --
macOS aarch64 (Apple Silicon) aex-0.13.0-macos-arm64.tar.gz --
Windows x86_64 aex-0.13.0-windows-amd64.zip --
Android aarch64 (Termux) aex-0.13.0-android-arm64.tar.gz --

Verify Download

# 1. Checksums — proves your archive matches the manifest curl -fsSL https://aex402.com/releases/v0.13.0/SHA256SUMS.txt -o SHA256SUMS.txt sha256sum -c SHA256SUMS.txt --ignore-missing # Linux shasum -a 256 -c SHA256SUMS.txt --ignore-missing # macOS # 2. Signature — proves the manifest itself is authentic (signed offline, # so a compromised host can't forge a matching archive+manifest). openssl 3.0+ curl -fsSL https://aex402.com/releases/v0.13.0/SHA256SUMS.txt.sig -o SHA256SUMS.txt.sig curl -fsSL https://aex402.com/releases/release-sign.pub -o release-sign.pub openssl pkeyutl -verify -pubin -inkey release-sign.pub -rawin \ -in SHA256SUMS.txt -sigfile SHA256SUMS.txt.sig # → Signature Verified Successfully # Expected public key (cross-check release-sign.pub against this line): # MCowBQYDK2VwAyEAmW/5fzLNwmDQ75vOsJp0mNnkXVwuXjs9UBneW9NWXns=
The curl | sh installer does both checks automatically and refuses to install on any mismatch.

Platform Notes

Linux

Statically linked (musl libc). No dependencies. Works on any distro. Includes aex web command for browser-based dashboard (PTY bridge).

macOS

Requires macOS 12+. The aex web command is not available (requires Linux PTY). All other commands work: swaps, pools, farming, governance, TUI dashboard.

Windows

Extract the zip and add the directory to your PATH. The farming daemon (aex402-daemon) is not available on Windows. aex web is not available. All other CLI commands work.

Android (Termux)

Install Termux from F-Droid, then: curl -fsSL https://aex402.com/install.sh | sh Full CLI + TUI dashboard in your pocket. Requires Termux (not the Play Store version).

Getting Started

# Check version aex --version # List pools (mainnet by default) aex pool list # Launch TUI dashboard aex tui # See all commands aex help
Launch DEX Back to Home