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

Latest commit

 

History

History
32 lines (24 loc) · 1.41 KB

File metadata and controls

32 lines (24 loc) · 1.41 KB

ListSupportedTokensRI

Properties

Name Type Description Notes
decimals int Defines the token's decimal number or all of its points after the zero.
identifier str Represents a unique identifier for the specific blockchain and network, e.g. smart contract address, property ID, etc.
name str Defines the token name.
symbol str Defines the token's unique symbol in the Crypto APIs listings.
type str Represents the token's type representation, e.g. ERC-20, Omni, etc.

Example

from cryptoapis.models.list_supported_tokens_ri import ListSupportedTokensRI

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

# convert the object into a dict
list_supported_tokens_ri_dict = list_supported_tokens_ri_instance.to_dict()
# create an instance of ListSupportedTokensRI from a dict
list_supported_tokens_ri_form_dict = list_supported_tokens_ri.from_dict(list_supported_tokens_ri_dict)

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