import { Token } from "../../../../../../../common/tokens"; import { MethodData } from "../../../../../../../core/blockchain/web3-public-service/web3-public/models/method-data"; import { OnChainTradeType } from "../../../common/models/on-chain-trade-type"; import { BlastFenixTradeStruct } from "./models/blast-fenix-trade-struct"; import { UniswapV3AlgebraAbstractTrade } from "../../common/uniswap-v3-algebra-abstract/uniswap-v3-algebra-abstract-trade"; export declare class BlastFenixTrade extends UniswapV3AlgebraAbstractTrade { static get type(): OnChainTradeType; readonly dexContractAddress = "0x2df37Cb897fdffc6B4b03d8252d85BE7C6dA9d00"; protected readonly contractAbi: import("web3-utils").AbiItem[]; protected readonly unwrapWethMethodName = "unwrapWNativeToken"; private readonly route; readonly wrappedPath: ReadonlyArray; constructor(tradeStruct: BlastFenixTradeStruct, providerAddress: string); /** * Returns swap `exactInput` method's name and arguments to use in Swap contract. */ protected getSwapRouterExactInputMethodData(walletAddress: string): MethodData; }