> For the complete documentation index, see [llms.txt](https://docs.zebec.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zebec.io/zebec-near/zebec-near-sdk/multisig-factory.md).

# Multisig Factory

Multisig Factory instance can be created in the following way.

```typescript
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.
