/** * XLayer 链模块入口 * * 导出 XLayer 链的所有功能 * * 注意:AA 模式已废弃,请使用 EIP-7702 模式 */ export * from './constants.js'; export * as eoa from './eoa/index.js'; export * as eip7702 from './eip7702/index.js'; export { PortalQuery, createPortalQuery, xlayerQuickBatchSwapMerkle, xlayerCrossSwapMerkle, xlayerPureCrossSwapMerkle, signEoaWashBuyTransactions, signEoaWashSellTransactions, signEoaWashVolumeTransactions, } from './eoa/index.js'; export type { BundleSwapParams, BundleSwapSignParams, BundleSwapResult, BundleSwapSignResult, BundleBatchSwapParams, BundleBatchSwapSignParams, BundleBatchSwapResult, BundleBatchSwapSignResult, BuyFirstParams, BuyFirstResult, BuyParams, SellParams, } from './eoa/types.js'; export * from './eip7702/flat-aliases.js'; export { default as xlayer, default as XLayer } from './eoa/index.js'; export { lpFeeProfileToV3Fee } from './eoa/portal-ops.js';