# `CCXT.DepositAddress`
[🔗](https://github.com/ZenHive/ccxt_client/blob/main/lib/ccxt/deposit_address.ex#L1)

Unified deposit address data.

Represents a deposit address for a specific currency and network.

## Fields

  * `currency` - Currency code (e.g., "BTC")
  * `network` - Blockchain network (e.g., "ERC20", "TRC20")
  * `address` - Deposit address
  * `tag` - Deposit tag/memo (required for some currencies like XRP, EOS)
  * `info` - Raw exchange response

# `t`

```elixir
@type t() :: %CCXT.DepositAddress{
  address: String.t() | nil,
  currency: String.t() | nil,
  info: map() | nil,
  network: String.t() | nil,
  tag: String.t() | nil
}
```

# `schema`

```elixir
@spec schema() :: map()
```

JSON Schema for the DepositAddress unified type.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
