CCXT.DepositAddress (ccxt_client v0.6.1)

Copy Markdown View Source

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

Summary

Functions

JSON Schema for the DepositAddress unified type.

Types

t()

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

Functions

schema()

@spec schema() :: map()

JSON Schema for the DepositAddress unified type.