Sui SDK v2
getSuiMultiSigAddress
Derives the Sui address for weighted multisig 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.
Derives the Sui address for weighted multisig members and a threshold.
import { getSuiMultiSigAddress } from '@getpara/sui-sdk-integration';
declare const memberPublicKey: Uint8Array;
const address = getSuiMultiSigAddress({
members: [{ publicKey: memberPublicKey, weight: 1 }],
threshold: 1,
});