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 vault account id this contract was deploy from
[optional]
blockchain_id
str
Example
fromfireblocks.models.deployed_contract_response_dtoimportDeployedContractResponseDto# TODO update the JSON string belowjson="{}"# create an instance of DeployedContractResponseDto from a JSON stringdeployed_contract_response_dto_instance=DeployedContractResponseDto.from_json(json)
# print the JSON string representation of the objectprint(DeployedContractResponseDto.to_json())
# convert the object into a dictdeployed_contract_response_dto_dict=deployed_contract_response_dto_instance.to_dict()
# create an instance of DeployedContractResponseDto from a dictdeployed_contract_response_dto_from_dict=DeployedContractResponseDto.from_dict(deployed_contract_response_dto_dict)