- The first ePOW commodity token that anyone can mine on Eclipse.
- 5M max supply.
- NOT pre-mined + ZERO team/insider allocations.
- Token address: https://eclipsescan.xyz/token/64mggk2nXg6vHC1qCdsZdEFzd5QGN4id54Vbho4PswCF
- 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
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/
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.
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.
- Import
Private-Key
into yourBackpack
wallet. - Fund it with
ETH
onEclipse
Network
cargo install bitz
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
bitz collect
- 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 withCtrl+C
, then replace your8
with your systemcores
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, replacebitz
withid
of screen.
- 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