UNPKG

@okx-dex/okx-dex-sdk

Version:
8 lines (7 loc) 418 B
import { SwapExecutor } from "./types"; import { OKXConfig, ChainConfig } from "../../types"; import { EVMApproveExecutor } from "./evm/evm-approve"; export declare class SwapExecutorFactory { static createExecutor(chainId: string, config: OKXConfig, networkConfig: ChainConfig): SwapExecutor; static createApproveExecutor(chainId: string, config: OKXConfig, networkConfig: ChainConfig): EVMApproveExecutor; }