import { BillsConfig, PreTGEConfig } from '@ape.swap/apeswap-lists'; export interface TrueBondPrices { points: string; trueBondPrice: string; bonus: number; bonusWithFee: number; boost?: number; } export interface BondsData extends PreTGEConfig, BillsConfig { maxTotalPayout?: string; totalPayoutGiven?: string; maxPayout?: string; tokensRemaining?: string; showcaseTokenName?: string; feeInPayout?: number; discount?: number; discountWithFee?: number; trueBondPrices?: TrueBondPrices[]; payoutTokenPrice?: string; principalTokenPrice?: string; initialRelease?: number; totalPrincipalBilled?: string; totalRaise?: string; finalized?: boolean; minPoints?: string; maxPoints?: string; startVestingTimestamp?: string; finishTime?: number; initPrice?: number; }