INPUT_OBJECT

BinanceTransactionInput

link GraphQL Schema definition

  • input BinanceTransactionInput {
  • # The sub wallet you wish to send this transaction from
  • fromSubWalletId: SubWalletIdInput
  • subWalletId: 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
  • amount: String!
  • # The address to send this transaction is directed to
  • to: String!
  • # assetSymbol (see supported-assets docs for more info)
  • assetSymbol: String!
  • # The number of transactions a user has already sent (plus 1 for this transaction)
  • sequence: Int
  • # a message sent along with the transaction
  • memo: String
  • }