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.
Defines the number of decimals that the token possesses.
token_name
str
Specifies the token's name.
[optional]
token_symbol
str
Defines the unique symbol of the token.
[optional]
token_type
str
Defines the type of the token.
total_supply
str
Defines the total number of tokens created that exist on the market minus the ones that have been burned.
Example
fromcryptoapis.models.get_token_details_by_contract_address_riimportGetTokenDetailsByContractAddressRI# TODO update the JSON string belowjson="{}"# create an instance of GetTokenDetailsByContractAddressRI from a JSON stringget_token_details_by_contract_address_ri_instance=GetTokenDetailsByContractAddressRI.from_json(json)
# print the JSON string representation of the objectprintGetTokenDetailsByContractAddressRI.to_json()
# convert the object into a dictget_token_details_by_contract_address_ri_dict=get_token_details_by_contract_address_ri_instance.to_dict()
# create an instance of GetTokenDetailsByContractAddressRI from a dictget_token_details_by_contract_address_ri_form_dict=get_token_details_by_contract_address_ri.from_dict(get_token_details_by_contract_address_ri_dict)