UNPKG

@zentraswap/router-sdk

Version:

An sdk for routing swaps using Zentra X v2 and Zentra X v3.

16 lines (15 loc) 668 B
import { Interface } from '@ethersproject/abi'; import { Token } from '@zentraswap/sdk-core'; import { FeeOptions } from '@zentraswap/v3-sdk'; import JSBI from 'jsbi'; export declare abstract class PaymentsExtended { static INTERFACE: Interface; /** * Cannot be constructed. */ private constructor(); static encodeUnwrapWETH9(amountMinimum: JSBI, recipient?: string, feeOptions?: FeeOptions): string; static encodeSweepToken(token: Token, amountMinimum: JSBI, recipient?: string, feeOptions?: FeeOptions): string; static encodePull(token: Token, amount: JSBI): string; static encodeWrapETH(amount: JSBI): string; }