UNPKG

quickswap-smart-order-router

Version:
8 lines (7 loc) 463 B
import { Currency, CurrencyAmount as CurrencyAmountRaw } from '@uniswap/sdk-core'; import { FeeAmount } from '@uniswap/v3-sdk'; export declare class CurrencyAmount extends CurrencyAmountRaw<Currency> { } export declare function parseAmount(value: string, currency: Currency): CurrencyAmount; export declare function parseFeeAmount(feeAmountStr: string): FeeAmount; export declare function unparseFeeAmount(feeAmount: FeeAmount): "10000" | "3000" | "500" | "100";