> 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-stream.md).

# Multisig Stream

For multisig stream service, you can create instance in the following way.

```typescript
const config = {
    networkId,
    nodeUrl,
    streamContractId,
    multiSigFactoryContractId,
},
const actions = {
    multiSigActions: new MultiSigActions(),
    storageSpecAction: new StorageSpecActions(),
    streamActions: new StreamActions(),
};
const multisigService = new ZebecMultiSigService(
    signerId,
    multisigAccountId,
    actions
);
```
