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

Optional common params

  • path - required string | Array<number> minimum length is 3

  • messageHex - required string message to sign in hexadecimal format

  • messageType - optional string type of message signing algorithm (default: "alephium")

Example

Result

Error

Last updated

Was this helpful?