@exodus/solana-web3.js
Version:
Solana Javascript API
20 lines (19 loc) • 632 B
TypeScript
import { PublicKey } from '../../publickey.js';
export declare type AddressLookupTableState = {
deactivationSlot: bigint;
lastExtendedSlot: number;
lastExtendedSlotStartIndex: number;
authority?: PublicKey;
addresses: Array<PublicKey>;
};
export declare type AddressLookupTableAccountArgs = {
key: PublicKey;
state: AddressLookupTableState;
};
export declare class AddressLookupTableAccount {
key: PublicKey;
state: AddressLookupTableState;
constructor(args: AddressLookupTableAccountArgs);
isActive(): boolean;
static deserialize(accountData: Uint8Array): AddressLookupTableState;
}