CryptoApis::ListAllUnconfirmedTransactionsRIBSBC

Properties

Name Type Description Notes
locktime Integer Represents the locktime on the transaction on the specific blockchain, i.e. the blockheight at which the transaction is valid.
size Integer Represents the total size of this transaction.
version Integer Represents the transaction's version number.
vin Array<ListAllUnconfirmedTransactionsRIBSBCVin> Represents the transaction inputs.
vout Array<ListAllUnconfirmedTransactionsRIBSBCVout> Object Array representation of transaction outputs

Example

require 'crypto_apis'

instance = CryptoApis::ListAllUnconfirmedTransactionsRIBSBC.new(
  locktime: 1781965,
  size: 123,
  version: 1,
  vin: null,
  vout: null
)