INPUT_OBJECT

CreateBitcoinTransactionParams

link GraphQL Schema definition

  • input CreateBitcoinTransactionParams {
  • # The sub wallet you wish to send this transaction from (@deprecated(reason: "use
  • # subWalletId instead"))
  • fromSubWalletId: SubWalletIdInput
  • subWAlletId: String
  • # The address this transaction is directed to
  • to: String!
  • # The value of BTC to send with this transaction in satoshis
  • amount: TransactionAmount!
  • # The speed at which you want the network to accept the transaction. The fee is
  • # charged
  • #
  • # by the network in satoshi. This value is included in the total amount of the
  • # transaction.
  • #  
  • # Defaults to MEDIUM
  • speed: TransactionSpeed
  • # The amount of satoshi you are willing to pay per byte of the transaction
  • satoshiPerByte: String
  • }