We are using tweetnacl for this particular example
tweetnacl
import nacl from "tweetnacl" const secretKey = "" const publicKey = "" // without prefix 0x const generatedMessage = await generateMessage() const message = `APTOS\nmessage: {generatedMessage.message}\nnonce: {generatedMessage.nonce}` const signature = nacl.sign.detached(Buffer.from(message), Buffer.from(message, 'hex'))
APTOS has a standard for signing message, there will be APTOS before message and nonce after message, nonce is provided by the generateMessage, use that as a nonce
APTOS
nonce
Last updated 1 year ago