# The Crypto Deposit Address object

### The Crypto Deposit Address object

```json
{
  "id": "cda_1MzUx82eZvKYlo2CB6XoRDA6",
  "object": "crypto.deposit_address",
  "livemode": false,
  "created": 1719947634,
  "network": "tempo",
  "address": "0x5ff8d73e8bccd3701c9aef78389f3b9771172b5c",
  "supported_tokens": [
    {
      "token_currency": "usdc",
      "token_contract_address": "0x20c0000000000000000000009e8d7eb59b783726"
    }
  ],
  "metadata": {}
}
```

## Attributes

- `id` (string)
  Unique identifier for the object.

- `object` (string, value is "crypto.deposit_address")
  String representing the object’s type. Objects of the same type share the same value.

- `address` (string)
  The on-chain address where funds can be received.

- `created` (timestamp)
  Time at which the object was created. Measured in seconds since the Unix epoch.

- `customer` (string, nullable)
  If set, this deposit address is scoped to a [Customer](https://docs.stripe.com/api/customers/object.md) and can only receive funds from that customer. Otherwise, this deposit address can receive funds from any customer.

- `livemode` (boolean)
  If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.

- `metadata` (map)
  Set of [key-value pairs](https://docs.stripe.com/api/metadata.md) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

- `network` (enum)
  The blockchain network where this address can accept funds.
Possible enum values:
  - `base`
    Base network.

  - `solana`
    Solana network.

  - `tempo`
    Tempo network.

- [`supported_tokens`](https://docs.stripe.com/api/crypto/deposit-address/object.md?query=supported_tokens) (array of objects)
  The tokens that can be sent to this deposit address on its network.
