Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.63 KB

File metadata and controls

37 lines (28 loc) · 1.63 KB

ReadCallFunctionDtoAbiFunction

Properties

Name Type Description Notes
state_mutability str
outputs List[Parameter] [optional]
name str The name of the instruction
type str
inputs List[ParameterWithValue]
description str [optional]
discriminator List[float] The discriminator for the instruction. Acts as a function selector
accounts List[SOLAccountWithValue]
args List[SolParameterWithValue] The arguments of the instruction

Example

from fireblocks.models.read_call_function_dto_abi_function import ReadCallFunctionDtoAbiFunction

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

# convert the object into a dict
read_call_function_dto_abi_function_dict = read_call_function_dto_abi_function_instance.to_dict()
# create an instance of ReadCallFunctionDtoAbiFunction from a dict
read_call_function_dto_abi_function_from_dict = ReadCallFunctionDtoAbiFunction.from_dict(read_call_function_dto_abi_function_dict)

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