import { PublicKey } from "@solana/web3.js"; import { PkMap } from "./utils/pkmap"; export declare const STAKE_POOLS: { name: string; symbol: string; mint: string; decimals: number; logoURI: string; tokenProgram: PublicKey; poolState: PublicKey; isMarinade: boolean; }[]; export declare const STAKE_POOLS_MAP: Map; /** * Metadata for an asset for pricing */ export interface AssetMeta { asset: PublicKey; decimals: number; oracle: PublicKey; programId: PublicKey; oracleSource: string; } /** * Transforms the LST list into a map of asset metas. * * We use functional prices for LSTs, and the oracle pubkey of a LST * asset is the pool state. */ export declare const ASSETS_MAINNET: PkMap;