tonSignProof
Use requirement
- Firmware version required
- UKey Lite 24 / UKey Lite 25 / UKey Core 26: 4.10.0
TON: sign proof
Sign a proof message for dApp authentication using the private key derived by given BIP32 path. User needs to confirm the action on Ukey Wallet device.
const result = await HardwareSDK.tonSignProof(connectId, deviceId, {
path: "m/44'/607'/0'",
appdomain: "ukey.com",
comment: "48656c6c6f204f6e654b6579",
expireAt: Date.now() + 1000 * 60 * 60 * 24,
walletVersion: "V4R2",
isBounceable: false,
isTestnetOnly: false,
});
Params
path- requiredstring | Array<number>minimum length is 3appdomain- requiredstringdomain of the dApp requesting the proofcomment- optionalstringmessage comment in hex formatexpireAt- requirednumberproof expiration timestampwalletVersion- optionalTonWalletVersionTON wallet version (default: 3)walletId- optionalnumberwallet ID (default: 698983191)workchain- optionalTonWorkChainTON workchain (0: BaseChain, 1: MasterChain)isBounceable- optionalbooleanwhether message is bounceable (default: false)isTestnetOnly- optionalbooleanwhether to use testnet (default: false)
Returns
Response
signature- proof signature in hex format
Example
const response = await HardwareSDK.tonSignProof(connectId, deviceId, {
path: "m/44'/607'/0'",
appdomain: "ukey.com",
comment: "48656c6c6f204f6e654b6579",
expireAt: Date.now() + 1000 * 60 * 60 * 24,
walletVersion: 3,
isBounceable: false,
isTestnetOnly: false,
});
Result
{
success: true,
payload: {
signature: string;
}
}
Error
{
success: false,
payload: {
error: string, // error message
code: number // error code
}
}