Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.6 KB

File metadata and controls

32 lines (23 loc) · 1.6 KB

SolContractCallDestination

The information about the transaction destination. Refer to Transaction sources and destinations for a detailed introduction about the supported sources and destinations for each transaction type.

Properties

Name Type Description Notes
destination_type ContractCallDestinationType
instructions List[SolContractCallInstruction]
address_lookup_table_accounts List[SolContractCallAddressLookupTableAccount] [optional]

Example

from cobo_waas2.models.sol_contract_call_destination import SolContractCallDestination

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

# convert the object into a dict
sol_contract_call_destination_dict = sol_contract_call_destination_instance.to_dict()
# create an instance of SolContractCallDestination from a dict
sol_contract_call_destination_from_dict = SolContractCallDestination.from_dict(sol_contract_call_destination_dict)

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