Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.81 KB

File metadata and controls

37 lines (28 loc) · 1.81 KB

ContractAbiResponseDtoAbiInner

Properties

Name Type Description Notes
name str The name of the instruction
state_mutability str The state mutability of the contract function as it appears in the ABI [optional]
type str The type of the function
inputs List[Parameter] The parameters that this function/constructor posses [optional]
outputs List[Parameter] The parameters that this 'read' function returns [optional]
description str The documentation of this function (if has any) [optional]
discriminator List[float] The discriminator for the instruction. Acts as a function selector
accounts List[SOLAccount]
args List[SolParameter]

Example

from fireblocks.models.contract_abi_response_dto_abi_inner import ContractAbiResponseDtoAbiInner

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

# convert the object into a dict
contract_abi_response_dto_abi_inner_dict = contract_abi_response_dto_abi_inner_instance.to_dict()
# create an instance of ContractAbiResponseDtoAbiInner from a dict
contract_abi_response_dto_abi_inner_from_dict = ContractAbiResponseDtoAbiInner.from_dict(contract_abi_response_dto_abi_inner_dict)

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