UNPKG

@pontem/liquidswap-widget

Version:
26 lines (25 loc) 535 B
import { TVersionType } from './index'; export interface IPoolInfo { coinX: string; coinY: string; curve: string; networkId: number; contract?: TVersionType; } export interface IPoolBase { coinX: string; coinY: string; curve: string; networkId: number; contract?: TVersionType; } export interface IPersistedPool extends IPoolInfo { title: string; reserveX: number; reserveY: number; addedX: number; addedY: number; lp: number; isDefault: boolean; apr?: number; }