Skip to content

Commit 05fbf04

Browse files
lint
1 parent c892041 commit 05fbf04

File tree

1 file changed

+6
-12
lines changed
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/engine/analytics/tx-table

1 file changed

+6
-12
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/engine/analytics/tx-table/types.ts

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Address, Hex } from "thirdweb";
22

33
// Revert data type (referenced but not defined in the provided code)
4-
export type RevertDataSerialized = {
4+
type RevertDataSerialized = {
55
revertReason?: string;
66
decodedError?: {
77
name: string;
@@ -11,24 +11,24 @@ export type RevertDataSerialized = {
1111
};
1212

1313
// Transaction parameters
14-
export type TransactionParamsSerialized = {
14+
type TransactionParamsSerialized = {
1515
to: Address;
1616
data: Hex;
1717
value: string;
1818
};
1919

2020
// Execution parameters
21-
export type ExecutionParams4337Serialized = {
21+
type ExecutionParams4337Serialized = {
2222
type: "AA";
2323
entrypointAddress: string;
2424
smartAccountAddress: string;
2525
signerAddress: string;
2626
};
2727

28-
export type ExecutionParamsSerialized = ExecutionParams4337Serialized;
28+
type ExecutionParamsSerialized = ExecutionParams4337Serialized;
2929

3030
// Execution result
31-
export type ExecutionResult4337Serialized =
31+
type ExecutionResult4337Serialized =
3232
| {
3333
status: "QUEUED";
3434
}
@@ -54,13 +54,7 @@ export type ExecutionResult4337Serialized =
5454
}
5555
));
5656

57-
export type ExecutionResultSerialized = ExecutionResult4337Serialized;
58-
59-
// Enriched data type (not fully defined in the provided code)
60-
export type EnrichedDataItem = {
61-
type: string;
62-
// data: any;
63-
};
57+
type ExecutionResultSerialized = ExecutionResult4337Serialized;
6458

6559
// Main Transaction type from database
6660
export type Transaction = {

0 commit comments

Comments
 (0)