create account

ChainCoin Remote Control MasterNode Setup Guide by redhill

View this thread on: hive.blogpeakd.comecency.com
· @redhill · (edited)
$0.25
ChainCoin Remote Control MasterNode Setup Guide
# ChainCoin Masternode Setup Guide <h1> 
![c-logo-2.png](https://steemitimages.com/DQmevsdBfVJf7nTEkycqo9p3H2aAE8duQdqQ1PJVTJDCRFm/c-logo-2.png)

This guide will show you how to convert your local wallet (Windows, but Mac is simalar) in to a remote controller for your VPS masternodes if you already have a masternode running on a VPS  with the 1000chc in it.
# Transferring Your CHC From the VPS To Your Local Waller on Your PC <h1> 
Log in into your VPS masternode with PuTTY (or any ssh program) stop the server typing `chaincoind stop` and set masternode=0 in the conf file in the .chaincoin directory so type `cd .chaincoin` then `nano chaincoin.conf`and set masternode=0 ctrl x to exit and y to save. Now you can send all your coins to your local wallet.

* `chaincoind sendtoaddress <YOURLOCALWALLETADDRESS> <AMOUNT>`

consider there is a small fee to transfer the coins it should be about 0.0003CHC

If you run into this problem, if not just ignore and go to the next step
> chaincoind sendtoaddress CY8A9opahc3MxxxxnAxnXFxxxF86UnQB 1000
error: {"code":-5,"message":"Invalid Chaincoin address"}

Make sure you have pulled the latest code from the github repository, this has been fixed.


# Setting up the Control Wallet <h1> 
If you already have a local wallet on your desktop  go to step 2
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 a receiving address, if you are setting up 2 masternode you would create 2 receiving addresses. Do this by going to (in your local wallet) **File -> Receiving Addresses  New** in the wallet Use a meanginful label name to identify your masternodes for example MN1, MN2.
And send to yorself, from the same wallet, 1000CHC to each new Receiving Address, like:
1000CHC to MN1
1000CHC to MN2
and so on to as many as masternode you have.

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 you 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.
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 <h1>
Please note where you set the default directory upon intial startup of the wallet.
Navigate to the chaincoin directory:
Default directory is: %AppData%\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*

<MASTERNODE_ALIAS> <SERVER_IP_ADDRESS>:11994 <MASTERNODE_PRIVATE_KEY> <TX_OUTPUT_ID> <TX_10K_OUTPUT_INDEX> 

You can easily get <TX_OUTPUT_ID> and <TX_10K_OUTPUT_INDEX> typing `masternode outputs` in your debug console from your local wallet in Windows
When you type `masternode outputs` you will see something like:
"1654654sdfds6f4sd6f1ds1f564dfd5s1fd4s5f4df132d1fs4df5fg4fd56fg456fdgf1" : "0",
"123qwertyuiop4314342dfghjk343f4hjk32432ghj4k2134gh1j24vjhkj234yo3oiir" : "0"
those are your: "<TX_OUTPUT_ID>" : "<TX_10K_OUTPUT_INDEX> "
each line is a potential masternode

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.

1. Setup the masternode.conf file we just created using the information above for each masternode. It should look like this:
![](https://steemitimages.com/DQmUvccPrGt9LzCRUoXsCGxvvxbJdSpcAp8cNtgGwsdQ8iB/image.png)
2. Remember the IP address will be the VPS IP address we setup below
Save the masternode.conf file and restart your wallet.
Every time you change chaincoin.conf or masternode.conf you need to restart the wallet for the changes to take effect.


Now tyiping `masternode list-conf`in debug console yous hould see something like:

> {
    "masternode" : {
        "alias" : "MN1",
        "address" : "IPMN1:11994",
        "privateKey" : "<MASTERNODE1_PRIVATE_KEY>",
        "txHash" : "<MN1TX_OUTPUT_ID>",
        "outputIndex" : "<MN1TX_10K_OUTPUT_INDEX>",
        "donationAddress" : "",
        "donationPercent" : ""
      > },
    "masternode" : {
        "alias" : "MN2",
        "address" : "IPMN2:11994",
        "privateKey" : "<MASTERNODE2_PRIVATE_KEY>",
        "txHash" : "<MN2TX_OUTPUT_ID>",
        "outputIndex" : "<MN2TX_10K_OUTPUT_INDEX>",
        "donationAddress" : "",
        "donationPercent" : ""
    }
}

If you dont see this check again steps on *"Setting up the masternode.conf File"*


# Changing chaincoin.conf on our Local Wallet (Windows) <h1>
1. Change your cahincoin.conf by going to **Tools -> Open Configuration File** and add the following:


> mnconflock=0


Save the chaincoin.conf file and restart your wallet.

# Changing chaincoin.conf on our VPS (Virtual Private Server) <h1>
Log in into your VPS masternode with PuTTY (or any ssh program)
1. Go to your .cahincoin directory `cd .chaincoin`
2. Stop your masternode if it's running `chaincoind masternode stop`
3. Stop chaincoin server `chaincoind stop`
3. Edit your chaincoin.conf file `nano chaincoin.conf`
your config file should look like the following:

> rpcuser=xxxx
rpcpassword=xxx
rpcallowip=127.0.0.1
listen=1
server=1
> daemon=1
logtimestamps=1
maxconnections=256
rpcport=11995
externalip=YOUR_MN_IP
bind=YOUR_MN_IP
masternode=1
masternodeprivkey=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
masternodeaddr=YOUR_MN_IP:11994

Choose username and password and replace xxxxxx, only letters and numbers, no symbols like £"$%&/
4. Run chaincoind type `chaoncoind`
5. Verify that is running and it's synced by typing `chaincoind getinfo`
you should get something like:

   > "version" : 90205,
    "protocolversion" : 70002,
    "walletversion" : 61000,
    "balance" : 0,
    "darksend_balance" : 0.00000000,
    "blocks" : 1195354,
    "timeoffset" : -1,
    "connections" : 8,
    "proxy" : "",
    "difficulty" : 433.30044681,
    "testnet" : false,
    "keypoololdest" : 1499604612,
    "keypoolsize" : 1001,
    "unlocked_until" : 0,
    "paytxfee" : 0.00000000,
    "relayfee" : 0.00001000,
    "errors" : ""

Note your balance on the VPS should be 0
and "blocks" as today 02/aug/2017 about 1195354

# Starting your new MasterNode <h1>
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”*

Now the last step is consider a small donation :) even 1CHC is appreciated. Thanks!
Cdx5Kv9XT7y5bQEhqQ9p3NnZYo1QeK42Ag

# Checking on your MasterNode <h1>
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 see how long your masternode has been active
`masternode list activeseconds YOURIP`
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 <h1>
Thanks to @usncrypto for providing some of the content to this guide:
https://steemit.com/@usncrypto![c-logo-2.png](https://steemitimages.com/DQmevsdBfVJf7nTEkycqo9p3H2aAE8duQdqQ1PJVTJDCRFm/c-logo-2.png)
👍  , , , , , , , , , , , , , , , ,
properties (23)
authorredhill
permlinkchaincoin-remote-control-masternode-setup-guide
categorychaincoin
json_metadata{"tags":["chaincoin","masternode","masternodesetup","guides"],"users":["usncrypto"],"image":["https://steemitimages.com/DQmevsdBfVJf7nTEkycqo9p3H2aAE8duQdqQ1PJVTJDCRFm/c-logo-2.png","https://steemitimages.com/DQmUvccPrGt9LzCRUoXsCGxvvxbJdSpcAp8cNtgGwsdQ8iB/image.png"],"links":["http://www.chaincoin.org/chaincoin-wallet/","https://github.com/chaincoin/chaincoin/blob/master/doc/masternode_conf.md","https://steemit.com/@usncrypto"],"app":"steemit/0.1","format":"markdown"}
created2017-08-02 12:05:48
last_update2017-08-08 12:44:18
depth0
children17
last_payout2017-08-09 12:05:48
cashout_time1969-12-31 23:59:59
total_payout_value0.206 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,659
author_reputation5,982,778,632
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,530,178
net_rshares61,685,623,045
author_curate_reward""
vote details (17)
@aluxcode ·
thanks
properties (22)
authoraluxcode
permlinkre-redhill-chaincoin-remote-control-masternode-setup-guide-20180404t001110471z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2018-04-04 00:11:18
last_update2018-04-04 00:11:18
depth1
children0
last_payout2018-04-11 00:11: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_length6
author_reputation22,723,382,714
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,203,828
net_rshares0
@gottahodl ·
Does the controller wallet need to be online 24x7?
👍  
properties (23)
authorgottahodl
permlinkre-redhill-chaincoin-remote-control-masternode-setup-guide-20170807t071532251z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-08-07 07:15:30
last_update2017-08-07 07:15:30
depth1
children1
last_payout2017-08-14 07:15: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_length50
author_reputation321,956,126
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,030,303
net_rshares2,295,463,201
author_curate_reward""
vote details (1)
@redhill ·
No, absolutely not. It's like a remote that you use to switch your masternodes on and off, once it's on you can shut down your wallet and your computer.
properties (22)
authorredhill
permlinkre-gottahodl-re-redhill-chaincoin-remote-control-masternode-setup-guide-20170808t085948510z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-08-08 08:59:51
last_update2017-08-08 08:59:51
depth2
children0
last_payout2017-08-15 08:59:51
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_length152
author_reputation5,982,778,632
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,149,293
net_rshares0
@olivers-wilde ·
Thank you so much, this is exactly what I was looking for!!  Question: when sending the coins from the masternode on the VPS to the local wallet, does it not have to be exactly 1000 coins again in order to maintain it as a masternode? (I have more now that it has been running a couple of weeks, but you stated to send "all the coins" to the local wallet). 
Thanks again!
Julie
👍  
properties (23)
authorolivers-wilde
permlinkre-redhill-chaincoin-remote-control-masternode-setup-guide-20170805t045146923z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-08-05 04:51:48
last_update2017-08-05 04:51:48
depth1
children2
last_payout2017-08-12 04:51: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_length377
author_reputation101,310,283,965
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,817,963
net_rshares0
author_curate_reward""
vote details (1)
@olivers-wilde ·
Well I did get as far as sending my 1016 coins from the remote masternode wallet to the local wallet, but now running into an error code about "unable to locate enough Darksend funds" when I attempt to send the 1000 chc to the newly created  masternode wallet ... Any insights on what the problem might be?
Thanks again:)
properties (22)
authorolivers-wilde
permlinkre-olivers-wilde-re-redhill-chaincoin-remote-control-masternode-setup-guide-20170805t055219913z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-08-05 05:52:21
last_update2017-08-05 05:52:21
depth2
children1
last_payout2017-08-12 05:52: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_length321
author_reputation101,310,283,965
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,821,571
net_rshares0
@redhill ·
When you are in the Send tab of your wallet, in the bottom right corner does you see your balance? If not go to Inputs on the same tab and select all the inputs apart from the 1000 inputs if you already have one.
properties (22)
authorredhill
permlinkre-olivers-wilde-re-olivers-wilde-re-redhill-chaincoin-remote-control-masternode-setup-guide-20170805t081203456z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-08-05 08:12:03
last_update2017-08-05 08:12:03
depth3
children0
last_payout2017-08-12 08:12: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_length212
author_reputation5,982,778,632
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,829,685
net_rshares0
@praju-starlet ·
$0.09
thanks for
👍  ,
👎  
properties (23)
authorpraju-starlet
permlinkre-redhill-201788t15236956z
categorychaincoin
json_metadata{"tags":"chaincoin","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-08 09:02:39
last_update2017-08-08 09:02:39
depth1
children1
last_payout2017-08-15 09:02:39
cashout_time1969-12-31 23:59:59
total_payout_value0.066 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.007 HBD
body_length10
author_reputation336,528,733,420
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,149,495
net_rshares24,434,686,325
author_curate_reward""
vote details (3)
@cornholio ·
You'll have to wait your turn, sir.
properties (22)
authorcornholio
permlinkre-praju-starlet-re-redhill-201788t15236956z-20170808t093828837z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"meep_bot/0.0.1"}
created2017-08-08 09:38:27
last_update2017-08-08 09:38:27
depth2
children0
last_payout2017-08-15 09:38:27
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_length36
author_reputation606,749,206,056
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,152,082
net_rshares0
@skycave ·
Thanks. It's good for me
properties (22)
authorskycave
permlinkre-redhill-chaincoin-remote-control-masternode-setup-guide-20180130t001135173z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2018-01-30 00:11:36
last_update2018-01-30 00:11:36
depth1
children0
last_payout2018-02-06 00:11: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_length24
author_reputation196,072,815
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,413,358
net_rshares0
@virtus ·
Thanks. It's good for me
I will use for this masternodes coin
ttps://masternodes.online/currencies/VRT/
properties (22)
authorvirtus
permlinkre-redhill-chaincoin-remote-control-masternode-setup-guide-20180319t063340100z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2018-03-19 06:33:42
last_update2018-03-19 06:33:42
depth1
children0
last_payout2018-03-26 06:33: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_length103
author_reputation68,212,640
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,281,078
net_rshares0
@wildjune ·
I'm trying to do the first step by transferring 1000chc from my vps to my local wallet but getting error (error: {"code":-4,"message":"Insufficient funds."}).  Can you help me
👍  
properties (23)
authorwildjune
permlinkre-redhill-chaincoin-remote-control-masternode-setup-guide-20170803t123057391z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-08-03 12:31:00
last_update2017-08-03 12:31:00
depth1
children4
last_payout2017-08-10 12:31: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_length175
author_reputation86,800,264
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,638,714
net_rshares2,215,121,988
author_curate_reward""
vote details (1)
@redhill ·
Consider transaction fee as specified in the guide
👍  
properties (23)
authorredhill
permlinkre-wildjune-re-redhill-chaincoin-remote-control-masternode-setup-guide-20170803t131523461z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-08-03 13:15:24
last_update2017-08-03 13:15:24
depth2
children3
last_payout2017-08-10 13:15: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_length50
author_reputation5,982,778,632
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,642,521
net_rshares2,169,212,724
author_curate_reward""
vote details (1)
@redhill ·
$0.84
If you still have problems try putting masternode=0 in the conf file before sending. 
To do so you have to chaincoind stop, modify conf file restart chaincoind --daemon and try to send again
👍  ,
properties (23)
authorredhill
permlinkre-redhill-re-wildjune-re-redhill-chaincoin-remote-control-masternode-setup-guide-20170804t081746801z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-08-04 08:17:48
last_update2017-08-04 08:17:48
depth3
children0
last_payout2017-08-11 08:17:48
cashout_time1969-12-31 23:59:59
total_payout_value0.632 HBD
curator_payout_value0.207 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length190
author_reputation5,982,778,632
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,727,286
net_rshares211,083,573,745
author_curate_reward""
vote details (2)
@wildjune ·
i tried sending 2 chc extra making it 1002 chc but still i cant transfer it. I run my masternode since last week and not yet receive any payout.
👍  
properties (23)
authorwildjune
permlinkre-redhill-re-wildjune-re-redhill-chaincoin-remote-control-masternode-setup-guide-20170803t150122214z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-08-03 15:01:27
last_update2017-08-03 15:01:27
depth3
children1
last_payout2017-08-10 15:01:27
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_length144
author_reputation86,800,264
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,652,393
net_rshares2,295,463,201
author_curate_reward""
vote details (1)
@xplicit ·
Thank you for taking the time to make this guide for our community. Much appreciated. Please don't forget to join the official slack of http://chaincoin.org if you haven't done so already. Here is their invite link: https://chainteam.herokuapp.com/
👍  
properties (23)
authorxplicit
permlinkre-redhill-chaincoin-remote-control-masternode-setup-guide-20170803t010436223z
categorychaincoin
json_metadata{"tags":["chaincoin"],"links":["http://chaincoin.org"],"app":"steemit/0.1"}
created2017-08-03 00:59:54
last_update2017-08-03 00:59:54
depth1
children1
last_payout2017-08-10 00:59: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_length248
author_reputation38,693,057,847
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,592,416
net_rshares2,249,553,936
author_curate_reward""
vote details (1)
@redhill ·
$0.05
Of ourse I'm already in the official slack group :)
👍  ,
properties (23)
authorredhill
permlinkre-xplicit-re-redhill-chaincoin-remote-control-masternode-setup-guide-20170803t093031733z
categorychaincoin
json_metadata{"tags":["chaincoin"],"app":"steemit/0.1"}
created2017-08-03 09:30:30
last_update2017-08-03 09:30:30
depth2
children0
last_payout2017-08-10 09:30:30
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation5,982,778,632
root_title"ChainCoin Remote Control MasterNode Setup Guide"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,623,095
net_rshares12,170,545,756
author_curate_reward""
vote details (2)