INPUT_OBJECT

CreateBinanceTransactionInput

link GraphQL Schema definition

  • input CreateBinanceTransactionInput {
  • # The authentication tokens for the user which to submit the transaction for
  • # signature (optional for API key users)
  • authentication: AuthenticationInput
  • # The Binance Transaction to be signed.
  • binanceTransaction: BinanceTransactionInput!
  • # A text field identifying where the request to sign came from - your application
  • # name should go here.
  • source: String!
  • # Request that when the transaction is signed by the authorised signer(s),
  • # TrustVault will send it directly to the network
  • sendToNetworkWhenSigned: Boolean
  • # If the transaction should be submitted for devices for signing. defaults to
  • # false to allow reviewing transaction data. Set to true when you want to send a
  • # transaction to devices to sign.
  • sendToDevicesForSigning: Boolean
  • # The currency to return the assets in. See docs for supported currencies.
  • # defaults to GBP
  • currency: String
  • # The number of transactions a user has already sent (plus 1 for this transaction)
  • sequence: Int
  • }

link Require by