Voted Coins
follow us on twitter . like us on facebook . follow us on instagram . subscribe to our youtube channel . announcements on telegram channel . ask urgent question ONLY . Subscribe to our reddit . Altcoins Talks Shop Shop


This is an Ad. Advertised sites are not endorsement by our Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction. Advertise Here

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - thecaribbeancoin1

Pages: [1]
1
Hi everyone,

Just to inform every crypto users:
We've just created a new platform dedicated to TheCaribbeanCoin community: https://community.thecaribbeancoin.best
You can share your ideas, your experiences, about our solutions.
This is a bunch of screenshots from the last mining activity on CBBC network.











We've passed 1026 Blocks mined, and we've extracted around 10099 CBBC in less than 2 month with Nvidia GPUs only.
The best time to invest in a project is in the beginning time. Then the risk is 0%. This is not an ICO and we do not sell nothing.
We worked very hard to provide the best solution software as we can. And we provide something very easy to use, very stable, very secure, and very profitable.
The CBBC project has been created on 29 December 2019. The more coins you will be able to store now, the more you will be able to earn in the next 2 years.

We are preparing now the CBBC listing on the Crypto Exchanges for March 2020.

[email protected]

2
Hi,

GUIMINER is compatible with AMD, NVIDIA and INTEL GPUs.
We've started a small benchmark with Intel HD Graphics 520 (laptop graphic card).
GUIMINER configuration for CBBC mining
Server=other
Host=185.205.210.242
Port=3008
Password=Choose a password
Username=YOUR CBBC WALLET ADDRESS
Device=Select Your CPU or GPU (you can create a new miner profile for every device recognized by GUIMINER)


We provide here two screenshots of the default config with the CBBC pool mining.





This is the earnings made with a single GPU laptop in 2 days:

You will be able to start mining cbbc in less than 1 minute. Even if you've got a single gpu. If you want to mine CBBC quickly with your laptops, desktops, servers you can do it easily with GUIMINER.
GUIMINER default mode .OpenCL/poclbm very stable. Download link: https://bitcointalk.org/?topic=3878.0


Enjoy!

[email protected]

3
Crypto currency Mining / How to mine TheCaribbeanCoin CBBC with Nvidia GPUs
« on: February 18, 2020, 04:13:19 AM »
Hi,

We provide a brief notice for Pro Miners and beginners.
We've made a benchmark mining test with Nvidia GTX 1080 + CUDA mining software CRYPTOGEN V3.0.6 64bit (algo sha256, COIN=CBBC).


We've took several screenshots of the CRYPTOGEN config files, for beginners. You will have to edit the conf files like in the sreenshots (just modify the miner name value, the password, and wallet address as user.







When you ready to go, double click on CRYPTOGEN-MINE.bat


CRYPTOGEN Mining software support 16 GPU on a same rig, but we made the test on a 2 GPU basis.
Nvidia GTX 1080 is very stable after overclocking.

Nvidia GTX 1080 provide the coolest Temperature in high intensity calculation.
Nvidia GTX 1080 GPU is not very noisy.
Nvidia GTX 1080 provide a very low power consumption
Finally, we recommend this GPU model, because of its Extreme durability, high quality component, and very good performance.
The Nvidia GTX 1080 is all you need to mine CBBC at this time.

Cryptogen Version 3.0.6 can be downloaded from the link : https://github.com/genminer/cryptogen/releases

[email protected]

4
Cryptocurrency discussions / CBBC Block explorer is Online
« on: February 16, 2020, 08:16:19 AM »
Hi,

We've put online the CBBC Block Explorer:
185.177.59.113:3001

Enjoy!

[email protected]

5
Crypto currency Mining / Thecaribbeancoin Mining Pool is on
« on: February 15, 2020, 12:08:54 AM »
Hi,

We are in the Phase II of the CBBC Project. Your will need ASICs and GPUs to earn the most.
The percentage Fee of the pool is 0%.
You can access the mining pool on the IP : 185.205.210.242:3008
We've blocked the tcp port 80 for security and performance reasons.


Mining instructions
Download the latest version of cpuminer extract the zip file.

Create a .bat file named mine_pool.bat in the same folder where you extracted cpuminer and paste the following text into mine_pool.bat.

minerd -a sha256d -o stratum+tcp://185.205.210.242:3008 -u cbbc1q33lzqfh823mxrj0970zzyzaytk5vvn6e5n7axe -p anything


cbbc1q33lzqfh823mxrj0970zzyzaytk5vvn6e5n7axe - Change the value “cbbc1q33lzqfh823mxrj0970zzyzaytk5vvn6e5n7axe” with your wallet address.

Save the file.

Execute mine_pool.bat to start mining.

Enjoy!

[email protected]

6
Announcements [ANN] / Re: CBBC Altcoin Introduction
« on: February 14, 2020, 05:20:17 PM »
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 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 Wallet connections Scrypt and SHA256 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

7
Announcements [ANN] / CBBC Altcoin Update
« on: February 14, 2020, 05:17:44 PM »
Hi,

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


Enjoy!

8
Announcements [ANN] / CBBC Altcoin Introduction
« on: January 15, 2020, 09:11:41 AM »
Hi Everyone,
We introduce 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
[email protected]


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.

Pages: [1]
ETH & ERC20 Tokens Donations: 0x2143F7146F0AadC0F9d85ea98F23273Da0e002Ab
BNB & BEP20 Tokens Donations: 0xcbDAB774B5659cB905d4db5487F9e2057b96147F
BTC Donations: bc1qjf99wr3dz9jn9fr43q28x0r50zeyxewcq8swng
BTC Tips for Moderators: 1Pz1S3d4Aiq7QE4m3MmuoUPEvKaAYbZRoG
Powered by SMFPacks Social Login Mod