Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 2.04 KB

GetWalletTransactionDetailsByTransactionIDRIBSEC.md

File metadata and controls

34 lines (26 loc) · 2.04 KB

GetWalletTransactionDetailsByTransactionIDRIBSEC

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 GetTransactionDetailsByTransactionIDRIBSECGasPrice
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 int 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.

Example

from cryptoapis.models.get_wallet_transaction_details_by_transaction_idribsec import GetWalletTransactionDetailsByTransactionIDRIBSEC

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

# convert the object into a dict
get_wallet_transaction_details_by_transaction_idribsec_dict = get_wallet_transaction_details_by_transaction_idribsec_instance.to_dict()
# create an instance of GetWalletTransactionDetailsByTransactionIDRIBSEC from a dict
get_wallet_transaction_details_by_transaction_idribsec_form_dict = get_wallet_transaction_details_by_transaction_idribsec.from_dict(get_wallet_transaction_details_by_transaction_idribsec_dict)

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