Skip to content

ZipherX v0.1.0 — Beta Release

Choose a tag to compare

@VictorLux VictorLux released this 13 Mar 19:33
· 84 commits to main since this release

ZipherX v0.1.0 — Beta Release

Privacy-first Zclassic (ZCL) wallet with Sapling shielded transactions.


Downloads

Platform File Description
macOS (ARM64) zipherx-gui-macos-arm64 Native desktop app (Apple Silicon)
Android ZipherX-0.1.0-release.apk Android APK (ARM64 + x86_64)
Windows (x86_64) zipherx-cli-windows-x86_64.exe CLI wallet
macOS (ARM64) zipherx-cli-macos-arm64 CLI wallet

Installation

macOS — Desktop App (egui)

  1. Download zipherx-gui-macos-arm64
  2. Open Terminal and run:
    chmod +x zipherx-gui-macos-arm64
    ./zipherx-gui-macos-arm64
  3. If macOS blocks the app ("unidentified developer"), go to System Settings → Privacy & Security and click Open Anyway, or run:
    xattr -d com.apple.quarantine zipherx-gui-macos-arm64

Android

  1. Download ZipherX-0.1.0-release.apk to your device
  2. Open the APK — if prompted, enable Install from unknown sources in Settings
  3. The app will open with a setup screen to create or restore a wallet

Note: The APK is currently unsigned. Your device may show an extra warning — this is expected for beta releases.

Linux — Build from Source

Prerequisites: Rust toolchain (1.75+), system dependencies for GUI

# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

# Install system dependencies (Ubuntu/Debian)
sudo apt install -y build-essential pkg-config libssl-dev libfontconfig1-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev

# Clone and build
git clone https://github.com/ZipherPunk/zipherx_multi.git
cd zipherx_multi
cargo build --release -p zipherx-gui

# Run
./target/release/zipherx-gui

For Fedora/RHEL:

sudo dnf install -y gcc openssl-devel fontconfig-devel libxcb-devel

For Arch:

sudo pacman -S base-devel openssl fontconfig libxcb

Windows — Build from Source

Prerequisites: Rust toolchain, Visual Studio Build Tools (C++ workload)

# Install Rust from https://rustup.rs

# Clone and build
git clone https://github.com/ZipherPunk/zipherx_multi.git
cd zipherx_multi
cargo build --release -p zipherx-gui

# Run
.\target\release\zipherx-gui.exe

The Windows CLI binary (zipherx-cli-windows-x86_64.exe) is also available as a prebuilt download.


Features

  • Sapling shielded transactions — full z-address privacy
  • Autonomous background sync — wallet syncs automatically
  • Full Node mode (desktop) — connect to your own zclassicd node
  • Network recovery — automatic peer reconnection and header dedup
  • Multi-platform — native macOS, Android, CLI for macOS/Windows/Linux
  • Tor support — optional Tor routing for network privacy
  • Secure storage — Argon2id + AES-256-GCM encrypted wallet data

Verify Downloads

Compare SHA256 checksums against SHA256SUMS.txt:

shasum -a 256 -c SHA256SUMS.txt

⚠️ Beta software — use at your own risk. Always back up your private key / mnemonic phrase.