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

Latest commit

 

History

History
37 lines (29 loc) · 3.09 KB

File metadata and controls

37 lines (29 loc) · 3.09 KB

ListTransactionsByBlockHeightRI

Properties

Name Type Description Notes
transaction_id str Represents the unique identifier of a transaction, i.e. it could be `transactionId` in UTXO-based protocols like Bitcoin, and transaction `hash` in Ethereum blockchain.
index int Represents the index position of the transaction in the specific block.
mined_in_block_hash str Represents the hash of the block where this transaction was mined/confirmed for first time. The hash is defined as a cryptographic digital fingerprint made by hashing the block header twice through the SHA256 algorithm.
mined_in_block_height int Represents the hight of the block where this transaction was mined/confirmed for first time. The height is defined as the number of blocks in the blockchain preceding this specific block.
recipients List[GetTransactionDetailsByTransactionIDRIRecipientsInner] Represents a list of recipient addresses with the respective amounts. In account-based protocols like Ethereum there is only one address in this list.
senders List[GetTransactionDetailsByTransactionIDRISendersInner] Represents a list of sender addresses with the respective amounts. In account-based protocols like Ethereum there is only one address in this list.
timestamp int Defines the exact date/time in Unix Timestamp when this transaction was mined, confirmed or first seen in Mempool, if it is unconfirmed.
transaction_hash str Represents the same as `transactionId` for account-based protocols like Ethereum, while it could be different in UTXO-based protocols like Bitcoin. E.g., in UTXO-based protocols `hash` is different from `transactionId` for SegWit transactions.
fee ListTransactionsByBlockHeightRIFee
blockchain_specific ListTransactionsByBlockHeightRIBS

Example

from cryptoapis.models.list_transactions_by_block_height_ri import ListTransactionsByBlockHeightRI

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

# convert the object into a dict
list_transactions_by_block_height_ri_dict = list_transactions_by_block_height_ri_instance.to_dict()
# create an instance of ListTransactionsByBlockHeightRI from a dict
list_transactions_by_block_height_ri_form_dict = list_transactions_by_block_height_ri.from_dict(list_transactions_by_block_height_ri_dict)

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