We are releasing a new project, no ICO. Coins can be forged (as delegates) or made by bounties until we hit exchange.
Delegates on LISK/RISE are like witnesees on STEEM and a likes.
ALL TESTNET COINS WILL BE LIVENET
https://github.com/bullbearnetwork
BBN-node version 1.2.1
BBN
Quick start bbn installation (Mainnet)
First, perform some basic checks:
MAKE SURE NOT TO RUN AS ROOT OR WITH SUDO
Your user will need sudo privileges, though
PostgresSQL must not be installed on your server
Download the package from release page:
Then go home:
cd $HOME
mkdir bbn
tar -xf bbn.tar.gz -C bbn
cd bbn
./manager start all
Basic node management
Check the status of your node with:
./manager.sh status
Stop node with:
./manager.sh stop node
Insert your passphrase so you can forge:
nano etc/node_config.json
And change this section to include your passphrase:
{
"fileLogLevel": "error",
"forging": {
"secret": [ "my secret" ],
"access": {
"whiteList": [ "127.0.0.1" ]
}
}
}
And finally restart your node to apply the changes:
./manager.sh reload node