test-rrr-sdk
Version:
An SDK for building applications on top of Raydium.
13 lines (10 loc) • 417 B
TypeScript
import { AddressLookupTableAccount, Connection, PublicKey } from '@solana/web3.js';
interface CacheLTA {
[key: string]: AddressLookupTableAccount;
}
declare function getMultipleLookupTableInfo({ connection, address, }: {
connection: Connection;
address: PublicKey[];
}): Promise<CacheLTA>;
declare const LOOKUP_TABLE_CACHE: CacheLTA;
export { CacheLTA, LOOKUP_TABLE_CACHE, getMultipleLookupTableInfo };