Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.33 KB

DeployedContractResponseDto.md

File metadata and controls

33 lines (24 loc) · 1.33 KB

DeployedContractResponseDto

Properties

Name Type Description Notes
id str The deployed contract data identifier
contract_address str The contract's onchain address
contract_template_id str The contract template identifier
vault_account_id str The vault account id this contract was deploy from [optional]
blockchain_id str

Example

from fireblocks.models.deployed_contract_response_dto import DeployedContractResponseDto

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

# convert the object into a dict
deployed_contract_response_dto_dict = deployed_contract_response_dto_instance.to_dict()
# create an instance of DeployedContractResponseDto from a dict
deployed_contract_response_dto_from_dict = DeployedContractResponseDto.from_dict(deployed_contract_response_dto_dict)

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