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

Latest commit

 

History

History
33 lines (25 loc) · 1.64 KB

File metadata and controls

33 lines (25 loc) · 1.64 KB

AddressTokensTransactionUnconfirmedErc20

ERC-20

Properties

Name Type Description Notes
name str Specifies the name of the token.
symbol str Specifies an identifier of the token, where up to five alphanumeric characters can be used for it.
decimals str Defines how many decimals can be used to break the token. [optional]
amount str Defines the amount of tokens sent with the transaction that is pending confirmation.
contract_address str Defines the address of the contract.

Example

from cryptoapis.models.address_tokens_transaction_unconfirmed_erc20 import AddressTokensTransactionUnconfirmedErc20

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

# convert the object into a dict
address_tokens_transaction_unconfirmed_erc20_dict = address_tokens_transaction_unconfirmed_erc20_instance.to_dict()
# create an instance of AddressTokensTransactionUnconfirmedErc20 from a dict
address_tokens_transaction_unconfirmed_erc20_form_dict = address_tokens_transaction_unconfirmed_erc20.from_dict(address_tokens_transaction_unconfirmed_erc20_dict)

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