create account

ChainCoin MasterNode Setup Guide by usncrypto

View this thread on: hive.blogpeakd.comecency.com
· @usncrypto ·
$0.31
ChainCoin MasterNode Setup Guide
![alt text](http://www.chaincoin.org/wp-content/uploads/2017/04/logo-hdr.png "ChainCoin")
# ChainCoin Masternode Setup Guide
This guide will show you how to setup a ***masternode with a controller wallet*** (Windows).  This means that instead of holding your CHC coins on the VPS server you will hold it on your Windows Wallet instead.
#### Update History
7/15/2017 - Initial Doc

### Setting up the Control Wallet
First Go to the chaincoin website and download the Windows Wallet
`http://www.chaincoin.org/chaincoin-wallet/`

1) Download and install the wallet and ***wait for your blockchain to sync***. 
2) For Each MasterNode you want to create, create a receiving address, if you are setting up 2 masternode you would create 2 receiving addresses.  Do this by going to ***File -> Receiving Addresses -> New in the wallet*** Use a meanginful label name to identify your masternodes for example MN1, MN2.  
3) For each MasterNode create a masternode key.  Do this by going to the RPC console in the wallet ***Tools -> Debug Console*** and type in `masternode genkey` which should give us a long string.  Keep note of each of these keys as we will be using this later.  **Remeber you need to do this for each MasterNode as each masternode will need it's own unique key**.
4) You whould now have one receiving address and one masternode key **Per MasterNode***.  Note these as we will place them in the masternode.conf file explained below.
### Setting up the masternode.conf File
Please note where you set the default directory upon intial startup of the wallet.
Navigate to the chaincoin directory:
Default directory is: C:\Users\ *username* \AppData\Roaming\ChainCoin
**You should see a backup folder, block, chainstate, and chaincoin.conf**

In your ChainCoin Directory create a file called ***masternode.conf***, if one does not exist.  You can create this file by opening up notepad and saving a blank file in the chaincoin directory as ***masternode.conf***.  The masternode.conf file is where we will put information on each masternode in this format:
Doc for masternode.conf: `https://github.com/chaincoin/chaincoin/blob/master/doc/masternode_conf.md`
```
# Masternode config file
# Format: alias IP:port masternodeprivkey collateral_output_txid collateral_output_index
# Example: mn1 127.0.0.2:51474 93HaYBVUCYjEMeeH1Y4sBGLALQZE1Yc1K64xiqgX37tGBDQL8Xg 2bcd3c84c84f87eaa86e4e56834c92927a07f9e18718810b92e0d0324456a67c 0
<MASTERNODE_ALIAS> <SERVER_IP_ADDRESS>:11994 <MASTERNODE_PRIVATE_KEY> <TX_OUTPUT_ID> <TX_10K_OUTPUT_INDEX> 
```
Lets define the parameters for the format:
**Alias**: The alias portion is just a name for ease of use you want to name your masternode for exampel MN1 
**IP/Port**: This will be the IP address of your VPS server and the port will be 11994
**Masternode Private Key***: This is a unique key that we will generate for ***each*** masternode by using the command `masternode genkey` in the Tools -> Debug Console screen located in the wallet.
**TXID Collateral**: This is the transaction id for the 1,000 CHC you sent to the wallet address
**TX Output Index**: This will either be a 0 or 1 and point to the 1,000 CHC on the transaction. In the example below we can see the 1,000 CHC is second so the TX output will be 1.  If it was above it would be a 0. 
***Use the Chaincoin Block Explorer to find the TXID and TX Output Index 
http://104.238.153.140:3001/***
![alt text](https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/Explorer_example.JPG?raw=true "ChainCoin Block Explorer")

#### Steps
1) Setup the masternode.conf file we just created using the information above for ***each*** masternode.  It should look like this: 
![alt text](https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/masternodesetup.JPG?raw=true "masternode.conf setup")
**Remember the IP address will be the VPS IP address we setup below**
2) Save the masternode.conf file.
---------------------------------------------------------
### Setting up our VPS (Virtual Private Server)
Create a VPS on your perferred provider, in this setup I will use Vultr which you can sign up here:
`http://www.vultr.com/?ref=7182750`
1) After you sign up create a new VPS machine by clicking on the ***+*** button to "Deploy a New Server".
* Select your preferred location for your VPS server
* Select the Ubuntu Server x64bit 14.04 ***The Ubuntu Version needs to be 14.04***
* Select your server size, the recommended size will be the 1GB server which at this time is $5 a month
![alt text](https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/vps1.JPG?raw=true "Server Specs")
* Give it a meaningful name for example *ChainCoinMN1*, you also have the option to enable automatic backups if you want
***If you have multiple masternodes to setup then we will need to create one VPS per MN as recommened by the developers, we can do this by setting up on MasterNode and then creating a snapshot to quickly create the others***
2) We need to login to our new VPS server and download the wallet, but first we need to access it.  There are various programs to access linux VPS machines but we will be using Putty for this guide.
* Go to the Putty website and download and install the client
`https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html`
* Install and run Putty.  Now we need to enter the VPS credentials to login.
    The username will be: root
    The Password will be located by clicking on VPS on the Vultr site.
![alt text](https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/vps2.JPG?raw=true "Server Password")
* After we logged in we will need to type a series of commands to get started **in order**
**Create Swap File**
Run these commands to make a swapfile:
```
sudo dd if=/dev/zero of=/var/swap.img bs=1024k count=1000
sudo mkswap /var/swap.img
sudo swapon /var/swap.img
```
To make the swap file persist if the server is rebooted:
```
sudo chmod 0600 /var/swap.img
sudo chown root:root /var/swap.img
sudo nano /etc/fstab
```
Append the following line to the end of the file:
`/var/swap.img none swap sw 0 0`
**Save the file by using cntrl+s and confirm the changes**

Install the dependencies needed before compiling the Masternode
```
sudo apt-get update
sudo apt-get install automake
sudo apt-get install libdb++-dev
sudo apt-get install build-essential libtool autotools-dev
sudo apt-get install autoconf pkg-config libssl-dev
sudo apt-get install libboost-all-dev
sudo apt-get install libminiupnpc-dev
sudo apt-get install git
sudo apt-get install software-properties-common
sudo apt-get install python-software-properties
sudo apt-get install g++
```
Download and compile the Berkely DB v4.8 database
```
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev -y
```
Download the chaincoin source code:
```
cd ~
git clone https://github.com/chaincoin/chaincoin.git
```
Compile the masternode using the Berkely DB v4.8 and no GUI
```
cd ~/chaincoin/
./autogen.sh
./configure --without-gui
make
sudo make install
```
--------------------
#### **Note:**
If you are setting up multiple masternodes, it will be a good idea to at this point to create a snapshot of this VPS machine now to speed the installation of new masternodes.

To Create a Snapshot follow the following setps:
* Go to your Vultr Dashboard and click on the VPS machine you want to snapshot, and navigate to the Snapshot Menu
![alt text](https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/vps3.JPG?raw=true "VPS Snapshot")
* Give your snapshot a name for example ChainCoin_seed
* Click on ***Take Snapshot*** and wait for the process to complete. *At the time of writting this guide snapshots on Vultr are free*
* When the snapshot is complete you can now use this snapshot to create ***New VPS Servers for new MasterNodes***

To create a new VPS Server with the Snapshot we just created:
* Deploy a new server by clickin on the **+** icon to deploy a new server\
*Select your preferred region
*When selecting *Server Type* look for the ***Snapshot*** tab and select your snapshot. **Note** The server size has to be equal to or greater than the server you created the snapshot from.
![alt text](https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/vps4.JPG?raw=true "VPS Snapshot Create")

This will speed up setting up new masternodes by allowing you to start from the steps below for each new masternode.  *It is important to note that you will have to change the HostName for each new snapshot server to match your new name*.  You can do this by entering the following on the command line to change your Hostname to match:
```
sudo nano /etc/hosts
sudo nano /etc/hostname
```
--------------------
Edit the configuration file for the Masternode

a. Go to the configuration folder:
`cd ~/.chaincoin/`
b. If the folder doesn’t exist, create it with
`mkdir ~/.chaincoin/` and then use `cd ~/.chaincoin/` to go into the config folder
c. List the contents and look for chaincoin.conf
ls
d. If the file doesn’t exist, create it like this:
`touch chaincoin.conf`
e. Edit the file:
`nano chaincoin.conf`
f. Add these lines to the file if they don’t already exist:
```
rpcuser=(create a username)
rpcpassword=(enter a strong password)
rpcallowip=127.0.0.1
daemon=1
server=1
listen=1
maxconnections=256
masternode=1
externalip=(VPS IP Address)
bind=(VPS IP Address)
masternodeaddr=(VPS IP Address):11994
masternodeprivkey=(Insert your masternode key we generated above)
```
*The rpcuser and rpcpassword values are for the RPC interface, allowing you to interact
with the Masternode from the command line. Use any values you like but keep a copy of
them on file somewhere.*

* Run chaincoind and wait for it to sync. This may take a while as it needs to download a large file.
```
chaincoind
```
**Once your masternode has synced to the blockchain we will be ready to start with the next step which is starting the MasterNode from your Windows Wallet**

---------------------------------------------

#### Starting your new MasterNode
* Go to your Windows wallet and open the RPC console by going to **Tools -> Debug Console**
* Enter the following command into the RPC console `masternode start-many (wallet password)` If your wallet is encrypted which I recommend you do then you would put your password in place of (wallet password).
You should see a message in the console:
```
“overall” : “Successfully started masternode, failed to start 0, total 1”,
“detail” :
“status” :
“alias” : “masternode1”,
“result” : “successful”
Done.
```
##### Checking on your MasterNode
You can check if your masternode is running by opening the RPC console by going to **Tools -> Debug Console** and entering
`masternode list status IPAddress`
to get a full list of masternodes enter:
`masternode list`
to stop your masternode
`masternode stop-many`
OR
`masternode stop-alias mnAlias`
to see count of masternodes
`masternode count`
to start a specific masternode use
`masternode start-alias mnAlias`

----------------------------------
### Acknowledgments
Thanks to @jeffblogs for providign some of the content to this guide:
https://steemit.com/@jeffblogs

**Also a BIG Thanks to all those ChainCoin HODLers!! Keep on HODL'in**
👍  , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorusncrypto
permlinkchaincoin-masternode-setup-guide
categorychaincoin
json_metadata{"tags":["chaincoin","masternode","masternodesetup","guides"],"users":["jeffblogs"],"image":["http://www.chaincoin.org/wp-content/uploads/2017/04/logo-hdr.png","https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/Explorer_example.JPG?raw=true","https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/masternodesetup.JPG?raw=true","https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/vps1.JPG?raw=true","https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/vps2.JPG?raw=true","https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/vps3.JPG?raw=true","https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/vps4.JPG?raw=true"],"links":["http://104.238.153.140:3001/","https://steemit.com/@jeffblogs"],"app":"steemit/0.1","format":"markdown"}
created2017-07-15 17:24:57
last_update2017-07-15 17:24:57
depth0
children24
last_payout2017-07-22 17:24:57
cashout_time1969-12-31 23:59:59
total_payout_value0.238 HBD
curator_payout_value0.072 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11,233
author_reputation10,975,644,673
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,590,453
net_rshares67,364,030,522
author_curate_reward""
vote details (25)
@alainite ·
I've got chaincoin and HODLing :) I want a Masternode
👍  
properties (23)
authoralainite
permlinkre-usncrypto-chaincoin-masternode-setup-guide-20170716t104111009z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-16 10:41:09
last_update2017-07-16 10:41:09
depth1
children1
last_payout2017-07-23 10:41:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation3,773,610,796,661
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,657,256
net_rshares1,160,682,245
author_curate_reward""
vote details (1)
@usncrypto ·
Buy the dips until you get one!
👍  
properties (23)
authorusncrypto
permlinkre-alainite-re-usncrypto-chaincoin-masternode-setup-guide-20170718t184807432z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-18 18:48:06
last_update2017-07-18 18:48:06
depth2
children0
last_payout2017-07-25 18:48:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation10,975,644,673
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,899,381
net_rshares2,937,237,593
author_curate_reward""
vote details (1)
@hsejin314 ·
should I have to install Default directory( C:\Users\ username \AppData\Roaming\ChainCoin)?? I already installed another directory....
👍  
properties (23)
authorhsejin314
permlinkre-usncrypto-chaincoin-masternode-setup-guide-20170718t174655963z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-18 17:46:57
last_update2017-07-18 17:46:57
depth1
children1
last_payout2017-07-25 17:46:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation6,924,979,416
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,894,461
net_rshares1,160,673,342
author_curate_reward""
vote details (1)
@usncrypto ·
No it doesn't matter where you put it, I have mine put in another directory as well.
👍  
properties (23)
authorusncrypto
permlinkre-hsejin314-re-usncrypto-chaincoin-masternode-setup-guide-20170718t184544741z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-18 18:45:45
last_update2017-07-18 18:45:45
depth2
children0
last_payout2017-07-25 18:45:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation10,975,644,673
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,899,177
net_rshares1,137,459,875
author_curate_reward""
vote details (1)
@jeffblogs ·
Thanks for giving credits @usncrypto :)
properties (22)
authorjeffblogs
permlinkre-usncrypto-chaincoin-masternode-setup-guide-20171010t093112896z
categorychaincoin
json_metadata{"tags":["chaincoin"],"users":["usncrypto"],"app":"steemit/0.1"}
created2017-10-10 09:31:18
last_update2017-10-10 09:31:18
depth1
children0
last_payout2017-10-17 09:31:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation482,749,416,094
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,279,424
net_rshares0
@ntech ·
$0.04
Many thanks for the great guide. Do we have to keep the Windows wallet running 24/7 or can we close the wallet after finishing the setup successful?
👍  , ,
properties (23)
authorntech
permlinkre-usncrypto-chaincoin-masternode-setup-guide-20170724t205352393z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-24 20:53:54
last_update2017-07-24 20:53:54
depth1
children1
last_payout2017-07-31 20:53:54
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length148
author_reputation13,251,976,723
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,584,600
net_rshares12,436,449,694
author_curate_reward""
vote details (3)
@softgrip ·
$0.04
I have the same question.  My windows machine rebooted in the middle of the night, and my MasterNodes went offline - even though they are on 2x Vultr VPS.

Really annoying.
👍  ,
properties (23)
authorsoftgrip
permlinkre-ntech-re-usncrypto-chaincoin-masternode-setup-guide-20170725t065635011z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-25 06:56:36
last_update2017-07-25 06:56:36
depth2
children0
last_payout2017-08-01 06:56:36
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation-499,744,979,639
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,632,561
net_rshares12,412,614,269
author_curate_reward""
vote details (2)
@olivers-wilde ·
Hello @unscrypto !  Question: If I already set up my masternode (generated pvt key using Putty after setting up  Vultr server) , how do I then access this masternode through the rpc console on my desktop? So far nothing is working... I used your directions , inserting the masternode pvt key which was generated from chaincoind through Putty, shouldnt this work? Thanks for your reply!!
properties (22)
authorolivers-wilde
permlinkre-usncrypto-chaincoin-masternode-setup-guide-20170801t171810455z
categorychaincoin
json_metadata{"tags":["chaincoin"],"users":["unscrypto"],"app":"steemit/0.1"}
created2017-08-01 17:18:12
last_update2017-08-01 17:18:12
depth1
children1
last_payout2017-08-08 17:18:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length386
author_reputation101,310,283,965
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,446,896
net_rshares0
@bongoking ·
I am trying to figure out the same thing. Importing Your remote mn's private key will show an updated balance, but even creating a local masternode.conf for qt-wallet did not really work. Always get a "could not allocate vin" error msg.
properties (22)
authorbongoking
permlinkre-olivers-wilde-re-usncrypto-chaincoin-masternode-setup-guide-20170804t012240396z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-08-04 01:22:39
last_update2017-08-04 01:22:39
depth2
children0
last_payout2017-08-11 01:22:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length236
author_reputation59,266,610,856
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,701,374
net_rshares0
@redhill · (edited)
another helpful command is  chaincoind masternode list activeseconds YOURIP, cos sometimes it says enabled but activeseconds it is stuck at 0, which means is not actually running
👍  
properties (23)
authorredhill
permlinkre-usncrypto-chaincoin-masternode-setup-guide-20170731t120146559z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-31 12:01:45
last_update2017-07-31 12:02:27
depth1
children0
last_payout2017-08-07 12:01:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length178
author_reputation5,982,778,632
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,312,614
net_rshares2,295,421,894
author_curate_reward""
vote details (1)
@redhill ·
you also need a local chaincoin.conf like this
-----------------------------------------------------
chaincoin.conf (Controller Wallet)
-----------------------------------------------------

rpcuser=xxxx
rpcpassword=xxx
rpcallowip=127.0.0.1
listen=0
server=1
daemon=1
logtimestamps=1
maxconnections=256

mnconflock=0
👍  
properties (23)
authorredhill
permlinkre-usncrypto-chaincoin-masternode-setup-guide-20170731t203236401z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-31 20:32:36
last_update2017-07-31 20:32:36
depth1
children0
last_payout2017-08-07 20:32:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length316
author_reputation5,982,778,632
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,351,795
net_rshares2,295,421,894
author_curate_reward""
vote details (1)
@saltysamaritan ·
hello i was wondering on what to do when you have exceeded the disk space? my masternode keeps says cant connect to server even after upgrading to a higher capacity. How do i reconnect?
properties (22)
authorsaltysamaritan
permlinkre-usncrypto-chaincoin-masternode-setup-guide-20171004t160327891z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-10-04 16:03:24
last_update2017-10-04 16:03:24
depth1
children0
last_payout2017-10-11 16:03:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length185
author_reputation4,840,618,539
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,777,061
net_rshares0
@softgrip · (edited)
$0.04
Hey @usncrypto,

I successfully used your guide in conjunction with the "locking down the system" tutorial from chaincoin.org YouTube videos.  I now have 2 master nodes running :P

So last night I had a power outage - and when I checked the status of my nodes in the morning (on Vultr) they were offline.

Does this "windows backed master node" need the windows wallet running 24/7, or can I have the nodes just off doing their thing?

And further to this - how can I have the MasterNodes auto start if the VPS reboots?  Do they have to be manually run from the debug console?

Thanks,

Ned
👍  ,
properties (23)
authorsoftgrip
permlinkre-usncrypto-chaincoin-masternode-setup-guide-20170724t231931715z
categorychaincoin
json_metadata{"tags":["chaincoin"],"users":["usncrypto"],"app":"steemit/0.1"}
created2017-07-24 23:19:33
last_update2017-07-25 13:32:51
depth1
children0
last_payout2017-07-31 23:19:33
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length590
author_reputation-499,744,979,639
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,596,808
net_rshares12,442,408,550
author_curate_reward""
vote details (2)
@steemitboard ·
Congratulations @usncrypto! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/firstpost.png)](http://steemitboard.com/@usncrypto) You published your First Post
[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/firstvoted.png)](http://steemitboard.com/@usncrypto) You got a First Vote
[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/firstcomment.png)](http://steemitboard.com/@usncrypto) You made your First Comment

Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

> By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
👍  ,
properties (23)
authorsteemitboard
permlinksteemitboard-notify-usncrypto-20170715t192500000z
categorychaincoin
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-07-15 19:25:00
last_update2017-07-15 19:25:00
depth1
children2
last_payout2017-07-22 19:25:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length997
author_reputation38,975,615,169,260
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,600,466
net_rshares1,120,049,775
author_curate_reward""
vote details (2)
@globalrenegade ·
when i type in chaincoind i get "command not found" ? any idea why? i tried it both in the root dir and chaincoin dir.
properties (22)
authorglobalrenegade
permlinkre-steemitboard-steemitboard-notify-usncrypto-20170723t033656756z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-23 03:36:57
last_update2017-07-23 03:36:57
depth2
children1
last_payout2017-07-30 03:36:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation46,442,474,084
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,374,125
net_rshares0
@ntech ·
I had the same problem, just repeat the setup from the beginning. Maybe some mistake during the copy & paste part.
properties (22)
authorntech
permlinkre-globalrenegade-re-steemitboard-steemitboard-notify-usncrypto-20170724t204858607z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-24 20:49:00
last_update2017-07-24 20:49:00
depth3
children0
last_payout2017-07-31 20:49:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation13,251,976,723
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,584,118
net_rshares0
@steemitboard ·
Congratulations @usncrypto! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/firstpayout.png)](http://steemitboard.com/@usncrypto) You got your First payout

Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

> By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-usncrypto-20170724t152341000z
categorychaincoin
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-07-24 15:23:42
last_update2017-07-24 15:23:42
depth1
children0
last_payout2017-07-31 15:23:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length688
author_reputation38,975,615,169,260
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,549,404
net_rshares0
@steemitboard ·
Congratulations @usncrypto! You have received a personal award!

[![](https://steemitimages.com/70x70/http://steemitboard.com/@usncrypto/birthday1.png)](http://steemitboard.com/@usncrypto)  1 Year on Steemit
<sub>_Click on the badge to view your Board of Honor._</sub>


**Do not miss the last post from @steemitboard:**
[SteemitBoard World Cup Contest - Sweden vs England](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-sweden-vs-england)

---
**Participate in the [SteemitBoard World Cup Contest](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-collect-badges-and-win-free-sbd)!**
Collect World Cup badges and win free SBD
Support the Gold Sponsors of the contest: [@good-karma](https://v2.steemconnect.com/sign/account-witness-vote?witness=good-karma&approve=1) and [@lukestokes](https://v2.steemconnect.com/sign/account-witness-vote?witness=lukestokes.mhth&approve=1)

---

> Do you like [SteemitBoard's project](https://steemit.com/@steemitboard)? Then **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-usncrypto-20180706t153312000z
categorychaincoin
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-07-06 15:33:12
last_update2018-07-06 15:33:12
depth1
children0
last_payout2018-07-13 15:33:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,159
author_reputation38,975,615,169,260
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,672,821
net_rshares0
@steemitboard ·
Congratulations @usncrypto! You received a personal award!

<table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@usncrypto/birthday2.png</td><td>Happy Birthday! - You are on the Steem blockchain for 2 years!</td></tr></table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@usncrypto) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=usncrypto)_</sub>


###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-usncrypto-20190706t152830000z
categorychaincoin
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-07-06 15:28:30
last_update2019-07-06 15:28:30
depth1
children0
last_payout2019-07-13 15:28:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length624
author_reputation38,975,615,169,260
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,896,341
net_rshares0
@wonderpiece ·
this documentation is incredible!! as soon as i get my first MN, i will give this a spin.
properties (22)
authorwonderpiece
permlinkre-usncrypto-chaincoin-masternode-setup-guide-20170715t174513644z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-15 17:45:12
last_update2017-07-15 17:45:12
depth1
children4
last_payout2017-07-22 17:45:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation0
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,592,243
net_rshares0
@usncrypto ·
thanks! ya just trying to help the whole community of CHCHodlers get their masternodes up and running!
properties (22)
authorusncrypto
permlinkre-wonderpiece-re-usncrypto-chaincoin-masternode-setup-guide-20170715t183800244z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-15 18:38:00
last_update2017-07-15 18:38:00
depth2
children3
last_payout2017-07-22 18:38:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation10,975,644,673
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,596,819
net_rshares0
@kiy818 ·
Hi usncrypto, great tutorial. Would you be able to provide a masternode with a controller wallet (Mac) version please.
properties (22)
authorkiy818
permlinkre-usncrypto-re-wonderpiece-re-usncrypto-chaincoin-masternode-setup-guide-20170718t142129634z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-18 14:21:30
last_update2017-07-18 14:21:30
depth3
children2
last_payout2017-07-25 14:21:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation306,985,015
root_title"ChainCoin MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,877,127
net_rshares0