We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7a100f commit c521153Copy full SHA for c521153
src/core/utils/hashscan-link.ts
@@ -13,6 +13,7 @@ export type HashscanEntityType =
13
| 'token'
14
| 'account'
15
| 'transaction'
16
+ | 'transactionsById'
17
| 'topic'
18
| 'contract';
19
src/plugins/batch/commands/execute/output.ts
@@ -26,6 +26,6 @@ export type ExecuteBatchOutput = z.infer<typeof ExecuteBatchOutputSchema>;
26
export const EXECUTE_BATCH_TEMPLATE = `
27
✅ Batch executed successfully
28
Batch: {{batchName}}
29
- Transaction ID: {{hashscanLink transactionId "transaction" network}}
+ Transaction ID: {{hashscanLink transactionId "transactionsById" network}}
30
Success: {{success}}
31
`.trim();
0 commit comments