link GraphQL Schema definition

  • type BitcoinTransaction {
  • version: Int!
  • # The UTXOs to be spent
  • inputs: [BitcoinInput!]!
  • # The recipient(s) of the transaction - including the change address
  • outputs: [BitcoinOutput!]!
  • # Block height or timestamp when transaction is final
  • lockTime: Int!
  • # The signature type for the transaction
  • sighash: Int!
  • }

link Require by