BITZ
PoWPoWTwitter
  • Welcome
  • Basics
    • Collecting
    • Staking
    • Tokenomics
  • Advanced
    • The OG Way (Locally)
Powered by GitBook
On this page
  • Installation Guide
  • Using Bitz
  1. Advanced

The OG Way (Locally)

PreviousTokenomics

Last updated 7 days ago

Installation Guide

Prerequisites

  1. Make sure you have a Eclipse wallet set up and funded with ETH on Eclipse

  2. Have a computer with terminal access

Setup Steps

Windows users: you must first install WSL (see ). Then run the preceding command in the Ubuntu (Linux) terminal.

  1. Install Rust:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
  1. Install Solana CLI:

curl --proto '=https' --tlsv1.2 -sSfL https://solana-install.solana.workers.dev | bash

Add Solana to your PATH (the installer will provide instructions for this).

After installation, you should see output like the following:

Installed Versions:
Rust: rustc 1.85.0 (4d91de4e4 2025-02-17)
Solana CLI: solana-cli 2.1.14 (src:3ad46824; feat:3271415109, client:Agave)
Anchor CLI: anchor-cli 0.30.1
Node.js: v23.8.0
Yarn: 1.22.1
  1. Create a local keypair/Wallet

solana-keygen new

This will create a new keypair and store it in the default location (~/.config/solana/id.json).

To specify a custom file path:

solana-keygen new -o /path/to/keypair.json

Take note of your public key (displayed after generation).

Eclipse uses solana-cli, i.e. the balance you see of ETH of your keypair will be denoted in 'sol' but it's actually Eclipse ETH

  1. Set the rpc to Eclipse mainnet:

solana config set --url https://bitz-000.eclipserpc.xyz/
  1. Install Bitz using Cargo:

cargo install bitz

This might take 5 mins to install, its not stuck and nothing is wrong until you see an actual error.

Using Bitz

Fund your wallet with a minimum balance of 0.0005 ETH before hand

Basic Commands

  • Collect bitz: bitz collect

  • For utilising mining pool: bitz collect -p https://mainnet-pool.powpow.app

  • Claim your bitz: bitz claim

  • Check your balance: bitz account

  • Look up all commands: bitz -h or bitz --help

Install Dependencies