# Creating Clients

Import the necessary dependencies and create an instance of the `ZebecStreamClient` class:

```javascript
import { ZebecStreamClient } from "@zebec-protocol/zebec-bnb-sdk";

// Create an instance of ZebecStreamClient
const zebecClient = new ZebecStreamClient(signer);
```

#### Getting Signer Address

You can get the signer's address using the `getSignerAddress()` method:

```javascript
const signerAddress = await client.getSignerAddress();
console.log("Signer Address:", signerAddress);
```
