export interface Token {
  logo: string;
  name: string;
  symbol: string;
  address: string;
  decimals: number;
  feeOnTransfer?: boolean;
}

export const DEFAULT_TOKEN_LIST: Array<Token>

export const COMMON_BASES: Array<Token>

export interface Pool {
  first: Token;
  second: Token;
  address: string;
}

export const DEFAULT_POOL_LIST: Array<Pool>
