Interfaces
AccountLookupMeta
Represents a lookup of the account's address in an address lookup table. It specifies which lookup table account in which to perform the lookup, the index of the desired account address in that table, and metadata about its mutability. Notably, account addresses obtained via lookups may not act as signers.
Typically, you will use one of its subtypes.
role | isSigner | isWritable | |
---|---|---|---|
ReadonlyLookupAccount<TAddress, TLookupTableAddress> | AccountRole.READONLY | No | No |
WritableLookupAccount<TAddress, TLookupTableAddress> | AccountRole.WRITABLE | No | Yes |
Example
Type Parameters
Type Parameter | Default type |
---|---|
TAddress extends string | string |
TLookupTableAddress extends string | string |