Advertisement
Guest User

Aeriscoin Masternode GUIDE

a guest
Aug 30th, 2018
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. 1.- On your wallet generate a Receiving Address: File -> Receiving Addresses
  2. 2.- Send to this address 5000 ARS exactly.
  3. 3.- Wait until this transaction reaches 20 confirmations.
  4. 4.- Open the debug console: Tools -> Debug console and type “masternode genkey" and save the output
  5. 5.- Also on the debug console type “masternode outputs” and save the output. The format for this is [TXID] : [INDEX]
  6. 6.- Go to Tools -> Open Masternode Configuration File and type this line, replacing the text between [] with your own information.
  7. MN1 [VPS IP ADDRESS]:23100 [GENKEY OUTPUT] [TXID] [INDEX]
  8.  
  9. For example
  10.  
  11. MN1 95.179.134.212:23100 3ee6B7zw5GDMPfi6FCKHF14d9yGt5KJtnfUQuCgmj2jZBLbNQSd bd4ca67330ea41c972ac17b2cd788d10db7a7cc057c4150e0e874e0a276d638c 0
  12.  
  13. 7.- Save and restart your wallet.
  14. 8.- Access your VPS as the root and download the Aeriscoin wallet with this command
  15. wget https://github.com/aeriscoin/aeriscoin/releases/download/v0.15.1/aeriscoin-0.15.1-x86_64-linux-gnu.tar.gz
  16. 9.- Decompress the wallet with “tar -xvzf aeriscoin-0.15.1-x86_64-linux-gnu.tar.gz”
  17. 10.- Copy binaries into system bin folder
  18. cp aeriscoin-0.15.0/bin/* /usr/local/bin/
  19. 11- Create masternode configuracion file, make sure you are at the root folder (type “cd” and press enter), with this two commands
  20. mkdir .aeriscoincore
  21. nano .aeriscoincore/aeriscoin.conf
  22. 12.- Paste this example configuration
  23.  
  24. rpcuser=[RANDOMUSER]
  25. rpcpassword=[RANDOMPASSWORD]
  26. rpcallowip=127.0.0.1
  27. ####################
  28. listen=1
  29. server=1
  30. daemon=1
  31. maxconnections=256
  32. ####################
  33. masternode=1
  34. masternodeprivkey=[GENKEY OUTPUT]
  35. externalip=[VPS IP ADDRESS]
  36.  
  37. Replace text between [] with your own information. Save and exit typing Ctrl + X, then Y and Enter.
  38.  
  39. 13.- Start aeriscoin service with “aeriscoind -daemon” and wait until it syncs, about 30 minutes.
  40. 14.- Go back to your PC wallet and on the Masternode Tab -> My Masternodes and click START ALL
  41. 15.- Wait until it becomes ENABLED and after that you will start receiving payments :)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement