-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage-lock.json
3412 lines (3412 loc) · 135 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": "tezos-vesting",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "tezos-vesting",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"@hover-labs/kolibri-js": "^4.0.0",
"@hover-labs/tezos-utils": "^0.0.23",
"@types/node": "^17.0.23",
"bignumber.js": "^9.0.2",
"typescript": "^4.6.3"
}
},
"node_modules/@babel/code-frame": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
"integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
"dependencies": {
"@babel/highlight": "^7.16.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
"integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.16.10",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz",
"integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.16.7",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/@babel/highlight/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
},
"node_modules/@babel/highlight/node_modules/escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@babel/highlight/node_modules/has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@hover-labs/kolibri-js": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@hover-labs/kolibri-js/-/kolibri-js-4.0.0.tgz",
"integrity": "sha512-b31yalKfDpQRRJCRWvKGfxQqoTHIFudS/7McouC1zZdA67ARPVizrzobdWOlmPqvbOjEwwAbwU53ocM9zteg2w==",
"dependencies": {
"@taquito/signer": "^11.2.0",
"@taquito/taquito": "^11.2.0",
"@temple-wallet/dapp": "^5.0.2",
"axios": "^0.21.0",
"bignumber.js": "^9.0.1",
"blakejs": "^1.1.1",
"bs58check": "^2.1.2",
"decimal.js": "^10.3.1",
"lodash": "^4.17.21"
}
},
"node_modules/@hover-labs/kolibri-js/node_modules/@taquito/http-utils": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/http-utils/-/http-utils-11.2.0.tgz",
"integrity": "sha512-9s9l4z70ah8/pjmc5ARxdwy6GCnsqwYxMITqCqKBT4DKVgI8m8kXkdxaVg+Ob5ZGvRQoVDSgTeSeNg8TUMtc+w==",
"dependencies": {
"xhr2-cookies": "^1.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@hover-labs/kolibri-js/node_modules/@taquito/michel-codec": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michel-codec/-/michel-codec-11.2.0.tgz",
"integrity": "sha512-ZWu1eyRl9RqOpyHP5h3JKfSPylUMN/91GTWjlJ26GhaMP9YA6mVjJ7pWDrZHFn1QXiS8JgQ7xwsmU+dBqZznSw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@hover-labs/kolibri-js/node_modules/@taquito/michelson-encoder": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michelson-encoder/-/michelson-encoder-11.2.0.tgz",
"integrity": "sha512-ifU3PSrJiQDovY7MT3RjrBTVToW82vGBwXeTIKIMnnoAjCnZdL/XjxFfzTrxT90jaz++ou3xcrgIabSvJrfJjg==",
"dependencies": {
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"fast-json-stable-stringify": "^2.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@hover-labs/kolibri-js/node_modules/@taquito/rpc": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/rpc/-/rpc-11.2.0.tgz",
"integrity": "sha512-Hb5KIi1swUIGHg6h6cPJ+6G+6Nfi6Npat4RogOFvULpbn+WQIo+CTUecEW7aWEBuXahs7W0JBcL4a6GbqE3YGg==",
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@hover-labs/kolibri-js/node_modules/@taquito/taquito": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/taquito/-/taquito-11.2.0.tgz",
"integrity": "sha512-OJJYPqQiF7IoxWsBavdKDuxi2oeWHHvRph2nqeCyqVx6H+7uQLpZCf0OP5iQ4F6AxoYPyD7DzEsSFH5tOdgqNQ==",
"hasInstallScript": true,
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/michel-codec": "^11.2.0",
"@taquito/michelson-encoder": "^11.2.0",
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"rxjs": "^6.6.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@hover-labs/tezos-multisig-lib": {
"version": "0.0.10",
"resolved": "https://registry.npmjs.org/@hover-labs/tezos-multisig-lib/-/tezos-multisig-lib-0.0.10.tgz",
"integrity": "sha512-R04X9kLqJHhw9jjCPVRbiPj4okrAAPkR5Dyvblkqse7VJ1SZzNqZNqbu5X2ZDPc0WBuOOcIeiCQMWAd12DPYTg==",
"dependencies": {
"@lapo/asn1js": "^1.2.1",
"@taquito/taquito": "^10.2.0",
"@types/node-fetch": "2.5.7",
"@types/secp256k1": "4.0.1",
"bignumber.js": "^9.0.1",
"commander": "5.1.0",
"conseiljs": "^5.0.6-1",
"conseiljs-softsigner": "^5.0.3",
"loglevel": "^1.7.1",
"node-fetch": "^2.6.1",
"secp256k1": "^4.0.2"
}
},
"node_modules/@hover-labs/tezos-utils": {
"version": "0.0.23",
"resolved": "https://registry.npmjs.org/@hover-labs/tezos-utils/-/tezos-utils-0.0.23.tgz",
"integrity": "sha512-Ok28cJnz2yPkSrzregfzbCKZukOFhl4wev0tCxlu3q5f/SmIC0CpT83jF26MiBMynr61k4Dq9spacIEhvwZZ7g==",
"dependencies": {
"@hover-labs/kolibri-js": "^4.0.0",
"@hover-labs/tezos-multisig-lib": "0.0.10",
"@taquito/signer": "^11.2.0",
"@taquito/taquito": "^11.2.0",
"@taquito/tzip12": "^11.2.0",
"@taquito/tzip16": "^11.2.0",
"axios": "^0.22.0",
"bignumber.js": "^9.0.1",
"conseiljs": "^5.0.8-3",
"loglevel": "^1.7.1"
}
},
"node_modules/@hover-labs/tezos-utils/node_modules/@taquito/http-utils": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/http-utils/-/http-utils-11.2.0.tgz",
"integrity": "sha512-9s9l4z70ah8/pjmc5ARxdwy6GCnsqwYxMITqCqKBT4DKVgI8m8kXkdxaVg+Ob5ZGvRQoVDSgTeSeNg8TUMtc+w==",
"dependencies": {
"xhr2-cookies": "^1.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@hover-labs/tezos-utils/node_modules/@taquito/michel-codec": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michel-codec/-/michel-codec-11.2.0.tgz",
"integrity": "sha512-ZWu1eyRl9RqOpyHP5h3JKfSPylUMN/91GTWjlJ26GhaMP9YA6mVjJ7pWDrZHFn1QXiS8JgQ7xwsmU+dBqZznSw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@hover-labs/tezos-utils/node_modules/@taquito/michelson-encoder": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michelson-encoder/-/michelson-encoder-11.2.0.tgz",
"integrity": "sha512-ifU3PSrJiQDovY7MT3RjrBTVToW82vGBwXeTIKIMnnoAjCnZdL/XjxFfzTrxT90jaz++ou3xcrgIabSvJrfJjg==",
"dependencies": {
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"fast-json-stable-stringify": "^2.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@hover-labs/tezos-utils/node_modules/@taquito/rpc": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/rpc/-/rpc-11.2.0.tgz",
"integrity": "sha512-Hb5KIi1swUIGHg6h6cPJ+6G+6Nfi6Npat4RogOFvULpbn+WQIo+CTUecEW7aWEBuXahs7W0JBcL4a6GbqE3YGg==",
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@hover-labs/tezos-utils/node_modules/@taquito/taquito": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/taquito/-/taquito-11.2.0.tgz",
"integrity": "sha512-OJJYPqQiF7IoxWsBavdKDuxi2oeWHHvRph2nqeCyqVx6H+7uQLpZCf0OP5iQ4F6AxoYPyD7DzEsSFH5tOdgqNQ==",
"hasInstallScript": true,
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/michel-codec": "^11.2.0",
"@taquito/michelson-encoder": "^11.2.0",
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"rxjs": "^6.6.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@hover-labs/tezos-utils/node_modules/axios": {
"version": "0.22.0",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.22.0.tgz",
"integrity": "sha512-Z0U3uhqQeg1oNcihswf4ZD57O3NrR1+ZXhxaROaWpDmsDTx7T2HNBV2ulBtie2hwJptu8UvgnJoK+BIqdzh/1w==",
"dependencies": {
"follow-redirects": "^1.14.4"
}
},
"node_modules/@jest/types": {
"version": "26.6.2",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
"integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^15.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": ">= 10.14.2"
}
},
"node_modules/@lapo/asn1js": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/@lapo/asn1js/-/asn1js-1.2.3.tgz",
"integrity": "sha512-6dWV0syRWrnZAcbygq/LRd9alZ5NIJVFTU4nmlbwJSigGh2O49nFFURcDP1KeKoxsXmxGfAPGj4soX1mrV2uAQ=="
},
"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/ed25519": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@stablelib/ed25519/-/ed25519-1.0.2.tgz",
"integrity": "sha512-FtnvUwvKbp6l1dNcg4CswMAVFVu/nzLK3oC7/PRtjYyHbWsIkD8j+5cjXHmwcCpdCpRCaTGACkEhhMQ1RcdSOQ==",
"dependencies": {
"@stablelib/random": "^1.0.1",
"@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/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/random": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/random/-/random-1.0.1.tgz",
"integrity": "sha512-zOh+JHX3XG9MSfIB0LZl/YwPP9w3o6WBiJkZvjPoKKu5LKFW4OLV71vMxWp9qG5T43NaWyn0QQTWgqCdO+yOBQ==",
"dependencies": {
"@stablelib/binary": "^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/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/@taquito/http-utils": {
"version": "10.2.1",
"resolved": "https://registry.npmjs.org/@taquito/http-utils/-/http-utils-10.2.1.tgz",
"integrity": "sha512-RZmGxJFllTHC5LuxrPcVQoH/MpDvQehLjE1czSmL2Dz1VZlzI4Q6Ie+pG5nHQODRPqE8ABi/2aHAGGYMQWqKZg==",
"dependencies": {
"xhr2-cookies": "^1.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/michel-codec": {
"version": "10.2.1",
"resolved": "https://registry.npmjs.org/@taquito/michel-codec/-/michel-codec-10.2.1.tgz",
"integrity": "sha512-VSHELyuiwso1qCpAEZkH7JdDlZdHxTjyvZcBsfnfpbdpCrAUpCB48P4NZOnvZ58SYt9VS1bNAa5GRvQyOnNvMQ==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/michelson-encoder": {
"version": "10.2.1",
"resolved": "https://registry.npmjs.org/@taquito/michelson-encoder/-/michelson-encoder-10.2.1.tgz",
"integrity": "sha512-HYCtDGCWtyCgOQjmxYLYw5ftejG0FUfAW1FzZWIW6w2ars1TInSbLNeVRZs+EmbD3L8wOaxaOlgdsMoDnGqM/g==",
"dependencies": {
"@taquito/rpc": "^10.2.1",
"@taquito/utils": "^10.2.1",
"bignumber.js": "^9.0.1",
"fast-json-stable-stringify": "^2.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/michelson-encoder/node_modules/@taquito/utils": {
"version": "10.2.1",
"resolved": "https://registry.npmjs.org/@taquito/utils/-/utils-10.2.1.tgz",
"integrity": "sha512-oW/D9irojwjorIV/0yO32Gyr+zSnITkVkOwVmnxge6DYHWC7aqPbdwiDwc4/GewKXNngBDqDEjEEPhkp0ZnvJw==",
"dependencies": {
"blakejs": "^1.1.0",
"bs58check": "^2.1.2",
"buffer": "^6.0.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/rpc": {
"version": "10.2.1",
"resolved": "https://registry.npmjs.org/@taquito/rpc/-/rpc-10.2.1.tgz",
"integrity": "sha512-Vg80sGLICkEKGls+7YEd0uFpsp8dwx2kNeGgCbpNROIs0S6Slsd0UfDlaZGlllWeUAKr5r6baexYrTKFuWs/UA==",
"dependencies": {
"@taquito/http-utils": "^10.2.1",
"bignumber.js": "^9.0.1",
"lodash": "^4.17.21"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/signer/-/signer-11.2.0.tgz",
"integrity": "sha512-OthNW7gN2hJNph8VMy9LRbZcn7bIBaKdrfC+hAy5N6yzG8EW/t6IEMAgESmNcthMhPUhuOWS37khuwMsuL1GUg==",
"dependencies": {
"@taquito/taquito": "^11.2.0",
"@taquito/utils": "^11.2.0",
"elliptic": "^6.5.4",
"libsodium-wrappers": "0.7.8",
"pbkdf2": "^3.1.2",
"typedarray-to-buffer": "^4.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/http-utils": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/http-utils/-/http-utils-11.2.0.tgz",
"integrity": "sha512-9s9l4z70ah8/pjmc5ARxdwy6GCnsqwYxMITqCqKBT4DKVgI8m8kXkdxaVg+Ob5ZGvRQoVDSgTeSeNg8TUMtc+w==",
"dependencies": {
"xhr2-cookies": "^1.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/michel-codec": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michel-codec/-/michel-codec-11.2.0.tgz",
"integrity": "sha512-ZWu1eyRl9RqOpyHP5h3JKfSPylUMN/91GTWjlJ26GhaMP9YA6mVjJ7pWDrZHFn1QXiS8JgQ7xwsmU+dBqZznSw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/michelson-encoder": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michelson-encoder/-/michelson-encoder-11.2.0.tgz",
"integrity": "sha512-ifU3PSrJiQDovY7MT3RjrBTVToW82vGBwXeTIKIMnnoAjCnZdL/XjxFfzTrxT90jaz++ou3xcrgIabSvJrfJjg==",
"dependencies": {
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"fast-json-stable-stringify": "^2.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/rpc": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/rpc/-/rpc-11.2.0.tgz",
"integrity": "sha512-Hb5KIi1swUIGHg6h6cPJ+6G+6Nfi6Npat4RogOFvULpbn+WQIo+CTUecEW7aWEBuXahs7W0JBcL4a6GbqE3YGg==",
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/taquito": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/taquito/-/taquito-11.2.0.tgz",
"integrity": "sha512-OJJYPqQiF7IoxWsBavdKDuxi2oeWHHvRph2nqeCyqVx6H+7uQLpZCf0OP5iQ4F6AxoYPyD7DzEsSFH5tOdgqNQ==",
"hasInstallScript": true,
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/michel-codec": "^11.2.0",
"@taquito/michelson-encoder": "^11.2.0",
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"rxjs": "^6.6.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/taquito": {
"version": "10.2.1",
"resolved": "https://registry.npmjs.org/@taquito/taquito/-/taquito-10.2.1.tgz",
"integrity": "sha512-ay61aKhFQPnYGu5d9jqEvaZE0EzE6tO9MD+5vOu6/NFVThBd7ysOQS1PB0VprL9SupM1NVDFnEJ8GtE8SYgk8g==",
"hasInstallScript": true,
"dependencies": {
"@taquito/http-utils": "^10.2.1",
"@taquito/michel-codec": "^10.2.1",
"@taquito/michelson-encoder": "^10.2.1",
"@taquito/rpc": "^10.2.1",
"@taquito/utils": "^10.2.1",
"bignumber.js": "^9.0.1",
"rx-sandbox": "^1.0.4",
"rxjs": "^6.6.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/taquito/node_modules/@taquito/utils": {
"version": "10.2.1",
"resolved": "https://registry.npmjs.org/@taquito/utils/-/utils-10.2.1.tgz",
"integrity": "sha512-oW/D9irojwjorIV/0yO32Gyr+zSnITkVkOwVmnxge6DYHWC7aqPbdwiDwc4/GewKXNngBDqDEjEEPhkp0ZnvJw==",
"dependencies": {
"blakejs": "^1.1.0",
"bs58check": "^2.1.2",
"buffer": "^6.0.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/tzip12/-/tzip12-11.2.0.tgz",
"integrity": "sha512-nTBPlyZFFk1xgWaMYv1b3qf8Z+vSpmZROmYtrWznCgPHjG+9zvzjyPON7Sm3HNKnn5jOOEJ5ErvbPSEyU3IzRg==",
"dependencies": {
"@taquito/michelson-encoder": "^11.2.0",
"@taquito/taquito": "^11.2.0",
"@taquito/tzip16": "^11.2.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12/node_modules/@taquito/http-utils": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/http-utils/-/http-utils-11.2.0.tgz",
"integrity": "sha512-9s9l4z70ah8/pjmc5ARxdwy6GCnsqwYxMITqCqKBT4DKVgI8m8kXkdxaVg+Ob5ZGvRQoVDSgTeSeNg8TUMtc+w==",
"dependencies": {
"xhr2-cookies": "^1.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12/node_modules/@taquito/michel-codec": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michel-codec/-/michel-codec-11.2.0.tgz",
"integrity": "sha512-ZWu1eyRl9RqOpyHP5h3JKfSPylUMN/91GTWjlJ26GhaMP9YA6mVjJ7pWDrZHFn1QXiS8JgQ7xwsmU+dBqZznSw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12/node_modules/@taquito/michelson-encoder": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michelson-encoder/-/michelson-encoder-11.2.0.tgz",
"integrity": "sha512-ifU3PSrJiQDovY7MT3RjrBTVToW82vGBwXeTIKIMnnoAjCnZdL/XjxFfzTrxT90jaz++ou3xcrgIabSvJrfJjg==",
"dependencies": {
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"fast-json-stable-stringify": "^2.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12/node_modules/@taquito/rpc": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/rpc/-/rpc-11.2.0.tgz",
"integrity": "sha512-Hb5KIi1swUIGHg6h6cPJ+6G+6Nfi6Npat4RogOFvULpbn+WQIo+CTUecEW7aWEBuXahs7W0JBcL4a6GbqE3YGg==",
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12/node_modules/@taquito/taquito": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/taquito/-/taquito-11.2.0.tgz",
"integrity": "sha512-OJJYPqQiF7IoxWsBavdKDuxi2oeWHHvRph2nqeCyqVx6H+7uQLpZCf0OP5iQ4F6AxoYPyD7DzEsSFH5tOdgqNQ==",
"hasInstallScript": true,
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/michel-codec": "^11.2.0",
"@taquito/michelson-encoder": "^11.2.0",
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"rxjs": "^6.6.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip16": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/tzip16/-/tzip16-11.2.0.tgz",
"integrity": "sha512-j2KoY+XTOyzTclTmC1hxi61XbzfsankpuTGiMRFC+QjL5vEyoc2CJG41I/0a2hoq30wuEH4TQ1+E6U5wfL/jUw==",
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/michelson-encoder": "^11.2.0",
"@taquito/rpc": "^11.2.0",
"@taquito/taquito": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"crypto-js": "^4.1.1"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip16/node_modules/@taquito/http-utils": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/http-utils/-/http-utils-11.2.0.tgz",
"integrity": "sha512-9s9l4z70ah8/pjmc5ARxdwy6GCnsqwYxMITqCqKBT4DKVgI8m8kXkdxaVg+Ob5ZGvRQoVDSgTeSeNg8TUMtc+w==",
"dependencies": {
"xhr2-cookies": "^1.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip16/node_modules/@taquito/michel-codec": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michel-codec/-/michel-codec-11.2.0.tgz",
"integrity": "sha512-ZWu1eyRl9RqOpyHP5h3JKfSPylUMN/91GTWjlJ26GhaMP9YA6mVjJ7pWDrZHFn1QXiS8JgQ7xwsmU+dBqZznSw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip16/node_modules/@taquito/michelson-encoder": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michelson-encoder/-/michelson-encoder-11.2.0.tgz",
"integrity": "sha512-ifU3PSrJiQDovY7MT3RjrBTVToW82vGBwXeTIKIMnnoAjCnZdL/XjxFfzTrxT90jaz++ou3xcrgIabSvJrfJjg==",
"dependencies": {
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"fast-json-stable-stringify": "^2.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip16/node_modules/@taquito/rpc": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/rpc/-/rpc-11.2.0.tgz",
"integrity": "sha512-Hb5KIi1swUIGHg6h6cPJ+6G+6Nfi6Npat4RogOFvULpbn+WQIo+CTUecEW7aWEBuXahs7W0JBcL4a6GbqE3YGg==",
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip16/node_modules/@taquito/taquito": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/taquito/-/taquito-11.2.0.tgz",
"integrity": "sha512-OJJYPqQiF7IoxWsBavdKDuxi2oeWHHvRph2nqeCyqVx6H+7uQLpZCf0OP5iQ4F6AxoYPyD7DzEsSFH5tOdgqNQ==",
"hasInstallScript": true,
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/michel-codec": "^11.2.0",
"@taquito/michelson-encoder": "^11.2.0",
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"rxjs": "^6.6.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/utils": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/utils/-/utils-11.2.0.tgz",
"integrity": "sha512-I5LoD5fG9S2Yo4CNpW4u3vF9lUJG1PxkGLi6ntvvH49SBXwo9HJ/n/v04aoE9V7ncA0a7LUm6ucnROagIc2QQQ==",
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/ed25519": "^1.0.2",
"@types/bs58check": "^2.1.0",
"blakejs": "^1.1.1",
"bs58check": "^2.1.2",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"typedarray-to-buffer": "^4.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@temple-wallet/dapp": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/@temple-wallet/dapp/-/dapp-5.0.2.tgz",
"integrity": "sha512-IIeHTowHXOp7/JnttfzMyCJjFWwhqOauDN7S2vU0GzHkpT5gH6FBXqB3kvZUyPfoxY0PXuXg+HKh++qABx+g9A==",
"dependencies": {
"nanoid": "^3.1.25"
},
"peerDependencies": {
"@taquito/taquito": "^10.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/istanbul-lib-coverage": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
"integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g=="
},
"node_modules/@types/istanbul-lib-report": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
"integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
"dependencies": {
"@types/istanbul-lib-coverage": "*"
}
},
"node_modules/@types/istanbul-reports": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz",
"integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==",
"dependencies": {
"@types/istanbul-lib-report": "*"
}
},
"node_modules/@types/node": {
"version": "17.0.23",
"resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.23.tgz",
"integrity": "sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw=="
},
"node_modules/@types/node-fetch": {
"version": "2.5.7",
"resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.7.tgz",
"integrity": "sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw==",
"dependencies": {
"@types/node": "*",
"form-data": "^3.0.0"
}
},
"node_modules/@types/secp256k1": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.1.tgz",
"integrity": "sha512-+ZjSA8ELlOp8SlKi0YLB2tz9d5iPNEmOBd+8Rz21wTMdaXQIa9b6TEnD6l5qKOCypE7FSyPyck12qZJxSDNoog==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/stack-utils": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
"integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw=="
},
"node_modules/@types/yargs": {
"version": "15.0.14",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz",
"integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/@types/yargs-parser": {
"version": "21.0.0",
"resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz",
"integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="
},
"node_modules/ansi-regex": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"engines": {
"node": ">=8"
}
},
"node_modules/ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dependencies": {
"color-convert": "^2.0.1"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
},
"node_modules/axios": {
"version": "0.21.4",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
"integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
"dependencies": {
"follow-redirects": "^1.14.0"
}
},
"node_modules/base-x": {
"version": "3.0.9",
"resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
"integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
"dependencies": {
"safe-buffer": "^5.0.1"
}
},
"node_modules/base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
},
"node_modules/big-integer": {
"version": "1.6.51",
"resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz",
"integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==",
"engines": {
"node": ">=0.6"
}
},
"node_modules/bignumber.js": {
"version": "9.0.2",
"resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.2.tgz",
"integrity": "sha512-GAcQvbpsM0pUb0zw1EI0KhQEZ+lRwR5fYaAp3vPOYuP7aDvGy6cVN6XHLauvF8SOga2y0dcLcjt3iQDTSEliyw==",
"engines": {
"node": "*"
}
},
"node_modules/bip39": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/bip39/-/bip39-3.0.3.tgz",
"integrity": "sha512-P0dKrz4g0V0BjXfx7d9QNkJ/Txcz/k+hM9TnjqjUaXtuOfAvxXSw2rJw8DX0e3ZPwnK/IgDxoRqf0bvoVCqbMg==",
"dependencies": {
"@types/node": "11.11.6",
"create-hash": "^1.1.0",
"pbkdf2": "^3.0.9",
"randombytes": "^2.0.1"
}
},
"node_modules/bip39/node_modules/@types/node": {
"version": "11.11.6",
"resolved": "https://registry.npmjs.org/@types/node/-/node-11.11.6.tgz",
"integrity": "sha512-Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ=="
},
"node_modules/blakejs": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/blakejs/-/blakejs-1.2.1.tgz",
"integrity": "sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ=="
},
"node_modules/bn.js": {
"version": "4.12.0",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
},
"node_modules/braces": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
"dependencies": {
"fill-range": "^7.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/brorand": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
"integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8="
},
"node_modules/bs58": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
"integrity": "sha1-vhYedsNU9veIrkBx9j806MTwpCo=",
"dependencies": {
"base-x": "^3.0.2"
}
},
"node_modules/bs58check": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz",
"integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==",
"dependencies": {
"bs58": "^4.0.0",
"create-hash": "^1.1.0",
"safe-buffer": "^5.1.2"
}
},
"node_modules/buffer": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"dependencies": {
"base64-js": "^1.3.1",
"ieee754": "^1.2.1"
}
},
"node_modules/chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dependencies": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
"node_modules/cipher-base": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
"integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
"dependencies": {
"inherits": "^2.0.1",
"safe-buffer": "^5.0.1"
}
},
"node_modules/color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dependencies": {