btcSignMessage
Bitcoin: sign message
Asks device to sign a message using the private key derived by given BIP32 path.
const result = await HardwareSDK.btcSignMessage(connectId, deviceId, params);Params
path- requiredstring | Array<number>minimum length is3. read moremessageHex- requiredstringmessage from hexcoin- optionalstringDetermines network definition specified in coins.json file. Coinshortcut,nameorlabelcan be used. Ifcoinis not set API will try to get network definition frompath.noScriptType- optionalbooleanFor signatures without script types.
Example
HardwareSDK.btcSignMessage(connectId, deviceId, {
path: "m/44'/0'/0'",
messageHex: "6578616d706c65206d657373616765"
});Result
Error
Last updated
Was this helpful?