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

# TransferStatus

```ts theme={null}
const TransferStatus: {
  Completed: "completed";
  Failed: "failed";
  Processing: "processing";
  Quoted: "quoted";
};
```

Defined in: [\_vendor/api/types/TransferStatus.ts:4](https://github.com/coinbase/cdp-sdk/blob/30d1b3dc350cd763fecf481c5bc976bd77951f3b/typescript/packages/cdp-sdk/src/_vendor/api/types/TransferStatus.ts#L4)

The current status of the transfer, indicating what action you need to take next. Required when validateOnly is false.

## Type Declaration

### Completed

```ts theme={null}
readonly Completed: "completed" = "completed";
```

### Failed

```ts theme={null}
readonly Failed: "failed" = "failed";
```

### Processing

```ts theme={null}
readonly Processing: "processing" = "processing";
```

### Quoted

```ts theme={null}
readonly Quoted: "quoted" = "quoted";
```
