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
The address of the issuer of this token. Will be part of the identifier of this token on chain.
[optional]
blockchain_symbol
str
Name of blockchain
[optional]
deprecated
bool
Is blockchain deprecated
[optional]
coin_type
float
Unique identifier of an asset (0 for BTC, 60 for ETH, etc.)
blockchain
str
The blockchain native asset id which the token is deployed on
blockchain_display_name
str
Name of blockchain
[optional]
algorithm
str
[optional]
Example
fromfireblocks.models.embedded_wallet_asset_responseimportEmbeddedWalletAssetResponse# TODO update the JSON string belowjson="{}"# create an instance of EmbeddedWalletAssetResponse from a JSON stringembedded_wallet_asset_response_instance=EmbeddedWalletAssetResponse.from_json(json)
# print the JSON string representation of the objectprint(EmbeddedWalletAssetResponse.to_json())
# convert the object into a dictembedded_wallet_asset_response_dict=embedded_wallet_asset_response_instance.to_dict()
# create an instance of EmbeddedWalletAssetResponse from a dictembedded_wallet_asset_response_from_dict=EmbeddedWalletAssetResponse.from_dict(embedded_wallet_asset_response_dict)