import type { Wallet } from 'ethers'; import type { GeneratedWallet } from './wallet.js'; /** 分发多跳路径信息 */ export type DisperseHopPath = { targetAddress: string; hopWallets: Wallet[]; hopWalletsInfo: GeneratedWallet[]; };