Advertisement
Guest User

waves-testnodes

a guest
Aug 18th, 2016
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. install waves testnode on ubuntu:
  2.  
  3. (each line is a command, instructions are inside [])
  4.  
  5. echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" | tee -a /etc/apt/sources.list
  6. echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" | tee -a /etc/apt/sources.list
  7. apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886
  8. apt-get update
  9. apt-get install oracle-java8-installer sudo wget unzip vim screen
  10. useradd -s /bin/bash -m -d /home/waves waves
  11. passwd waves
  12. usermod -aG sudo waves
  13. su - waves
  14. cd /home/waves/
  15. wget https://github.com/wavesplatform/Waves/releases/download/v0.2.2/waves-v0.2.2-testnet.zip
  16. unzip waves-v0.2.2-testnet.zip
  17. sudo dpkg -i waves_0.2.2_testnet.deb
  18. waves waves-testnet.json
  19. go to IP:6869/wallet/seed [copy seed]
  20. go to IP:6869/utils/hash/secure [paste api_key (just make a random string and remember it) and copy hash]
  21. CTRL+C to stop node on terminal
  22. Copy seed and api_hash in waves-testnet.json
  23. Edit waves-testnet.json [change walletSeed, apiKeyHash, change /tmp/ with /home/waves/]
  24. screen waves waves-testnet.json
  25. go to IP::6869/swagger#!/addresses/create [with correct api_key]
  26. go to http://testnet.wavesexplorer.com/faucet [get test coins]
  27.  
  28. done!
  29.  
  30. waves donation: 1W3PK2J5hCgAWR3D1accH4oRskroDJdU3bvdC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement