/** * ENI BatchRouter — 批量买入 * * Phase 2: 部署 BatchRouter 合约后启用 * 参考 xlayer/eip7702/bundle-buy.ts 的接口风格 */ import type { BatchBuyParams, BatchBuyResult } from './types.js'; /** * 内盘批量买入 * 主钱包出 EGAS,代币直接到各 EOA */ export declare function batchBuyPortal(params: BatchBuyParams): Promise; /** * 外盘 V2 批量买入 * 通过 DSWAP V2 Router 买入 */ export declare function batchBuyV2(params: BatchBuyParams & { path?: string[]; }): Promise;