# Whitelisting Tokens

Streaming is only allowed for tokens that have been added to the whitelist within the Zebec Core Contract. Use `whitelistToken()` method:

```javascript
const tokenAddresses = ["tokenA", "tokenB"];
await zebecClient.grantWhitelisterRole(sender.address);
await zebecClient.whitelistToken([tokenAddress]);
```

*Note: Only user who has whitlisterRole can whitelist a token. To grant whitelister role, use the `grantWhitelisterRole():`*

```javascript
//only contract owner can grant whitelister role
const zebecClientOwner = new ZebecStreamClient(contractOwner);
await zebecClientOwner.grantWhitelisterRole(whitelisterAddress);
```

To whitelist your token on the existing Zebec protocol, please reach out directly to the administrator. You can see the list of whitelisted tokens at:

{% content-ref url="whitelisted-tokens-on-bsc-and-nautilus" %}
[whitelisted-tokens-on-bsc-and-nautilus](https://docs.zebec.io/zebec-evm/zebec-evm-sdk/zebec-stream-client/whitelisted-tokens-on-bsc-and-nautilus)
{% endcontent-ref %}
