Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

ContractMetadataDto.md

File metadata and controls

33 lines (24 loc) · 1.24 KB

ContractMetadataDto

Properties

Name Type Description Notes
id str The deployed contract ID
blockchain_id str The blockchain ID
contract_address str The address of the token contract
contract_template_id str The contract template ID
vault_account_id str The vault account ID that initiated the request to issue the token [optional]

Example

from fireblocks.models.contract_metadata_dto import ContractMetadataDto

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

# convert the object into a dict
contract_metadata_dto_dict = contract_metadata_dto_instance.to_dict()
# create an instance of ContractMetadataDto from a dict
contract_metadata_dto_from_dict = ContractMetadataDto.from_dict(contract_metadata_dto_dict)

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