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
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
, andxargs
for a bash one-liner example:sha256sum {FILETOSUM} | head -n1 | awk '{print $1;}' | xargs -I {} ./bin/run notarize {} -w wallet.json -i o -t