export interface PumpSwapPoolResponse {
    address: string;
    slotIndexId: string;
    tx: string;
    timestamp: string;
    pairKey: string;
    baseMint: string;
    quoteMint: string;
    baseMintDecimals: number;
    quoteMintDecimals: number;
    lpMint: string;
    creator: string;
    poolBump: number;
    poolIndex: number;
    baseReserves: string;
    quoteReserves: string;
    lpSupply: string;
    liquidityUSD: string;
    createdAt: string;
    updatedAt: string;
    updatedBySlotIndexId: string;
    isCanonical: boolean;
}
