> 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-evm/zebec-evm-sdk/zebec-stream-client/withdraw-from-zebec-wallet.md).

# Withdraw from Zebec Wallet

To withdraw tokens from the zebec wallet, use the `withdrawToken()` method:

*Note: You can override the default sdk overrides using optional param called `overrides` in every client functions.*

```javascript
const tokenAddress = "0x1234567890abcdef";
const amount = "10";
const customOverrides = {
  gasLimit: 25000000,
};

const receipt = await client.withdrawToken(
  tokenAddress,
  amount,
  customOverrides
);

console.log("Withdraw Token Receipt:", receipt);
```

####
