CCXT.DepositWithdrawFee (ccxt_client v0.6.1)

Copy Markdown View Source

Unified deposit/withdraw fee data.

Describes the fee schedule for deposits and withdrawals of a currency, optionally broken down by network.

Fields

  • withdraw - Withdrawal fee info: %{fee: number(), percentage: boolean()}
  • deposit - Deposit fee info: %{fee: number(), percentage: boolean()}
  • networks - Per-network fee info: %{network_name => %{withdraw: ..., deposit: ...}}
  • info - Raw exchange response

Summary

Functions

JSON Schema for the DepositWithdrawFee unified type.

Types

t()

@type t() :: %CCXT.DepositWithdrawFee{
  deposit: map() | nil,
  info: map() | nil,
  networks: map(),
  withdraw: map() | nil
}

Functions

schema()

@spec schema() :: map()

JSON Schema for the DepositWithdrawFee unified type.