create account

Universal tutorial to install a masternode and a coldwallet for keeping your funds private by cyberdyn

View this thread on: hive.blogpeakd.comecency.com
· @cyberdyn ·
$30.24
Universal tutorial to install a masternode and a coldwallet for keeping your funds private
![masternodes1.jpeg](https://files.steempeak.com/file/steempeak/cyberdyn/XuJT2Euv-masternodes1.jpeg)
### **Preword**

Generally are the most e wallets based on the same QT- platform, and have only individual designed interfaces. You can easily proof if your wallet is compatible, with these instructions, when you take a look in your wallet in the upper right at the „Help“ Section. There you`ll find information to the yourcoin.core version and QT version. If you find that, you should be safe with these instructions. 

	Please insert the correct values for your setup, in therefore named fields (ex: yourcoin, xx.xx.xx.xx, xxxx)

# **Setting up Masternodes**

Getting a masternode started and earning money with it, requires a basic understanding of Linux and blockchain technology, as well as an ability to follow these instructions closely. Linux is the best choice for masternodes for security reasons, but harder to administrate as Windows. If you have problems, you will see that "the devil  sticks in the details"! Try to find tutorials! The official Keywords to search, do you find all over this tutorial. Additionally you can find help in the community, of your chosen cryptocurrency. They have chatrooms on discord or telegram, their links you find on the main website of your chosen cryptocurrency. 

##### There is nothing magical, it is as simple as that!

### **Before you begin**

We assume, that you start up a masternode for the first time. You need following things to do:

    1. Collateral of that cryptocurrency you decided to participate with. This amount and additional conditions differs for every cryptocurrency and can be found fast over internet.  

                  For example: [Masternode Corner](http://bit.ly/2RPAnRe)

																                   2. A local wallet (Windows, Linux, Mac) from the cryptocurrency you want to work with. There you store the collateral for the masternode. Before you begin to transact something, make sure that the your wallets involved are completly synced, otherwise you can break your local blockchain!

	3. An Ubuntu server (Ubuntu Server 18.04), or, preferably a Virtual Private Server (VPS) with minimum 2GB memory (RAM or RAM+Swap)
            
	Make sure you updated the server with:

			**sudo apt update && sudo apt upgrade**

    4. Public IP address of Ubuntu server or VPS system

    5. An open port xxxx to your Server or VPS. Mostly found on yourcoin github page or you google it with „Coinname ports“  

Remember to buy a few more coins than the collateral amount, for upcoming transaction fees and optional, additional costs!


By working on this guide, you will be working in your local wallet on your local computer. Also you will be working on the remote system. Therefore we name the differnt machines:

          Local wallet: For your local machine

          Remote wallet: For a remote system on your Ubuntu Server or VPS

Please follow the steps below in order, if you don`t know yet, what you are doing.
Where do I’ll find the files that we will editing?

This depends on the way of installation. You`ll need to find the basic installation directory. On Linux mostly in the home directory, invisible for basic shell. Try in the users home, 

                cd .yourcoin 

In this installation directory, you will find the all files and .conf, that matter for your masternode setup. So let`s go!

### We start with the local wallet configuration…

##### Step 1: Turn off zeromint in your local wallet

         1. Shutdown your wallet

         2. Go to „yourcoin“ directory and edit yourcoin.conf

         3. Add the following lines, save the file and start your local wallet
            again

               enablezeromint=0

               zeromintpercentage=0

##### **Step 2:** Generate a masternode key on your local wallet

         1. Open the debug console in your local wallet (Tools > Debug console)

         2. Type the following command (this generates the masternode privatekey,
            which we’ll need later in the setup)

               masternode genkey

Write the response down somewhere safe. (Make a Textfile were you store all needed values!)

##### **Step 3:** Additional generate a accountaddress on your local wallet

         1. Open the debug console (Tools > Debug console)

         2. Type the following command:

               getaccountaddress YourMasternodeName (e.g. MN01)

**Write the response down somewhere safe.**

##### **Step 4:** Send collateral to the new accountaddress on your local wallet

Still on the local wallet, send the exact amount of collateral coins (Important!) to the accountaddress we just created. You´ll have to wait some confirmations for this transaction, to get allowed to start the masternode. The number of confirmation depends on the coin. But you can feel safe mostly with 20> confirmations. You’ll find those infos in the masternode section of yourcoin website or github. 

##### **Step 5:** Confirm the masternode outputs in your local wallet

         1. Open the debug console (Tools > Debug console)

         2. Type the following command (This gets the proof of transaction of 
            sending the collatoral to the new accountadress)

               masternode outputs

Copy the response down somewhere safe.

##### **Step 6:** Configure the masternode.conf on your local wallet

         1. Shutdown your wallet

         2. Go to your data directory and add the following line to masternode.conf
            in your local wallet

	<Name of your masternode> <IP address of your remote wallet>:55002 <The privkey from Step 2> <The txhash from Step 5> <The outputidx from Step 5>

Set up your own values and always without the “<>”. 

**Tip: Remember that if you see # in the beginning of the line, means that the following option will not be set.**

After modifying the configuration file, save it. And you are able to start and use your local wallet normally.

Example: **masternode.conf**

	MN 139.14.135.195:55002 7gb6HNz8gRwVwKZLMGQ6XEaLjzPoxUNK4ui3Pig6mXA6RZ8xhsn 49012766543cac37369cf3813d6216bdddc1b9a8ed03ac690221be10aa5edd6c 1

Now we begin working on the remote system.

##### **Step 7:** Install your remote wallet

Depending on your coin, there a several method to install the masternode.

You need a linux distribution according to the wallet, you have already installed on the local machine. Some coins have also masternode setup scripts, that ask you for needed values. Mainly the IP-Adresse of the server, the masternode runs on, the port you have investigated and the masternode private key are important. If possible, then install the bootstrap of the blockchain for faster installation.


Before you start the installation, make a new user that runs masternode.

	sudo adduser youruser                      add your new user
	
	sudo adduser youruser sudo                 and give him superuser

	sudo passwd youruser                       and a password


After installation, start the server with: 
	
	sudo yourcoind –daemon

and let it synchronize the blockchain. 

You can see the progress with:

	 yourcoin-cli getinfo

and stop the masternode with:

	yourcoin-cli stop
 	
If that doesn't work for you, try:

	 ./yourcoin-cli xxxx

Wait for full synchronization then stop the server and go on with next step.

##### **Step 8:** Configure the masternode in your remote wallet

         1. Edit „yourcoin.conf“ in the your data dir, on your remote wallet:

               nano ~/.yourcoin/yourcoin.conf

         2. There should be now a automatic added rpcuser and rpcpassword in the .conf file. 

**This user will be generated, when masternode starts for the first time.**
**Please write it down, we have to add it to our local wallet configuration!**

Otherwise you have to install the wallet completly again!

         3. Add the following lines (Example configuration remote wallet 
            yourcoin.conf):

            rpcuser=encryptedusernameautomaticlyinstalled

            rpcpasswd=encryptedlongerpasswordcopybothtolocalwallet

            rpcallowip=127.0.0.1

            listen=0

            server=1

            daemon=1

            logtimestamps=1

            maxconnections=256

            masternode=1

            externalip=xx.xx.xx.xx #(The public IP of your remote wallet)

            bind=xx.xx.xx.xx       #(The public IP of your remote wallet)

            masternodeaddr=xx.xx.xx.xx:xxxx #(Public IP remote wallet:Port)

            masternodeprivkey= #(The masternode private key from local wallet)

Make sure you copied rpcuser and rpcpassword to a textfile.

##### **Step 9:** Copy RPC credentials to the local wallet

          1. Edit „yourcoin.conf“ on your local wallet:

                   nano ~/.yourcoin/yourcoin.conf

          2. Replace existing RPC credentials with the copied automatic generated
             values from the remote wallet


**Example configuration yourcoin.conf on local wallet (Remember! Use only the automatic encrypted RPC credentials from remote wallet!)**

           rpcuser=encryptedusernamefromremotewallet

           rpcpasswd=encryptedlongerpasswordfromremotewallet

           rpcallowip=127.0.0.1

           rpcallowip=xx.xx.xx.xx

           rpcport=xxxx

           listen=0

           server=1

           daemon=1

That was the configuration part. Now comes the fun part!

##### **Step 10:** Starting the masternode

It is important you follow the steps in the exact order.

        1. Start the local wallet

        2. Start the remote wallet as the new user with command 

                  sudo yourcoind -daemon

        3. Type the following command in the local wallet debug console:

                 startmasternode alias false  Masternode1

The following should appear:

          {

          “overall” : “Successfully started 1 masternodes, failed to start 0, 
	      total 1”,

          “detail” : [

          {

          “alias” : “Masternode1”,

          “result” : “successful”,

          “error” : “”

          }

        4. Start the masternode on your remote wallet:

        5. Login as new user and type

                  ./yourcoin && ./yourcoin-cli startmasternode local false 

           A message “masternode successfully started” should appear

        6. Use the following command on your remote wallet to check status:

                  ./yourcoin-cli masternode status

You should see something like:

         {

         “txhash” :    “55012766543cac37369cf3813d6216bdddc1b9a8ed03ac690221be10aa5
	      edd6d”,

         “outputidx” : 1,

         “netaddr” : “52.57.41.57:55050”,

         “addr” : “WXDiFihvtMq6v8B4wVu8btnGwEdyAGLnTP”,

         “status” : 4,

         “message” : “Masternode successfully started”

         }

**Congratulations! You have successfully created your new masternode!**

Now the masternode setup is complete, you are safe to remove “enablezeromint=0” from the yourcoin.conf file on your local wallet.

**Don`t forget to take your user from superusergroup to prevent hacking surface!** **Execute comand on your remote machine as Superuser or root**

          sudo deluser youruser sudo

### Stop running the masternode and get out collateral

##### **Step 1:** Stop the masternode on your remote wallet

         ./yourcoin-cli stop

##### **Step 2:** Remove the masternode configuration from your local wallet

         1. Shutdown your wallet

         2. Go to your data directory and remove the line that was created in 
            Step 6 from your masternode.conf

         3. Start your wallet again

         4. Your collateral will now be unlocked

![masternodes_crypto.jpeg](https://files.steempeak.com/file/steempeak/cyberdyn/ITLhKnUy-masternodes_crypto.jpeg)

Special greetings and thanks to @joeparys @abit @beerbot @bjornb @blockbrothers @c0ff33a @cryptohazard @cryptopassion @dmitrydao @dreamies @emrebeyler @firepower @firepower @helo @justyy @kevinwong @menkarbit @pcste @petertag @poetsunited60 @puncakbukit @steemgigs @steemhq.witness @steemitboard @steemitportugal @stoodkev @thekitchenfairy @threebirds @whiterosecoffee

</center>https://i.imgur.com/08PSZsM.png<center><a href='https://twitter.com/smartworldsec/'><img src='http://pbs.twimg.com/profile_images/1124015795732996102/VEWB1tlX_normal.png'>
Smart World Security</a></center>
<center><sup>Follow us on <a href='https://twitter.com/smartworldsec'>Twitter</a><br>Visit us on <a href='https://share2steem.io/?ref=cyberdyn'>Medium</a><br>Support our activities and donate on <a href='https://steemit.com/@cyberdyn'>Steem</a></sup></center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 23 others
properties (23)
authorcyberdyn
permlinkuniversal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private
categoryblockchain
json_metadata{"app":"steempeak/1.9.9","format":"markdown","tags":["blockchain","cryptocurrency","crypto","cryptoexchange","blog"],"users":["joeparys","abit","beerbot","bjornb","blockbrothers","c0ff33a","cryptohazard","cryptopassion","dmitrydao","dreamies","emrebeyler","firepower","helo","justyy","kevinwong","menkarbit","pcste","petertag","poetsunited60","puncakbukit","steemgigs","steemhq.witness","steemitboard","steemitportugal","stoodkev","thekitchenfairy","threebirds","whiterosecoffee","cyberdyn"],"links":["/@joeparys","/@abit","/@beerbot","/@bjornb","/@blockbrothers","/@c0ff33a","/@cryptohazard","/@cryptopassion","/@dmitrydao","/@dreamies"],"image":["https://files.steempeak.com/file/steempeak/cyberdyn/XuJT2Euv-masternodes1.jpeg","https://files.steempeak.com/file/steempeak/cyberdyn/ITLhKnUy-masternodes_crypto.jpeg","https://i.imgur.com/08PSZsM.png","http://pbs.twimg.com/profile_images/1124015795732996102/VEWB1tlX_normal.png"]}
created2019-05-18 23:19:00
last_update2019-05-18 23:19:00
depth0
children16
last_payout2019-05-25 23:19:00
cashout_time1969-12-31 23:59:59
total_payout_value22.766 HBD
curator_payout_value7.479 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12,584
author_reputation9,365,757,489,114
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,103,307
net_rshares53,673,618,448,059
author_curate_reward""
vote details (87)
@bdvoter ·
You got a 20.18% upvote from @bdvoter courtesy of @cyberdyn!

**Delegate your SP to us at @bdvoter and earn daily 100% profit share for your delegation & rewards will be distributed automatically daily.**

[500 SP](https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdvoter&vesting_shares=500%20SP), [1000 SP](https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdvoter&vesting_shares=1000%20SP), [2500 SP](https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdvoter&vesting_shares=2500%20SP), [5000 SP](https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdvoter&vesting_shares=5000%20SP), [10000 SP](https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdvoter&vesting_shares=10000%20SP).

If you are from Bangladesh and looking for community support, Join [BDCommunity Discord Server](https://discord.gg/yEPcKTq) & If you want to support our service, please set your witness proxy to [BDCommunity](https://steemconnect.com/sign/account-witness-proxy?proxy=bdcommunity).
👎  
properties (23)
authorbdvoter
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190521t124715013z
categoryblockchain
json_metadata""
created2019-05-21 12:47:15
last_update2019-05-21 12:47:15
depth1
children0
last_payout2019-05-28 12:47:15
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,043
author_reputation7,105,772,904,261
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout100,000.000 HBD
percent_hbd0
post_id85,242,699
net_rshares-10,588,368,956
author_curate_reward""
vote details (1)
@boomerang ·
This post has received a 5.6 % upvote from @boomerang.
properties (22)
authorboomerang
permlinkre-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t005124
categoryblockchain
json_metadata""
created2019-05-19 00:51:24
last_update2019-05-19 00:51:24
depth1
children0
last_payout2019-05-26 00:51: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_length54
author_reputation1,273,205,827,891
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,105,830
net_rshares0
@edensgarden ·
re-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t015300103z
Thanks for using @edensgarden!
properties (22)
authoredensgarden
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t015300103z
categoryblockchain
json_metadata{"app":"postpromoter/2.1.1"}
created2019-05-19 01:53:00
last_update2019-05-19 01:53:00
depth1
children0
last_payout2019-05-26 01:53: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_length31
author_reputation-100,797,867,719
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,107,811
net_rshares0
@emperorofnaps ·
re-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t015449648z
You got a 50.00% upvote from @emperorofnaps courtesy of @cyberdyn!

Want to promote your posts too? Send 0.05+ SBD or STEEM to @emperorofnaps to receive a share of a full upvote every 2.4 hours...Then go relax and take a nap!
properties (22)
authoremperorofnaps
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t015449648z
categoryblockchain
json_metadata{"app":"postpromoter/2.1.0"}
created2019-05-19 01:54:48
last_update2019-05-19 01:54:48
depth1
children0
last_payout2019-05-26 01:54: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_length226
author_reputation-5,364,516,344
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,107,895
net_rshares0
@honestbot ·
re-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t021900049z
You just received a 18.18% upvote from @honestbot, courtesy of @cyberdyn!
![WaveSmall.gif](https://steemitimages.com/DQmaHNChXJe14nWPwWdsrXEG2M3jSBRpDpF4cwq1ERhS3d4/WaveSmall.gif)
properties (22)
authorhonestbot
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t021900049z
categoryblockchain
json_metadata{"app":"postpromoter/1.8.6"}
created2019-05-19 02:19:00
last_update2019-05-19 02:19:00
depth1
children0
last_payout2019-05-26 02:19: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_length180
author_reputation-221,272,054,453
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,108,819
net_rshares0
@joeparys ·
re-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t004312143z
You got a 82.56% upvote from @joeparys! Thank you for your support of our services. To continue your support, please follow and delegate Steem power to @joeparys for daily steem and steem dollar payouts!
👎  
properties (23)
authorjoeparys
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t004312143z
categoryblockchain
json_metadata{"app":"postpromoter/2.1.1"}
created2019-05-19 00:43:12
last_update2019-05-19 00:43:12
depth1
children0
last_payout2019-05-26 00:43: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_length204
author_reputation308,108,697,833,606
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,105,650
net_rshares-10,521,292,840
author_curate_reward""
vote details (1)
@lovejuice ·
re-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t004553124z
This post has received a 29.44% upvote from @lovejuice thanks to @cyberdyn. They love you, so does Aggroed. Please be sure to vote for Witnesses at https://steemit.com/~witnesses.
👎  
properties (23)
authorlovejuice
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t004553124z
categoryblockchain
json_metadata{"app":"postpromoter/1.7.4"}
created2019-05-19 00:45:54
last_update2019-05-19 00:45:54
depth1
children0
last_payout2019-05-26 00:45: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_length179
author_reputation10,538,740,461,622
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,105,710
net_rshares-10,522,172,092
author_curate_reward""
vote details (1)
@luckyvotes ·
re-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t030412765z
You got a 5.28% upvote from @luckyvotes courtesy of @cyberdyn!
properties (22)
authorluckyvotes
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t030412765z
categoryblockchain
json_metadata{"app":"postpromoter/2.1.2"}
created2019-05-19 03:04:12
last_update2019-05-19 03:04:12
depth1
children0
last_payout2019-05-26 03:04: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_length63
author_reputation29,364,484,293
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,110,038
net_rshares0
@msp-bidbot ·
re-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190518t235432166z
This post has received a 100.00% upvote from @msp-bidbot thanks to: @cyberdyn. Delegate SP to this public bot and get paid daily: [50SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=msp-bidbot&amp;vesting_shares=102530.111111%20VESTS), [100SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=msp-bidbot&amp;vesting_shares=205244.111111%20VESTS), [250SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=msp-bidbot&amp;vesting_shares=515000.000000%20VESTS), [500SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=msp-bidbot&amp;vesting_shares=1029244.000000%20VESTS), [1000SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=msp-bidbot&amp;vesting_shares=2059244.000000%20VESTS), [5000SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=msp-bidbot&amp;vesting_shares=10289244.000000%20VESTS) Don't delegate so much that you have less than 50SP left on your account.
👎  
properties (23)
authormsp-bidbot
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190518t235432166z
categoryblockchain
json_metadata{"app":"postpromoter/2.0.2"}
created2019-05-18 23:54:33
last_update2019-05-18 23:54:33
depth1
children0
last_payout2019-05-25 23:54: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_length1,059
author_reputation-19,831,641,978
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,104,119
net_rshares-10,522,172,092
author_curate_reward""
vote details (1)
@onlyprofitbot ·
re-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t035931040z
<div class="pull-right"><img src="https://image.ibb.co/byjPSH/comment2.jpg"/></div>
<p>Thank you so much for using our service! You were protected from massive loss up to 20%</p>
<p>You just received 42.61% upvote from @onlyprofitbot courtesy of @cyberdyn!</p>
<div>Want to earn more with us? Our APR can reach as high as <div class="phishy">15% or more!</div></div>
<p><b>More portion of profit will be given to delegators, as the SP pool grows!</b></p>
<p></p>
<p>Comment below or any post with <b>"@opb !delegate [DelegationAmount]"</b> to find out about current APR, estimated daily earnings in SBD/STEEM</p>
<p>You can now also make bids by commenting <b>"@opb !vote post [BidAmount] [SBD|STEEM]"</b> on any post without the hassle of pasting url to memo!</p>
<sup>* Please note you do not have to key in [] for the command to work, APR can be affected by STEEM prices</sup>
👎  
properties (23)
authoronlyprofitbot
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t035931040z
categoryblockchain
json_metadata{"app":"onlyprofitbot/2.1.0"}
created2019-05-19 03:59:30
last_update2019-05-19 03:59:30
depth1
children0
last_payout2019-05-26 03:59: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_length879
author_reputation-747,406,299,627
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,111,736
net_rshares-10,521,620,188
author_curate_reward""
vote details (1)
@promobot ·
re-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t003341283z
@cyberdyn purchased a 6.13% vote from @promobot on this post.

*If you disagree with the reward or content of this post you can purchase a reversal of this vote by using our curation interface http://promovotes.com
properties (22)
authorpromobot
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t003341283z
categoryblockchain
json_metadata{"app":"postpromoter/2.0.0"}
created2019-05-19 00:33:42
last_update2019-05-19 00:33:42
depth1
children0
last_payout2019-05-26 00: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_length215
author_reputation9,020,628,089,607
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,105,449
net_rshares0
@redlambo ·
re-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t015050136z
You got a 43.48% upvote from @redlambo courtesy of @cyberdyn! Make sure to use tag #redlambo to be considered for the curation post!
properties (22)
authorredlambo
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t015050136z
categoryblockchain
json_metadata{"app":"postpromoter/1.9.2"}
created2019-05-19 01:50:51
last_update2019-05-19 01:50:51
depth1
children0
last_payout2019-05-26 01:50: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_length133
author_reputation123,143,757,359
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,107,731
net_rshares0
@spydo ·
re-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t001514007z
You got a 54.91% upvote from @spydo courtesy of @cyberdyn! We offer 100% Payout and Curation.
properties (22)
authorspydo
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t001514007z
categoryblockchain
json_metadata{"app":"postpromoter/2.1.1"}
created2019-05-19 00:15:15
last_update2019-05-19 00:15:15
depth1
children0
last_payout2019-05-26 00:15:15
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_length94
author_reputation5,236,724,209,210
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,104,925
net_rshares0
@tts ·
To listen to the audio version of this article click on the play image.
[![](https://s18.postimg.org/51o0kpijd/play200x46.png)](http://ec2-52-72-169-104.compute-1.amazonaws.com/cyberdyn__universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private.mp3)
Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
properties (22)
authortts
permlinkre-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t002216
categoryblockchain
json_metadata""
created2019-05-19 00:22:18
last_update2019-05-19 00:22:18
depth1
children0
last_payout2019-05-26 00:22: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_length410
author_reputation-4,535,154,553,995
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,105,092
net_rshares0
@upyourpost ·
re-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t021215871z
You got a 100.00% upvote from @upyourpost courtesy of @cyberdyn!
properties (22)
authorupyourpost
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t021215871z
categoryblockchain
json_metadata{"app":"postpromoter/2.1.1"}
created2019-05-19 02:12:18
last_update2019-05-19 02:12:18
depth1
children0
last_payout2019-05-26 02:12: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_length65
author_reputation68,849,949,985
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,108,616
net_rshares0
@whalecreator ·
re-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t023652113z
You got a 31.55% upvote from @whalecreator courtesy of @cyberdyn! Delegate your Steem Power to earn 100% payouts.
👎  
properties (23)
authorwhalecreator
permlinkre-cyberdyn-universal-tutorial-to-install-a-masternode-and-a-coldwallet-for-keeping-your-funds-private-20190519t023652113z
categoryblockchain
json_metadata{"app":"postpromoter/1.9.3"}
created2019-05-19 02:36:51
last_update2019-05-19 02:36:51
depth1
children0
last_payout2019-05-26 02:36: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_length114
author_reputation-582,393,550,059
root_title"Universal tutorial to install a masternode and a coldwallet for keeping your funds private"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,109,132
net_rshares-10,522,172,092
author_curate_reward""
vote details (1)