/** * One HyperCore transaction as the explorer `userDetails` RPC reports it. * * @public */ export interface HlExplorerTx { time: number; user: string; /** * The action body HyperCore received. Untyped because the shape varies by * action type; read it through `getClientOrderIds`, not by field name. */ action: unknown; block: number; hash: string; /** `null` on a tx the engine applied, a message on one it landed but refused. */ error: string | null; } /** * Whether one `userDetails` entry carries every field this package reads. The * explorer RPC is undocumented, so entries are checked one at a time and a * drifted entry drops on its own instead of failing the whole window. * * @public */ export declare const isHlExplorerTx: (value: unknown) => value is HlExplorerTx; //# sourceMappingURL=explorer.d.ts.map