File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ export enum WalletEvent {
26
26
* Used as part of analytics events to track wallet states
27
27
*/
28
28
type WalletConnectionData = {
29
- /** Connected wallet address */
30
29
address ?: string ;
31
30
/** Name of the wallet connector used (e.g., CoinbaseWallet MetaMask, Phantom) */
32
31
connector ?: string ;
@@ -62,7 +61,6 @@ export type AnalyticsEvent = WalletEvent | ErrorEvent;
62
61
export type CommonAnalyticsData = {
63
62
/** Unique identifier for user session */
64
63
sessionId ?: string ;
65
- /** When the event occurred */
66
64
timestamp ?: number ;
67
65
} ;
68
66
@@ -83,9 +81,7 @@ export type AnalyticsEventData = {
83
81
84
82
// Error Event
85
83
[ ErrorEvent . ComponentError ] : CommonAnalyticsData & {
86
- /** name of the component where the error occurred */
87
84
component : string ;
88
- /** error message or description */
89
85
error : string ;
90
86
/** additional error context */
91
87
metadata ?: Record < string , unknown > ;
You can’t perform that action at this time.
0 commit comments