alephiumSignMessage
Use requirement
Firmware version required
Touch: 4.10.0
Alephium: sign message
Sign a message using the private key derived by given BIP32 path. User needs to confirm the action on OneKey device.
// Original message
const message = "Hello Alephium";
// Convert to hex
const messageHex = Buffer.from(message).toString('hex');
const result = await HardwareSDK.alephiumSignMessage(connectId, deviceId, {
path: "m/44'/1234'/0'/0/0",
messageHex, // "Hello Alephium" in hex
messageType: "alephium"
});Params
path- requiredstring | Array<number>minimum length is 3messageHex- requiredstringmessage to sign in hexadecimal formatmessageType- optionalstringtype of message signing algorithm (default: "alephium")
Example
Result
Error
Last updated
Was this helpful?