Name | Type | Description | Notes |
---|---|---|---|
abi | List[AbiFunction] | The abi of the contract | |
implementation_abi | List[AbiFunction] | The abi of the implementation contract if exists. Relevant only for proxy patterns | [optional] |
from fireblocks.models.contract_abi_response_dto import ContractAbiResponseDto
# TODO update the JSON string below
json = "{}"
# create an instance of ContractAbiResponseDto from a JSON string
contract_abi_response_dto_instance = ContractAbiResponseDto.from_json(json)
# print the JSON string representation of the object
print(ContractAbiResponseDto.to_json())
# convert the object into a dict
contract_abi_response_dto_dict = contract_abi_response_dto_instance.to_dict()
# create an instance of ContractAbiResponseDto from a dict
contract_abi_response_dto_from_dict = ContractAbiResponseDto.from_dict(contract_abi_response_dto_dict)