Sui SDK v2
createParaSuiMultiSigSigner
Creates a Sui multisig signer with one Para member.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Creates a Sui multisig signer with one Para member.
import type { Para as ParaServer } from '@getpara/server-sdk';
import { createParaSuiMultiSigSigner } from '@getpara/sui-sdk-integration';
declare const para: ParaServer; // An authenticated Para Server client with a loaded Sui wallet.
declare const otherMemberPublicKey: Uint8Array;
const multiSigSigner = createParaSuiMultiSigSigner({
para,
otherMembers: [{ publicKey: otherMemberPublicKey, weight: 1 }],
threshold: 2,
});