@mictonode/widget 0.3.17 → 0.3.19

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 (31) hide show
  1. package/dist/{main-465ae991.js → main-c424432b.js} +82 -82
  2. package/dist/ping-widget.js +2 -2
  3. package/dist/ping-widget.umd.cjs +15 -15
  4. package/dist/{query.lcd-d9c6163c.js → query.lcd-8531915e.js} +1 -1
  5. package/dist/{query.rpc.Query-a479e6f9.js → query.rpc.Query-d1e130b4.js} +1 -1
  6. package/dist/{tx.rpc.msg-7444045d.js → tx.rpc.msg-ef7ee094.js} +1 -1
  7. package/lib/components/ConnectWallet/index.vue +7 -7
  8. package/lib/components/TokenConvert/index.vue +10 -10
  9. package/lib/components/TxDialog/index.vue +422 -422
  10. package/lib/components/TxDialog/messages/Delegate.vue +4 -4
  11. package/lib/components/TxDialog/messages/Deposit.vue +3 -3
  12. package/lib/components/TxDialog/messages/Redelegate.vue +5 -5
  13. package/lib/components/TxDialog/messages/Send.vue +5 -5
  14. package/lib/components/TxDialog/messages/Transfer.vue +6 -6
  15. package/lib/components/TxDialog/messages/Unbond.vue +3 -3
  16. package/lib/components/TxDialog/messages/Vote.vue +1 -1
  17. package/lib/components/TxDialog/messages/Withdraw.vue +1 -1
  18. package/lib/components/TxDialog/messages/WithdrawCommission.vue +1 -1
  19. package/lib/components/TxDialog/wasm/ClearAdmin.vue +2 -2
  20. package/lib/components/TxDialog/wasm/ExecuteContract.vue +5 -5
  21. package/lib/components/TxDialog/wasm/InstantiateContract.vue +6 -6
  22. package/lib/components/TxDialog/wasm/MigrateContract.vue +4 -4
  23. package/lib/components/TxDialog/wasm/MigrateContract2.vue +4 -4
  24. package/lib/components/TxDialog/wasm/StoreCode.vue +2 -2
  25. package/lib/components/TxDialog/wasm/UpdateAdmin.vue +3 -3
  26. package/lib/main.css +540 -44
  27. package/lib/main.ts +1 -0
  28. package/package.json +3 -4
  29. package/src/App.vue +6 -6
  30. package/src/styles/design-system.css +35 -1
  31. package/tailwind.config.js +1 -54
package/lib/main.css CHANGED
@@ -22,53 +22,162 @@ code, pre, .font-mono {
22
22
  }
23
23
 
24
24
  /* ============================================================
25
- S4 4.20DaisyUI Glassmorphism Override (Dark Mode)
26
- Aligns DaisyUI components with Explorer Design System
25
+ S5.7Standalone Widget Component CSS
26
+ Replaces DaisyUI with self-contained component styles
27
27
  ============================================================ */
28
28
 
29
- /* Input focus reset */
30
- .input:focus {
31
- outline: none;
29
+ /* --- Modal --- */
30
+ .modal-toggle {
31
+ display: none;
32
+ }
33
+
34
+ .modal {
35
+ position: fixed;
36
+ inset: 0;
37
+ z-index: 9999;
38
+ display: flex;
39
+ align-items: center;
40
+ justify-content: center;
41
+ background: rgba(0, 0, 0, 0.5);
42
+ opacity: 0;
43
+ pointer-events: none;
44
+ transition: opacity 0.2s ease;
45
+ }
46
+
47
+ .modal-toggle:checked ~ .modal {
48
+ opacity: 1;
49
+ pointer-events: auto;
50
+ }
51
+
52
+ .modal-box {
53
+ background: #ffffff;
54
+ border-radius: 16px;
55
+ padding: 1.25rem;
56
+ max-width: 32rem;
57
+ width: 90vw;
58
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
59
+ position: relative;
32
60
  }
33
61
 
34
- /* Modal → Glass Panel */
35
62
  .dark .modal-box {
36
63
  background: rgba(15, 20, 25, 0.85);
37
64
  backdrop-filter: blur(16px);
38
65
  -webkit-backdrop-filter: blur(16px);
39
66
  border: 1px solid rgba(255, 255, 255, 0.08);
40
- border-radius: 16px;
41
67
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
42
68
  0 0 0 1px rgba(255, 255, 255, 0.05);
43
69
  }
44
70
 
45
- /* Buttons → Gradient */
46
- .dark .btn-primary,
47
- .dark .btn.btn-primary {
48
- background: linear-gradient(135deg, lch(52% 70% 250deg), lch(55% 65% 245deg));
71
+ .modal-action {
72
+ display: flex;
73
+ justify-content: flex-end;
74
+ gap: 0.5rem;
75
+ margin-top: 1rem;
76
+ }
77
+
78
+ /* --- Button --- */
79
+ .btn {
80
+ display: inline-flex;
81
+ align-items: center;
82
+ justify-content: center;
83
+ border-radius: 0.5rem;
84
+ padding: 0.5rem 1rem;
85
+ font-size: 0.875rem;
86
+ font-weight: 500;
87
+ line-height: 1.25rem;
88
+ cursor: pointer;
89
+ border: 1px solid #e5e7eb;
90
+ background: #ffffff;
91
+ color: #374151;
92
+ transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
93
+ user-select: none;
94
+ }
95
+
96
+ .btn:hover {
97
+ background: #f3f4f6;
98
+ }
99
+
100
+ .btn:active {
101
+ transform: scale(0.97);
102
+ }
103
+
104
+ .btn:disabled,
105
+ .btn[disabled] {
106
+ opacity: 0.5;
107
+ cursor: not-allowed;
108
+ }
109
+
110
+ .btn-sm {
111
+ padding: 0.25rem 0.75rem;
112
+ font-size: 0.8125rem;
113
+ }
114
+
115
+ .btn-xs {
116
+ padding: 0.125rem 0.5rem;
117
+ font-size: 0.75rem;
118
+ }
119
+
120
+ .btn-circle {
121
+ border-radius: 9999px;
122
+ width: 2rem;
123
+ height: 2rem;
124
+ padding: 0;
125
+ }
126
+
127
+ .btn-sm.btn-circle {
128
+ width: 1.5rem;
129
+ height: 1.5rem;
130
+ font-size: 0.75rem;
131
+ }
132
+
133
+ .btn-primary {
134
+ background: linear-gradient(135deg, #0066ff, #3b82f6);
49
135
  border: 1px solid rgba(0, 102, 255, 0.2);
50
136
  color: #ffffff;
51
- transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
52
137
  }
53
138
 
54
- .dark .btn-primary:hover,
55
- .dark .btn.btn-primary:hover {
139
+ .btn-primary:hover {
56
140
  transform: translateY(-1px);
57
- box-shadow: 0 8px 25px -5px rgba(0, 102, 255, 0.4),
58
- 0 0 0 1px rgba(0, 102, 255, 0.1);
141
+ box-shadow: 0 8px 25px -5px rgba(0, 102, 255, 0.4);
142
+ background: linear-gradient(135deg, #0066ff, #3b82f6);
59
143
  }
60
144
 
61
- .dark .btn-primary:active,
62
- .dark .btn.btn-primary:active {
145
+ .btn-primary:active {
63
146
  transform: scale(0.97);
64
147
  }
65
148
 
149
+ .btn-ghost {
150
+ background: transparent;
151
+ border-color: transparent;
152
+ }
153
+
154
+ .btn-ghost:hover {
155
+ background: rgba(0, 0, 0, 0.05);
156
+ }
157
+
158
+ .dark .btn-ghost:hover {
159
+ background: rgba(255, 255, 255, 0.1);
160
+ }
161
+
162
+ .btn-link {
163
+ background: transparent;
164
+ border-color: transparent;
165
+ color: #0066ff;
166
+ text-decoration: underline;
167
+ text-underline-offset: 2px;
168
+ }
169
+
170
+ .btn-link:hover {
171
+ background: transparent;
172
+ border-color: transparent;
173
+ text-decoration-thickness: 2px;
174
+ }
175
+
66
176
  /* Close button (circle btn) */
67
177
  .dark .btn.btn-sm.btn-circle {
68
178
  background: rgba(255, 255, 255, 0.1);
69
179
  border: 1px solid rgba(255, 255, 255, 0.1);
70
180
  color: #9ca3af;
71
- transition: all 0.15s ease;
72
181
  }
73
182
 
74
183
  .dark .btn.btn-sm.btn-circle:hover {
@@ -76,57 +185,444 @@ code, pre, .font-mono {
76
185
  color: #e5e7eb;
77
186
  }
78
187
 
79
- /* Inputs Glass Input */
80
- .dark .input,
81
- .dark .select,
82
- .dark .textarea {
188
+ /* --- Form --- */
189
+ .form-control {
190
+ width: 100%;
191
+ position: relative;
192
+ }
193
+
194
+ .label {
195
+ display: flex;
196
+ justify-content: space-between;
197
+ align-items: center;
198
+ padding: 0.25rem 0;
199
+ font-size: 0.875rem;
200
+ line-height: 1.25rem;
201
+ }
202
+
203
+ .label-text {
204
+ font-size: 0.875rem;
205
+ font-weight: 500;
206
+ color: #374151;
207
+ }
208
+
209
+ .dark .label-text {
210
+ color: #e5e7eb;
211
+ }
212
+
213
+ .input-group {
214
+ display: flex;
215
+ align-items: stretch;
216
+ }
217
+
218
+ .join {
219
+ display: flex;
220
+ }
221
+
222
+ .join-item {
223
+ border-radius: 0;
224
+ }
225
+
226
+ .join-item:first-child {
227
+ border-top-left-radius: 0.5rem;
228
+ border-bottom-left-radius: 0.5rem;
229
+ }
230
+
231
+ .join-item:last-child {
232
+ border-top-right-radius: 0.5rem;
233
+ border-bottom-right-radius: 0.5rem;
234
+ }
235
+
236
+ .input {
237
+ width: 100%;
238
+ border: 1px solid #d1d5db;
239
+ border-radius: 0.5rem;
240
+ padding: 0.5rem 0.75rem;
241
+ font-size: 0.875rem;
242
+ line-height: 1.25rem;
243
+ background: #ffffff;
244
+ color: #111827;
245
+ transition: border-color 0.2s ease, box-shadow 0.2s ease;
246
+ outline: none;
247
+ }
248
+
249
+ .input:focus {
250
+ border-color: #0066ff;
251
+ box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
252
+ }
253
+
254
+ .input::placeholder {
255
+ color: #9ca3af;
256
+ }
257
+
258
+ .dark .input {
83
259
  background: rgba(255, 255, 255, 0.05);
84
- border: 1px solid rgba(255, 255, 255, 0.1);
260
+ border-color: rgba(255, 255, 255, 0.1);
85
261
  color: #e5e7eb;
262
+ }
263
+
264
+ .dark .input:focus {
265
+ border-color: #0066ff;
266
+ box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
267
+ }
268
+
269
+ .dark .input::placeholder {
270
+ color: #6b7280;
271
+ }
272
+
273
+ .select {
274
+ width: 100%;
275
+ border: 1px solid #d1d5db;
276
+ border-radius: 0.5rem;
277
+ padding: 0.5rem 0.75rem;
278
+ font-size: 0.875rem;
279
+ line-height: 1.25rem;
280
+ background: #ffffff;
281
+ color: #111827;
86
282
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
283
+ outline: none;
284
+ appearance: auto;
87
285
  }
88
286
 
89
- .dark .input:focus,
90
- .dark .select:focus,
91
- .dark .textarea:focus {
287
+ .select-bordered {
288
+ border: 1px solid #d1d5db;
289
+ }
290
+
291
+ .select:focus {
92
292
  border-color: #0066ff;
93
293
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
294
+ }
295
+
296
+ .dark .select {
297
+ background: #1a1f2e;
298
+ border-color: rgba(255, 255, 255, 0.15);
299
+ color: #e5e7eb;
300
+ }
301
+
302
+ .dark .select option {
303
+ background: #1a1f2e;
304
+ color: #e5e7eb;
305
+ }
306
+
307
+ .dark .select:focus {
308
+ border-color: #0066ff;
309
+ box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
310
+ }
311
+
312
+ .textarea {
313
+ width: 100%;
314
+ border: 1px solid #d1d5db;
315
+ border-radius: 0.5rem;
316
+ padding: 0.5rem 0.75rem;
317
+ font-size: 0.875rem;
318
+ line-height: 1.25rem;
319
+ background: #ffffff;
320
+ color: #111827;
321
+ transition: border-color 0.2s ease, box-shadow 0.2s ease;
94
322
  outline: none;
323
+ resize: vertical;
324
+ }
325
+
326
+ .textarea:focus {
327
+ border-color: #0066ff;
328
+ box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
329
+ }
330
+
331
+ .textarea::placeholder {
332
+ color: #9ca3af;
333
+ }
334
+
335
+ .dark .textarea {
336
+ background: rgba(255, 255, 255, 0.05);
337
+ border-color: rgba(255, 255, 255, 0.1);
338
+ color: #e5e7eb;
339
+ }
340
+
341
+ .dark .textarea:focus {
342
+ border-color: #0066ff;
343
+ box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
95
344
  }
96
345
 
97
- .dark .input::placeholder,
98
346
  .dark .textarea::placeholder {
99
347
  color: #6b7280;
100
348
  }
101
349
 
102
- /* Dropdown Glass Dropdown */
103
- .dark .dropdown-content {
104
- background: rgba(15, 20, 25, 0.9);
105
- backdrop-filter: blur(12px);
106
- -webkit-backdrop-filter: blur(12px);
107
- border: 1px solid rgba(255, 255, 255, 0.08);
108
- border-radius: 12px;
109
- box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.5);
350
+ /* --- Alert --- */
351
+ .alert {
352
+ display: flex;
353
+ align-items: center;
354
+ gap: 0.75rem;
355
+ padding: 1rem;
356
+ border-radius: 0.75rem;
357
+ font-size: 0.875rem;
358
+ }
359
+
360
+ .alert-success {
361
+ background: rgba(63, 182, 139, 0.1);
362
+ color: #065f46;
363
+ border: 1px solid rgba(63, 182, 139, 0.2);
110
364
  }
111
365
 
112
- /* Alert → Glass Alert */
113
- .dark .alert {
366
+ .dark .alert-success {
367
+ background: rgba(63, 182, 139, 0.08);
114
368
  backdrop-filter: blur(8px);
115
369
  -webkit-backdrop-filter: blur(8px);
116
370
  border: 1px solid rgba(255, 255, 255, 0.06);
117
- border-radius: 12px;
371
+ color: #6ee7b7;
372
+ }
373
+
374
+ .alert-error {
375
+ background: rgba(255, 83, 83, 0.1);
376
+ color: #991b1b;
377
+ border: 1px solid rgba(255, 83, 83, 0.2);
378
+ }
379
+
380
+ .dark .alert-error {
381
+ background: rgba(255, 83, 83, 0.08);
382
+ backdrop-filter: blur(8px);
383
+ -webkit-backdrop-filter: blur(8px);
384
+ border: 1px solid rgba(255, 255, 255, 0.06);
385
+ color: #fca5a5;
386
+ }
387
+
388
+ /* --- Toast --- */
389
+ .toast {
390
+ position: fixed;
391
+ bottom: 1rem;
392
+ right: 1rem;
393
+ z-index: 9999;
118
394
  }
119
395
 
120
- /* Toast → Glass Toast */
121
396
  .dark .toast {
122
397
  backdrop-filter: blur(8px);
123
398
  -webkit-backdrop-filter: blur(8px);
124
399
  }
125
400
 
126
- /* Card (used in TokenConvert dropdown) */
401
+ /* --- Dropdown --- */
402
+ .dropdown-content {
403
+ position: absolute;
404
+ z-index: 50;
405
+ background: #ffffff;
406
+ border: 1px solid #e5e7eb;
407
+ border-radius: 0.75rem;
408
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
409
+ 0 4px 6px -4px rgba(0, 0, 0, 0.1);
410
+ padding: 0.5rem;
411
+ color: #374151;
412
+ }
413
+
414
+ .dropdown-content .text-gray-600,
415
+ .dropdown-content .text-gray-500,
416
+ .dropdown-content .text-sm,
417
+ .dropdown-content span,
418
+ .dropdown-content a {
419
+ color: inherit;
420
+ }
421
+
422
+ .dark .dropdown-content {
423
+ background: #1a1f2e;
424
+ border: 1px solid rgba(255, 255, 255, 0.08);
425
+ box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.5);
426
+ color: #e5e7eb;
427
+ }
428
+
429
+ .dark .dropdown-content .text-gray-600,
430
+ .dark .dropdown-content .text-gray-500,
431
+ .dark .dropdown-content .text-sm,
432
+ .dark .dropdown-content span,
433
+ .dark .dropdown-content a {
434
+ color: #e5e7eb;
435
+ }
436
+
437
+ /* Dropdown items inside dark dropdown should have visible hover */
438
+ .dark .dropdown-content .hover\:bg-gray-200:hover,
439
+ .dark .dropdown-content .hover\:bg-gray-100:hover {
440
+ background: rgba(255, 255, 255, 0.08);
441
+ }
442
+
443
+ .divider {
444
+ height: 1px;
445
+ background: #e5e7eb;
446
+ margin: 0.5rem 0;
447
+ }
448
+
449
+ .dark .divider {
450
+ background: rgba(255, 255, 255, 0.08);
451
+ }
452
+
453
+ /* --- Card (used in TokenConvert dropdown) --- */
454
+ .card {
455
+ background: transparent;
456
+ }
457
+
458
+ .card.dropdown-content {
459
+ background: #ffffff;
460
+ }
461
+
127
462
  .dark .card.dropdown-content {
128
- background: rgba(15, 20, 25, 0.9);
129
- backdrop-filter: blur(12px);
130
- -webkit-backdrop-filter: blur(12px);
463
+ background: #1a1f2e;
131
464
  border: 1px solid rgba(255, 255, 255, 0.08);
132
465
  }
466
+
467
+ .dark .card.dropdown-content .card-body {
468
+ color: #e5e7eb;
469
+ }
470
+
471
+ .dark .card.dropdown-content li {
472
+ color: #e5e7eb;
473
+ }
474
+
475
+ /* --- Loading --- */
476
+ .loading {
477
+ display: inline-block;
478
+ width: 1rem;
479
+ height: 1rem;
480
+ border: 2px solid rgba(255, 255, 255, 0.3);
481
+ border-top-color: #ffffff;
482
+ border-radius: 9999px;
483
+ animation: spin 0.6s linear infinite;
484
+ }
485
+
486
+ .loading-spinner {
487
+ display: inline-block;
488
+ width: 1rem;
489
+ height: 1rem;
490
+ border: 2px solid rgba(255, 255, 255, 0.3);
491
+ border-top-color: #ffffff;
492
+ border-radius: 9999px;
493
+ animation: spin 0.6s linear infinite;
494
+ }
495
+
496
+ @keyframes spin {
497
+ to {
498
+ transform: rotate(360deg);
499
+ }
500
+ }
501
+
502
+ /* --- Checkbox --- */
503
+ .checkbox {
504
+ width: 1.25rem;
505
+ height: 1.25rem;
506
+ border-radius: 0.25rem;
507
+ border: 2px solid #d1d5db;
508
+ appearance: none;
509
+ cursor: pointer;
510
+ transition: all 0.15s ease;
511
+ position: relative;
512
+ }
513
+
514
+ .checkbox:checked {
515
+ background: #0066ff;
516
+ border-color: #0066ff;
517
+ }
518
+
519
+ .checkbox:checked::after {
520
+ content: '';
521
+ position: absolute;
522
+ top: 50%;
523
+ left: 50%;
524
+ width: 0.35rem;
525
+ height: 0.6rem;
526
+ border: solid #ffffff;
527
+ border-width: 0 2px 2px 0;
528
+ transform: translate(-50%, -60%) rotate(45deg);
529
+ }
530
+
531
+ .checkbox-sm {
532
+ width: 1rem;
533
+ height: 1rem;
534
+ }
535
+
536
+ .checkbox-primary {
537
+ accent-color: #0066ff;
538
+ }
539
+
540
+ .dark .checkbox {
541
+ border-color: rgba(255, 255, 255, 0.2);
542
+ background: transparent;
543
+ }
544
+
545
+ .dark .checkbox:checked {
546
+ background: #0066ff;
547
+ border-color: #0066ff;
548
+ }
549
+
550
+ /* --- Radio --- */
551
+ .radio {
552
+ width: 1.25rem;
553
+ height: 1.25rem;
554
+ border-radius: 9999px;
555
+ border: 2px solid #d1d5db;
556
+ appearance: none;
557
+ cursor: pointer;
558
+ transition: all 0.15s ease;
559
+ position: relative;
560
+ }
561
+
562
+ .radio:checked {
563
+ border-color: #0066ff;
564
+ }
565
+
566
+ .radio:checked::after {
567
+ content: '';
568
+ position: absolute;
569
+ top: 50%;
570
+ left: 50%;
571
+ width: 0.5rem;
572
+ height: 0.5rem;
573
+ border-radius: 9999px;
574
+ background: #0066ff;
575
+ transform: translate(-50%, -50%);
576
+ }
577
+
578
+ .radio-success:checked {
579
+ border-color: #3fb68b;
580
+ }
581
+
582
+ .radio-success:checked::after {
583
+ background: #3fb68b;
584
+ }
585
+
586
+ .radio-error:checked {
587
+ border-color: #ff5353;
588
+ }
589
+
590
+ .radio-error:checked::after {
591
+ background: #ff5353;
592
+ }
593
+
594
+ .radio-dark:checked {
595
+ border-color: #1e40af;
596
+ }
597
+
598
+ .radio-dark:checked::after {
599
+ background: #1e40af;
600
+ }
601
+
602
+ .dark .radio {
603
+ border-color: rgba(255, 255, 255, 0.2);
604
+ }
605
+
606
+ /* --- File Input --- */
607
+ .file-input {
608
+ width: 100%;
609
+ border: 1px solid #d1d5db;
610
+ border-radius: 0.5rem;
611
+ padding: 0.5rem;
612
+ font-size: 0.875rem;
613
+ background: #ffffff;
614
+ color: #111827;
615
+ transition: border-color 0.2s ease, box-shadow 0.2s ease;
616
+ outline: none;
617
+ }
618
+
619
+ .file-input:focus {
620
+ border-color: #0066ff;
621
+ box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
622
+ }
623
+
624
+ .dark .file-input {
625
+ background: rgba(255, 255, 255, 0.05);
626
+ border-color: rgba(255, 255, 255, 0.1);
627
+ color: #e5e7eb;
628
+ }
package/lib/main.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import '../src/styles/design-system.css';
1
2
  import './main.css';
2
3
  import { createApp, h } from 'vue';
3
4
  // @ts-ignore
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mictonode/widget",
3
3
  "private": false,
4
- "version": "0.3.17",
4
+ "version": "0.3.19",
5
5
  "type": "module",
6
6
  "main": "dist/ping-widget.js",
7
7
  "author": {
@@ -33,7 +33,6 @@
33
33
  "trypublish": "npm publish || true"
34
34
  },
35
35
  "dependencies": {
36
- "cosmjs-types": "0.9.0",
37
36
  "@cosmjs/amino": "^0.32.3",
38
37
  "@cosmjs/cosmwasm-stargate": "^0.32.3",
39
38
  "@cosmjs/ledger-amino": "^0.32.3",
@@ -48,8 +47,8 @@
48
47
  "@ping-pub/chain-registry-client": "^0.0.25",
49
48
  "@types/bignumber.js": "^5.0.0",
50
49
  "buffer": "^6.0.3",
50
+ "cosmjs-types": "0.9.0",
51
51
  "cross-fetch": "^3.1.5",
52
- "daisyui": "^3.1.0",
53
52
  "dayjs": "^1.11.7",
54
53
  "fflate": "^0.8.0",
55
54
  "osmojs": "^15.2.1",
@@ -81,4 +80,4 @@
81
80
  "vite-plugin-css-injected-by-js": "^3.1.0",
82
81
  "vue-tsc": "^1.4.2"
83
82
  }
84
- }
83
+ }