/** 金额输入(字符串 / 数字 / bigint) */ export type AmountLike = string | number | bigint; /** Gas Limit 计算所需的最小配置 */ export type BundleGasConfig = { chainId?: number; gasLimit?: number | bigint; gasLimitMultiplier?: number; };