theQRL / qrl-cli

7 stars 10 forks source link

feat: Adding notarization command & node connection retry on connection failure #62

Closed fr1t2 closed 2 years ago

fr1t2 commented 2 years ago

Adding notarization allowing any sha256 hash to be send on-chain using the notarization message format standard AFAF2 encoding. Example: qrl-cli notarize {DATAHASH} -i {OTS_INDEX} -w {WALLET_FILE}

Data must be hashed outside of the qrl-cli with the sha256sum provided to the command. Using sha256sum, head, awk, and xargs for a bash one-liner example: sha256sum {FILETOSUM} | head -n1 | awk '{print $1;}' | xargs -I {} ./bin/run notarize {} -w wallet.json -i o -t

jplomas commented 2 years ago

:tada: This PR is included in version 1.9.0 :tada:

The release is available on GitHub release

Your semantic-release bot :package::rocket: