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

Latest commit

 

History

History
35 lines (27 loc) · 1.9 KB

File metadata and controls

35 lines (27 loc) · 1.9 KB

ListTransactionsByBlockHashRIBSEC

Ethereum Classic

Properties

Name Type Description Notes
contract str Represents the specific transaction contract.
gas_limit str Represents the amount of gas used by this specific transaction alone.
gas_price ListTransactionsByBlockHashRIBSEGasPrice
gas_used str Represents the exact unit of gas that was used for the transaction.
input_data str Represents additional information that is required for the transaction.
nonce str Represents the sequential running number for an address, starting from 0 for the first transaction. E.g., if the nonce of a transaction is 10, it would be the 11th transaction sent from the sender's address.
transaction_status str String representation of the transaction status

Example

from cryptoapis.models.list_transactions_by_block_hash_ribsec import ListTransactionsByBlockHashRIBSEC

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

# convert the object into a dict
list_transactions_by_block_hash_ribsec_dict = list_transactions_by_block_hash_ribsec_instance.to_dict()
# create an instance of ListTransactionsByBlockHashRIBSEC from a dict
list_transactions_by_block_hash_ribsec_form_dict = list_transactions_by_block_hash_ribsec.from_dict(list_transactions_by_block_hash_ribsec_dict)

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