Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.53 KB

File metadata and controls

31 lines (22 loc) · 1.53 KB

SolContractCallAddressLookupTableAccount

The information about a Solana Address Lookup Table account.

Properties

Name Type Description Notes
alt_account_key str The on-chain public key of the Address Lookup Table (ALT) account, identifying the specific lookup table.
addresses List[str] An array of stored account addresses within the lookup table, which can be referenced in transactions by index.

Example

from cobo_waas2.models.sol_contract_call_address_lookup_table_account import SolContractCallAddressLookupTableAccount

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

# convert the object into a dict
sol_contract_call_address_lookup_table_account_dict = sol_contract_call_address_lookup_table_account_instance.to_dict()
# create an instance of SolContractCallAddressLookupTableAccount from a dict
sol_contract_call_address_lookup_table_account_from_dict = SolContractCallAddressLookupTableAccount.from_dict(sol_contract_call_address_lookup_table_account_dict)

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