Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

File metadata and controls

32 lines (23 loc) · 1.26 KB

TokenContractSummaryResponse

Properties

Name Type Description Notes
base_asset_id str The base asset ID
contract_address str The contract address
total_addresses float Total number of addresses with balances
total_supply str The total supply of the token

Example

from fireblocks.models.token_contract_summary_response import TokenContractSummaryResponse

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

# convert the object into a dict
token_contract_summary_response_dict = token_contract_summary_response_instance.to_dict()
# create an instance of TokenContractSummaryResponse from a dict
token_contract_summary_response_from_dict = TokenContractSummaryResponse.from_dict(token_contract_summary_response_dict)

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