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

# Update Stream

```typescript
const now = nowInSec();
const streamRate = NearAmount.parse(0.001);
const startTime = (now + 10).toString();
const endTime = (now + 20).toString(); // 5 min
const updateParams: UpdateStreamParams = {
   streamId: "<streamId>",
   streamRate: streamRate.toString(),
   startTime,
   endTime,
};
const updatePayload = await client.update(updateParams);
const results = await wallet.signAndSendTransactions(updatePayload);
```
