Sui SDK v2
ParaSuiMultiSigSigner
A Sui multisig coordinator with one Para signer member.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
A Sui multisig coordinator with one Para signer member.
import { ParaSuiMultiSigSigner } from '@getpara/sui-sdk-integration';
import type { ParaSuiSigner } from '@getpara/sui-sdk-integration';
declare const paraSigner: ParaSuiSigner;
declare const otherMemberPublicKey: Uint8Array;
const multiSigSigner = new ParaSuiMultiSigSigner({
paraSigner,
otherMembers: [{ publicKey: otherMemberPublicKey, weight: 1 }],
threshold: 2,
});
console.log(multiSigSigner.address);