CryptoApis::ListAllUnconfirmedTransactionsRIBSB

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.
v_size Integer Defines the transaction's virtual size.
version Integer Defines the version of the transaction.
vin Array<ListAllUnconfirmedTransactionsRIBSBVin> Represents the transaction inputs.
vout Array<ListUnconfirmedTransactionsByAddressRIBSBVout> Represents the transaction outputs.

Example

require 'crypto_apis'

instance = CryptoApis::ListAllUnconfirmedTransactionsRIBSB.new(
  locktime: 1781965,
  size: 222,
  v_size: 222,
  version: 1,
  vin: null,
  vout: null
)