import type { ChainManager } from "../chain/manager.js"; import type { TxLog } from "./tx-log.js"; interface ReceiptTrackerDeps { chainManager: ChainManager; txLog: TxLog; } /** * Fire-and-forget receipt polling with retry. * Callers should NOT await this. * Updates TxLog status to "confirmed" or "failed" once receipt is available. */ export declare function trackReceipt(hash: string, chainId: string, deps: ReceiptTrackerDeps): void; export {}; //# sourceMappingURL=receipt-tracker.d.ts.map