πββοΈDemonstrate ownership of a tz address (DEPRECATED)
Option 1:
Option 2:
Choosing the data to sign
Converting the data to hexadecimal for the tezos-client
#!/bin/bash
echo '0x'"`echo $1 | hexdump -vC | awk 'BEGIN {IFS="\t"} {$1=""; print }' | awk '{sub(/\|.*/,"")}1' | tr -d '\n' | tr -d ' '`" | rev | cut -c 3- | revSigning the data with the tezos-client
Verifying the signature
Finding the public key


Importing owner's public key in the client
Verifying the signature
Last updated
Was this helpful?