Install BitBi Software
To try out BitBi you have two options:
- The hard way: you can download full node and miner seprarately, and configure them manually.
- The easy way: you can download a wallet that includes a full node and a miner.
The hard way
BitBi Command-line
For developers and users who already have a full BitBi node running, the best way to experience BitBi is to use
bitbi-cli
command-line tool.It allows you to interact with the network, create and manage assets, and more.
Full BitBi Node
BitBi Node is a daemon/service which runs in the background, provides RPC API, serves as the backbone of the network.
If you want to mine BTB, or running a service that interacts with the blockchain, you will need to install BitBi Node.
The easy way
Golden Wallet
Golden Wallet is an all-in-one wallet for your crypto needs. It includes a full BitBi node and a miner, so you can start mining BTB right away.
BTB command-line tool
BitBi command-line tool is a powerful utility for interacting with the BTB network. It depends on BitBi Node to access the blockchain data. It is a good choice if you've already run a full node or if you are a developer.
Installation
BitBi command-line tool is included in the BitBi Core software. You can download the software from the Download Links.
After downloading the software, you need to extract the tarball and run the ./bin/bitbi-cli
binary. You'd better run the bitbid
daemon first to provide the blockchain data.
For more information about the command-line tool, you can run ./bin/bitbi-cli --help
to see the available options.
BTB Node
Full BitBi Node is a daemon/service which runs in the background, provides RPC API, serves as the backbone of the network.
Installation
BitBi node program is included in the BitBi Core software. You can download the software from the Download Links.
After downloading the software, you need to extract the tarball and run the ./bin/bitbid
binary. The software will start syncing with the network and will download the blockchain data. This process can take a few hours to a few days depending on your internet connection speed.
For more information about the node program, you can run ./bin/bitbid --help
to see the available options. Or you can visit this page to get more information about the full node.
Golden Wallet
Installing and use Golden Wallet is the easiest way to start using BitBi. Golden Wallet is an all-in-one wallet for your crypto needs. It includes a full BitBi node and a miner, so you can start mining BTB right away.
please download the latest version of Golden Wallet from the github repo here.
BTB Wallets
The are two ways to interact with the BitBi network: using the command line interface or using a graphical wallet. The graphical wallet is the easiest way to start using BitBi.
Please refer to this page to get more information about the wallets available for BitBi.
BTB Mining
BTB miners are required to install and run a BitBi Node alongside mine software for BTB mining.
The following sections will provide a step-by-step guide on installing and configuring the mine software.
System Requirements
The BitBi mine software is compatible with Linux operating systems. It necessitates a 64-bit OS with a minimum of 3GB RAM and 100GB of available disk space. The software is optimized for multi-core processors and performs efficiently with a minimum of 2 cores.
Installation
To download the mine software, click on this Download Link.
After the software is downloaded, extract the tarball and execute the ./mined
binary. Here's an example command to run the mine software:
./minerd -o http://[rpcuser]:[rpcpassword]@127.0.0.1:9800 --coinbase-addr=[your reward receive address] --coinbase-sig=[any identifier] -t 1
The software will then commence mining BTB.
Please note the following:
-
rpcuser
andrpcpassword
: are the credentials required to access the BitBi Node RPC API. You can locate these credentials in the~/.bitbi/bitbi.conf
file or obtain them from the BitBi node running command line using the-rpcuser
and-rpcpassword
options. If you don't have the credentials, you can create them in the~/.bitbi/bitbi.conf
file or add the credentials to the BitBi node running command line with the-rpcuser
and-rpcpassword
options, followed by restarting the BitBi node. -
your reward receive address
: represents the address where you wish to receive the mining rewards. You can generate a new address using our wallets. -
any identifier
is an identifier for the coinbase transaction. You can use any string as the identifier.
For more information about the mine software, you can run ./minerd --help
to view the available options.