Tari Universe is a desktop application that allows users to mine Tari tokens (XTM) using their Mac or PC. The application features a user-friendly interface with one-click mining setup.
The Tari Universe ecosystem includes:
- Tari Universe Desktop App - Mining application for Windows, macOS, and Linux
- Tari Universe Wallet - Mobile companion app for tracking earnings
Download binaries from tari.com. This is the easiest way to run Tari Universe.
After downloading the binaries:
Double-click the installer and follow the prompts.
Open the .dmg file and drag Tari Universe to your Applications folder.
Official prebuilt binaries are not currently distributed for Linux. Please see the Building from source section below to compile and run on Linux.
Launch Tari Universe from your applications menu or desktop shortcut.
brew update
brew install git node cmake protobuf openssl pnpmsudo apt-get update
sudo apt-get install -y git nodejs npm build-essential \
libwebkit2gtk-4.1-dev libayatana-appindicator3-dev librsvg2-dev \
patchelf libprotobuf-dev protobuf-compiler libssl-dev \
pkg-config cmakeInstall Visual Studio Build Tools 2022 with C++ workload, then:
# Install dependencies via chocolatey or vcpkg
choco install git nodejs protoccurl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source ~/.cargo/envcargo install tauri-cli --lockedgit clone https://github.com/tari-project/universe.git
cd universe
pnpm install
pnpm run tauri buildBy default the build targets testnet. To build for mainnet, prefix the
command with the TARI_TARGET_NETWORK environment variable:
# Linux / macOS
TARI_TARGET_NETWORK=mainnet pnpm run tauri build
# Windows (PowerShell)
$env:TARI_TARGET_NETWORK="mainnet"; pnpm run tauri buildPackaged installers land under target/release/bundle/:
- Windows:
.msiinstaller intarget/release/bundle/msi/ - macOS:
.dmgand.appbundle intarget/release/bundle/dmg/andtarget/release/bundle/macos/
Linux note: the final bundling step (.deb / .AppImage / .rpm)
currently hangs indefinitely on most Ubuntu/Debian systems. The Rust binary
itself compiles successfully. Once the Cargo build phase completes and
bundling begins, press Ctrl+C - the binary is already written and fully
usable. Tauri renames the output using the productName from
src-tauri/tauri.conf.json, so the file lands at the workspace root as:
'./target/release/Tari Universe (Alpha)'The project uses comprehensive linting tools to maintain code quality:
- Frontend: ESLint with TypeScript, React, and Prettier integration
- Backend: Clippy for Rust with custom lint rules
# Frontend linting
pnpm run lint # Run all linters (knip + eslint)
pnpm run lint:fix # Auto-fix ESLint issues
pnpm run lint:taplo # Check TOML file formatting
# Backend linting (from src-tauri directory)
cd src-tauri
cargo clippy # Run Rust linting
cargo fmt # Format Rust codeFor the best development experience, install:
- ESLint extension for automatic JavaScript/TypeScript linting
- rust-analyzer extension for Rust development
- Prettier extension for code formatting
Most linting issues can be auto-fixed by your IDE or the lint commands above.
Configuration files are stored at:
- Linux:
~/.config/tari-universe/ - Windows:
%APPDATA%\tari-universe\ - macOS:
~/Library/Application Support/tari-universe/
Application won't start:
- Check that your system meets minimum requirements
- Verify firewall isn't blocking the application
- Try running as administrator (Windows) or with appropriate permissions
Build issues:
- Ensure all dependencies are installed
- Check that Rust toolchain is up to date
- On Windows, use the Visual Studio Developer Command Prompt
- Community Discord: discord.gg/tari
- GitHub Issues: github.com/tari-project/universe
- Documentation: docs.tari.com
- RFC documents are hosted on Github Pages
- Source code documentation is hosted on docs.rs
- Contributing Guide
Tari Universe is open source software licensed under the Enhanced Common Public Attribution License Version 1.0.