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
— requiredstring
message to sign in hexadecimal formatmessageType
— optionalstring
type of message signing algorithm (default: "alephium")
Example
// Original message
const message = "Hello Alephium";
// Convert to hex
const messageHex = Buffer.from(message).toString('hex');
const response = await HardwareSDK.alephiumSignMessage(connectId, deviceId, {
path: "m/44'/1234'/0'/0/0",
messageHex,
messageType: "alephium"
});
Result
{
success: true,
payload: {
signature: string;
address: string;
}
}
Error
{
success: false,
payload: {
error: string, // error message
code: number // error code
}
}
Last updated
Was this helpful?