Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.65 KB

File metadata and controls

37 lines (28 loc) · 1.65 KB

WriteCallFunctionDtoAbiFunction

Properties

Name Type Description Notes
state_mutability str
outputs List[Parameter] [optional]
type str
name str The name of the instruction
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.write_call_function_dto_abi_function import WriteCallFunctionDtoAbiFunction

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

# convert the object into a dict
write_call_function_dto_abi_function_dict = write_call_function_dto_abi_function_instance.to_dict()
# create an instance of WriteCallFunctionDtoAbiFunction from a dict
write_call_function_dto_abi_function_from_dict = WriteCallFunctionDtoAbiFunction.from_dict(write_call_function_dto_abi_function_dict)

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