@tuwaio/nova-transactions 1.0.0-fix-retry-actions-alpha.2.65a1bd7 → 1.0.0-fix-explorer-link-alpha.1.611ff3c

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -100,14 +100,13 @@ export function Providers({children}: { children: React.ReactNode }) {
100
100
  initialTx={initialTx}
101
101
  handleTransaction={handleTransaction}
102
102
  closeTxTrackedModal={closeTxTrackedModal}
103
- actions={actions}
104
103
 
105
104
  // Pass live wallet and adapter data
106
105
  connectedWalletAddress={address}
107
106
  connectedAdapterType={chain?.id ? TransactionAdapter.EVM : undefined} // Example for EVM
108
107
 
109
108
  // Pass static configuration
110
- adapters={[evmAdapter(wagmiConfig, chains)]}
109
+ adapter={evmAdapter(wagmiConfig, chains)}
111
110
  />
112
111
  </QueryClientProvider>
113
112
  </WagmiProvider>
@@ -62,7 +62,8 @@ declare function StatusAwareText({ txStatus, source, fallback, variant, classNam
62
62
  * It provides a strict structure for all text used in the UI components, ensuring type safety for different languages.
63
63
  */
64
64
  /**
65
- * Defines the complete structure for all customizable text labels used throughout the transaction tracking UI components.
65
+ * Represents the set of labels used for various UI elements and features in a Tuwa-based application.
66
+ * This type defines structured labels for wallet modals, transaction statuses, toast notifications, and more.
66
67
  */
67
68
  type TuwaLabels = {
68
69
  /** Labels for the main wallet information modal. */
@@ -107,6 +108,8 @@ type TuwaLabels = {
107
108
  replaced: string;
108
109
  /** Text for an unknown or indeterminate status. */
109
110
  unknown: string;
111
+ /** Text for a confirmation count label, e.g., "1 confirmation" or "10 confirmations" */
112
+ confirmationsLabel: string;
110
113
  };
111
114
  /** Labels for different types of transaction hashes/keys. */
112
115
  hashLabels: {
@@ -120,6 +123,10 @@ type TuwaLabels = {
120
123
  replaced: string;
121
124
  /** Default label for a standard transaction hash. */
122
125
  default: string;
126
+ /** Special label for the most recent blockhash. This is used for the "Recent Blockhash" field in the transaction details modal. */
127
+ recentBlockhash: string;
128
+ /** Special label for the Solana signature. This is used for the "Signature" field in the transaction details modal. */
129
+ solana: string;
123
130
  };
124
131
  /** Labels for the transaction information block. */
125
132
  txInfo: {
@@ -127,6 +134,8 @@ type TuwaLabels = {
127
134
  started: string;
128
135
  /** Label for the network name. */
129
136
  network: string;
137
+ /** Slot number for the transaction. This is used for the "Slot" field in the transaction details modal. */
138
+ slot: string;
130
139
  };
131
140
  /** Labels for the transaction error block. */
132
141
  txError: {
@@ -186,11 +195,11 @@ type TuwaLabels = {
186
195
  /**
187
196
  * Defines the props for the NovaProvider component.
188
197
  */
189
- type NovaProviderProps<TR, T extends Transaction<TR>, A> = {
190
- adapters: TxAdapter<TR, T, A>[];
198
+ type NovaProviderProps<T extends Transaction> = {
199
+ adapter: TxAdapter<T> | TxAdapter<T>[];
191
200
  connectedWalletAddress?: string;
192
201
  connectedAdapterType?: TransactionAdapter;
193
- transactionsPool: TransactionPool<TR, T>;
202
+ transactionsPool: TransactionPool<T>;
194
203
  labels?: Partial<TuwaLabels>;
195
204
  features?: {
196
205
  toasts?: boolean;
@@ -198,16 +207,16 @@ type NovaProviderProps<TR, T extends Transaction<TR>, A> = {
198
207
  trackingTxModal?: boolean;
199
208
  };
200
209
  customization?: {
201
- toast?: ToastTransactionCustomization<TR, T, A>;
202
- walletInfoModal?: WalletInfoModalCustomization<TR, T, A>;
203
- trackingTxModal?: TrackingTxModalCustomization<TR, T, A>;
210
+ toast?: ToastTransactionCustomization<T>;
211
+ walletInfoModal?: WalletInfoModalCustomization<T>;
212
+ trackingTxModal?: TrackingTxModalCustomization<T>;
204
213
  };
205
- } & Pick<ITxTrackingStore<TR, T, A>, 'closeTxTrackedModal' | 'handleTransaction' | 'initialTx'> & ToastContainerProps;
214
+ } & Pick<ITxTrackingStore<T>, 'closeTxTrackedModal' | 'handleTransaction' | 'initialTx'> & ToastContainerProps;
206
215
  /**
207
216
  * The main component for the Nova UI ecosystem. It renders and orchestrates all
208
217
  * UI elements like toasts and modals, and provides the i18n context.
209
218
  */
210
- declare function NovaProvider<TR, T extends Transaction<TR>, A>({ adapters, connectedWalletAddress, connectedAdapterType, transactionsPool, initialTx, handleTransaction, closeTxTrackedModal, labels, features, customization, ...toastProps }: NovaProviderProps<TR, T, A>): react_jsx_runtime.JSX.Element;
219
+ declare function NovaProvider<T extends Transaction>({ adapter, connectedWalletAddress, connectedAdapterType, transactionsPool, initialTx, handleTransaction, closeTxTrackedModal, labels, features, customization, ...toastProps }: NovaProviderProps<T>): react_jsx_runtime.JSX.Element;
211
220
 
212
221
  /**
213
222
  * Defines the props for the TransactionKey component.
@@ -215,7 +224,7 @@ declare function NovaProvider<TR, T extends Transaction<TR>, A>({ adapters, conn
215
224
  * @template T - The transaction type.
216
225
  * @template A - The type of the key returned by an action function.
217
226
  */
218
- type TransactionKeyProps<TR, T extends Transaction<TR>, A> = Pick<NovaProviderProps<TR, T, A>, 'adapters' | 'transactionsPool'> & {
227
+ type TransactionKeyProps<T extends Transaction> = Pick<NovaProviderProps<T>, 'adapter'> & {
219
228
  /** The transaction object to display identifiers for. */
220
229
  tx: T;
221
230
  /** The visual variant, which applies different container styles. */
@@ -227,19 +236,21 @@ type TransactionKeyProps<TR, T extends Transaction<TR>, A> = Pick<NovaProviderPr
227
236
  * If not provided, the default `HashLink` component will be used.
228
237
  */
229
238
  renderHashLink?: (props: HashLinkProps) => ReactNode;
239
+ /** Optional number of confirmations for a transaction. */
240
+ confirmations?: number;
230
241
  };
231
242
  /**
232
243
  * A component that intelligently displays the relevant keys and hashes for a transaction.
233
244
  * It leverages the adapter system to show chain-specific identifiers and explorer links.
234
245
  */
235
- declare function TransactionKey<TR, T extends Transaction<TR>, A>({ tx, adapters, transactionsPool, variant, className, renderHashLink, }: TransactionKeyProps<TR, T, A>): react_jsx_runtime.JSX.Element | null;
246
+ declare function TransactionKey<T extends Transaction>({ tx, adapter, variant, className, renderHashLink, confirmations, }: TransactionKeyProps<T>): react_jsx_runtime.JSX.Element | null;
236
247
 
237
248
  /**
238
249
  * Defines the props for the TransactionStatusBadge component.
239
250
  * @template TR - The type of the tracker identifier.
240
251
  * @template T - The transaction type.
241
252
  */
242
- type TransactionStatusBadgeProps<TR, T extends Transaction<TR>> = {
253
+ type TransactionStatusBadgeProps<T extends Transaction> = {
243
254
  /** The transaction object whose status will be displayed. */
244
255
  tx: T;
245
256
  /** Optional additional CSS classes to apply to the badge container. */
@@ -249,7 +260,7 @@ type TransactionStatusBadgeProps<TR, T extends Transaction<TR>> = {
249
260
  * A component that displays a transaction's status as a styled badge
250
261
  * with a corresponding icon, color, and label.
251
262
  */
252
- declare function TransactionStatusBadge<TR, T extends Transaction<TR>>({ tx, className, }: TransactionStatusBadgeProps<TR, T>): react_jsx_runtime.JSX.Element;
263
+ declare function TransactionStatusBadge<T extends Transaction>({ tx, className }: TransactionStatusBadgeProps<T>): react_jsx_runtime.JSX.Element;
253
264
 
254
265
  /**
255
266
  * @file This file contains the `ToastTransaction` component, which serves as the main body for a transaction notification toast.
@@ -259,30 +270,30 @@ type CustomActionButtonProps = {
259
270
  onClick: () => void;
260
271
  children: ReactNode;
261
272
  };
262
- type ToastTransactionCustomization<TR, T extends Transaction<TR>, A> = {
273
+ type ToastTransactionCustomization<T extends Transaction> = {
263
274
  components?: {
264
275
  StatusAwareText?: ComponentType<StatusAwareTextProps>;
265
- TransactionKey?: ComponentType<TransactionKeyProps<TR, T, A>>;
266
- StatusBadge?: ComponentType<TransactionStatusBadgeProps<TR, T>>;
276
+ TransactionKey?: ComponentType<TransactionKeyProps<T>>;
277
+ StatusBadge?: ComponentType<TransactionStatusBadgeProps<T>>;
267
278
  WalletInfoButton?: ComponentType<CustomActionButtonProps>;
268
279
  SpeedUpButton?: ComponentType<CustomActionButtonProps>;
269
280
  CancelButton?: ComponentType<CustomActionButtonProps>;
270
281
  };
271
282
  };
272
- type ToastTransactionProps<TR, T extends Transaction<TR>, A> = {
283
+ type ToastTransactionProps<T extends Transaction> = {
273
284
  tx: T;
274
285
  openWalletInfoModal?: () => void;
275
286
  icon?: ReactNode;
276
287
  className?: string;
277
- customization?: ToastTransactionCustomization<TR, T, A>;
288
+ customization?: ToastTransactionCustomization<T>;
278
289
  closeToast?: ToastContentProps['closeToast'];
279
290
  toastProps?: ToastContainerProps;
280
- } & Pick<NovaProviderProps<TR, T, A>, 'transactionsPool' | 'adapters' | 'connectedWalletAddress'>;
291
+ } & Pick<NovaProviderProps<T>, 'adapter' | 'connectedWalletAddress'>;
281
292
  /**
282
293
  * A composite component that renders the content for a transaction toast notification.
283
294
  * It is highly customizable and leverages the adapter to show relevant actions like "Speed Up".
284
295
  */
285
- declare function ToastTransaction<TR, T extends Transaction<TR>, A>({ openWalletInfoModal, tx, transactionsPool, icon, className, customization, connectedWalletAddress, adapters, }: ToastTransactionProps<TR, T, A>): JSX.Element;
296
+ declare function ToastTransaction<T extends Transaction>({ openWalletInfoModal, tx, icon, className, customization, connectedWalletAddress, adapter, }: ToastTransactionProps<T>): JSX.Element;
286
297
 
287
298
  /**
288
299
  * @file This file contains the `TxErrorBlock` component for displaying transaction error messages.
@@ -304,23 +315,23 @@ type CustomInfoRowProps = {
304
315
  label: ReactNode;
305
316
  value: ReactNode;
306
317
  };
307
- type TxInfoBlockCustomization<TR, T extends Transaction<TR>, A> = {
318
+ type TxInfoBlockCustomization<T extends Transaction> = {
308
319
  components?: {
309
320
  InfoRow?: ComponentType<CustomInfoRowProps>;
310
- transactionKey?: TransactionKeyProps<TR, T, A>['renderHashLink'];
321
+ transactionKey?: TransactionKeyProps<T>['renderHashLink'];
311
322
  };
312
323
  };
313
- type TxInfoBlockProps<TR, T extends Transaction<TR>, A> = {
324
+ type TxInfoBlockProps<T extends Transaction> = {
314
325
  /** The transaction object to display, which can be a full transaction or an initial one. */
315
- tx: T | InitialTransaction<A>;
326
+ tx: T | InitialTransaction;
316
327
  className?: string;
317
- customization?: TxInfoBlockCustomization<TR, T, A>;
318
- } & Pick<NovaProviderProps<TR, T, A>, 'adapters' | 'transactionsPool'>;
328
+ customization?: TxInfoBlockCustomization<T>;
329
+ } & Pick<NovaProviderProps<T>, 'adapter'>;
319
330
  /**
320
331
  * A component that displays a block of essential transaction details,
321
- * such as network, start time, and relevant hashes/keys.
332
+ * such as network, timestamps, Solana-specific details, and relevant hashes/keys.
322
333
  */
323
- declare function TxInfoBlock<TR, T extends Transaction<TR>, A>({ tx, adapters, transactionsPool, className, customization, }: TxInfoBlockProps<TR, T, A>): react_jsx_runtime.JSX.Element;
334
+ declare function TxInfoBlock<T extends Transaction>({ tx, adapter, className, customization }: TxInfoBlockProps<T>): react_jsx_runtime.JSX.Element | null;
324
335
 
325
336
  type StepStatus = 'active' | 'completed' | 'error' | 'inactive' | 'replaced';
326
337
  type StepProps = {
@@ -376,7 +387,7 @@ type CustomFooterProps = {
376
387
  canReplace?: boolean;
377
388
  connectedWalletAddress?: string;
378
389
  };
379
- type TrackingTxModalCustomization<TR, T extends Transaction<TR>, A> = {
390
+ type TrackingTxModalCustomization<T extends Transaction> = {
380
391
  modalProps?: Partial<ComponentPropsWithoutRef<typeof Dialog.Content>>;
381
392
  motionProps?: MotionProps;
382
393
  components?: {
@@ -384,21 +395,21 @@ type TrackingTxModalCustomization<TR, T extends Transaction<TR>, A> = {
384
395
  Footer?: ComponentType<CustomFooterProps>;
385
396
  StatusVisual?: ComponentType<TxStatusVisualProps>;
386
397
  ProgressIndicator?: ComponentType<TxProgressIndicatorProps>;
387
- InfoBlock?: ComponentType<TxInfoBlockProps<TR, T, A>>;
398
+ InfoBlock?: ComponentType<TxInfoBlockProps<T>>;
388
399
  ErrorBlock?: ComponentType<TxErrorBlockProps>;
389
400
  };
390
401
  };
391
- type TrackingTxModalProps<TR, T extends Transaction<TR>, A> = Pick<NovaProviderProps<TR, T, A>, 'handleTransaction' | 'initialTx' | 'transactionsPool' | 'adapters' | 'connectedWalletAddress'> & {
402
+ type TrackingTxModalProps<T extends Transaction> = Pick<NovaProviderProps<T>, 'handleTransaction' | 'initialTx' | 'transactionsPool' | 'adapter' | 'connectedWalletAddress'> & {
392
403
  onClose: (txKey?: string) => void;
393
404
  onOpenWalletInfo: () => void;
394
405
  className?: string;
395
- customization?: TrackingTxModalCustomization<TR, T, A>;
406
+ customization?: TrackingTxModalCustomization<T>;
396
407
  };
397
408
  /**
398
409
  * A detailed modal that displays the real-time status and lifecycle of a transaction.
399
410
  * It opens automatically for transactions initiated with `withTrackedModal: true`.
400
411
  */
401
- declare function TrackingTxModal<TR, T extends Transaction<TR>, A>({ adapters, onClose, onOpenWalletInfo, className, customization, transactionsPool, handleTransaction, initialTx, connectedWalletAddress, }: TrackingTxModalProps<TR, T, A>): react_jsx_runtime.JSX.Element | null;
412
+ declare function TrackingTxModal<T extends Transaction>({ adapter, onClose, onOpenWalletInfo, className, customization, transactionsPool, handleTransaction, initialTx, connectedWalletAddress, }: TrackingTxModalProps<T>): react_jsx_runtime.JSX.Element | null;
402
413
 
403
414
  /**
404
415
  * @file This file contains the `TransactionHistoryItem` component, which renders a single transaction
@@ -415,30 +426,30 @@ type CustomTimestampProps = {
415
426
  * Defines the structure for the `customization` prop, allowing users to override
416
427
  * default sub-components with their own implementations for a history item.
417
428
  */
418
- type TransactionHistoryItemCustomization<TR, T extends Transaction<TR>, A> = {
429
+ type TransactionHistoryItemCustomization<T extends Transaction> = {
419
430
  components?: {
420
431
  Icon?: ComponentType<CustomIconProps>;
421
432
  Title?: ComponentType<StatusAwareTextProps>;
422
433
  Description?: ComponentType<StatusAwareTextProps>;
423
434
  Timestamp?: ComponentType<CustomTimestampProps>;
424
- StatusBadge?: ComponentType<TransactionStatusBadgeProps<TR, T>>;
425
- TransactionKey?: ComponentType<TransactionKeyProps<TR, T, A>>;
435
+ StatusBadge?: ComponentType<TransactionStatusBadgeProps<T>>;
436
+ TransactionKey?: ComponentType<TransactionKeyProps<T>>;
426
437
  };
427
438
  };
428
- type TransactionHistoryItemProps<TR, T extends Transaction<TR>, A> = {
439
+ type TransactionHistoryItemProps<T extends Transaction> = {
429
440
  /** The transaction object to display. */
430
441
  tx: T;
431
442
  /** An object to customize and override the default internal components. */
432
- customization?: TransactionHistoryItemCustomization<TR, T, A>;
443
+ customization?: TransactionHistoryItemCustomization<T>;
433
444
  /** Optional additional CSS classes for the container. */
434
445
  className?: string;
435
- } & Pick<NovaProviderProps<TR, T, A>, 'adapters' | 'transactionsPool'>;
446
+ } & Pick<NovaProviderProps<T>, 'adapter'>;
436
447
  /**
437
448
  * A component that renders a single row in the transaction history list.
438
449
  * It is highly customizable via the `customization` prop, allowing developers
439
450
  * to override any of its internal parts with their own components.
440
451
  */
441
- declare function TransactionHistoryItem<TR, T extends Transaction<TR>, A>({ tx, adapters, transactionsPool, className, customization, }: TransactionHistoryItemProps<TR, T, A>): JSX.Element;
452
+ declare function TransactionHistoryItem<T extends Transaction>({ tx, adapter, className, customization, }: TransactionHistoryItemProps<T>): JSX.Element;
442
453
 
443
454
  type CustomPlaceholderProps = {
444
455
  title: string;
@@ -447,30 +458,28 @@ type CustomPlaceholderProps = {
447
458
  /**
448
459
  * Defines the customization options for the TransactionsHistory component.
449
460
  */
450
- type TransactionsHistoryCustomization<TR, T extends Transaction<TR>, A> = {
461
+ type TransactionsHistoryCustomization<T extends Transaction> = {
451
462
  classNames?: {
452
463
  listWrapper?: string;
453
464
  };
454
465
  components?: {
455
466
  Placeholder?: ComponentType<CustomPlaceholderProps>;
456
- HistoryItem?: ComponentType<TransactionHistoryItemProps<TR, T, A>>;
467
+ HistoryItem?: ComponentType<TransactionHistoryItemProps<T>>;
457
468
  };
458
469
  };
459
470
  /**
460
471
  * Defines the props for the TransactionsHistory component.
461
- * @template TR - The type of the tracker identifier.
462
472
  * @template T - The transaction type.
463
- * @template A - The type of the key returned by an action function.
464
473
  */
465
- type TransactionsHistoryProps<TR, T extends Transaction<TR>, A> = Pick<NovaProviderProps<TR, T, A>, 'adapters' | 'transactionsPool' | 'connectedWalletAddress'> & {
474
+ type TransactionsHistoryProps<T extends Transaction> = Pick<NovaProviderProps<T>, 'adapter' | 'transactionsPool' | 'connectedWalletAddress'> & {
466
475
  className?: string;
467
- customization?: TransactionsHistoryCustomization<TR, T, A>;
476
+ customization?: TransactionsHistoryCustomization<T>;
468
477
  };
469
478
  /**
470
479
  * A component that displays a scrollable list of transactions for the connected wallet.
471
480
  * It handles states for when a wallet is not connected or when the history is empty.
472
481
  */
473
- declare function TransactionsHistory<TR, T extends Transaction<TR>, A>({ adapters, connectedWalletAddress, transactionsPool, className, customization, }: TransactionsHistoryProps<TR, T, A>): react_jsx_runtime.JSX.Element;
482
+ declare function TransactionsHistory<T extends Transaction>({ adapter, connectedWalletAddress, transactionsPool, className, customization, }: TransactionsHistoryProps<T>): react_jsx_runtime.JSX.Element;
474
483
 
475
484
  /**
476
485
  * @file This file contains the `WalletAddressDisplay` component, a UI element for showing a wallet address.
@@ -517,7 +526,7 @@ type NameRenderProps = {
517
526
  /**
518
527
  * Defines the props for the `WalletHeader` component, including extensive customization options.
519
528
  */
520
- type WalletHeaderProps<TR, T extends Transaction<TR>, A> = Pick<NovaProviderProps<TR, T, A>, 'adapters' | 'connectedAdapterType'> & {
529
+ type WalletHeaderProps<T extends Transaction> = Pick<NovaProviderProps<T>, 'adapter' | 'connectedAdapterType'> & {
521
530
  walletAddress?: string;
522
531
  explorerUrl?: string;
523
532
  className?: string;
@@ -530,7 +539,7 @@ type WalletHeaderProps<TR, T extends Transaction<TR>, A> = Pick<NovaProviderProp
530
539
  * A component that displays the header for the wallet modal, including the user's avatar,
531
540
  * name (if available), and address. It leverages the active adapter to fetch name service data.
532
541
  */
533
- declare function WalletHeader<TR, T extends Transaction<TR>, A>({ walletAddress, adapters, connectedAdapterType, className, renderAvatar, renderName, renderAddressDisplay, renderNoWalletContent, explorerUrl, }: WalletHeaderProps<TR, T, A>): react_jsx_runtime.JSX.Element;
542
+ declare function WalletHeader<T extends Transaction>({ walletAddress, adapter, connectedAdapterType, className, renderAvatar, renderName, renderAddressDisplay, renderNoWalletContent, explorerUrl, }: WalletHeaderProps<T>): react_jsx_runtime.JSX.Element;
534
543
 
535
544
  type CustomHeaderProps = {
536
545
  closeModal: () => void;
@@ -538,7 +547,7 @@ type CustomHeaderProps = {
538
547
  /**
539
548
  * Defines the customization options for the WalletInfoModal.
540
549
  */
541
- type WalletInfoModalCustomization<TR, T extends Transaction<TR>, A> = {
550
+ type WalletInfoModalCustomization<T extends Transaction> = {
542
551
  modalProps?: Partial<ComponentPropsWithoutRef<typeof Dialog.Content>>;
543
552
  motionProps?: MotionProps;
544
553
  classNames?: {
@@ -546,22 +555,22 @@ type WalletInfoModalCustomization<TR, T extends Transaction<TR>, A> = {
546
555
  };
547
556
  components?: {
548
557
  Header?: ComponentType<CustomHeaderProps>;
549
- WalletInfo?: ComponentType<WalletHeaderProps<TR, T, A>>;
550
- History?: ComponentType<TransactionsHistoryProps<TR, T, A>>;
558
+ WalletInfo?: ComponentType<WalletHeaderProps<T>>;
559
+ History?: ComponentType<TransactionsHistoryProps<T>>;
551
560
  };
552
561
  };
553
562
  /**
554
563
  * Defines the core props for the WalletInfoModal.
555
564
  */
556
- type WalletInfoModalProps<TR, T extends Transaction<TR>, A> = Pick<NovaProviderProps<TR, T, A>, 'adapters' | 'connectedAdapterType' | 'connectedWalletAddress' | 'transactionsPool'> & {
565
+ type WalletInfoModalProps<T extends Transaction> = Pick<NovaProviderProps<T>, 'adapter' | 'connectedAdapterType' | 'connectedWalletAddress' | 'transactionsPool'> & {
557
566
  isOpen?: boolean;
558
567
  setIsOpen: (value: boolean) => void;
559
- customization?: WalletInfoModalCustomization<TR, T, A>;
568
+ customization?: WalletInfoModalCustomization<T>;
560
569
  };
561
570
  /**
562
571
  * The main modal component for displaying wallet information and transaction history.
563
572
  * It is highly customizable and built with accessibility in mind using Radix UI.
564
573
  */
565
- declare function WalletInfoModal<TR, T extends Transaction<TR>, A>({ isOpen, setIsOpen, customization, adapters, connectedAdapterType, connectedWalletAddress, transactionsPool, }: WalletInfoModalProps<TR, T, A>): react_jsx_runtime.JSX.Element;
574
+ declare function WalletInfoModal<T extends Transaction>({ isOpen, setIsOpen, customization, adapter, connectedAdapterType, connectedWalletAddress, transactionsPool, }: WalletInfoModalProps<T>): react_jsx_runtime.JSX.Element;
566
575
 
567
576
  export { TransactionsHistory as A, type TransactionStatusBadgeProps as B, TransactionStatusBadge as C, WalletAddressDisplay as D, type WalletAvatarProps as E, WalletAvatar as F, type WalletHeaderProps as G, type HashLinkProps as H, WalletHeader as I, type WalletInfoModalCustomization as J, type WalletInfoModalProps as K, WalletInfoModal as L, NovaProvider as M, type NovaProviderProps as N, type StatusAwareTextProps as S, type TuwaLabels as T, type WalletAddressDisplayProps as W, HashLink as a, StatusAwareText as b, type ToastTransactionCustomization as c, type ToastTransactionProps as d, ToastTransaction as e, type TrackingTxModalCustomization as f, type TrackingTxModalProps as g, TrackingTxModal as h, type TxErrorBlockProps as i, TxErrorBlock as j, type TxInfoBlockCustomization as k, type TxInfoBlockProps as l, TxInfoBlock as m, type StepStatus as n, type StepProps as o, type TxProgressIndicatorProps as p, TxProgressIndicator as q, type TxStatusVisualProps as r, TxStatusVisual as s, type TransactionHistoryItemCustomization as t, type TransactionHistoryItemProps as u, TransactionHistoryItem as v, type TransactionKeyProps as w, TransactionKey as x, type TransactionsHistoryCustomization as y, type TransactionsHistoryProps as z };