Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Setup peerplays command line tool:

    Code Block
    pip3 install peerplays
    # or
    # pip3 install peerplays --upgrade
    


  2. Define the API endpoint to talk to (the default one will not work for you)

    Code Block
    peerplays set node wss://YOUR-API-ENDPOINT


  3. Add your private memo key

    Code Block
    peerplays addkey
    # provide new local wallet passphrase (twice)
    # provide wif keys that you want to use
    # e.g. memo key for signing, active key for funds related stuff

    Define the API endpoint to talk to (the default one will not work for you)

    Code Block
    peerplays set node wss://YOUR-API-ENDPOINT


  4. Sign message

    Code Block
    peerplays message sign --account <yourtaccountname>
    # provide message then CTRL-D


  5. Verify message

    Code Block
    peerplays message verify
    # provide message then CTRL-D


...