Sui SDK v2
ParaSuiSigner.signTransaction
Signs Sui transaction bytes and returns the serialized signature expected by the Sui SDK.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Signs Sui transaction bytes and returns the serialized signature expected by the Sui SDK.
import type { Para as ParaServer } from '@getpara/server-sdk';
import type { ParaSuiSigner } from '@getpara/sui-sdk-integration';
declare const para: ParaServer; // An authenticated Para Server client with a loaded Sui wallet.
declare const signer: ParaSuiSigner;
declare const transactionBytes: Uint8Array;
const signed = await signer.signTransaction(transactionBytes);