Sui SDK v2
CreateParaSuiMultiSigSignerOptions
Options for creating 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.
Options for creating a Sui multisig signer with one Para member.
import type { Para as ParaServer } from '@getpara/server-sdk';
import type { CreateParaSuiMultiSigSignerOptions } from '@getpara/sui-sdk-integration';
declare const para: ParaServer; // An authenticated Para Server client with a loaded Sui wallet.
declare const otherMemberPublicKey: Uint8Array;
const options: CreateParaSuiMultiSigSignerOptions = {
para,
otherMembers: [{ publicKey: otherMemberPublicKey, weight: 1 }],
threshold: 2,
};