CBBC Altcoin Introduction

cbbc

New Member
Jan 15, 2020
9
0
Hi Everyone,
We introduce https://thecaribbeancoin.best Algorithm: SHA-256 | Block type: Proof-of-Work
No ICO.
Coin name: CaribbeanCoin | Coin abbreviation: CBBC | Coin unit: Solid | RPC port: 15123 | P2P port: 15124
Coinbase maturity: 5 ( + 1 default confirmation) blocks | Target spacing: 5 minutes | Target timespan: 10 minutes | Transaction confirmations : 6 blocks
Block reward: 10 coins | Block halving: 210000 blocks | Coin supply: 4200000 coins
Last block with reward: 6300000
MasterNode1: 212.24.110.29:15124
MasterNode2: 212.24.97.79:15124
support@thecaribbeancoin.best


We working on it:
-CBBC Block explorer
-CBBC Pool Mining
-CBBC Wallet online
-Linux Daemon Wallet
-macOS Core Wallet
-Raspberry Pi Core Wallet
-The source code will be delivered, in february 2020.

For now the windows core wallet can be used with a mine.bat +coin.conf for solo mining.
 

cbbc

New Member
Jan 15, 2020
9
0
Hi,

We've just uploaded the Caribbeancoin macOS Core Wallet stable version 1.0 .dmg file.

https://thecaribbeancoin.best/P2P/Caribbeancoin-Stable-Version1.0-macOS-core-Wallet-qt.zip

Follow the steps below to mine with your macbook:

Close your wallet and create the file caribbeancoin.conf in the folder “$HOME/Library/Application Support/CaribbeanCoin/”.

Paste the following text into caribbeancoin.conf and save the file.

rpcuser=rpc_caribbeancoin
rpcpassword=CHOOSE_A_NEW_ONE
rpcallowip=127.0.0.1
rpcport=15123
listen=1
server=1


Open your wallet.

Create a file named mine.sh and paste the following text into mine.sh.

#!/bin/bash
SCRIPT_PATH=`pwd`;
cd $SCRIPT_PATH
echo Press [CTRL+C] to stop mining.
while :
do
./caribbeancoin-cli generate 1
done


Save the file.

Click the Finder icon in your dock.
Click Go.
Click Utilities.
Double-click Terminal.

Go to the directory where you extracted caribbeancoin-qt.

E.G. cd Downloads

Execute the following command in Terminal to make mine.sh executable.

chmod +x mine.sh

Execute the following command in Terminal to start mining your first block.

./mine.sh

Enjoy!
 

cbbc

New Member
Jan 15, 2020
9
0
Hi,

We've inserted the daemon file caribbeancoind into every Core wallet archive package.
We've just uploaded the CBBC Linux Core Wallet + Raspberry pi Core Wallet + Source code :

https://thecaribbeancoin.best/P2P/caribbeancoin-qt-linux.tar.gz
https://thecaribbeancoin.best/P2P/caribbeancoin-qt-raspberry.tar.gz
https://thecaribbeancoin.best/P2P/caribbeancoin-source.tar.gz

https://thecaribbeancoin.best/P2P/Caribbeancoin-Stable-Version1.0-macOS-core-Wallet-qt.zip
https://thecaribbeancoin.best/P2P/Caribbeancoin-Stable-Version1.0-Wallet-Windows-qt.zip

Enjoy!

[doublepost=1581696703][/doublepost]Getting started for Raspberry Pi
Use the following instructions to mine a block.

Update your Raspberry Pi.

sudo apt-get update
sudo apt-get upgrade

Install the required dependencies.

sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils python3 libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev libboost-all-dev libboost-program-options-dev
sudo apt-get install libminiupnpc-dev libzmq3-dev libprotobuf-dev protobuf-compiler unzip software-properties-common

Install Berkeley DB from source code.

wget https://download.oracle.com/berkeley-db/db-4.8.30.zip
unzip db-4.8.30.zip
cd db-4.8.30
cd build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make
sudo make install

Configure environment variable.

export LD_LIBRARY_PATH="/usr/local/lib"

Open your wallet, and make sure your wallet is connected with a node.
Your wallet is connected when you see the icon
in the lower right corner of your wallet.

The message “Syncing Headers (0,0%)” will disappear once you mine your first block.

Close your wallet and create the file caribbeancoin.conf in the folder “$HOME/.caribbeancoin/”.

Paste the following text into caribbeancoin.conf and save the file.

rpcuser=rpc_caribbeancoin
rpcpassword=86d7649f5dfa90b2916c18060
rpcallowip=127.0.0.1
rpcport=15123
listen=1
server=1

Open your wallet.

Create a file named mine.sh and paste the following text into mine.sh.

#!/bin/bash
SCRIPT_PATH=`pwd`;
cd $SCRIPT_PATH
echo Press [CTRL+C] to stop mining.
while :
do
caribbeancoin-cli generate 1
done

Save the file.

Open the terminal on your Raspberry Pi.

Go to the directory where you extracted caribbeancoin-qt.

E.G. cd Downloads

Execute the following command in Terminal to make mine.sh executable.

chmod +x mine.sh

Execute the following command in Terminal to start mining your first block.

./mine.sh