You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 1, 2025. It is now read-only.
Represents the hash of the block, which is its unique identifier. It represents a cryptographic digital fingerprint made by hashing the block header twice through the SHA256 algorithm.
block_height
int
Represents the number of blocks in the blockchain preceding this specific block. Block numbers have no gaps. A blockchain usually starts with block 0 called the "Genesis block".
operation_id
str
Represents the unique internal transaction ID in regards to the parent transaction (type trace address).
operation_type
str
Defines the call type of the internal transaction.
parent_hash
str
Defines the specific hash of the parent transaction.
recipient
str
Represents the recipient address with the respective amount.
sender
str
Represents the sender address with the respective amount.
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.
Example
fromcryptoapis.models.list_internal_transaction_details_by_transaction_hash_riimportListInternalTransactionDetailsByTransactionHashRI# TODO update the JSON string belowjson="{}"# create an instance of ListInternalTransactionDetailsByTransactionHashRI from a JSON stringlist_internal_transaction_details_by_transaction_hash_ri_instance=ListInternalTransactionDetailsByTransactionHashRI.from_json(json)
# print the JSON string representation of the objectprintListInternalTransactionDetailsByTransactionHashRI.to_json()
# convert the object into a dictlist_internal_transaction_details_by_transaction_hash_ri_dict=list_internal_transaction_details_by_transaction_hash_ri_instance.to_dict()
# create an instance of ListInternalTransactionDetailsByTransactionHashRI from a dictlist_internal_transaction_details_by_transaction_hash_ri_form_dict=list_internal_transaction_details_by_transaction_hash_ri.from_dict(list_internal_transaction_details_by_transaction_hash_ri_dict)