Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.53 KB

File metadata and controls

36 lines (27 loc) · 1.53 KB

TRLinkPublicAssetInfo

Public asset information with limited properties for API consumption

Properties

Name Type Description Notes
id str The unique ID of the asset (e.g., Fireblocks asset ID)
name str The name of the asset
type str The type of the asset (e.g., BASE_ASSET, ERC20)
contract_address str The contract address of the asset (for tokenized assets)
native_asset str The native asset of the network (e.g., ETH for ERC20 tokens)
decimals float The number of decimal places for the asset
issuer_address str The issuer address of the asset (optional) [optional]

Example

from fireblocks.models.tr_link_public_asset_info import TRLinkPublicAssetInfo

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

# convert the object into a dict
tr_link_public_asset_info_dict = tr_link_public_asset_info_instance.to_dict()
# create an instance of TRLinkPublicAssetInfo from a dict
tr_link_public_asset_info_from_dict = TRLinkPublicAssetInfo.from_dict(tr_link_public_asset_info_dict)

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