Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.04 KB

AssetOnchain.md

File metadata and controls

33 lines (24 loc) · 1.04 KB

AssetOnchain

Properties

Name Type Description Notes
symbol str The asset symbol
name str The asset name
address str The asset address [optional]
decimals float Number of decimals
standard str The asset standard [optional]

Example

from fireblocks.models.asset_onchain import AssetOnchain

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

# convert the object into a dict
asset_onchain_dict = asset_onchain_instance.to_dict()
# create an instance of AssetOnchain from a dict
asset_onchain_from_dict = AssetOnchain.from_dict(asset_onchain_dict)

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