Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Latest commit

 

History

History
33 lines (25 loc) · 1.83 KB

File metadata and controls

33 lines (25 loc) · 1.83 KB

ListUnconfirmedTransactionsByAddressRIBSD

Dogecoin

Properties

Name Type Description Notes
locktime int Represents the locktime on the transaction on the specific blockchain, i.e. the blockheight at which the transaction is valid.
size int Represents the total size of this transaction.
version int Numeric representation of the transaction version
vin List[ListUnconfirmedTransactionsByAddressRIBSDVinInner] Represents the transaction inputs.
vout List[GetTransactionDetailsByTransactionIDRIBSDVoutInner] Represents the transaction outputs.

Example

from cryptoapis.models.list_unconfirmed_transactions_by_address_ribsd import ListUnconfirmedTransactionsByAddressRIBSD

# TODO update the JSON string below
json = "{}"
# create an instance of ListUnconfirmedTransactionsByAddressRIBSD from a JSON string
list_unconfirmed_transactions_by_address_ribsd_instance = ListUnconfirmedTransactionsByAddressRIBSD.from_json(json)
# print the JSON string representation of the object
print ListUnconfirmedTransactionsByAddressRIBSD.to_json()

# convert the object into a dict
list_unconfirmed_transactions_by_address_ribsd_dict = list_unconfirmed_transactions_by_address_ribsd_instance.to_dict()
# create an instance of ListUnconfirmedTransactionsByAddressRIBSD from a dict
list_unconfirmed_transactions_by_address_ribsd_form_dict = list_unconfirmed_transactions_by_address_ribsd.from_dict(list_unconfirmed_transactions_by_address_ribsd_dict)

[Back to Model list] [Back to API list] [Back to README]