INPUT_OBJECT

ExchangeTransferInput

The ExchangeTransferInput to be sent

link GraphQL Schema definition

  • input ExchangeTransferInput {
  • # The **WalletId** of the exchange wallet that the transfer is sent from, must be
  • # owned by the same user as the **toWalletId** (@deprecated(reason: "use
  • # fromSubWalletId"))
  • from: ExchangeWalletId
  • fromSubWalletId: String
  • # The **WalletId** of the exchange wallet recieving the transfer, must be owned
  • # by the same user as the **fromWalletId** (@deprecated(reason: "use
  • # toSubWalletId"))
  • to: ExchangeWalletId!
  • toSubWalletId: String
  • # The amount of the asset to be transferred, a decimal integer string in the base
  • # unit of the asset e.g. Satoshis for BTC or Wei for ETH
  • value: String!
  • # The asset to be transferred - (see supported-assets docs available assetSymbols)
  • assetSymbol: AssetSymbol!
  • }