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

# Wallet

> A blockchain wallet address

## Properties

| Property  | Type   | Required | Description                                                                  |
| --------- | ------ | -------- | ---------------------------------------------------------------------------- |
| `address` | string | Yes      | The wallet address                                                           |
| `tag`     | string | No       | An optional memo or destination tag (used by some blockchains like XRP, XLM) |

## Example

### Standard Wallet

```json theme={null}
{
  "address": "0x1234567890abcdef1234567890abcdef12345678"
}
```

### Wallet with Memo/Tag

Some blockchains like XRP and XLM require a destination tag or memo to route funds to the correct account:

```json theme={null}
{
  "address": "rN7n3473SaZBCG4dFL83w7a1RXtXtbk2D9",
  "tag": "12345678"
}
```

<Warning>
  For blockchains that require tags/memos (XRP, XLM, etc.), always include the
  `tag` field when provided. Missing tags can result in lost funds.
</Warning>
