8000 GitHub - Opei-sd/eclipse: Detailed Guide to Bitz Miner CLI on Eclipse Network
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Opei-sd/eclipse

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 

Repository files navigation

Guide to Bitz Miner CLI on Eclipse

What is Bitz?


Setup Guide

Presequities

  • Eclipse wallet (.eg Backpack) funded with ETH
  • A minimal CPU system or VPS, Guide to buy and setup a VPS.
  • Linux Ubuntu Terminal
  • Windows users: Must install Linux Ubuntu Terminal using WSL. Guide

Install Dependecies

1. Install Packages

sudo apt-get update && sudo apt-get upgrade -y

sudo apt install screen curl nano  -y

2. Install Rust

 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
  • When Prompted, Enter 1 and wait unti installation compelete.
source $HOME/.cargo/env

3. Install Solana CLI:

curl --proto '=https' --tlsv1.2 -sSfL https://solana-install.solana.workers.dev | bash
  • Close and reopen your Terminal.
solana --version
  • If you get solana: command not found RUN :
echo 'export PATH="/root/.local/share/solana/install/active_release/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
solana --version

4. Switch RPC

solana config set --url https://eclipse.helius-rpc.com/

Wallet CLI

1. Create a CLI wallet

solana-keygen new
  • Set a password or skip by pressing Enter.
  • Save your Seed-Phrase & Public-Key
  • Public-Key: Is your node Eclipse wallet address.

2. Export Private-key

1- Find Keypair path:

solana config get
  • It gives your Keypair path like this: ~/.config/solana/id.json

2- Export Private-key:

cat ~/.config/solana/id.json
  • The exported array is your Private-Key, Save it.

3. Import and Fund Node Wallet

  • Import Private-Key into your Backpack wallet.
  • Fund it with ETH on Eclipse Network

Install Bitz

cargo install bitz

Run Bitz Miner

1. Open a screen

By opening a screen, you can run any process in the background, so it won't get terminated if you closed your VPS. (Windows users must keep their terminal open)

screen -S bitz

2. Start Miner

bitz collect

image

  • Your Miner Node is Running successfully now.
  • Default CPU utilized is 1 core, You can set the CPU cores for your Bitz miner. Stop the node with Ctrl+C, then replace your 8 with your system cores and enter the following command:
bitz collect --cores 8
  • minimize screen: Ctrl+A+D
  • return screen: screen -r bitz
  • stop the node while in screen: Ctrl+C
  • screen lists: screen -ls
  • terminate and kill screen: screen -XS bitz quit (if you had multiple screens in list, replace bitz with id of screen.

Usefull Commands

  • You have to enter these out of the screen session

Check account info:

bitz account

Claim Bitz to your Node Wallet:

bitz claim

All Commands List:

bitz -h

About

Detailed Guide to Bitz Miner CLI on Eclipse Network

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0