Bitcoin Forum
July 05, 2024, 06:21:08 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: [ANN] BBitcoin [BBTC] New coin - Second Bitcoin!  (Read 682 times)
Boss_BBitcoin (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
October 01, 2023, 12:26:40 PM
Last edit: October 05, 2023, 06:45:32 AM by Boss_BBitcoin
 #1

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/release
Node:
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.asc
cat 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!
Cynce
Jr. Member
*
Offline Offline

Activity: 125
Merit: 1


View Profile
October 01, 2023, 12:42:07 PM
 #2

Did not release real source.

Did not release a real package.

Created git account an hour ago...

So you paid for the minimum wallet builder package and didn't even get something for a complete release?
Cynce
Jr. Member
*
Offline Offline

Activity: 125
Merit: 1


View Profile
October 01, 2023, 12:58:20 PM
 #3

Can't generate blocks weeeeeeee maybe release the daemon so we can pretend this is legit.
Cynce
Jr. Member
*
Offline Offline

Activity: 125
Merit: 1


View Profile
October 01, 2023, 02:50:26 PM
 #4

you need to release the rest of the files and an explorer then...

daemon
source

Just wasting everyone's time until you release source. We can compile ourselves if you didn't get the daemon made.
MiningCoinsPool
Member
**
Offline Offline

Activity: 476
Merit: 10


View Profile
October 01, 2023, 04:06:50 PM
 #5

you need to release the rest of the files and an explorer then...

daemon
source

Just wasting everyone's time until you release source. We can compile ourselves if you didn't get the daemon made.

It's a free created walletbuilders coin, no source code  Tongue
https://www.walletbuilders.com/mycoin?coin=ba03b3a75e480d84b2eda419b927d7b1d715f2cb459109599c


Cynce
Jr. Member
*
Offline Offline

Activity: 125
Merit: 1


View Profile
October 01, 2023, 04:12:31 PM
 #6

you need to release the rest of the files and an explorer then...

daemon
source

Just wasting everyone's time until you release source. We can compile ourselves if you didn't get the daemon made.

It's a free created walletbuilders coin, no source code  Tongue
https://www.walletbuilders.com/mycoin?coin=ba03b3a75e480d84b2eda419b927d7b1d715f2cb459109599c




Yeah, I knew... that was my first comment about not buying the full package. At least get the dang daemon Smiley
Cynce
Jr. Member
*
Offline Offline

Activity: 125
Merit: 1


View Profile
October 01, 2023, 05:08:41 PM
 #7

Even if this was a waste of some time today I appreciate that you didn't just release another virus laden wallet.

I'm not sure why you think someone would pay to have this project completed when anyone can use walletbuilder to at least create their own specs on a project.

Good luck everyone.
Boss_BBitcoin (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
October 01, 2023, 06:31:48 PM
 #8

Are you a hater? Don't you have anyone to talk to? Go and create your own coin. There is no virus in the wallet - it is a built-in miner. I don't control the coin. The coin is freely available to everyone! Kiss
Cynce
Jr. Member
*
Offline Offline

Activity: 125
Merit: 1


View Profile
October 01, 2023, 07:55:33 PM
 #9

No hate, just wish you had released a complete project. I would have set up a pool immediately.

Good luck.
unnamed0simple
Jr. Member
*
Offline Offline

Activity: 74
Merit: 1


View Profile
October 02, 2023, 02:18:30 PM
 #10

Block time?
Explorer?
Boss_BBitcoin (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
October 03, 2023, 06:46:11 AM
 #11

 Cool
getmininginfo

{
  "blocks": 75,
  "difficulty": 1394.39067467326,
  "networkhashps": 1966388446.794989,
  "pooledtx": 0,
  "chain": "main",
  "warnings": ""
}

Block 75 was mined by an unknown miner! Congratulations and wish him success! Wink
Boss_BBitcoin (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
October 04, 2023, 08:30:47 AM
 #12

 Cool
getmininginfo

{
  "blocks": 171,
  "difficulty": 315.4631266217893,
  "networkhashps": 2944208191.795718,
  "pooledtx": 0,
  "chain": "main",
  "warnings": ""
}

Block 171 was mined by an unknown miner! Congratulations and wish him success! Wink
Boss_BBitcoin (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
October 05, 2023, 06:18:28 AM
 #13

 Cool
getmininginfo

  "blocks": 194,
  "difficulty": 2265.050011549646,
  "networkhashps": 1998419490.827182,
  "pooledtx": 0,
  "chain": "main",
  "warnings": ""
}

Block 194 was mined by an unknown miner! Congratulations and wish him success! Wink

I hope, enthusiasts, one day you will be able to place BBitcoin on the first Exchange! - all in your hands! Wink

Boss_BBitcoin (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
October 05, 2023, 06:48:04 AM
 #14

I express my gratitude to an unknown node enthusiast
addnode=83.217.128.243:14194 -you’re great! Cool
Boss_BBitcoin (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
October 06, 2023, 06:23:44 AM
 #15

 Cool
getmininginfo

{
  "blocks": 201,
  "difficulty": 1402.521317505434,
  "networkhashps": 1655627716.559636,
  "pooledtx": 0,
  "chain": "main",
  "warnings": ""
}

Block 201 was mined by an unknown miner! Congratulations and wish him success! Wink
Boss_BBitcoin (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
October 07, 2023, 06:25:03 AM
 #16

 Sad
Node hosting
The hosted node for your coin is expired. addnode=node3.walletbuilders.com Sad
Services
The following services are available for your coin.
Node hosting
Price - 0.00019160 BTC / € 4.99 a month

Instructions on the website:
https://www.walletbuilders.com/mycoin?coin=ba03b3a75e480d84b2eda419b927d7b1d715f2cb459109599c
In the Service section:

Bitcoin payment instructions
1. Transfer 0.00019160 BTC to bc1qn52yhfz0t8nvh32pa59he54668ksk7c53e9q2p
2. Wait until your Bitcoin transaction has 6 confirmations.
3. The node will be started automatically

Go ahead and pay for the NODE for 1 or 12 months if you want to continue supporting the blockchain coin. Or use the description of the coin to connect your KNOT. All in your hands!

 Cool
getmininginfo

{
  "blocks": 239,
  "difficulty": 1155.953622994933,
  "networkhashps": 1145874000.844588,
  "pooledtx": 0,
  "chain": "main",
  "warnings": ""
}

Block 239 was mined by an unknown miner! Congratulations and wish him success! Wink
Boss_BBitcoin (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
October 08, 2023, 07:01:18 AM
 #17

 Kiss
Expression. gratitude to the unknown Enthusiast who paid for 6 months of the Knot addnode=node3.walletbuilders.com  Cheesy

 Cool
getmininginfo

{
  "blocks": 273,
  "difficulty": 362.9962352330261,
  "networkhashps": 967581861.8144265,
  "pooledtx": 0,
  "chain": "main",
  "warnings": ""
}


Block 273 was mined by an unknown miner! Congratulations and wish him success! Wink
Cryptopickaxe1
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
October 08, 2023, 08:38:10 AM
 #18

How do I mine to wallet with other mining software also how do I know I'm mining?
Boss_BBitcoin (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
October 08, 2023, 02:36:07 PM
 #19

How do I mine to wallet with other mining software also how do I know I'm mining?

If one of the Enthusiasts starts a pool, then it will be possible to mine not in SOLO. At the moment there is no alternative! All in your hands!  Wink
Boss_BBitcoin (OP)
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
October 08, 2023, 02:52:00 PM
 #20

 Cool
getmininginfo

{
  "blocks": 300,
  "difficulty": 180.6110453224244,
  "networkhashps": 841736217.5548075,
  "pooledtx": 0,
  "chain": "main",
  "warnings": ""
}

Block 300 was mined by an unknown miner! Congratulations and wish him success! Wink
Pages: [1] 2 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!