create account

How to setup ChainCoin masternode on a DigitalOcean VPS by pasmat

View this thread on: hive.blogpeakd.comecency.com
· @pasmat ·
$0.75
How to setup ChainCoin masternode on a DigitalOcean VPS
https://puu.sh/wKeMo/a4b30b687f.jpg

Hello guys, today I am sharing a very important lesson with you, as we know, ChainCoin is all the hype, and so are masternodes!

First of all, this guide is a reference! I take no responsibility for any lost coins or anything, be extra cautious when sending big amounts of coins, they can't be retrieved back once sent to wrong addresses!

Donations can be made to ChainCoin address:
CJHRbAZ2WRiBgMrrRT1qsKAThsEncYA9p8

There's also a YouTube video to go with this guide so feel free to watch it too at https://youtu.be/tfw8rvTWeYY

So let's figure out how to setup a masternode inside DigitalOcean VPS!

To help me with my server costs, please use the following referral link to get free 10$ on your DigitalOcean registeration: https://goo.gl/LqLtj5

When you've registered and signed in to DigitalOcean, first step is to create a Ubuntu 16.04.02 x64 droplet

https://puu.sh/wKd0B/525a713cf4.jpg

To employ a small cost saving tricks, choose the cheapest, 5$ droplet at first. Due to memory constraints ChainCoin wont build with this machine, but we'll solve that problem in a bit!

https://puu.sh/wKd2l/b66c266aab.jpg

When the  droplet creation is completed,  power off the machine!

https://puu.sh/wKd4p/c5d3e707b7.jpg

Resize the machine to the 80$ machine, or the 20$ machine at least, because else the building will fail!

https://puu.sh/wKd5S/dac55cb325.jpg

Power the machine back on!

https://puu.sh/wKd77/d023f41fef.jpg

Download putty from http://putty.org

https://puu.sh/wKd7C/28692ecaf9.jpg

https://puu.sh/wKd8H/89af278174.jpg

and run it!

Open a mail containing your crendetials to the droplet

https://puu.sh/wKf54/d25c241c51.jpg

and use the ip inside the email as host address

https://puu.sh/wKdan/bd8aa14a57.jpg

Login with the credentials and change the password as guided. Inside putty the pasting is done by right clicking on the window

https://puu.sh/wKdbX/b1d9a8a54a.jpg

Now lets begin getting the dependencies for the installation!

First add bitcoin repository
```
add-apt-repository ppa:bitcoin/bitcoin
```

https://puu.sh/wKddx/c1d3264ff2.jpg

Then run an update

```
apt-get update
```

Install the dependencies

```
apt-get install git build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev libdb4.8-dev libdb4.8++-dev -y

```

Clone the repository

```
git clone https://github.com/chaincoin/chaincoin.git
```

Open the directory where chaincoin was cloned into

```
cd chaincoin
```

run autogen.sh

```
./autogen.sh
```

run configure step

```
./configure
```

build.. this will take a while!

```
make
```

and finally install

```
make install
```

Now for the cost saving trick!

Power off your droplet

https://puu.sh/wKdKn/158eddafae.jpg

Resize it to the smallest machine!

https://puu.sh/wKdLB/1f8516e2d6.jpg

Power it back on and sign back in using putty!

run chaincoin daemon to generate credentials for you

```
chaincoind --daemon
```

https://puu.sh/wKdm4/002e5b59c8.jpg

Copy the rpcuser and rpcpassword generated for you

https://puu.sh/wKdo6/f08197c70d.jpg

edit the configuration file

```
nano /root/.chaincoin/chaincoin.conf
```

paste in the credentials created for you by right clicking

https://puu.sh/wKdpa/8798c9711d.jpg

CTRL + W

save file

https://puu.sh/wKdwQ/021261807a.jpg

CTRL + X

close editor


Start the chaincoind daemon

```
chaincoind --daemon
```
https://puu.sh/wKdy2/bfdda0c5f0.jpg

See blockcain synchronization progress

```
chaincoin-cli getinfo
```

https://puu.sh/wKdCi/24f1c03308.jpg

Compare the 'blocks' count to one listed in ChainCoin explorer

https://puu.sh/wKdDw/754d2f16b0.png

When the numbers are same, its completed!

Get the accountaddress to send the coins to

```
chaincoind getaccountaddress 0
```

https://puu.sh/wKdNH/14b478cb1e.jpg

Save the private key in case of disaster, dump it using the following command. Replace YOUR_ADDRESS_HERE with the result of previous command 'getaccountaddress'

This private key is secret and never to be shared with anyone! Keep it secure!

```
chaincoind dumpprivkey YOUR_ADDRESS_HERE
```

https://puu.sh/wKdPv/fed4ca44b3.jpg


Generate the masternode private key using

```
chaincoind masternode genkey
```

https://puu.sh/wKdRA/d62e3fd2bc.jpg

edit the conf once again using

```
nano /root/.chaincoin/chaincoin.conf
```

https://puu.sh/wKdSS/2ce7a3e35b.jpg

Paste in the following, and replace YOUR_MASTERNODE_PRIV_KEY with the result of 'chaincoind masternode genkey' command

```
masternodeprivkey=YOUR_MASTERNODE_PRIV_KEY
masternode=1
```

Remember!

CTRL + W

save file

CTRL + X

close editor

Now restart the chaincoind so the new configuration is used!

https://puu.sh/wKe68/553fa00d86.jpg


```
chaincoind stop
chaincoind --daemon
```


https://puu.sh/wKdY3/d81e536d93.jpg

Use the following command again to find out the address to send your chaincoins to


```
chaincoind getaccoundaddress 0
```

https://puu.sh/wKdYU/93eba2424a.jpg

Verify the address thousand times before sending anything!

Send exactly 1000 chaincoins to the address, if you send anything else it will not work!

use 


```
chaincoind listtransactions
```

to verify that the coins have arrived


https://puu.sh/wKe2L/aba2e51ffe.jpg

After the coins have arrived and been confirmed for 15 times, you can run 

```
chaincoind masternode start
```

and we are finally done!

after the masternode is running you will receive chaincoins like so

the masternode generated coins take 100 confirmations before they can be spend!

https://puu.sh/wKe3u/59a7a8790d.jpg

When you're finally a millionare and ready to retrieve your coins use 

chaincoind masternode stop

to stop your masternode

and

chaincoind getbalance

to find out your current balance

and send it using

chaincoind sendtoaddress YOUR_PRIMARY_WALLET_ADDRESS_HERE BALANCE_YOU_WANT_TO_SEND_HERE

https://puu.sh/wKeca/8c2e49bc68.jpg

enjoy your coins!
👍  , , , , , , , , , ,
properties (23)
authorpasmat
permlinkhow-to-setup-chaincoin-masternode-on-a-digitalocean-vps
categorychaincoin
json_metadata{"tags":["chaincoin","masternode","digitalocean","vps","cryptocurrency"],"image":["https://puu.sh/wKeMo/a4b30b687f.jpg","https://img.youtube.com/vi/tfw8rvTWeYY/0.jpg","https://puu.sh/wKd0B/525a713cf4.jpg","https://puu.sh/wKd2l/b66c266aab.jpg","https://puu.sh/wKd4p/c5d3e707b7.jpg","https://puu.sh/wKd5S/dac55cb325.jpg","https://puu.sh/wKd77/d023f41fef.jpg","https://puu.sh/wKd7C/28692ecaf9.jpg","https://puu.sh/wKd8H/89af278174.jpg","https://puu.sh/wKf54/d25c241c51.jpg","https://puu.sh/wKdan/bd8aa14a57.jpg","https://puu.sh/wKdbX/b1d9a8a54a.jpg","https://puu.sh/wKddx/c1d3264ff2.jpg","https://puu.sh/wKdKn/158eddafae.jpg","https://puu.sh/wKdLB/1f8516e2d6.jpg","https://puu.sh/wKdm4/002e5b59c8.jpg","https://puu.sh/wKdo6/f08197c70d.jpg","https://puu.sh/wKdpa/8798c9711d.jpg","https://puu.sh/wKdwQ/021261807a.jpg","https://puu.sh/wKdy2/bfdda0c5f0.jpg","https://puu.sh/wKdCi/24f1c03308.jpg","https://puu.sh/wKdDw/754d2f16b0.png","https://puu.sh/wKdNH/14b478cb1e.jpg","https://puu.sh/wKdPv/fed4ca44b3.jpg","https://puu.sh/wKdRA/d62e3fd2bc.jpg","https://puu.sh/wKdSS/2ce7a3e35b.jpg","https://puu.sh/wKe68/553fa00d86.jpg","https://puu.sh/wKdY3/d81e536d93.jpg","https://puu.sh/wKdYU/93eba2424a.jpg","https://puu.sh/wKe2L/aba2e51ffe.jpg","https://puu.sh/wKe3u/59a7a8790d.jpg","https://puu.sh/wKeca/8c2e49bc68.jpg"],"links":["https://youtu.be/tfw8rvTWeYY","https://goo.gl/LqLtj5","http://putty.org"],"app":"steemit/0.1","format":"markdown"}
created2017-07-15 14:29:30
last_update2017-07-15 14:29:30
depth0
children15
last_payout2017-07-22 14:29:30
cashout_time1969-12-31 23:59:59
total_payout_value0.672 HBD
curator_payout_value0.076 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,040
author_reputation3,601,338,670
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,573,652
net_rshares161,995,488,978
author_curate_reward""
vote details (11)
@alainite ·
I've got chaincoin and HODLing :) I want a Masternode
properties (22)
authoralainite
permlinkre-pasmat-how-to-setup-chaincoin-masternode-on-a-digitalocean-vps-20170716t104311250z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-16 10:43:09
last_update2017-07-16 10:43:09
depth1
children0
last_payout2017-07-23 10:43: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"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,657,403
net_rshares0
@bluehorseshoe ·
Perfect timing!!
A chaincoin masternode was next on my plate as soon as I pickup some shares at decent price points.
I've already scouted some "how to" info on this and with your pics this is the best tutorial in my opinion so thank you.
Question: Do you know if a chaincoin masternode can be run on a raspberry pi 3?
👍  
properties (23)
authorbluehorseshoe
permlinkre-pasmat-how-to-setup-chaincoin-masternode-on-a-digitalocean-vps-20170715t143710969z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-15 14:37:21
last_update2017-07-15 14:37:21
depth1
children3
last_payout2017-07-22 14:37:21
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_length317
author_reputation9,766,510,656,462
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,574,366
net_rshares0
author_curate_reward""
vote details (1)
@pasmat ·
$0.31
Tuxic is right. However you will face one problem running raspbian, instead of Ubuntu based distro, it wont have Berkley DB 4.8 available from repositories, and you have to build it yourself, so you need to do a little research.

If this content receives good feedback, I might also make a raspberry PI guide, as I have couple of these laying around. :)
👍  
properties (23)
authorpasmat
permlinkre-bluehorseshoe-re-pasmat-how-to-setup-chaincoin-masternode-on-a-digitalocean-vps-20170715t153512487z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-15 15:35:00
last_update2017-07-15 15:35:00
depth2
children1
last_payout2017-07-22 15:35:00
cashout_time1969-12-31 23:59:59
total_payout_value0.236 HBD
curator_payout_value0.078 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length353
author_reputation3,601,338,670
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,579,945
net_rshares68,490,186,180
author_curate_reward""
vote details (1)
@bluehorseshoe ·
In that case I'll put it on one of our other PCs, thank you for letting me know.
properties (22)
authorbluehorseshoe
permlinkre-pasmat-re-bluehorseshoe-re-pasmat-how-to-setup-chaincoin-masternode-on-a-digitalocean-vps-20170715t195523649z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-15 19:55:33
last_update2017-07-15 19:55:33
depth3
children0
last_payout2017-07-22 19:55:33
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_length80
author_reputation9,766,510,656,462
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,602,808
net_rshares0
@tuxic ·
$0.32
Yes you can run on a Raspberry PI 3. Just download Rapsbian lite and follow the tutorial. It should be similar.
👍  
properties (23)
authortuxic
permlinkre-bluehorseshoe-re-pasmat-how-to-setup-chaincoin-masternode-on-a-digitalocean-vps-20170715t145721764z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-15 14:57:21
last_update2017-07-15 14:57:21
depth2
children0
last_payout2017-07-22 14:57:21
cashout_time1969-12-31 23:59:59
total_payout_value0.286 HBD
curator_payout_value0.036 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation1,592,509,906
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,576,123
net_rshares70,095,424,919
author_curate_reward""
vote details (1)
@cakesnake ·
My blocksize stays at 0 what might be the problem?
properties (22)
authorcakesnake
permlinkre-pasmat-how-to-setup-chaincoin-masternode-on-a-digitalocean-vps-20170715t165016945z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-15 16:50:18
last_update2017-07-15 16:50:18
depth1
children1
last_payout2017-07-22 16:50: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_length50
author_reputation289,659,420
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,587,167
net_rshares0
@pasmat ·
How many connections getinfo reports? How long has this been?
properties (22)
authorpasmat
permlinkre-cakesnake-re-pasmat-how-to-setup-chaincoin-masternode-on-a-digitalocean-vps-20170715t182657992z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-15 18:26:48
last_update2017-07-15 18:26:48
depth2
children0
last_payout2017-07-22 18:26:48
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_length61
author_reputation3,601,338,670
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,595,854
net_rshares0
@karatimahdi ·
thanks bro , and this method have profit ? you tested it ?
properties (22)
authorkaratimahdi
permlinkre-pasmat-how-to-setup-chaincoin-masternode-on-a-digitalocean-vps-20170715t151800316z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-15 15:18:03
last_update2017-07-15 15:18:03
depth1
children1
last_payout2017-07-22 15:18:03
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_length58
author_reputation2,772,787,307
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,578,274
net_rshares0
@pasmat ·
Yes I have. I've got 2 CHC per MN every ~24hr, so its.. ~4$ per MN/day
properties (22)
authorpasmat
permlinkre-karatimahdi-re-pasmat-how-to-setup-chaincoin-masternode-on-a-digitalocean-vps-20170715t153251760z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-15 15:32:42
last_update2017-07-15 15:32:42
depth2
children0
last_payout2017-07-22 15:32: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_length70
author_reputation3,601,338,670
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,579,709
net_rshares0
@naturalnomads ·
I have had some Ubuntu upgrade issues that I need help with. I am already running a chaincoin masternode. Do you know how I could employ someone to help me as I am not tech savvy enough to follow the advice in ask Ubuntu. the masternode was running beautifully before the update then I encountered libboost errors. I assume because of the size. Anyway, would appreciate your advice
properties (22)
authornaturalnomads
permlinkre-pasmat-how-to-setup-chaincoin-masternode-on-a-digitalocean-vps-20180220t035715253z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2018-02-20 03:57:18
last_update2018-02-20 03:57:18
depth1
children0
last_payout2018-02-27 03:57: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_length381
author_reputation76,703,366
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,959,603
net_rshares0
@screenofgreen ·
This guide is very good, thanks!
properties (22)
authorscreenofgreen
permlinkre-pasmat-how-to-setup-chaincoin-masternode-on-a-digitalocean-vps-20170715t145840944z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-15 14:58:42
last_update2017-07-15 14:58:42
depth1
children0
last_payout2017-07-22 14:58: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_length32
author_reputation172,437,232
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,576,262
net_rshares0
@steemitboard ·
Congratulations @pasmat! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/firstcommented.png)](http://steemitboard.com/@pasmat) You got a First Reply

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-pasmat-20170715t221135000z
categorychaincoin
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-07-15 22:11:33
last_update2017-07-15 22:11:33
depth1
children0
last_payout2017-07-22 22:11:33
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_length681
author_reputation38,975,615,169,260
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,612,915
net_rshares0
@steemitboard ·
Congratulations @pasmat! You have received a personal award!

[![](https://steemitimages.com/70x70/http://steemitboard.com/@pasmat/birthday1.png)](http://steemitboard.com/@pasmat)  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 - Round of 16 - Day 4](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-round-of-16-day-4)

---
**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-pasmat-20180704t025256000z
categorychaincoin
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-07-04 02:52:54
last_update2018-07-04 02:52:54
depth1
children0
last_payout2018-07-11 02:52:54
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,152
author_reputation38,975,615,169,260
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,324,320
net_rshares0
@steemitboard ·
Congratulations @pasmat! You received a personal award!

<table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@pasmat/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/@pasmat) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=pasmat)_</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-pasmat-20190704t000539000z
categorychaincoin
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-07-04 00:05:39
last_update2019-07-04 00:05:39
depth1
children0
last_payout2019-07-11 00:05: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_length612
author_reputation38,975,615,169,260
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,758,637
net_rshares0
@tuxic ·
Great tutorial! thanks for the effort.
👍  
properties (23)
authortuxic
permlinkre-pasmat-how-to-setup-chaincoin-masternode-on-a-digitalocean-vps-20170715t143203655z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-07-15 14:32:03
last_update2017-07-15 14:32:03
depth1
children0
last_payout2017-07-22 14:32:03
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_length38
author_reputation1,592,509,906
root_title"How to setup ChainCoin masternode on a DigitalOcean VPS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,573,877
net_rshares1,137,471,466
author_curate_reward""
vote details (1)