Sui SDK v2
SuiMultiSigConfig
The members and threshold that fully define a Sui multisig.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The members and threshold that fully define a Sui multisig.
import type { SuiMultiSigConfig } from '@getpara/sui-sdk-integration';
declare const memberPublicKey: Uint8Array;
const config: SuiMultiSigConfig = {
members: [{ publicKey: memberPublicKey, weight: 1 }],
threshold: 1,
};