Ethereum Classic
| 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 |
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)