> For the complete documentation index, see [llms.txt](https://tutorial.neoline.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tutorial.neoline.io/reference/neo3-provider-api/pickaddress.md).

# pickAddress

Prompts the user to select an address from the wallet and returns the selected address.

## Parameters

#### 1. prompt *(optional)*

`string`

Optional text shown to the user to explain why the dapp is requesting an address selection.

## Returns

`Promise<Address>`

`Address` is a Neo N3 address string.

## Errors

| Code    | Name       | Description                              |
| ------- | ---------- | ---------------------------------------- |
| `10006` | `CANCELED` | The user canceled the selection request. |

## Example

### Request

```js
const address = await provider.pickAddress();
```

### Response

```js
"NLtYAu3z1fmSqisfAhfNpX81BKZ5ZrSpH5"
```
