-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
2522 lines (2522 loc) · 99.2 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "projeto_nft2",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "projeto_nft2",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"@airgap/beacon-sdk": "^4.0.8",
"@taquito/beacon-wallet": "^17.2.0",
"@taquito/taquito": "^17.2.0",
"@temple-wallet/dapp": "^8.0.0",
"express": "^4.18.2"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
},
"node_modules/@airgap/beacon-blockchain-substrate": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@airgap/beacon-blockchain-substrate/-/beacon-blockchain-substrate-4.0.8.tgz",
"integrity": "sha512-6jmb9Wtr4nep2P2k3nT0Uu19xYeaeCcg3WaX/LY0HOHBbNDNlPJ5uBbBoLPIE0RW/7SWWf0kkF5AfQgMRMj3xw==",
"dependencies": {
"@airgap/beacon-types": "4.0.8",
"@airgap/beacon-ui": "4.0.8"
}
},
"node_modules/@airgap/beacon-blockchain-tezos": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@airgap/beacon-blockchain-tezos/-/beacon-blockchain-tezos-4.0.8.tgz",
"integrity": "sha512-ptsBpXsBIxkdh3EfhJChcXEqu3Y7lTkMVo4zK6aMizR9CUz7sdAodqbaXPQVe1up2eWv3H9OFTDw/56uSoBt4Q==",
"dependencies": {
"@airgap/beacon-types": "4.0.8",
"@airgap/beacon-ui": "4.0.8"
}
},
"node_modules/@airgap/beacon-core": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@airgap/beacon-core/-/beacon-core-4.0.8.tgz",
"integrity": "sha512-8CaWThg5Wc2frM9E4OILGdYB8FkfQXH0eM5nrwAHEscnTo7AvvNy5l5b2UnJqOW+y7JqbrTU1fEAMOMH/yGg2A==",
"dependencies": {
"@airgap/beacon-types": "4.0.8",
"@airgap/beacon-utils": "4.0.8",
"@stablelib/ed25519": "^1.0.3",
"@stablelib/nacl": "^1.0.4",
"@stablelib/utf8": "^1.0.1",
"@stablelib/x25519-session": "^1.0.4",
"bs58check": "2.1.2"
}
},
"node_modules/@airgap/beacon-dapp": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@airgap/beacon-dapp/-/beacon-dapp-4.0.8.tgz",
"integrity": "sha512-FvSH/MtzDNIdW54WF4odbO9mLqVnaqSQaMCoXtftRPQ9JeNOeNMggkN5ULL76rElaq9HYU1a+VNvf0J92boeHQ==",
"dependencies": {
"@airgap/beacon-core": "4.0.8",
"@airgap/beacon-transport-matrix": "4.0.8",
"@airgap/beacon-transport-postmessage": "4.0.8",
"@airgap/beacon-transport-walletconnect": "4.0.8",
"@airgap/beacon-ui": "4.0.8"
}
},
"node_modules/@airgap/beacon-sdk": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@airgap/beacon-sdk/-/beacon-sdk-4.0.8.tgz",
"integrity": "sha512-4EK118TF6JlVB5nd1fwkgJRBEXbGHb6dD6bhVs9zSWQfZwCQtBOVVtEpIqVTanJ5ocnSb9755cKrtOAof4nNoQ==",
"dependencies": {
"@airgap/beacon-blockchain-substrate": "4.0.8",
"@airgap/beacon-blockchain-tezos": "4.0.8",
"@airgap/beacon-core": "4.0.8",
"@airgap/beacon-dapp": "4.0.8",
"@airgap/beacon-transport-matrix": "4.0.8",
"@airgap/beacon-transport-postmessage": "4.0.8",
"@airgap/beacon-types": "4.0.8",
"@airgap/beacon-ui": "4.0.8",
"@airgap/beacon-utils": "4.0.8",
"@airgap/beacon-wallet": "4.0.8"
}
},
"node_modules/@airgap/beacon-transport-matrix": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@airgap/beacon-transport-matrix/-/beacon-transport-matrix-4.0.8.tgz",
"integrity": "sha512-dPNh1gLWoV/NBnpSkV2s2o6qJ9YC5aOlXIzrGXNAlwcaEMSPrF96tTqgZS16ip9CqSYmyoMHXnSJ4EWwzWJEYQ==",
"dependencies": {
"@airgap/beacon-core": "4.0.8",
"@airgap/beacon-utils": "4.0.8",
"axios": "0.24.0"
}
},
"node_modules/@airgap/beacon-transport-matrix/node_modules/axios": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz",
"integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==",
"dependencies": {
"follow-redirects": "^1.14.4"
}
},
"node_modules/@airgap/beacon-transport-postmessage": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@airgap/beacon-transport-postmessage/-/beacon-transport-postmessage-4.0.8.tgz",
"integrity": "sha512-CnspEHQtxmwcKiryVFvyruNvVwmUXgyXfPDZ+NpXNTL9uUw0C2eM8Tdplo/CecSCTOphpovOT0iUbL2wWgLZWA==",
"dependencies": {
"@airgap/beacon-core": "4.0.8",
"@airgap/beacon-types": "4.0.8",
"@airgap/beacon-utils": "4.0.8"
}
},
"node_modules/@airgap/beacon-transport-walletconnect": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@airgap/beacon-transport-walletconnect/-/beacon-transport-walletconnect-4.0.8.tgz",
"integrity": "sha512-LPq+Sfe6QHHMVEtEEPs4kPtQKQ4cUnI0FzTNHzamNzYCC7w4I2Z2IaA9f+1E5FZMuc1peGnknNCNt4lEf2w5xQ==",
"dependencies": {
"@airgap/beacon-core": "4.0.8",
"@airgap/beacon-types": "4.0.8",
"@airgap/beacon-utils": "4.0.8",
"@walletconnect/sign-client": "^2.9.0"
}
},
"node_modules/@airgap/beacon-types": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@airgap/beacon-types/-/beacon-types-4.0.8.tgz",
"integrity": "sha512-So5hBdjqhUtLHno6wLHJTfEGWq+uFXJXtnO5pus/wTOoVxVaEGM9sEcln3xW++Rs5Qrf/zRc7vuBNdyI4vLQTA==",
"dependencies": {
"@types/chrome": "0.0.163"
}
},
"node_modules/@airgap/beacon-ui": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@airgap/beacon-ui/-/beacon-ui-4.0.8.tgz",
"integrity": "sha512-5XpQWmaFksXJM7R2Z8fozX9cEtdXrzLBIaeVUa19smePLWIr23KGtJzmeUq0oxU1hdwZpG/FhNy4Kv4RqWii/w==",
"dependencies": {
"@airgap/beacon-core": "4.0.8",
"@airgap/beacon-transport-postmessage": "4.0.8",
"@airgap/beacon-types": "4.0.8",
"@airgap/beacon-utils": "4.0.8",
"qrcode-svg": "^1.1.0",
"solid-js": "^1.6.6"
}
},
"node_modules/@airgap/beacon-utils": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@airgap/beacon-utils/-/beacon-utils-4.0.8.tgz",
"integrity": "sha512-BMPvFTBWcgmVL8h5DuUnF2sxlywNYujPYu4F5+DC3MTNy0J3m3Dy3f3mX3si4aBgFL7B+1UBLgpw2lTmFnQLww==",
"dependencies": {
"@stablelib/ed25519": "^1.0.3",
"@stablelib/nacl": "^1.0.3",
"@stablelib/random": "^1.0.2",
"@stablelib/utf8": "^1.0.1",
"bs58check": "2.1.2"
}
},
"node_modules/@airgap/beacon-wallet": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/@airgap/beacon-wallet/-/beacon-wallet-4.0.8.tgz",
"integrity": "sha512-BFMXsr79z/eeWDmk2SrjSQ84fI+MXvEwDGrrEDUUM5vZSokv3yPkn6hY3MUzegzFIVGgRPcuQ9B5B4e2F/bhzQ==",
"dependencies": {
"@airgap/beacon-core": "4.0.8",
"@airgap/beacon-transport-matrix": "4.0.8",
"@airgap/beacon-transport-postmessage": "4.0.8"
}
},
"node_modules/@stablelib/aead": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/aead/-/aead-1.0.1.tgz",
"integrity": "sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg=="
},
"node_modules/@stablelib/binary": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/binary/-/binary-1.0.1.tgz",
"integrity": "sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==",
"dependencies": {
"@stablelib/int": "^1.0.1"
}
},
"node_modules/@stablelib/blake2b": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/blake2b/-/blake2b-1.0.1.tgz",
"integrity": "sha512-B3KyKoBAjkIFeH7romcF96i+pVFYk7K2SBQ1pZvaxV+epSBXJ+n0C66esUhyz6FF+5FbdQVm77C5fzGFcEZpKA==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/hash": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/bytes": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/bytes/-/bytes-1.0.1.tgz",
"integrity": "sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ=="
},
"node_modules/@stablelib/chacha": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/chacha/-/chacha-1.0.1.tgz",
"integrity": "sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/chacha20poly1305": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/chacha20poly1305/-/chacha20poly1305-1.0.1.tgz",
"integrity": "sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==",
"dependencies": {
"@stablelib/aead": "^1.0.1",
"@stablelib/binary": "^1.0.1",
"@stablelib/chacha": "^1.0.1",
"@stablelib/constant-time": "^1.0.1",
"@stablelib/poly1305": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/constant-time": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/constant-time/-/constant-time-1.0.1.tgz",
"integrity": "sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg=="
},
"node_modules/@stablelib/ed25519": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@stablelib/ed25519/-/ed25519-1.0.3.tgz",
"integrity": "sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==",
"dependencies": {
"@stablelib/random": "^1.0.2",
"@stablelib/sha512": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/hash": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/hash/-/hash-1.0.1.tgz",
"integrity": "sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg=="
},
"node_modules/@stablelib/hkdf": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/hkdf/-/hkdf-1.0.1.tgz",
"integrity": "sha512-SBEHYE16ZXlHuaW5RcGk533YlBj4grMeg5TooN80W3NpcHRtLZLLXvKyX0qcRFxf+BGDobJLnwkvgEwHIDBR6g==",
"dependencies": {
"@stablelib/hash": "^1.0.1",
"@stablelib/hmac": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/hmac": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/hmac/-/hmac-1.0.1.tgz",
"integrity": "sha512-V2APD9NSnhVpV/QMYgCVMIYKiYG6LSqw1S65wxVoirhU/51ACio6D4yDVSwMzuTJXWZoVHbDdINioBwKy5kVmA==",
"dependencies": {
"@stablelib/constant-time": "^1.0.1",
"@stablelib/hash": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/int": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/int/-/int-1.0.1.tgz",
"integrity": "sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w=="
},
"node_modules/@stablelib/keyagreement": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/keyagreement/-/keyagreement-1.0.1.tgz",
"integrity": "sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==",
"dependencies": {
"@stablelib/bytes": "^1.0.1"
}
},
"node_modules/@stablelib/nacl": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@stablelib/nacl/-/nacl-1.0.4.tgz",
"integrity": "sha512-PJ2U/MrkXSKUM8C4qFs87WeCNxri7KQwR8Cdwm9q2sweGuAtTvOJGuW0F3N+zn+ySLPJA98SYWSSpogMJ1gCmw==",
"dependencies": {
"@stablelib/poly1305": "^1.0.1",
"@stablelib/random": "^1.0.2",
"@stablelib/wipe": "^1.0.1",
"@stablelib/x25519": "^1.0.3",
"@stablelib/xsalsa20": "^1.0.2"
}
},
"node_modules/@stablelib/poly1305": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/poly1305/-/poly1305-1.0.1.tgz",
"integrity": "sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==",
"dependencies": {
"@stablelib/constant-time": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/random": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@stablelib/random/-/random-1.0.2.tgz",
"integrity": "sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/salsa20": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@stablelib/salsa20/-/salsa20-1.0.2.tgz",
"integrity": "sha512-nfjKzw0KTKrrKBasEP+j7UP4I8Xudom8lVZIBCp0kQNARXq72IlSic0oabg2FC1NU68L4RdHrNJDd8bFwrphYA==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/constant-time": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/sha256": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/sha256/-/sha256-1.0.1.tgz",
"integrity": "sha512-GIIH3e6KH+91FqGV42Kcj71Uefd/QEe7Dy42sBTeqppXV95ggCcxLTk39bEr+lZfJmp+ghsR07J++ORkRELsBQ==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/hash": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/sha512": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/sha512/-/sha512-1.0.1.tgz",
"integrity": "sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/hash": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/utf8": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/utf8/-/utf8-1.0.1.tgz",
"integrity": "sha512-FrYD1xadah/TtAP6VJ04lDD5h9rdDj/d8wH/jMYTtHqZBv9z2btdvEU8vTxdjdkFmo1b/BH+t3R1wi/mYhCCNg=="
},
"node_modules/@stablelib/wipe": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/wipe/-/wipe-1.0.1.tgz",
"integrity": "sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg=="
},
"node_modules/@stablelib/x25519": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@stablelib/x25519/-/x25519-1.0.3.tgz",
"integrity": "sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==",
"dependencies": {
"@stablelib/keyagreement": "^1.0.1",
"@stablelib/random": "^1.0.2",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/x25519-session": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@stablelib/x25519-session/-/x25519-session-1.0.4.tgz",
"integrity": "sha512-UZw67EJWSNTaou7Qp086fzGek7crrCQl2K7MoqEzslXxrm6vybySfcdsqaZ0ZpKq19IHWK8G0wAlFBy70srm3w==",
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/keyagreement": "^1.0.1",
"@stablelib/random": "^1.0.2",
"@stablelib/wipe": "^1.0.1",
"@stablelib/x25519": "^1.0.3"
}
},
"node_modules/@stablelib/xsalsa20": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@stablelib/xsalsa20/-/xsalsa20-1.0.2.tgz",
"integrity": "sha512-7XdBGbcNgBShmuhDXv1G1WPVCkjZdkb1oPMzSidO7Fve0MHntH6TjFkj5bfLI+aRE+61weO076vYpP/jmaAYog==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/salsa20": "^1.0.2",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@taquito/beacon-wallet": {
"version": "17.2.0",
"resolved": "https://registry.npmjs.org/@taquito/beacon-wallet/-/beacon-wallet-17.2.0.tgz",
"integrity": "sha512-yrxQAn88P/zX0jTeo2yuCOaNBSd7tcqS2nKUJLNsC4KGmnwybZPs+wzoZQoFkW+lMBOIbLCoKJwWLhRFfpOy1A==",
"dependencies": {
"@airgap/beacon-dapp": "4.0.6",
"@taquito/core": "^17.2.0",
"@taquito/taquito": "^17.2.0"
},
"engines": {
"node": ">=16"
}
},
"node_modules/@taquito/beacon-wallet/node_modules/@airgap/beacon-core": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@airgap/beacon-core/-/beacon-core-4.0.6.tgz",
"integrity": "sha512-gSyA1rEZ9Rphbr575UgYNnEAcVAYaZ1AGo/7m4xmvyNVAi906BPfnfpsrH8HfsDZRcnW+ahMd+YElA6a2tesmw==",
"dependencies": {
"@airgap/beacon-types": "4.0.6",
"@airgap/beacon-utils": "4.0.6",
"@stablelib/ed25519": "^1.0.3",
"@stablelib/nacl": "^1.0.4",
"@stablelib/utf8": "^1.0.1",
"@stablelib/x25519-session": "^1.0.4",
"bs58check": "2.1.2"
}
},
"node_modules/@taquito/beacon-wallet/node_modules/@airgap/beacon-dapp": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@airgap/beacon-dapp/-/beacon-dapp-4.0.6.tgz",
"integrity": "sha512-4+AgPopWWjwxVJcpLXTlRGb/5jdkc0MUjBvtH6kZJfhf2drsdWUkBtGHCiqpy8KjLLOiyVgdGniNTFt4025hsg==",
"dependencies": {
"@airgap/beacon-core": "4.0.6",
"@airgap/beacon-transport-matrix": "4.0.6",
"@airgap/beacon-transport-postmessage": "4.0.6",
"@airgap/beacon-transport-walletconnect": "4.0.6",
"@airgap/beacon-ui": "4.0.6"
}
},
"node_modules/@taquito/beacon-wallet/node_modules/@airgap/beacon-transport-matrix": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@airgap/beacon-transport-matrix/-/beacon-transport-matrix-4.0.6.tgz",
"integrity": "sha512-wLla13DorVGadc4fG5S/o1EijwpTKIADP0DhGGD33bQc5s/59BFNSPAo3ZErZqD7+5vn7JTRKN4V/JUigsX+ZA==",
"dependencies": {
"@airgap/beacon-core": "4.0.6",
"@airgap/beacon-utils": "4.0.6",
"axios": "0.24.0"
}
},
"node_modules/@taquito/beacon-wallet/node_modules/@airgap/beacon-transport-postmessage": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@airgap/beacon-transport-postmessage/-/beacon-transport-postmessage-4.0.6.tgz",
"integrity": "sha512-lEwh3bLEOHnvjqA2ffaYxiIfcHLjnk0CzKW3CsvA5RJaMMZATNYj63HKC85K1SQZmy5EPReqGrjg7NpohC/TKw==",
"dependencies": {
"@airgap/beacon-core": "4.0.6",
"@airgap/beacon-types": "4.0.6",
"@airgap/beacon-utils": "4.0.6"
}
},
"node_modules/@taquito/beacon-wallet/node_modules/@airgap/beacon-transport-walletconnect": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@airgap/beacon-transport-walletconnect/-/beacon-transport-walletconnect-4.0.6.tgz",
"integrity": "sha512-/YxGCbhw8JqkyEYGd7mCa5greMYO9/Ro+61xQv1/3WjT/wlTYFDF0tuH+Di6ZxVz7SBk8e95bQsKL5u10poGoA==",
"dependencies": {
"@airgap/beacon-core": "4.0.6",
"@airgap/beacon-types": "4.0.6",
"@airgap/beacon-utils": "4.0.6",
"@walletconnect/sign-client": "^2.9.0"
}
},
"node_modules/@taquito/beacon-wallet/node_modules/@airgap/beacon-types": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@airgap/beacon-types/-/beacon-types-4.0.6.tgz",
"integrity": "sha512-9hBUts03MdYAp0IdNnXbLO1JDZd3jNXyez4ahht0jv396aPc27ZKAcWKBjkZCMbxQwpw9/pZVAmkLCErYNMSww==",
"dependencies": {
"@types/chrome": "0.0.163"
}
},
"node_modules/@taquito/beacon-wallet/node_modules/@airgap/beacon-ui": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@airgap/beacon-ui/-/beacon-ui-4.0.6.tgz",
"integrity": "sha512-wid0hxsR4QrB8se1/ID7H8O9BVL3VrLUjTEIMqaXPNyDa+p53FNTVq+CGeKJ8dz/IcjjZrRB7ZTRlYVTxgqP5A==",
"dependencies": {
"@airgap/beacon-core": "4.0.6",
"@airgap/beacon-transport-postmessage": "4.0.6",
"@airgap/beacon-types": "4.0.6",
"@airgap/beacon-utils": "4.0.6",
"qrcode-svg": "^1.1.0",
"solid-js": "^1.6.6"
}
},
"node_modules/@taquito/beacon-wallet/node_modules/@airgap/beacon-utils": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@airgap/beacon-utils/-/beacon-utils-4.0.6.tgz",
"integrity": "sha512-vV6xtS50Qd/VzJPeoK3y14ddSR+9AEV0HtmP7BcYC5jTN2flT+PlTO8y8vS0+Yx8eFnQTnlS2vp7a2DTa/aWUA==",
"dependencies": {
"@stablelib/ed25519": "^1.0.3",
"@stablelib/nacl": "^1.0.3",
"@stablelib/random": "^1.0.2",
"@stablelib/utf8": "^1.0.1",
"bs58check": "2.1.2"
}
},
"node_modules/@taquito/beacon-wallet/node_modules/axios": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz",
"integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==",
"dependencies": {
"follow-redirects": "^1.14.4"
}
},
"node_modules/@taquito/core": {
"version": "17.2.0",
"resolved": "https://registry.npmjs.org/@taquito/core/-/core-17.2.0.tgz",
"integrity": "sha512-Sijn6uhSJUPgk9TzlxOAiJpfF7HogjNepmjGia3Eq9LidJMg6gqL+VRYYtCIAzNQl7Ge8dkqUx9yIibQFHPR7w==",
"engines": {
"node": ">=16"
}
},
"node_modules/@taquito/http-utils": {
"version": "17.2.0",
"resolved": "https://registry.npmjs.org/@taquito/http-utils/-/http-utils-17.2.0.tgz",
"integrity": "sha512-7Euinzp652JyAjxkFtyYD+ZxKrCHA87pafrf+Mwb868KXcv4po72jg2GTtaimmIAEkDh03Bp+EpQVX4vpQeo/A==",
"dependencies": {
"@taquito/core": "^17.2.0",
"axios": "0.26.0"
},
"engines": {
"node": ">=16"
}
},
"node_modules/@taquito/local-forging": {
"version": "17.2.0",
"resolved": "https://registry.npmjs.org/@taquito/local-forging/-/local-forging-17.2.0.tgz",
"integrity": "sha512-f1ppmY7ItBbfBmT5TGOH5Sxp8sSUZ+LSHjZcRv3s36RGytHKK/IIbfY+z4+43ZIAVQpwxbXgZkqjPPsNacQPzA==",
"dependencies": {
"@taquito/core": "^17.2.0",
"@taquito/utils": "^17.2.0",
"bignumber.js": "^9.1.0"
},
"engines": {
"node": ">=16"
}
},
"node_modules/@taquito/michel-codec": {
"version": "17.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michel-codec/-/michel-codec-17.2.0.tgz",
"integrity": "sha512-PIQK9wrPKcsgoD/zQzb779jAhhHRs0ikBViqIQmTurT0uv3az2lRZRPdWrHovY835Iq9bhCZmL7s+ptPn1JjXg==",
"dependencies": {
"@taquito/core": "^17.2.0"
},
"engines": {
"node": ">=16"
}
},
"node_modules/@taquito/michelson-encoder": {
"version": "17.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michelson-encoder/-/michelson-encoder-17.2.0.tgz",
"integrity": "sha512-bJi9FLQ+RrERzSscwGVdti2lm7ktHQU9/nyljmP8LBCOkU7xvY3SJi+FKQHxcRGS52si6Wvi+oyMo6JcV6kYDg==",
"dependencies": {
"@taquito/rpc": "^17.2.0",
"@taquito/utils": "^17.2.0",
"bignumber.js": "^9.1.0",
"fast-json-stable-stringify": "^2.1.0"
},
"engines": {
"node": ">=16"
}
},
"node_modules/@taquito/rpc": {
"version": "17.2.0",
"resolved": "https://registry.npmjs.org/@taquito/rpc/-/rpc-17.2.0.tgz",
"integrity": "sha512-Fufl4m0ajNAvLlQ+tj4oDeC5TYk4LyLdsVYR0FQ9HdNWTI1Nu+/XTEwnq7AHx7w1zRAFRkAV/YaYn5HSogatjw==",
"dependencies": {
"@taquito/core": "^17.2.0",
"@taquito/http-utils": "^17.2.0",
"@taquito/utils": "^17.2.0",
"bignumber.js": "^9.1.0"
},
"engines": {
"node": ">=16"
}
},
"node_modules/@taquito/taquito": {
"version": "17.2.0",
"resolved": "https://registry.npmjs.org/@taquito/taquito/-/taquito-17.2.0.tgz",
"integrity": "sha512-8eZwLH+2reeYF+rDfzXOrXIr/g+GUZpLqkzEfZaxfejj8jVfj5S/fVjvIqBkfu/6Z3nynxgDcEzicgx85Dqovg==",
"hasInstallScript": true,
"dependencies": {
"@taquito/core": "^17.2.0",
"@taquito/http-utils": "^17.2.0",
"@taquito/local-forging": "^17.2.0",
"@taquito/michel-codec": "^17.2.0",
"@taquito/michelson-encoder": "^17.2.0",
"@taquito/rpc": "^17.2.0",
"@taquito/utils": "^17.2.0",
"bignumber.js": "^9.1.0",
"rxjs": "^7.8.1"
},
"engines": {
"node": ">=16"
}
},
"node_modules/@taquito/utils": {
"version": "17.2.0",
"resolved": "https://registry.npmjs.org/@taquito/utils/-/utils-17.2.0.tgz",
"integrity": "sha512-m+sl+glhPSKUtxuR+JDOrwEN/+ou/dpZxrLQiBQE2PG3GE1zRdfgBP7K49B+MNIgffdwXsDBfZSinx3AcayfeQ==",
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/ed25519": "^1.0.3",
"@taquito/core": "^17.2.0",
"@types/bs58check": "^2.1.0",
"bignumber.js": "^9.1.0",
"blakejs": "^1.2.1",
"bs58check": "^2.1.2",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"typedarray-to-buffer": "^4.0.0"
},
"engines": {
"node": ">=16"
}
},
"node_modules/@temple-wallet/dapp": {
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/@temple-wallet/dapp/-/dapp-8.0.0.tgz",
"integrity": "sha512-HIcNU2yMjd9bbCUI/CKeaInuubQfewoi6/AoYDRWCNL/Ci0yJKb9yybpG3w0iBAKpMyNy59iLfdWZo1GGMMaFg==",
"dependencies": {
"nanoid": "^3.1.30"
},
"peerDependencies": {
"@taquito/taquito": "^17.0.0"
}
},
"node_modules/@types/bs58check": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@types/bs58check/-/bs58check-2.1.0.tgz",
"integrity": "sha512-OxsysnJQh82vy9DRbOcw9m2j/WiyqZLn0YBhKxdQ+aCwoHj+tWzyCgpwAkr79IfDXZKxc6h7k89T9pwS78CqTQ==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/chrome": {
"version": "0.0.163",
"resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.163.tgz",
"integrity": "sha512-g+3E2tg/ukFsEgH+tB3a/b+J1VSvq/8gh2Jwih9eq+T3Idrz7ngj97u+/ya58Bfei2TQtPlRivj1FsCaSnukDA==",
"dependencies": {
"@types/filesystem": "*",
"@types/har-format": "*"
}
},
"node_modules/@types/filesystem": {
"version": "0.0.32",
"resolved": "https://registry.npmjs.org/@types/filesystem/-/filesystem-0.0.32.tgz",
"integrity": "sha512-Yuf4jR5YYMR2DVgwuCiP11s0xuVRyPKmz8vo6HBY3CGdeMj8af93CFZX+T82+VD1+UqHOxTq31lO7MI7lepBtQ==",
"dependencies": {
"@types/filewriter": "*"
}
},
"node_modules/@types/filewriter": {
"version": "0.0.29",
"resolved": "https://registry.npmjs.org/@types/filewriter/-/filewriter-0.0.29.tgz",
"integrity": "sha512-BsPXH/irW0ht0Ji6iw/jJaK8Lj3FJemon2gvEqHKpCdDCeemHa+rI3WBGq5z7cDMZgoLjY40oninGxqk+8NzNQ=="
},
"node_modules/@types/har-format": {
"version": "1.2.12",
"resolved": "https://registry.npmjs.org/@types/har-format/-/har-format-1.2.12.tgz",
"integrity": "sha512-P20p/YBrqUBmzD6KhIQ8EiY4/RRzlekL4eCvfQnulFPfjmiGxKIoyCeI7qam5I7oKH3P8EU4ptEi0EfyGoLysw=="
},
"node_modules/@types/node": {
"version": "20.5.7",
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz",
"integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA=="
},
"node_modules/@walletconnect/core": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.10.0.tgz",
"integrity": "sha512-Z8pdorfIMueuiBXLdnf7yloiO9JIiobuxN3j0OTal+MYc4q5/2O7d+jdD1DAXbLi1taJx3x60UXT/FPVkjIqIQ==",
"dependencies": {
"@walletconnect/heartbeat": "1.2.1",
"@walletconnect/jsonrpc-provider": "1.0.13",
"@walletconnect/jsonrpc-types": "1.0.3",
"@walletconnect/jsonrpc-utils": "1.0.8",
"@walletconnect/jsonrpc-ws-connection": "1.0.13",
"@walletconnect/keyvaluestorage": "^1.0.2",
"@walletconnect/logger": "^2.0.1",
"@walletconnect/relay-api": "^1.0.9",
"@walletconnect/relay-auth": "^1.0.4",
"@walletconnect/safe-json": "^1.0.2",
"@walletconnect/time": "^1.0.2",
"@walletconnect/types": "2.10.0",
"@walletconnect/utils": "2.10.0",
"events": "^3.3.0",
"lodash.isequal": "4.5.0",
"uint8arrays": "^3.1.0"
}
},
"node_modules/@walletconnect/environment": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@walletconnect/environment/-/environment-1.0.1.tgz",
"integrity": "sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==",
"dependencies": {
"tslib": "1.14.1"
}
},
"node_modules/@walletconnect/environment/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/events": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@walletconnect/events/-/events-1.0.1.tgz",
"integrity": "sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==",
"dependencies": {
"keyvaluestorage-interface": "^1.0.0",
"tslib": "1.14.1"
}
},
"node_modules/@walletconnect/events/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/heartbeat": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@walletconnect/heartbeat/-/heartbeat-1.2.1.tgz",
"integrity": "sha512-yVzws616xsDLJxuG/28FqtZ5rzrTA4gUjdEMTbWB5Y8V1XHRmqq4efAxCw5ie7WjbXFSUyBHaWlMR+2/CpQC5Q==",
"dependencies": {
"@walletconnect/events": "^1.0.1",
"@walletconnect/time": "^1.0.2",
"tslib": "1.14.1"
}
},
"node_modules/@walletconnect/heartbeat/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/jsonrpc-provider": {
"version": "1.0.13",
"resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.13.tgz",
"integrity": "sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==",
"dependencies": {
"@walletconnect/jsonrpc-utils": "^1.0.8",
"@walletconnect/safe-json": "^1.0.2",
"tslib": "1.14.1"
}
},
"node_modules/@walletconnect/jsonrpc-provider/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/jsonrpc-types": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.3.tgz",
"integrity": "sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==",
"dependencies": {
"keyvaluestorage-interface": "^1.0.0",
"tslib": "1.14.1"
}
},
"node_modules/@walletconnect/jsonrpc-types/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/jsonrpc-utils": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.8.tgz",
"integrity": "sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==",
"dependencies": {
"@walletconnect/environment": "^1.0.1",
"@walletconnect/jsonrpc-types": "^1.0.3",
"tslib": "1.14.1"
}
},
"node_modules/@walletconnect/jsonrpc-utils/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/jsonrpc-ws-connection": {
"version": "1.0.13",
"resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-ws-connection/-/jsonrpc-ws-connection-1.0.13.tgz",
"integrity": "sha512-mfOM7uFH4lGtQxG+XklYuFBj6dwVvseTt5/ahOkkmpcAEgz2umuzu7fTR+h5EmjQBdrmYyEBOWADbeaFNxdySg==",
"dependencies": {
"@walletconnect/jsonrpc-utils": "^1.0.6",
"@walletconnect/safe-json": "^1.0.2",
"events": "^3.3.0",
"tslib": "1.14.1",
"ws": "^7.5.1"
}
},
"node_modules/@walletconnect/jsonrpc-ws-connection/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/keyvaluestorage": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@walletconnect/keyvaluestorage/-/keyvaluestorage-1.0.2.tgz",
"integrity": "sha512-U/nNG+VLWoPFdwwKx0oliT4ziKQCEoQ27L5Hhw8YOFGA2Po9A9pULUYNWhDgHkrb0gYDNt//X7wABcEWWBd3FQ==",
"dependencies": {
"safe-json-utils": "^1.1.1",
"tslib": "1.14.1"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "1.x",
"lokijs": "1.x"
},
"peerDependenciesMeta": {
"@react-native-async-storage/async-storage": {
"optional": true
},
"lokijs": {
"optional": true
}
}
},
"node_modules/@walletconnect/keyvaluestorage/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/logger": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@walletconnect/logger/-/logger-2.0.1.tgz",
"integrity": "sha512-SsTKdsgWm+oDTBeNE/zHxxr5eJfZmE9/5yp/Ku+zJtcTAjELb3DXueWkDXmE9h8uHIbJzIb5wj5lPdzyrjT6hQ==",
"dependencies": {
"pino": "7.11.0",
"tslib": "1.14.1"
}
},
"node_modules/@walletconnect/logger/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/relay-api": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/@walletconnect/relay-api/-/relay-api-1.0.9.tgz",
"integrity": "sha512-Q3+rylJOqRkO1D9Su0DPE3mmznbAalYapJ9qmzDgK28mYF9alcP3UwG/og5V7l7CFOqzCLi7B8BvcBUrpDj0Rg==",
"dependencies": {
"@walletconnect/jsonrpc-types": "^1.0.2",
"tslib": "1.14.1"
}
},
"node_modules/@walletconnect/relay-api/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/relay-auth": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@walletconnect/relay-auth/-/relay-auth-1.0.4.tgz",
"integrity": "sha512-kKJcS6+WxYq5kshpPaxGHdwf5y98ZwbfuS4EE/NkQzqrDFm5Cj+dP8LofzWvjrrLkZq7Afy7WrQMXdLy8Sx7HQ==",
"dependencies": {
"@stablelib/ed25519": "^1.0.2",
"@stablelib/random": "^1.0.1",
"@walletconnect/safe-json": "^1.0.1",
"@walletconnect/time": "^1.0.2",
"tslib": "1.14.1",
"uint8arrays": "^3.0.0"
}
},
"node_modules/@walletconnect/relay-auth/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/safe-json": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@walletconnect/safe-json/-/safe-json-1.0.2.tgz",
"integrity": "sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==",
"dependencies": {
"tslib": "1.14.1"
}
},
"node_modules/@walletconnect/safe-json/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/sign-client": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.10.0.tgz",
"integrity": "sha512-hbDljDS53kR/It3oXD91UkcOsT6diNnW5+Zzksm0YEfwww5dop/YfNlcdnc8+jKUhWOL/YDPNQCjzsCSNlVzbw==",
"dependencies": {
"@walletconnect/core": "2.10.0",
"@walletconnect/events": "^1.0.1",
"@walletconnect/heartbeat": "1.2.1",
"@walletconnect/jsonrpc-utils": "1.0.8",
"@walletconnect/logger": "^2.0.1",
"@walletconnect/time": "^1.0.2",
"@walletconnect/types": "2.10.0",
"@walletconnect/utils": "2.10.0",
"events": "^3.3.0"
}
},
"node_modules/@walletconnect/time": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@walletconnect/time/-/time-1.0.2.tgz",
"integrity": "sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==",
"dependencies": {
"tslib": "1.14.1"
}
},
"node_modules/@walletconnect/time/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/types": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.10.0.tgz",
"integrity": "sha512-kSTA/WZnbKdEbvbXSW16Ty6dOSzOZCHnGg6JH7q1MuraalD2HuNg00lVVu7QAZ/Rj1Gn9DAkrgP5Wd5a8Xq//Q==",
"dependencies": {
"@walletconnect/events": "^1.0.1",
"@walletconnect/heartbeat": "1.2.1",
"@walletconnect/jsonrpc-types": "1.0.3",
"@walletconnect/keyvaluestorage": "^1.0.2",
"@walletconnect/logger": "^2.0.1",
"events": "^3.3.0"
}
},
"node_modules/@walletconnect/utils": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.10.0.tgz",
"integrity": "sha512-9GRyEz/7CJW+G04RvrjPET5k7hOEsB9b3fF9cWDk/iDCxSWpbkU/hv/urRB36C+gvQMAZgIZYX3dHfzJWkY/2g==",
"dependencies": {
"@stablelib/chacha20poly1305": "1.0.1",
"@stablelib/hkdf": "1.0.1",
"@stablelib/random": "^1.0.2",
"@stablelib/sha256": "1.0.1",
"@stablelib/x25519": "^1.0.3",
"@walletconnect/relay-api": "^1.0.9",
"@walletconnect/safe-json": "^1.0.2",
"@walletconnect/time": "^1.0.2",
"@walletconnect/types": "2.10.0",
"@walletconnect/window-getters": "^1.0.1",
"@walletconnect/window-metadata": "^1.0.1",
"detect-browser": "5.3.0",
"query-string": "7.1.3",
"uint8arrays": "^3.1.0"
}
},
"node_modules/@walletconnect/window-getters": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@walletconnect/window-getters/-/window-getters-1.0.1.tgz",
"integrity": "sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==",
"dependencies": {
"tslib": "1.14.1"
}
},
"node_modules/@walletconnect/window-getters/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@walletconnect/window-metadata": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@walletconnect/window-metadata/-/window-metadata-1.0.1.tgz",
"integrity": "sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==",
"dependencies": {
"@walletconnect/window-getters": "^1.0.1",
"tslib": "1.14.1"
}
},
"node_modules/@walletconnect/window-metadata/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
"dev": true
},
"node_modules/accepts": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
"dependencies": {
"mime-types": "~2.1.34",
"negotiator": "0.6.3"
},
"engines": {
"node": ">= 0.6"
}
},
"node_modules/anymatch": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
"dev": true,
"dependencies": {
"normalize-path": "^3.0.0",
"picomatch": "^2.0.4"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/array-flatten": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
},
"node_modules/atomic-sleep": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz",
"integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==",
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/axios": {
"version": "0.26.0",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.26.0.tgz",
"integrity": "sha512-lKoGLMYtHvFrPVt3r+RBMp9nh34N0M8zEfCWqdWZx6phynIEhQqAdydpyBAAG211zlhX9Rgu08cOamy6XjE5Og==",
"dependencies": {
"follow-redirects": "^1.14.8"
}
},
"node_modules/balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",