Sui SDK v2
createSuiMultiSigPublicKey
Builds a Sui MultiSigPublicKey from weighted members and a threshold.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Builds a Sui MultiSigPublicKey from weighted members and a threshold.
import { createSuiMultiSigPublicKey } from '@getpara/sui-sdk-integration';
declare const memberPublicKey: Uint8Array;
const multiSigPublicKey = createSuiMultiSigPublicKey({
members: [{ publicKey: memberPublicKey, weight: 1 }],
threshold: 1,
});