Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

BlockchainExplorer.md

File metadata and controls

32 lines (23 loc) · 1.09 KB

BlockchainExplorer

Properties

Name Type Description Notes
base str Explorer base url
address str Explorer address url [optional]
tx str Explorer transaction url [optional]
token str Explorer token url [optional]

Example

from fireblocks.models.blockchain_explorer import BlockchainExplorer

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

# convert the object into a dict
blockchain_explorer_dict = blockchain_explorer_instance.to_dict()
# create an instance of BlockchainExplorer from a dict
blockchain_explorer_from_dict = BlockchainExplorer.from_dict(blockchain_explorer_dict)

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