//#region extensions/crypto/src/commands/tx-command.d.ts /** * /tx command — show recent transaction history * Bypasses the LLM agent for fast, zero-cost responses. */ declare const txCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: () => Promise<{ text: string; }>; }; //#endregion export { txCommand }; //# sourceMappingURL=tx-command.d.mts.map