/** * SDK 公共 API 聚合入口(3.0 · 不推荐作默认消费入口) * * - **实现**:`core/` · `domains/*` · `chains/` · `bundle/` · 瘦 `utils/` * - **扁平再导出**:`exports/root-*.ts` * - **公共入口**:只走包根;见 `package.json#exports` / docs/PUBLIC_API.md §2 */ export * from './exports/root-foundations.js'; export * from './exports/root-bundle-and-tooling.js'; export * from './exports/root-swap-dex-and-xlayer.js'; export * from './exports/root-eni-and-bsc-iro.js'; export * from './exports/root-robinhood.js'; /** 横向基础:错误收口、Logger、共享类型、Nonce/Gas/Tx 工具 */ export * as foundation from './core/foundation.js'; /** Bundle 共享核心:internal、submit、config-helpers、four-meme 实现 */ export * as bundleCore from './bundle/index.js'; /** 高层业务流程 */ export * as flows from './domains/flows/index.js';