Sui SDK v2
ParaSuiSigner.sign
Signs raw bytes with the selected Para Sui wallet.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Signs raw bytes with the selected Para Sui wallet.
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;
const signature = await signer.sign(new TextEncoder().encode('Hello from Para'));