import { ContractCurrency, ContractCurveType } from '@heliofi/launchpad-common'; export interface CurveAccount { totalSupply: bigint; curveAmount: bigint; mint: string; decimals: number; collateralCurrency: ContractCurrency; curveType: ContractCurveType; marketcapThreshold: bigint; marketcapCurrency: ContractCurrency; migrationFee: bigint; coefB: number; bump: number; }