Comment on page
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 modified 8mo ago