Advertisement
Guest User

Untitled

a guest
Jun 14th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. REQUIREMENTS:
  2.  
  3. 2500 SATC
  4. A single 24/7 running computer running Windows.
  5. Optional: A dynamic DNS program like NOIP
  6.  
  7.  
  8. IP needs to be the public IP address of your computer. If your IP changes, you might need to use a dynamic IP program like NOIP as stated above.
  9.  
  10.  
  11.  
  12. (Tutorial will use Windows as main wallet and masternode)
  13.  
  14.  
  15.  
  16. 1) Open the debug console and type the following command:
  17.  
  18.  
  19. masternode genkey
  20.  
  21.  
  22. (This will be the masternode's privkey. We'll use this later...)
  23.  
  24.  
  25.  
  26. 2) Next, enter the following command :
  27.  
  28.  
  29. getaccountaddress masternodename
  30.  
  31.  
  32. 3) Send 2500 SATC to the address. (Make sure this is 100% only 2500; No less, no more.)
  33.  
  34.  
  35.  
  36. 4) Next, enter the command into the console:
  37.  
  38.  
  39.  
  40.  
  41. masternode outputs
  42.  
  43. (This gets the proof of transaction of sending 2500)
  44.  
  45.  
  46.  
  47. 5) Go into the Satoshi data directory, by default in Windows it'll be %Appdata%/Satoshi. (Where is my Satoshi data directory)
  48.  
  49.  
  50. Find masternode.conf and add the following line to it:
  51.  
  52.  
  53.  
  54.  
  55. <Name of Masternode(Use the name you entered earlier for simplicity)> <IP address>:12453 <The result of Step 1> <Result of Step 4> <The number after the long line in Step 4>
  56.  
  57.  
  58.  
  59.  
  60. Example: MN1 31.14.135.27:12453 892WPpkqbr7sr6Si4fdsfssjjapuFzAXwETCrpPJubnrmU6aKzh c8f4965ea57a68d0e6dd384324dfd28cfbe0c801015b973e7331db8ce018716999 1
  61.  
  62.  
  63.  
  64. Substitute it with your own values and without the "<>"s
  65.  
  66.  
  67.  
  68. 6) Open the Satoshi.conf file (Find it or use the edit the config file in the Satoshi-qt client under "Tools"). Make it look like this:
  69.  
  70. rpcuser=long random username
  71. rpcpassword=longer random password
  72. rpcallowip=127.0.0.1
  73. listen=1
  74. server=1
  75. daemon=1
  76. logtimestamps=1
  77. maxconnections=256
  78. masternode=1
  79. externalip=your unique public ip address
  80. bind=your unique public ip address
  81. masternodeaddr=your unique public ip address
  82. masternodeprivkey=Result of Step 1
  83.  
  84.  
  85.  
  86. Make sure to replace rpcuser & rpcpassword with your own.
  87.  
  88.  
  89.  
  90. 8) Close and restart your wallet.
  91.  
  92.  
  93.  
  94. 9) Open the Debug Console and enter the following command:
  95.  
  96.  
  97.  
  98.  
  99. masternode start-alias <yourmasternodename_from_step_2>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement