Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.83 KB

File metadata and controls

32 lines (23 loc) · 1.83 KB

TransactionSolContractDestination

The information about the transaction destination type SOL_Contract. Refer to Transaction sources and destinations for a detailed introduction about the supported sources and destinations for each transaction type. Switch between the tabs to display the properties for different transaction destinations.

Properties

Name Type Description Notes
destination_type TransactionDestinationType
instructions List[TransactionSolContractInstruction] [optional]
address_lookup_table_accounts List[TransactionSolContractAddressLookupTableAccount] [optional]

Example

from cobo_waas2.models.transaction_sol_contract_destination import TransactionSolContractDestination

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

# convert the object into a dict
transaction_sol_contract_destination_dict = transaction_sol_contract_destination_instance.to_dict()
# create an instance of TransactionSolContractDestination from a dict
transaction_sol_contract_destination_from_dict = TransactionSolContractDestination.from_dict(transaction_sol_contract_destination_dict)

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