@0xsquid/ui 3.0.2 → 3.1.0

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.
Files changed (103) hide show
  1. package/dist/cjs/index.js +18491 -838
  2. package/dist/cjs/types/components/badges/Drip.d.ts +13 -0
  3. package/dist/cjs/types/components/badges/index.d.ts +1 -0
  4. package/dist/cjs/types/components/buttons/index.d.ts +0 -1
  5. package/dist/cjs/types/components/feedback/LoadingSkeleton.d.ts +2 -1
  6. package/dist/cjs/types/components/icons/Arrow.d.ts +3 -0
  7. package/dist/cjs/types/components/icons/Generic.d.ts +4 -0
  8. package/dist/cjs/types/components/icons/ThumbsUp.d.ts +2 -1
  9. package/dist/cjs/types/components/layout/AnimationWrapper.d.ts +7 -3
  10. package/dist/cjs/types/components/layout/Card.d.ts +8 -0
  11. package/dist/cjs/types/components/layout/Collapse.d.ts +3 -1
  12. package/dist/cjs/types/components/layout/TransactionHeader/TransactionHeaderLayout.d.ts +10 -6
  13. package/dist/cjs/types/components/layout/TransactionProperties/TransactionProperties.d.ts +4 -8
  14. package/dist/cjs/types/components/layout/index.d.ts +1 -11
  15. package/dist/cjs/types/components/lists/TransactionAction/FeesAction.d.ts +2 -2
  16. package/dist/cjs/types/components/lists/TransactionItem.d.ts +35 -20
  17. package/dist/cjs/types/components/lists/TransactionItemSkeleton.d.ts +1 -0
  18. package/dist/cjs/types/components/lists/index.d.ts +1 -0
  19. package/dist/cjs/types/components/views/TransactionNotFoundView.d.ts +1 -0
  20. package/dist/cjs/types/components/views/TransactionView/BaseTransactionViewProps.d.ts +23 -3
  21. package/dist/cjs/types/components/views/TransactionView/BridgeTransactionView.d.ts +10 -3
  22. package/dist/cjs/types/components/views/TransactionView/BuyNFTTransactionView.d.ts +9 -11
  23. package/dist/cjs/types/components/views/TransactionView/InteractionTransactionView.d.ts +10 -5
  24. package/dist/cjs/types/components/views/TransactionView/SwapTransactionView.d.ts +8 -3
  25. package/dist/cjs/types/components/views/TransactionView/TransactionView.d.ts +11 -6
  26. package/dist/cjs/types/components/views/index.d.ts +1 -0
  27. package/dist/cjs/types/core/utils.d.ts +1 -0
  28. package/dist/cjs/types/stories/badges/Drip.stories.d.ts +7 -0
  29. package/dist/cjs/types/stories/data/actions.d.ts +5 -0
  30. package/dist/cjs/types/stories/data/network.d.ts +2 -0
  31. package/dist/cjs/types/stories/layout/Card.stories.d.ts +6 -0
  32. package/dist/cjs/types/stories/lists/TransactionItem.stories.d.ts +182 -12
  33. package/dist/cjs/types/stories/lists/TransactionItemSkeleton.stories.d.ts +6 -0
  34. package/dist/cjs/types/stories/views/TransactionNotFoundView.stories.d.ts +6 -0
  35. package/dist/cjs/types/stories/views/TransactionView.stories.d.ts +634 -7
  36. package/dist/cjs/types/types/components.d.ts +1 -0
  37. package/dist/esm/index.js +18236 -578
  38. package/dist/esm/types/components/badges/Drip.d.ts +13 -0
  39. package/dist/esm/types/components/badges/index.d.ts +1 -0
  40. package/dist/esm/types/components/buttons/index.d.ts +0 -1
  41. package/dist/esm/types/components/feedback/LoadingSkeleton.d.ts +2 -1
  42. package/dist/esm/types/components/icons/Arrow.d.ts +3 -0
  43. package/dist/esm/types/components/icons/Generic.d.ts +4 -0
  44. package/dist/esm/types/components/icons/ThumbsUp.d.ts +2 -1
  45. package/dist/esm/types/components/layout/AnimationWrapper.d.ts +7 -3
  46. package/dist/esm/types/components/layout/Card.d.ts +8 -0
  47. package/dist/esm/types/components/layout/Collapse.d.ts +3 -1
  48. package/dist/esm/types/components/layout/TransactionHeader/TransactionHeaderLayout.d.ts +10 -6
  49. package/dist/esm/types/components/layout/TransactionProperties/TransactionProperties.d.ts +4 -8
  50. package/dist/esm/types/components/layout/index.d.ts +1 -11
  51. package/dist/esm/types/components/lists/TransactionAction/FeesAction.d.ts +2 -2
  52. package/dist/esm/types/components/lists/TransactionItem.d.ts +35 -20
  53. package/dist/esm/types/components/lists/TransactionItemSkeleton.d.ts +1 -0
  54. package/dist/esm/types/components/lists/index.d.ts +1 -0
  55. package/dist/esm/types/components/views/TransactionNotFoundView.d.ts +1 -0
  56. package/dist/esm/types/components/views/TransactionView/BaseTransactionViewProps.d.ts +23 -3
  57. package/dist/esm/types/components/views/TransactionView/BridgeTransactionView.d.ts +10 -3
  58. package/dist/esm/types/components/views/TransactionView/BuyNFTTransactionView.d.ts +9 -11
  59. package/dist/esm/types/components/views/TransactionView/InteractionTransactionView.d.ts +10 -5
  60. package/dist/esm/types/components/views/TransactionView/SwapTransactionView.d.ts +8 -3
  61. package/dist/esm/types/components/views/TransactionView/TransactionView.d.ts +11 -6
  62. package/dist/esm/types/components/views/index.d.ts +1 -0
  63. package/dist/esm/types/core/utils.d.ts +1 -0
  64. package/dist/esm/types/stories/badges/Drip.stories.d.ts +7 -0
  65. package/dist/esm/types/stories/data/actions.d.ts +5 -0
  66. package/dist/esm/types/stories/data/network.d.ts +2 -0
  67. package/dist/esm/types/stories/layout/Card.stories.d.ts +6 -0
  68. package/dist/esm/types/stories/lists/TransactionItem.stories.d.ts +182 -12
  69. package/dist/esm/types/stories/lists/TransactionItemSkeleton.stories.d.ts +6 -0
  70. package/dist/esm/types/stories/views/TransactionNotFoundView.stories.d.ts +6 -0
  71. package/dist/esm/types/stories/views/TransactionView.stories.d.ts +634 -7
  72. package/dist/esm/types/types/components.d.ts +1 -0
  73. package/dist/index.css +1 -1
  74. package/dist/index.d.ts +150 -239
  75. package/package.json +3 -3
  76. package/dist/cjs/types/components/layout/TransactionHeader/BridgeHeader.d.ts +0 -11
  77. package/dist/cjs/types/components/layout/TransactionHeader/BuyNFTHeader.d.ts +0 -10
  78. package/dist/cjs/types/components/layout/TransactionHeader/InteractionHeader.d.ts +0 -11
  79. package/dist/cjs/types/components/layout/TransactionHeader/ProfileHeader.d.ts +0 -11
  80. package/dist/cjs/types/components/layout/TransactionHeader/SwapHeader.d.ts +0 -16
  81. package/dist/cjs/types/components/layout/TransactionHeader/TransactionHeader.d.ts +0 -23
  82. package/dist/cjs/types/components/layout/TransactionHeader/index.d.ts +0 -1
  83. package/dist/cjs/types/components/layout/TransactionProperties/BridgeProperties.d.ts +0 -21
  84. package/dist/cjs/types/components/layout/TransactionProperties/BuyNFTProperties.d.ts +0 -33
  85. package/dist/cjs/types/components/layout/TransactionProperties/InteractionProperties.d.ts +0 -11
  86. package/dist/cjs/types/components/layout/TransactionProperties/SwapProperties.d.ts +0 -28
  87. package/dist/cjs/types/components/layout/TransactionProperties/index.d.ts +0 -6
  88. package/dist/cjs/types/stories/layout/TransactionHeader.stories.d.ts +0 -10
  89. package/dist/cjs/types/stories/layout/TransactionProperties.stories.d.ts +0 -9
  90. package/dist/esm/types/components/layout/TransactionHeader/BridgeHeader.d.ts +0 -11
  91. package/dist/esm/types/components/layout/TransactionHeader/BuyNFTHeader.d.ts +0 -10
  92. package/dist/esm/types/components/layout/TransactionHeader/InteractionHeader.d.ts +0 -11
  93. package/dist/esm/types/components/layout/TransactionHeader/ProfileHeader.d.ts +0 -11
  94. package/dist/esm/types/components/layout/TransactionHeader/SwapHeader.d.ts +0 -16
  95. package/dist/esm/types/components/layout/TransactionHeader/TransactionHeader.d.ts +0 -23
  96. package/dist/esm/types/components/layout/TransactionHeader/index.d.ts +0 -1
  97. package/dist/esm/types/components/layout/TransactionProperties/BridgeProperties.d.ts +0 -21
  98. package/dist/esm/types/components/layout/TransactionProperties/BuyNFTProperties.d.ts +0 -33
  99. package/dist/esm/types/components/layout/TransactionProperties/InteractionProperties.d.ts +0 -11
  100. package/dist/esm/types/components/layout/TransactionProperties/SwapProperties.d.ts +0 -28
  101. package/dist/esm/types/components/layout/TransactionProperties/index.d.ts +0 -6
  102. package/dist/esm/types/stories/layout/TransactionHeader.stories.d.ts +0 -10
  103. package/dist/esm/types/stories/layout/TransactionProperties.stories.d.ts +0 -9
@@ -1,9 +1,636 @@
1
- import { Meta, StoryObj } from "@storybook/react";
2
- import { TransactionView, TransactionViewProps } from "../../components/views/TransactionView";
1
+ import type { Meta } from "@storybook/react";
2
+ import { TransactionView } from "../../components/views/TransactionView";
3
3
  declare const meta: Meta<typeof TransactionView>;
4
4
  export default meta;
5
- type Story = StoryObj<TransactionViewProps>;
6
- export declare const Swap: Story;
7
- export declare const BuyNFT: Story;
8
- export declare const Interaction: Story;
9
- export declare const Bridge: Story;
5
+ export declare const Swap: {
6
+ args: {
7
+ type: string;
8
+ data: {
9
+ title: string;
10
+ hash: string;
11
+ status: string;
12
+ url: string;
13
+ fromAmount: string;
14
+ toAmount: string;
15
+ fromToken: {
16
+ logoURI: string;
17
+ bgColor: string;
18
+ symbol: string;
19
+ };
20
+ toToken: {
21
+ logoURI: string;
22
+ bgColor: string;
23
+ symbol: string;
24
+ };
25
+ fromChain: {
26
+ logoURI: string;
27
+ name: string;
28
+ bgColor: string;
29
+ };
30
+ toChain: {
31
+ logoURI: string;
32
+ name: string;
33
+ bgColor: string;
34
+ };
35
+ fromAddress: string;
36
+ toAddress: string;
37
+ exchangeRate: string;
38
+ boosted: boolean;
39
+ timeToComplete: string;
40
+ actions: ({
41
+ type: "success";
42
+ props: {
43
+ status: "success";
44
+ timestamp: number;
45
+ hash: string;
46
+ url: string;
47
+ };
48
+ } | {
49
+ type: "receive_tokens";
50
+ props: {
51
+ status: "executed";
52
+ amount: string;
53
+ token: {
54
+ logoURI: string;
55
+ bgColor: string;
56
+ symbol: string;
57
+ };
58
+ chain: {
59
+ logoURI: string;
60
+ name: string;
61
+ bgColor: string;
62
+ };
63
+ wallet: {
64
+ imageURI: string;
65
+ address: string;
66
+ url: string;
67
+ };
68
+ timestamp: number;
69
+ hash: string;
70
+ url: string;
71
+ };
72
+ } | {
73
+ type: "send_tokens";
74
+ props: {
75
+ status: "executed";
76
+ amount: string;
77
+ token: {
78
+ logoURI: string;
79
+ bgColor: string;
80
+ symbol: string;
81
+ };
82
+ chain: {
83
+ logoURI: string;
84
+ name: string;
85
+ bgColor: string;
86
+ };
87
+ wallet: {
88
+ imageURI: string;
89
+ address: string;
90
+ url: string;
91
+ };
92
+ timestamp: number;
93
+ hash: string;
94
+ url: string;
95
+ };
96
+ } | {
97
+ type: "swap";
98
+ props: {
99
+ status: "executed";
100
+ fromToken: {
101
+ logoURI: string;
102
+ bgColor: string;
103
+ symbol: string;
104
+ };
105
+ toToken: {
106
+ logoURI: string;
107
+ bgColor: string;
108
+ symbol: string;
109
+ };
110
+ provider: {
111
+ logoURI: string;
112
+ name: string;
113
+ };
114
+ timestamp: number;
115
+ hash: string;
116
+ url: string;
117
+ };
118
+ } | {
119
+ type: "bridge";
120
+ props: {
121
+ status: "executed";
122
+ token: {
123
+ logoURI: string;
124
+ bgColor: string;
125
+ symbol: string;
126
+ };
127
+ chain: {
128
+ logoURI: string;
129
+ name: string;
130
+ bgColor: string;
131
+ };
132
+ provider: {
133
+ logoURI: string;
134
+ name: string;
135
+ };
136
+ timestamp: number;
137
+ hash: string;
138
+ url: string;
139
+ };
140
+ } | {
141
+ type: "start";
142
+ props: {
143
+ status: "executed";
144
+ timestamp: number;
145
+ hash: string;
146
+ url: string;
147
+ };
148
+ })[];
149
+ fees: {
150
+ status: "executed";
151
+ total: {
152
+ label: string;
153
+ usd: number;
154
+ amount: number;
155
+ symbol: string;
156
+ };
157
+ lines: {
158
+ label: string;
159
+ usd: number;
160
+ amount: number;
161
+ symbol: string;
162
+ }[];
163
+ };
164
+ };
165
+ };
166
+ };
167
+ export declare const BuyNFT: {
168
+ args: {
169
+ type: string;
170
+ data: {
171
+ title: string;
172
+ hash: string;
173
+ status: string;
174
+ fromChain: {
175
+ logoURI: string;
176
+ name: string;
177
+ bgColor: string;
178
+ };
179
+ toChain: {
180
+ logoURI: string;
181
+ name: string;
182
+ bgColor: string;
183
+ };
184
+ fromAmount: string;
185
+ fromToken: {
186
+ logoURI: string;
187
+ bgColor: string;
188
+ symbol: string;
189
+ };
190
+ toAmount: string;
191
+ toToken: {
192
+ symbol: string;
193
+ };
194
+ timestamp: number;
195
+ token: {
196
+ logoURI: string;
197
+ bgColor: string;
198
+ symbol: string;
199
+ };
200
+ price: number;
201
+ nft: {
202
+ name: string;
203
+ imageURI: string;
204
+ collection: {
205
+ name: string;
206
+ imageURI: string;
207
+ };
208
+ tokenID: string;
209
+ nftType: string;
210
+ };
211
+ marketplace: {
212
+ name: string;
213
+ logoURI: string;
214
+ };
215
+ fromAddress: string;
216
+ toAddress: string;
217
+ boosted: boolean;
218
+ timeToComplete: string;
219
+ actions: ({
220
+ type: "success";
221
+ props: {
222
+ status: "success";
223
+ timestamp: number;
224
+ hash: string;
225
+ url: string;
226
+ };
227
+ } | {
228
+ type: "receive_nft";
229
+ props: {
230
+ status: "executed";
231
+ nft: {
232
+ imageURI: string;
233
+ name: string;
234
+ };
235
+ chain: {
236
+ logoURI: string;
237
+ name: string;
238
+ bgColor: string;
239
+ };
240
+ wallet: {
241
+ imageURI: string;
242
+ address: string;
243
+ url: string;
244
+ };
245
+ timestamp: number;
246
+ hash: string;
247
+ url: string;
248
+ };
249
+ } | {
250
+ type: "send_tokens";
251
+ props: {
252
+ status: "executed";
253
+ amount: string;
254
+ token: {
255
+ logoURI: string;
256
+ bgColor: string;
257
+ symbol: string;
258
+ };
259
+ chain: {
260
+ logoURI: string;
261
+ name: string;
262
+ bgColor: string;
263
+ };
264
+ wallet: {
265
+ imageURI: string;
266
+ address: string;
267
+ url: string;
268
+ };
269
+ timestamp: number;
270
+ hash: string;
271
+ url: string;
272
+ };
273
+ } | {
274
+ type: "swap";
275
+ props: {
276
+ status: "executed";
277
+ fromToken: {
278
+ logoURI: string;
279
+ bgColor: string;
280
+ symbol: string;
281
+ };
282
+ toToken: {
283
+ logoURI: string;
284
+ bgColor: string;
285
+ symbol: string;
286
+ };
287
+ provider: {
288
+ logoURI: string;
289
+ name: string;
290
+ };
291
+ timestamp: number;
292
+ hash: string;
293
+ url: string;
294
+ };
295
+ } | {
296
+ type: "bridge";
297
+ props: {
298
+ status: "executed";
299
+ token: {
300
+ logoURI: string;
301
+ bgColor: string;
302
+ symbol: string;
303
+ };
304
+ chain: {
305
+ logoURI: string;
306
+ name: string;
307
+ bgColor: string;
308
+ };
309
+ provider: {
310
+ logoURI: string;
311
+ name: string;
312
+ };
313
+ timestamp: number;
314
+ hash: string;
315
+ url: string;
316
+ };
317
+ } | {
318
+ type: "start";
319
+ props: {
320
+ status: "executed";
321
+ timestamp: number;
322
+ hash: string;
323
+ url: string;
324
+ };
325
+ })[];
326
+ fees: {
327
+ status: "executed";
328
+ total: {
329
+ label: string;
330
+ usd: number;
331
+ amount: number;
332
+ symbol: string;
333
+ };
334
+ lines: {
335
+ label: string;
336
+ usd: number;
337
+ amount: number;
338
+ symbol: string;
339
+ }[];
340
+ };
341
+ };
342
+ };
343
+ };
344
+ export declare const Interaction: {
345
+ args: {
346
+ type: string;
347
+ data: {
348
+ title: string;
349
+ hash: string;
350
+ status: string;
351
+ url: string;
352
+ boosted: boolean;
353
+ chain: {
354
+ logoURI: string;
355
+ name: string;
356
+ bgColor: string;
357
+ };
358
+ address: string;
359
+ timeToComplete: string;
360
+ actions: ({
361
+ type: "success";
362
+ props: {
363
+ status: "success";
364
+ timestamp: number;
365
+ hash: string;
366
+ url: string;
367
+ };
368
+ } | {
369
+ type: "receive_nft";
370
+ props: {
371
+ status: "executed";
372
+ nft: {
373
+ imageURI: string;
374
+ name: string;
375
+ };
376
+ chain: {
377
+ logoURI: string;
378
+ name: string;
379
+ bgColor: string;
380
+ };
381
+ wallet: {
382
+ imageURI: string;
383
+ address: string;
384
+ url: string;
385
+ };
386
+ timestamp: number;
387
+ hash: string;
388
+ url: string;
389
+ };
390
+ } | {
391
+ type: "send_tokens";
392
+ props: {
393
+ status: "executed";
394
+ amount: string;
395
+ token: {
396
+ logoURI: string;
397
+ bgColor: string;
398
+ symbol: string;
399
+ };
400
+ chain: {
401
+ logoURI: string;
402
+ name: string;
403
+ bgColor: string;
404
+ };
405
+ wallet: {
406
+ imageURI: string;
407
+ address: string;
408
+ url: string;
409
+ };
410
+ timestamp: number;
411
+ hash: string;
412
+ url: string;
413
+ };
414
+ } | {
415
+ type: "swap";
416
+ props: {
417
+ status: "executed";
418
+ fromToken: {
419
+ logoURI: string;
420
+ bgColor: string;
421
+ symbol: string;
422
+ };
423
+ toToken: {
424
+ logoURI: string;
425
+ bgColor: string;
426
+ symbol: string;
427
+ };
428
+ provider: {
429
+ logoURI: string;
430
+ name: string;
431
+ };
432
+ timestamp: number;
433
+ hash: string;
434
+ url: string;
435
+ };
436
+ } | {
437
+ type: "bridge";
438
+ props: {
439
+ status: "executed";
440
+ token: {
441
+ logoURI: string;
442
+ bgColor: string;
443
+ symbol: string;
444
+ };
445
+ chain: {
446
+ logoURI: string;
447
+ name: string;
448
+ bgColor: string;
449
+ };
450
+ provider: {
451
+ logoURI: string;
452
+ name: string;
453
+ };
454
+ timestamp: number;
455
+ hash: string;
456
+ url: string;
457
+ };
458
+ } | {
459
+ type: "start";
460
+ props: {
461
+ status: "executed";
462
+ timestamp: number;
463
+ hash: string;
464
+ url: string;
465
+ };
466
+ })[];
467
+ fees: {
468
+ status: "executed";
469
+ total: {
470
+ label: string;
471
+ usd: number;
472
+ amount: number;
473
+ symbol: string;
474
+ };
475
+ lines: {
476
+ label: string;
477
+ usd: number;
478
+ amount: number;
479
+ symbol: string;
480
+ }[];
481
+ };
482
+ };
483
+ };
484
+ };
485
+ export declare const Bridge: {
486
+ args: {
487
+ type: string;
488
+ data: {
489
+ title: string;
490
+ hash: string;
491
+ url: string;
492
+ status: string;
493
+ amount: string;
494
+ token: {
495
+ logoURI: string;
496
+ bgColor: string;
497
+ symbol: string;
498
+ };
499
+ fromChain: {
500
+ logoURI: string;
501
+ name: string;
502
+ bgColor: string;
503
+ };
504
+ toChain: {
505
+ logoURI: string;
506
+ name: string;
507
+ bgColor: string;
508
+ };
509
+ address: string;
510
+ boosted: boolean;
511
+ timeToComplete: string;
512
+ actions: ({
513
+ type: "success";
514
+ props: {
515
+ status: "success";
516
+ timestamp: number;
517
+ hash: string;
518
+ url: string;
519
+ };
520
+ } | {
521
+ type: "receive_nft";
522
+ props: {
523
+ status: "executed";
524
+ nft: {
525
+ imageURI: string;
526
+ name: string;
527
+ };
528
+ chain: {
529
+ logoURI: string;
530
+ name: string;
531
+ bgColor: string;
532
+ };
533
+ wallet: {
534
+ imageURI: string;
535
+ address: string;
536
+ url: string;
537
+ };
538
+ timestamp: number;
539
+ hash: string;
540
+ url: string;
541
+ };
542
+ } | {
543
+ type: "send_tokens";
544
+ props: {
545
+ status: "executed";
546
+ amount: string;
547
+ token: {
548
+ logoURI: string;
549
+ bgColor: string;
550
+ symbol: string;
551
+ };
552
+ chain: {
553
+ logoURI: string;
554
+ name: string;
555
+ bgColor: string;
556
+ };
557
+ wallet: {
558
+ imageURI: string;
559
+ address: string;
560
+ url: string;
561
+ };
562
+ timestamp: number;
563
+ hash: string;
564
+ url: string;
565
+ };
566
+ } | {
567
+ type: "swap";
568
+ props: {
569
+ status: "executed";
570
+ fromToken: {
571
+ logoURI: string;
572
+ bgColor: string;
573
+ symbol: string;
574
+ };
575
+ toToken: {
576
+ logoURI: string;
577
+ bgColor: string;
578
+ symbol: string;
579
+ };
580
+ provider: {
581
+ logoURI: string;
582
+ name: string;
583
+ };
584
+ timestamp: number;
585
+ hash: string;
586
+ url: string;
587
+ };
588
+ } | {
589
+ type: "bridge";
590
+ props: {
591
+ status: "executed";
592
+ token: {
593
+ logoURI: string;
594
+ bgColor: string;
595
+ symbol: string;
596
+ };
597
+ chain: {
598
+ logoURI: string;
599
+ name: string;
600
+ bgColor: string;
601
+ };
602
+ provider: {
603
+ logoURI: string;
604
+ name: string;
605
+ };
606
+ timestamp: number;
607
+ hash: string;
608
+ url: string;
609
+ };
610
+ } | {
611
+ type: "start";
612
+ props: {
613
+ status: "executed";
614
+ timestamp: number;
615
+ hash: string;
616
+ url: string;
617
+ };
618
+ })[];
619
+ fees: {
620
+ status: "executed";
621
+ total: {
622
+ label: string;
623
+ usd: number;
624
+ amount: number;
625
+ symbol: string;
626
+ };
627
+ lines: {
628
+ label: string;
629
+ usd: number;
630
+ amount: number;
631
+ symbol: string;
632
+ }[];
633
+ };
634
+ };
635
+ };
636
+ };
@@ -32,6 +32,7 @@ export type ThemeType = "light" | "dark";
32
32
  export type ActionStatus = "pending" | "waiting" | "ongoing" | "executed" | "success" | "error" | "warning";
33
33
  export type InputMode = "token" | "price";
34
34
  export type TransactionStateVariant = "full" | "compact" | "small";
35
+ export type TransactionType = "swap" | "buy_nft" | "interaction" | "bridge";
35
36
  export type TokenPairVariant = "horizontal" | "vertical";
36
37
  export type TokenPairSize = "small" | "medium";
37
38
  export type ImageSize = "small" | "medium" | "large" | "xlarge" | "xxlarge";