/** * Orchestration layer for fetching and decoding LayerZero message status. * * This is the main entry point — `fetchWalletStatus` aggregates API data, * decodes transaction payloads, and resolves compose followup messages. */ import type { FetchWalletStatusParams, WalletStatusResult } from "./types.js"; /** * Fetch and decode LayerZero message history for a wallet. * * This is the main orchestration function that: * 1. Fetches messages from the LayerZero Scan API * 2. Optionally filters by token addresses * 3. Decodes send payloads and resolves compose followup messages */ export declare function fetchWalletStatus(params: FetchWalletStatusParams): Promise; //# sourceMappingURL=status.d.ts.map