For the complete documentation index, see llms.txt. This page is also available as Markdown.

Multisig Factory

Creates multisig accounts.

Multisig Factory instance can be created in the following way.

const signerId = "<>"
const config = {
   networkId: "",
   nodeUrl: "",
   contractId: "",
   keyStore: "",
   contractId: "multiSigFactoryContractId"
}
const actions = {
   multiSigFactoryActions: new MultiSigFactoryActions(),
};

const multisigFactory = new ZebecMultiSigFactoryService(signerId, config, actions);

Now to create multisig account, you can follow as below.

Last updated