nostrDecryptMessage
Use requirement
Firmware version required
Touch: 4.6.0
Classic/Mini: 3.5.0
Classic1s: 3.6.0
Nostr: Decrypt Message
Asks device to decrypt message using the private key derived by given BIP32 path. User is asked to confirm all transaction details on OneKey.
const result = await HardwareSDK.nostrDecryptMessage(connectId, deviceId, params);
Params
path
— requiredstring | Array<number>
minimum length is3
. read morepubkey
— requiredstring
public key .ciphertext
— requiredstring
encrypted message.showOnOneKey
— optionalboolean
determines if address will be displayed on device. Default is set totrue
.
Examples
const response = await HardwareSDK.nostrDecryptMessage(
connectId,
deviceId,
{
path: "m/44'/1237'/0'/0/0",
pubkey: '2118c65161c7d68b4bdbe1374f658532670057ab1bb0c99937d0ff7cff45cb5e',
ciphertext: 'VpWFJ7JDFv16jL7pBZ1shw==?iv=$1tPpwGD3Ic1RTVXJx1ZG7Q==',
showOnOneKey: true,
}
);
Result
{
success: true,
payload: {
path: string;
pubkey: string;
ciphertext: string;
decryptedMessage: string;
}
}
Error
{
success: false,
payload: {
error: string, // error message
code: number // error code
}
}
Last updated
Was this helpful?