Algorithm: SHA-256 (PoW - Proof of Work)
Coin name: BBitcoin
Coin abbreviation: BBTC
Block reward: 50 BBTC
Block halving: 210.000 blocks
Coin supply: 21.000.000 BBTC
Github URL:
https://github.com/BossBBitcoin/BBitcoin/releases/tag/releaseNode:
addnode=node3.walletbuilders.com
addnode=83.217.128.243:14194
Exchange: Listing on the stock exchange. There are enthusiasts among you. All in your hands!
Solo mining:
RPC port 14193
P2P port 14194
bbtc1qyf3psrywkqg8zgmezx6g3c8f7ycm4x90u6udmk - Replace with your address!
Create file: mine.bat
@echo off
set SCRIPT_PATH=%cd%
cd %SCRIPT_PATH%
echo Press [CTRL+C] to stop mining.
:begin
for /f %%i in ('bbitcoin-cli.exe getnewaddress') do set bbtc1qyf3psrywkqg8zgmezx6g3c8f7ycm4x90u6udmk=%%i
bbitcoin-cli.exe generatetoaddress 1 %bbtc1qyf3psrywkqg8zgmezx6g3c8f7ycm4x90u6udmk%
goto begin
Create file: bbitcoin.conf
rpcuser=rpc_bbitcoin
rpcpassword=dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2
rpcbind=127.0.0.1
rpcallowip=127.0.0.1
listen=1
server=1
addnode=node3.walletbuilders.com
Donation addres: bbtc1qyf3psrywkqg8zgmezx6g3c8f7ycm4x90u6udmk
Good luck!
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Tutorial - Install node on Ubuntu Server 22.04
Install a node for your coin on Ubuntu Server 22.04 with the following tutorial.
Update your Ubuntu server with the following command:
sudo apt-get update && sudo apt-get upgrade -y
Download the Linux daemon for your wallet with the following command:
wget "
https://dl.walletbuilders.com/download?customer=ba03b3a75e480d84b2eda419b927d7b1d715f2cb459109599c&filename=bbitcoin-daemon-linux.tar.gz" -O bbitcoin-daemon-linux.tar.gz
Extract the tar file with the following command:
tar -xzvf bbitcoin-daemon-linux.tar.gz
Download the Linux tools for your wallet with the following command:
wget "
https://dl.walletbuilders.com/download?customer=ba03b3a75e480d84b2eda419b927d7b1d715f2cb459109599c&filename=bbitcoin-qt-linux.tar.gz" -O bbitcoin-qt-linux.tar.gz
Extract the tar file with the following command:
tar -xzvf bbitcoin-qt-linux.tar.gz
Type the following command to install the daemon and tools for your wallet:
sudo mv bbitcoind bbitcoin-cli bbitcoin-tx /usr/bin/
Create the data directory for your coin with the following command:
mkdir $HOME/.bbitcoin
Open nano.
nano $HOME/.bbitcoin/bbitcoin.conf -t
Paste the following into nano.
rpcuser=rpc_bbitcoin
rpcpassword=dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2
rpcbind=127.0.0.1
rpcallowip=127.0.0.1
listen=1
server=1
txindex=1
daemon=1
Save the file with the keyboard shortcut ctrl + x.
Type the following command to start your node:
bbitcoind
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Tutorial - Install a block explorer on Ubuntu Server 22.04
Install a block explorer on Ubuntu Server 22.04 with the following tutorial.
Update your Ubuntu server with the following command:
sudo apt-get update && sudo apt-get upgrade -y
Install the dependencies with the following command:
sudo apt-get install gnupg2 nodejs npm git nano cmake screen unzip -y
Import the MongoDB GPG key:
wget -nc
https://www.mongodb.org/static/pgp/server-6.0.asccat server-6.0.asc | gpg --dearmor | sudo tee /etc/apt/keyrings/mongodb.gpg >/dev/null
Install the MongoDB repository with the following command:
sudo sh -c 'echo "deb [ arch=amd64,arm64 signed-by=/etc/apt/keyrings/mongodb.gpg]
https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 multiverse" >> /etc/apt/sources.list.d/mongo.list'
Update your Ubuntu server with the following command:
sudo apt-get update -y
Install MongoDB with the following command:
sudo apt install mongodb-org -y
Download the Linux daemon for your wallet with the following command:
wget "
https://dl.walletbuilders.com/download?customer=ba03b3a75e480d84b2eda419b927d7b1d715f2cb459109599c&filename=bbitcoin-daemon-linux.tar.gz" -O bbitcoin-daemon-linux.tar.gz
Extract the tar file with the following command:
tar -xzvf bbitcoin-daemon-linux.tar.gz
Download the Linux tools for your wallet with the following command:
wget "
https://dl.walletbuilders.com/download?customer=ba03b3a75e480d84b2eda419b927d7b1d715f2cb459109599c&filename=bbitcoin-qt-linux.tar.gz" -O bbitcoin-qt-linux.tar.gz
Extract the tar file with the following command:
tar -xzvf bbitcoin-qt-linux.tar.gz
Type the following command to install the daemon and tools for your wallet:
sudo mv bbitcoind bbitcoin-cli bbitcoin-tx /usr/bin/
Type the following command to open your home directory:
cd $HOME
Create the data directory for your coin with the following command:
mkdir $HOME/.bbitcoin
Open nano.
nano $HOME/.bbitcoin/bbitcoin.conf -t
Paste the following text into nano.
rpcuser=rpc_bbitcoin
rpcpassword=dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2
rpcbind=127.0.0.1
rpcallowip=127.0.0.1
listen=1
server=1
txindex=1
daemon=1
addnode=node3.walletbuilders.com
Save the file with the keyboard shortcut ctrl + x.
Type the following command to start your daemon:
bbitcoind
Type the following command to start MongoDB:
sudo systemctl start mongod
Type the following command to open MongoDB:
mongosh
Type the following command to create a MongoDB database named “explorerdb”:
use explorerdb
Type the following command to create a MongoDB user named “iquidus”:
db.createUser( { user: "iquidus", pwd: "414uq3EhKDNX76f7DZIMszvHrDMytCnzFevRgtAv", roles: [ "readWrite" ] } )
Type the following command to close MongoDB:
exit
Type the following command to clone iquidus-explorer:
git clone
https://github.com/walletbuilders/explorer.git explorer
Type the following command to install iquidus-explorer:
cd explorer && npm install --production
Type the following command to create the file settings.json:
cp ./settings.json.template ./settings.json
Open nano.
nano settings.json -t
Modify the following values in the file settings.json
title - “IQUIDUS” -> “Bbitcoin”.
address - Change the value “127.0.0.1” with the IPv4 address of your server.
coin - “Darkcoin” -> “Bbitcoin”.
symbol - “DRK” -> “BBTC”.
password - “3xp!0reR” -> “414uq3EhKDNX76f7DZIMszvHrDMytCnzFevRgtAv”.
port - “9332” -> “14193”.
user - “darkcoinrpc” -> “rpc_bbitcoin”.
pass - 123gfjk3R3pCCVjHtbRde2s5kzdf233sa” -> “dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2”.
confirmations - “40” -> “20”.
api - “true” -> “false”.
markets - “true” -> “false”.
twitter - “true” -> “false”.
Save the file with the keyboard shortcut ctrl + x.
Type the following command to open a screen session:
screen
Type the following commands to start your block explorer:
cd $HOME/explorer
npm start
Press the keyboard shortcut ctrl + a + d to disconnect from your screen session.
Type the following command to open crontab:
crontab -e
Press the Page Down key on your keyboard PgDown.
Paste the following text into crontab.
@reboot bbitcoind
*/1 * * * * cd $HOME/explorer && /usr/bin/nodejs scripts/sync.js index update > /dev/null 2>&1
*/5 * * * * cd $HOME/explorer && /usr/bin/nodejs scripts/peers.js > /dev/null 2>&1
Save the crontab with the keyboard shortcut ctrl + x
Confirm that you want to save the crontab with the keyboard shortcut y + enter
The block explorer is accessible on
http://replace_with_your_ip:3001-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
The BBitcoin (BBTC) - coin is in the public domain! Enthusiasts - everything is in your hands!