Documentation
API Reference
Types
Deposit

Type: Deposits

DepositAddress

This type represents a deposit address.

type DepositAddress = {
  tokenSymbol: TokenSymbol;
  address: string;
  network: string;
  tag?: string;
};
  • tokenSymbol - string
    The token's symbol.
  • address - string
    The deposit address.
  • network - string
    The network internal ID. See Supported Networks for the list of supported networks.
  • tag - string, optional
    A tag or memo is a unique identifier assigned to each account for identifying a deposit and crediting the appropriate account. Some exchanges require a tag or memo to be included with the deposit for some tokens, such as BNB or ATOM.

DepositableToken

This type represents a depositable token.

type DepositableToken = {
  tokenSymbol: string;
  networks?: MarketNetwork[];
};
  • tokenSymbol - string
    The token's symbol.
  • networks - MarketNetwork[], optional, see MarketNetwork for more information and Supported Networks for the list of supported networks.