Advertisement
Guest User

IMineBlocks Grin Node & Wallet Install Guide

a guest
Jan 16th, 2019
6,173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. IMineBlocks Grin Node & Wallet Install Guide
  2.  
  3. # Installing the GRIN Node
  4.  
  5. # Open A New Terminal Ctrl + Alt + T
  6.  
  7. $ sudo apt install cargo curl build-essential cmake git libgit2-dev clang libncurses5-dev libncursesw5-dev zlib1g-dev pkg-config libssl-dev llvm
  8.  
  9. # Install RUST
  10.  
  11. $ curl https://sh.rustup.rs -sSf | sh; source $HOME/.cargo/env
  12. # sudo apt remove rustc
  13.  
  14. # Build Grin Node
  15.  
  16. $ git clone https://github.com/mimblewimble/grin.git
  17. $ cd grin
  18. $ cargo build --release
  19. $ target/release/grin
  20.  
  21. # Build Wallet713
  22.  
  23. # Open A New Terminal Ctrl + Alt + T
  24.  
  25. $ git clone https://github.com/vault713/wallet713
  26. $ cd wallet713
  27. $ source $HOME/.cargo/env
  28. $ cargo build --release
  29. $ cd target/release
  30. $ ./wallet713
  31.  
  32. # Wallet Usage
  33.  
  34. $ init
  35. #$ init -p yourpasswordhere
  36. #$ unlock -p yourpasswordhere
  37. $ info
  38. $ listen
  39. $ send 10 --to gVw4Q7VLC3XpvS2MX2E2A9HXfjxq3ByZFTEXjbSBAJXnnWJsJkb5
  40.  
  41. To receive grins you simply keep wallet713 running and transactions are processed automatically. Any transactions received while being offline are fetched once you initiate listen.
  42.  
  43. # Create New Address
  44.  
  45. $ stop
  46. $ config -g
  47. #$ config -g -i 10
  48. $ listen
  49.  
  50. # Send Payment By File
  51.  
  52. $ send 10 --file ~/path/to/transaction.tx
  53. $ receive --file ~/path/to/transaction.tx
  54. $ finalize --file ~/path/to/transaction.tx.response
  55.  
  56. $ exit
  57.  
  58. IMineBlocks Tips Welcome :)
  59.  
  60. grinbox://gVw4Q7VLC3XpvS2MX2E2A9HXfjxq3ByZFTEXjbSBAJXnnWJsJkb5
  61. gVw4Q7VLC3XpvS2MX2E2A9HXfjxq3ByZFTEXjbSBAJXnnWJsJkb5q
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement