> 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-network-archive/zebec-network-archive/zebec-solana-sdk/streaming/initialize-zebec-stream.md).

# Initialize Zebec Stream

To create a Zebec Stream service, we would need to initialize the anchor provider and fee receiver.

```
const provider = initAnchorProvider(wallet, RPC_URL);
```

```
const native = new ZebecNativeStream(provider, feeReceiverAddress);
```

```
const token = new ZebecTokenStream(provider, feeReceiverAddress);
```
