> ## Documentation Index
> Fetch the complete documentation index at: https://docs.endstate.io/llms.txt
> Use this file to discover all available pages before exploring further.

# session.transfers.waitUntilSettled

> Waits until the transfer is settled: confirmed, expired, or failed.

```ts theme={null}
waitUntilSettled(transferId: string, options?: PollOptions): Promise<Transfer>
```

This helper polls an existing read until it settles; it issues no endpoint of its own.

## Example

```ts theme={null}
const result = await session.transfers.waitUntilSettled(transfer.id);
```
