-
Notifications
You must be signed in to change notification settings - Fork 2
/
yarn.lock
2882 lines (2479 loc) · 116 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@babel/code-frame@^7.0.0":
"integrity" "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz"
"version" "7.21.4"
dependencies:
"@babel/highlight" "^7.18.6"
"@babel/helper-validator-identifier@^7.18.6":
"integrity" "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"
"version" "7.19.1"
"@babel/highlight@^7.18.6":
"integrity" "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-validator-identifier" "^7.18.6"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/runtime@^7.10.5", "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2":
"integrity" "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz"
"version" "7.18.9"
dependencies:
"regenerator-runtime" "^0.13.4"
"@cspotcode/source-map-support@^0.8.0":
"integrity" "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="
"resolved" "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz"
"version" "0.8.1"
dependencies:
"@jridgewell/trace-mapping" "0.3.9"
"@cykura/sdk-core@npm:@jup-ag/[email protected]":
"integrity" "sha512-bVtDA4oEuzj/amuTPVlk1OFpdlYKK6H9nKWg6Tv6mn6MydS/ArC2EY2zuMHtWP+1YJ5CAwxHL/7Kl1k+7XBSoQ=="
"resolved" "https://registry.npmjs.org/@jup-ag/cykura-sdk-core/-/cykura-sdk-core-0.1.8.tgz"
"version" "0.1.8"
dependencies:
"@project-serum/anchor" "^0.22.0"
"big.js" "^5.2.2"
"decimal.js" "^10.3.1"
"jsbi" "^4.1.0"
"tiny-invariant" "^1.1.0"
"toformat" "^2.0.0"
"@ethersproject/bytes@^5.6.1":
"integrity" "sha512-NwQt7cKn5+ZE4uDn+X5RAXLp46E1chXoaMmrxAyA0rblpxz8t58lVkrHXoRIn0lz1joQElQ8410GqhTqMOwc6g=="
"resolved" "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.6.1.tgz"
"version" "5.6.1"
dependencies:
"@ethersproject/logger" "^5.6.0"
"@ethersproject/logger@^5.6.0":
"integrity" "sha512-BiBWllUROH9w+P21RzoxJKzqoqpkyM1pRnEKG69bulE9TSQD8SAIvTQqIMZmmCO8pUNkgLP1wndX1gKghSpBmg=="
"resolved" "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.6.0.tgz"
"version" "5.6.0"
"@ethersproject/sha2@^5.5.0":
"integrity" "sha512-5K2GyqcW7G4Yo3uenHegbXRPDgARpWUiXc6RiF7b6i/HXUoWlb7uCARh7BAHg7/qT/Q5ydofNwiZcim9qpjB6g=="
"resolved" "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.6.1.tgz"
"version" "5.6.1"
dependencies:
"@ethersproject/bytes" "^5.6.1"
"@ethersproject/logger" "^5.6.0"
"hash.js" "1.1.7"
"@hapi/hoek@^9.0.0":
"integrity" "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ=="
"resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz"
"version" "9.3.0"
"@hapi/topo@^5.0.0":
"integrity" "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg=="
"resolved" "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"@hapi/hoek" "^9.0.0"
"@jridgewell/gen-mapping@^0.3.0":
"integrity" "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz"
"version" "0.3.3"
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/resolve-uri@^3.0.3", "@jridgewell/[email protected]":
"integrity" "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"
"version" "3.1.0"
"@jridgewell/set-array@^1.0.1":
"integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
"version" "1.1.2"
"@jridgewell/source-map@^0.3.2":
"integrity" "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg=="
"resolved" "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz"
"version" "0.3.3"
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/[email protected]":
"integrity" "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"
"version" "1.4.14"
"@jridgewell/trace-mapping@^0.3.9":
"integrity" "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz"
"version" "0.3.18"
dependencies:
"@jridgewell/resolve-uri" "3.1.0"
"@jridgewell/sourcemap-codec" "1.4.14"
"@jridgewell/[email protected]":
"integrity" "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz"
"version" "0.3.9"
dependencies:
"@jridgewell/resolve-uri" "^3.0.3"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jup-ag/core@^2.0.0-beta.4":
"integrity" "sha512-tUdFV+kCav/khrHnUwEglEYEhUxRBF72IQuQ5jRqRSwqkFsw5uAFzTtPRk0fon+6hn/DUh5P7CV3PA/79cmjxQ=="
"resolved" "https://registry.npmjs.org/@jup-ag/core/-/core-2.0.0-beta.4.tgz"
"version" "2.0.0-beta.4"
dependencies:
"@jup-ag/crema-sdk" "2.0.7"
"@jup-ag/cykura-sdk" "0.1.25"
"@jup-ag/cykura-sdk-core" "0.1.8"
"@jup-ag/lifinity-sdk" "0.1.72"
"@jup-ag/math" "2.0.0-beta.4"
"@jup-ag/whirlpool-sdk" "0.1.1"
"@mercurial-finance/optimist" "0.1.6"
"@project-serum/anchor" "0.24.2"
"@project-serum/serum" "0.13.65"
"@saberhq/stableswap-sdk" "1.13.6"
"@solana/spl-token" "0.1.8"
"bn.js" "5.2.1"
"cross-fetch" "3.1.5"
"decimal.js" "10.3.1"
"js-sha256" "~0.9.0"
"jsbi" "4.3.0"
"promise-retry" "2.0.1"
"@jup-ag/[email protected]":
"integrity" "sha512-EW1B36g2p1xZsXYLdY98pVP9yiI1viZBIIbfWZ9vVue1PDudsU8dNZXyjtnLbOBuRpT6QYecF/FTXcgLEjY7xg=="
"resolved" "https://registry.npmjs.org/@jup-ag/crema-sdk/-/crema-sdk-2.0.7.tgz"
"version" "2.0.7"
dependencies:
"@saberhq/solana-contrib" "^1.12.66"
"@saberhq/token-utils" "^1.12.66"
"@solana/buffer-layout" "^4.0.0"
"@solana/spl-token" "^0.1.8"
"@solana/spl-token-v2" "npm:@solana/[email protected]"
"@solana/web3.js" "^1.36.0"
"bn.js" "^5.2.0"
"bs58" "^5.0.0"
"decimal.js" "^10.3.1"
"jsbi" "^4.2.0"
"tiny-invariant" "^1.2.0"
"@jup-ag/[email protected]":
"integrity" "sha512-bVtDA4oEuzj/amuTPVlk1OFpdlYKK6H9nKWg6Tv6mn6MydS/ArC2EY2zuMHtWP+1YJ5CAwxHL/7Kl1k+7XBSoQ=="
"resolved" "https://registry.npmjs.org/@jup-ag/cykura-sdk-core/-/cykura-sdk-core-0.1.8.tgz"
"version" "0.1.8"
dependencies:
"@project-serum/anchor" "^0.22.0"
"big.js" "^5.2.2"
"decimal.js" "^10.3.1"
"jsbi" "^4.1.0"
"tiny-invariant" "^1.1.0"
"toformat" "^2.0.0"
"@jup-ag/[email protected]":
"integrity" "sha512-DuBcN7SKN3l9lS7l5zADITVeuTEQxwNW7QB7GzcsZiGysauok6z4GIaYUrqGgZ6Vtqa6tJhFAQu9wlylozRlXw=="
"resolved" "https://registry.npmjs.org/@jup-ag/cykura-sdk/-/cykura-sdk-0.1.25.tgz"
"version" "0.1.25"
dependencies:
"@cykura/sdk-core" "npm:@jup-ag/[email protected]"
"@project-serum/anchor" "^0.22.1"
"@solana/web3.js" "^1.32.0"
"tiny-invariant" "^1.1.0"
"@jup-ag/[email protected]":
"integrity" "sha512-nHfpaSFsLGjXg9xG/6k4Miik9X4MuGGi5KxYdtSe2a4vR8fQxXNxY/1ATPObAsy2dKV8K7ppkUSwahbXOtLvdQ=="
"resolved" "https://registry.npmjs.org/@jup-ag/lifinity-sdk/-/lifinity-sdk-0.1.72.tgz"
"version" "0.1.72"
dependencies:
"@project-serum/anchor" "^0.20.1"
"@project-serum/borsh" "^0.2.5"
"@project-serum/serum" "^0.13.61"
"@pythnetwork/client" "^2.5.1"
"@solana/spl-token" "^0.1.8"
"@solana/web3.js" "1.31.0"
"decimal.js" "^10.3.1"
"@jup-ag/[email protected]":
"integrity" "sha512-4A7PreQrwwIYJmR0V+lkwc+Lv7IEFFdGz5/pbav0vak/+D+lVa9pnL6vK8SI9knuTBXR6qNEf/jPatT7KsRslA=="
"resolved" "https://registry.npmjs.org/@jup-ag/math/-/math-2.0.0-beta.4.tgz"
"version" "2.0.0-beta.4"
dependencies:
"decimal.js" "10.3.1"
"jsbi" "4.3.0"
"@jup-ag/[email protected]":
"integrity" "sha512-GaEnG+T4ltQ3eKLVEnBRpatrRsR1v6t6epnp/hlXDTxiHyfFaVK/gmfi6ckCXs+npL/y39OtwsO0QV2zkOJdcg=="
"resolved" "https://registry.npmjs.org/@jup-ag/whirlpool-sdk/-/whirlpool-sdk-0.1.1.tgz"
"version" "0.1.1"
dependencies:
"@orca-so/whirlpool-client-sdk" "npm:@jup-ag/[email protected]"
"@project-serum/anchor" "~0.23.0"
"@solana/spl-token" "~0.1.8"
"axios" "^0.25.0"
"bn.js" "~5.2.0"
"decimal.js" "~10.3.1"
"tiny-invariant" "~1.2.0"
"@mercurial-finance/[email protected]":
"integrity" "sha512-zZ00GxDQIyHO+1DlZJ3W+ZWHzPPTJ4v2JOpoguUsK7k4PlYBcKm9hThEom5RyNVK+rSMlj5vX+xqLz7+bDc2tA=="
"resolved" "https://registry.npmjs.org/@mercurial-finance/optimist/-/optimist-0.1.6.tgz"
"version" "0.1.6"
dependencies:
"promise-retry" "2.0.1"
"@noble/ed25519@^1.7.0":
"integrity" "sha512-iR8GBkDt0Q3GyaVcIu7mSsVIqnFbkbRzGLWlvhwunacoLwt4J3swfKhfaM6rN6WY+TBGoYT1GtT1mIh2/jGbRQ=="
"resolved" "https://registry.npmjs.org/@noble/ed25519/-/ed25519-1.7.3.tgz"
"version" "1.7.3"
"@noble/hashes@^1.1.2":
"integrity" "sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg=="
"resolved" "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.0.tgz"
"version" "1.3.0"
"@noble/secp256k1@^1.6.3":
"integrity" "sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw=="
"resolved" "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.1.tgz"
"version" "1.7.1"
"@nodelib/[email protected]":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@orca-so/whirlpool-client-sdk@npm:@jup-ag/[email protected]":
"integrity" "sha512-nlAE/huKAWNxJ9g9BhD7nWGqTg/s0kGjWYqccsYM1Nv6CjesvWdtl8N4k81enmYYU2jgjm6f4XYKA8zTLHsBsA=="
"resolved" "https://registry.npmjs.org/@jup-ag/whirlpool-client-sdk/-/whirlpool-client-sdk-0.0.8.tgz"
"version" "0.0.8"
dependencies:
"@project-serum/anchor" "~0.23.0"
"@solana/spl-token" "~0.1.8"
"bn.js" "~5.2.0"
"decimal.js" "~10.3.1"
"lru-cache" "^7.9.0"
"@project-serum/anchor@^0.11.1":
"integrity" "sha512-oIdm4vTJkUy6GmE6JgqDAuQPKI7XM4TPJkjtoIzp69RZe0iAD9JP2XHx7lV1jLdYXeYHqDXfBt3zcq7W91K6PA=="
"resolved" "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.11.1.tgz"
"version" "0.11.1"
dependencies:
"@project-serum/borsh" "^0.2.2"
"@solana/web3.js" "^1.17.0"
"base64-js" "^1.5.1"
"bn.js" "^5.1.2"
"bs58" "^4.0.1"
"buffer-layout" "^1.2.0"
"camelcase" "^5.3.1"
"crypto-hash" "^1.3.0"
"eventemitter3" "^4.0.7"
"find" "^0.3.0"
"js-sha256" "^0.9.0"
"pako" "^2.0.3"
"snake-case" "^3.0.4"
"toml" "^3.0.0"
"@project-serum/anchor@^0.20.1":
"integrity" "sha512-2TuBmGUn9qeYz6sJINJlElrBuPsaUAtYyUsJ3XplEBf1pczrANAgs5ceJUFzdiqGEWLn+84ObSdBeChT/AXYFA=="
"resolved" "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.20.1.tgz"
"version" "0.20.1"
dependencies:
"@project-serum/borsh" "^0.2.2"
"@solana/web3.js" "^1.17.0"
"base64-js" "^1.5.1"
"bn.js" "^5.1.2"
"bs58" "^4.0.1"
"buffer-layout" "^1.2.2"
"camelcase" "^5.3.1"
"crypto-hash" "^1.3.0"
"eventemitter3" "^4.0.7"
"find" "^0.3.0"
"js-sha256" "^0.9.0"
"pako" "^2.0.3"
"snake-case" "^3.0.4"
"toml" "^3.0.0"
"@project-serum/anchor@^0.22.0":
"integrity" "sha512-5pHeyvQhzLahIQ8aZymmDMZJAJFklN0joZdI+YIqFkK2uU/mlKr6rBLQjxysf/j1mLLiNG00tdyLfUtTAdQz7w=="
"resolved" "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.22.1.tgz"
"version" "0.22.1"
dependencies:
"@project-serum/borsh" "^0.2.5"
"@solana/web3.js" "^1.17.0"
"base64-js" "^1.5.1"
"bn.js" "^5.1.2"
"bs58" "^4.0.1"
"buffer-layout" "^1.2.2"
"camelcase" "^5.3.1"
"cross-fetch" "^3.1.5"
"crypto-hash" "^1.3.0"
"eventemitter3" "^4.0.7"
"find" "^0.3.0"
"js-sha256" "^0.9.0"
"pako" "^2.0.3"
"snake-case" "^3.0.4"
"toml" "^3.0.0"
"@project-serum/anchor@^0.22.1":
"integrity" "sha512-5pHeyvQhzLahIQ8aZymmDMZJAJFklN0joZdI+YIqFkK2uU/mlKr6rBLQjxysf/j1mLLiNG00tdyLfUtTAdQz7w=="
"resolved" "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.22.1.tgz"
"version" "0.22.1"
dependencies:
"@project-serum/borsh" "^0.2.5"
"@solana/web3.js" "^1.17.0"
"base64-js" "^1.5.1"
"bn.js" "^5.1.2"
"bs58" "^4.0.1"
"buffer-layout" "^1.2.2"
"camelcase" "^5.3.1"
"cross-fetch" "^3.1.5"
"crypto-hash" "^1.3.0"
"eventemitter3" "^4.0.7"
"find" "^0.3.0"
"js-sha256" "^0.9.0"
"pako" "^2.0.3"
"snake-case" "^3.0.4"
"toml" "^3.0.0"
"@project-serum/anchor@^0.25.0":
"integrity" "sha512-E6A5Y/ijqpfMJ5psJvbw0kVTzLZFUcOFgs6eSM2M2iWE1lVRF18T6hWZVNl6zqZsoz98jgnNHtVGJMs+ds9A7A=="
"resolved" "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.25.0.tgz"
"version" "0.25.0"
dependencies:
"@project-serum/borsh" "^0.2.5"
"@solana/web3.js" "^1.36.0"
"base64-js" "^1.5.1"
"bn.js" "^5.1.2"
"bs58" "^4.0.1"
"buffer-layout" "^1.2.2"
"camelcase" "^5.3.1"
"cross-fetch" "^3.1.5"
"crypto-hash" "^1.3.0"
"eventemitter3" "^4.0.7"
"js-sha256" "^0.9.0"
"pako" "^2.0.3"
"snake-case" "^3.0.4"
"superstruct" "^0.15.4"
"toml" "^3.0.0"
"@project-serum/anchor@~0.23.0":
"integrity" "sha512-LV2/ifZOJVFTZ4GbEloXln3iVfCvO1YM8i7BBCrUm4tehP7irMx4nr4/IabHWOzrQcQElsxSP/lb1tBp+2ff8A=="
"resolved" "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.23.0.tgz"
"version" "0.23.0"
dependencies:
"@project-serum/borsh" "^0.2.5"
"@solana/web3.js" "^1.36.0"
"base64-js" "^1.5.1"
"bn.js" "^5.1.2"
"bs58" "^4.0.1"
"buffer-layout" "^1.2.2"
"camelcase" "^5.3.1"
"cross-fetch" "^3.1.5"
"crypto-hash" "^1.3.0"
"eventemitter3" "^4.0.7"
"find" "^0.3.0"
"js-sha256" "^0.9.0"
"pako" "^2.0.3"
"snake-case" "^3.0.4"
"toml" "^3.0.0"
"@project-serum/[email protected]":
"integrity" "sha512-0/718g8/DnEuwAidUwh5wLYphUYXhUbiClkuRNhvNoa+1Y8a4g2tJyxoae+emV+PG/Gikd/QUBNMkIcimiIRTA=="
"resolved" "https://registry.npmjs.org/@project-serum/anchor/-/anchor-0.24.2.tgz"
"version" "0.24.2"
dependencies:
"@project-serum/borsh" "^0.2.5"
"@solana/web3.js" "^1.36.0"
"base64-js" "^1.5.1"
"bn.js" "^5.1.2"
"bs58" "^4.0.1"
"buffer-layout" "^1.2.2"
"camelcase" "^5.3.1"
"cross-fetch" "^3.1.5"
"crypto-hash" "^1.3.0"
"eventemitter3" "^4.0.7"
"js-sha256" "^0.9.0"
"pako" "^2.0.3"
"snake-case" "^3.0.4"
"toml" "^3.0.0"
"@project-serum/borsh@^0.2.2", "@project-serum/borsh@^0.2.5":
"integrity" "sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q=="
"resolved" "https://registry.npmjs.org/@project-serum/borsh/-/borsh-0.2.5.tgz"
"version" "0.2.5"
dependencies:
"bn.js" "^5.1.2"
"buffer-layout" "^1.2.0"
"@project-serum/serum@^0.13.61", "@project-serum/[email protected]":
"integrity" "sha512-BHRqsTqPSfFB5p+MgI2pjvMBAQtO8ibTK2fYY96boIFkCI3TTwXDt2gUmspeChKO2pqHr5aKevmexzAcXxrSRA=="
"resolved" "https://registry.npmjs.org/@project-serum/serum/-/serum-0.13.65.tgz"
"version" "0.13.65"
dependencies:
"@project-serum/anchor" "^0.11.1"
"@solana/spl-token" "^0.1.6"
"@solana/web3.js" "^1.21.0"
"bn.js" "^5.1.2"
"buffer-layout" "^1.2.0"
"@pythnetwork/client@^2.5.1":
"integrity" "sha512-+2k5JXxv/yUA6WMESSppJlg4T/AP+nZZfBnHmeG3RPCIJx+bargxFLCK4B2KgpQYdeTWb+2z8yRCNF7tHooCFQ=="
"resolved" "https://registry.npmjs.org/@pythnetwork/client/-/client-2.7.3.tgz"
"version" "2.7.3"
dependencies:
"buffer" "^6.0.1"
"@saberhq/option-utils@^1.14.5":
"integrity" "sha512-F2vaQl3xGJT6r3KLdhJh3ecKdYiFjXihrmWjCYFdCMDQ3X+WrBKg35l70Em/sM08MDyZYbv9eEAc2ZVO7b3fdQ=="
"resolved" "https://registry.npmjs.org/@saberhq/option-utils/-/option-utils-1.14.5.tgz"
"version" "1.14.5"
dependencies:
"tslib" "^2.4.0"
"@saberhq/solana-contrib@^1.12.66", "@saberhq/solana-contrib@^1.13.6", "@saberhq/solana-contrib@^1.14.5":
"integrity" "sha512-tXQgzmMXm+qcA0GCfGc9sPhpVrvLcBDVS6jsxbXmXaXE8U/ty9JwYlwxKvOPE6Ffurovo5B2/7j9navWBijOEA=="
"resolved" "https://registry.npmjs.org/@saberhq/solana-contrib/-/solana-contrib-1.14.5.tgz"
"version" "1.14.5"
dependencies:
"@saberhq/option-utils" "^1.14.5"
"@solana/buffer-layout" "^4.0.0"
"@types/promise-retry" "^1.1.3"
"@types/retry" "^0.12.2"
"promise-retry" "^2.0.1"
"retry" "^0.13.1"
"tiny-invariant" "^1.2.0"
"tslib" "^2.4.0"
"@saberhq/[email protected]":
"integrity" "sha512-WkMzKnvjAZS6WIYmbqdSmRQXY0X5a6OFsta+tM1+iCp6Yug1OkGYSnYHTZJ4byIgXWvPd9B88c4z5T17sWRUDQ=="
"resolved" "https://registry.npmjs.org/@saberhq/stableswap-sdk/-/stableswap-sdk-1.13.6.tgz"
"version" "1.13.6"
dependencies:
"@saberhq/solana-contrib" "^1.13.6"
"@saberhq/token-utils" "^1.13.6"
"@solana/buffer-layout" "^4.0.0"
"lodash.mapvalues" "^4.6.0"
"tiny-invariant" "^1.2.0"
"tslib" "^2.4.0"
"@saberhq/token-utils@^1.12.66", "@saberhq/token-utils@^1.13.6":
"integrity" "sha512-vsz3X02pI0Sh+PELW9fYkJXK7hqax+zu7dkORs5pKbwH+q0r2z7S5Y/8N19BLGwPVi9xrDjV/lf2y1a6wntlSg=="
"resolved" "https://registry.npmjs.org/@saberhq/token-utils/-/token-utils-1.14.5.tgz"
"version" "1.14.5"
dependencies:
"@saberhq/solana-contrib" "^1.14.5"
"@solana/buffer-layout" "^4.0.0"
"@solana/spl-token" "^0.1.8"
"@ubeswap/token-math" "^5.2.0"
"tiny-invariant" "^1.2.0"
"tslib" "^2.4.0"
"@sideway/address@^4.1.3":
"integrity" "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw=="
"resolved" "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz"
"version" "4.1.4"
dependencies:
"@hapi/hoek" "^9.0.0"
"@sideway/formula@^3.0.1":
"integrity" "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg=="
"resolved" "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz"
"version" "3.0.1"
"@sideway/pinpoint@^2.0.0":
"integrity" "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ=="
"resolved" "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz"
"version" "2.0.0"
"@snowflake-so/safe-apps-sdk@^1.1.9":
"integrity" "sha512-PWSEfQBMI/Z5VN9TKWD/ps/R2YgPQ7FQw+dPwePC6nwswKAAoDFQhaeNZKUAfx91lzsX1wJad4RLN7u/FIFL+Q=="
"resolved" "https://registry.npmjs.org/@snowflake-so/safe-apps-sdk/-/safe-apps-sdk-1.1.9.tgz"
"version" "1.1.9"
dependencies:
"@solana/wallet-adapter-base" "^0.9.5"
"rimraf" "^3.0.2"
"ts-node" "^10.8.1"
"uglifyjs-folder" "^3.0.0"
"@snowflake-so/wallet-adapter-snowflake@^1.0.17":
"integrity" "sha512-I8sGUrZlDKyH259dEyagOqLhxOXPHpOJggiodX2hs7jrpktr5pDmYk58S7oJSnt/x03dcop8qCPmQRqbpYeE4A=="
"resolved" "https://registry.npmjs.org/@snowflake-so/wallet-adapter-snowflake/-/wallet-adapter-snowflake-1.0.17.tgz"
"version" "1.0.17"
dependencies:
"@snowflake-so/safe-apps-sdk" "^1.1.9"
"@solana/wallet-adapter-base" "^0.9.22"
"@solana/buffer-layout-utils@^0.2.0":
"integrity" "sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g=="
"resolved" "https://registry.npmjs.org/@solana/buffer-layout-utils/-/buffer-layout-utils-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"@solana/buffer-layout" "^4.0.0"
"@solana/web3.js" "^1.32.0"
"bigint-buffer" "^1.1.5"
"bignumber.js" "^9.0.1"
"@solana/buffer-layout@^3 || ^4", "@solana/buffer-layout@^4.0.0":
"integrity" "sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA=="
"resolved" "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.1.tgz"
"version" "4.0.1"
dependencies:
"buffer" "~6.0.3"
"@solana/buffer-layout@^3.0.0":
"integrity" "sha512-MVdgAKKL39tEs0l8je0hKaXLQFb7Rdfb0Xg2LjFZd8Lfdazkg6xiS98uAZrEKvaoF3i4M95ei9RydkGIDMeo3w=="
"resolved" "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"buffer" "~6.0.3"
"@solana/spl-token-v2@npm:@solana/[email protected]":
"integrity" "sha512-RWcn31OXtdqIxmkzQfB2R+WpsJOVS6rKuvpxJFjvik2LyODd+WN58ZP3Rpjpro03fscGAkzlFuP3r42doRJgyQ=="
"resolved" "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"@solana/buffer-layout" "^4.0.0"
"@solana/buffer-layout-utils" "^0.2.0"
"@solana/web3.js" "^1.32.0"
"start-server-and-test" "^1.14.0"
"@solana/spl-token@^0.1.6":
"integrity" "sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ=="
"resolved" "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.1.8.tgz"
"version" "0.1.8"
dependencies:
"@babel/runtime" "^7.10.5"
"@solana/web3.js" "^1.21.0"
"bn.js" "^5.1.0"
"buffer" "6.0.3"
"buffer-layout" "^1.2.0"
"dotenv" "10.0.0"
"@solana/spl-token@^0.1.8":
"integrity" "sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ=="
"resolved" "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.1.8.tgz"
"version" "0.1.8"
dependencies:
"@babel/runtime" "^7.10.5"
"@solana/web3.js" "^1.21.0"
"bn.js" "^5.1.0"
"buffer" "6.0.3"
"buffer-layout" "^1.2.0"
"dotenv" "10.0.0"
"@solana/spl-token@^0.3.4":
"integrity" "sha512-Mi1vk6qf9eeXjB5X6GKo0ePbOorl/CpTqQediohhjefYmanH2K9KxpckUfwV8VQkWSNTKCyrTfkyDWuljFBVNw=="
"resolved" "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.3.4.tgz"
"version" "0.3.4"
dependencies:
"@solana/buffer-layout" "^4.0.0"
"@solana/buffer-layout-utils" "^0.2.0"
"buffer" "^6.0.3"
"@solana/spl-token@<0.2.0", "@solana/[email protected]":
"integrity" "sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ=="
"resolved" "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.1.8.tgz"
"version" "0.1.8"
dependencies:
"@babel/runtime" "^7.10.5"
"@solana/web3.js" "^1.21.0"
"bn.js" "^5.1.0"
"buffer" "6.0.3"
"buffer-layout" "^1.2.0"
"dotenv" "10.0.0"
"@solana/spl-token@~0.1.8":
"integrity" "sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ=="
"resolved" "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.1.8.tgz"
"version" "0.1.8"
dependencies:
"@babel/runtime" "^7.10.5"
"@solana/web3.js" "^1.21.0"
"bn.js" "^5.1.0"
"buffer" "6.0.3"
"buffer-layout" "^1.2.0"
"dotenv" "10.0.0"
"@solana/wallet-adapter-base@^0.9.22", "@solana/wallet-adapter-base@^0.9.5":
"integrity" "sha512-xbLEZPGSJFvgTeldG9D55evhl7QK/3e/F7vhvcA97mEt1eieTgeKMnGlmmjs3yivI3/gtZNZeSk1XZLnhKcQvw=="
"resolved" "https://registry.npmjs.org/@solana/wallet-adapter-base/-/wallet-adapter-base-0.9.22.tgz"
"version" "0.9.22"
dependencies:
"@solana/wallet-standard-features" "^1.0.1"
"@wallet-standard/base" "^1.0.1"
"@wallet-standard/features" "^1.0.3"
"eventemitter3" "^4.0.7"
"@solana/wallet-standard-features@^1.0.1":
"integrity" "sha512-SUfx7KtBJ55XIj0qAhhVcC1I6MklAXqWFEz9hDHW+6YcJIyvfix/EilBhaBik1FJ2JT0zukpOfFv8zpuAbFRbw=="
"resolved" "https://registry.npmjs.org/@solana/wallet-standard-features/-/wallet-standard-features-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@wallet-standard/base" "^1.0.1"
"@wallet-standard/features" "^1.0.3"
"@solana/web3.js@^1.17.0", "@solana/web3.js@^1.2.0", "@solana/web3.js@^1.21.0", "@solana/web3.js@^1.30.2", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.36.0", "@solana/web3.js@^1.37", "@solana/web3.js@^1.42", "@solana/web3.js@^1.44.0", "@solana/web3.js@^1.47.3", "@solana/web3.js@^1.47.4", "@solana/web3.js@^1.58.0", "@solana/web3.js@^1.73.2", "@solana/web3.js@>=1.15.0", "@solana/web3.js@>=1.31.0", "@solana/web3.js@>=1.42.0":
"integrity" "sha512-rHQgdo1EWfb+nPUpHe4O7i8qJPELHKNR5PAZRK+a7XxiykqOfbaAlPt5boDWAGPnYbSv0ziWZv5mq9DlFaQCxg=="
"resolved" "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.75.0.tgz"
"version" "1.75.0"
dependencies:
"@babel/runtime" "^7.12.5"
"@noble/ed25519" "^1.7.0"
"@noble/hashes" "^1.1.2"
"@noble/secp256k1" "^1.6.3"
"@solana/buffer-layout" "^4.0.0"
"agentkeepalive" "^4.2.1"
"bigint-buffer" "^1.1.5"
"bn.js" "^5.0.0"
"borsh" "^0.7.0"
"bs58" "^4.0.1"
"buffer" "6.0.3"
"fast-stable-stringify" "^1.0.0"
"jayson" "^3.4.4"
"node-fetch" "^2.6.7"
"rpc-websockets" "^7.5.1"
"superstruct" "^0.14.2"
"@solana/[email protected]":
"integrity" "sha512-7nHHx1JNFnrt15e9y8m38I/EJCbaB+bFC3KZVM1+QhybCikFxGMtGA5r7PDC3GEL1R2RZA8yKoLkDKo3vzzqnw=="
"resolved" "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.31.0.tgz"
"version" "1.31.0"
dependencies:
"@babel/runtime" "^7.12.5"
"@ethersproject/sha2" "^5.5.0"
"@solana/buffer-layout" "^3.0.0"
"bn.js" "^5.0.0"
"borsh" "^0.4.0"
"bs58" "^4.0.1"
"buffer" "6.0.1"
"cross-fetch" "^3.1.4"
"jayson" "^3.4.4"
"js-sha3" "^0.8.0"
"rpc-websockets" "^7.4.2"
"secp256k1" "^4.0.2"
"superstruct" "^0.14.2"
"tweetnacl" "^1.0.0"
"@tsconfig/node10@^1.0.7":
"integrity" "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA=="
"resolved" "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz"
"version" "1.0.9"
"@tsconfig/node12@^1.0.7":
"integrity" "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag=="
"resolved" "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz"
"version" "1.0.11"
"@tsconfig/node14@^1.0.0":
"integrity" "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow=="
"resolved" "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz"
"version" "1.0.3"
"@tsconfig/node16@^1.0.2":
"integrity" "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ=="
"resolved" "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz"
"version" "1.0.3"
"@types/big.js@^6.1.5":
"integrity" "sha512-UiWyJ6TLWoHeHZ8VUyngzCOwJDVxTsPnqfAMR/85X93rkRk5A4T2U42BCx0wCmZdtMHGHN/utJ8ft5xWu0V1bA=="
"resolved" "https://registry.npmjs.org/@types/big.js/-/big.js-6.1.5.tgz"
"version" "6.1.5"
"@types/bn.js@^4.11.5":
"integrity" "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg=="
"resolved" "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz"
"version" "4.11.6"
dependencies:
"@types/node" "*"
"@types/bn.js@^5.1.0":
"integrity" "sha512-QSSVYj7pYFN49kW77o2s9xTCwZ8F2xLbjLLSEVh8D2F4JUhZtPAGOFLTD+ffqksBx/u4cE/KImFjyhqCjn/LIA=="
"resolved" "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"@types/node" "*"
"@types/chai@^4.3.0":
"integrity" "sha512-/zPMqDkzSZ8t3VtxOa4KPq7uzzW978M9Tvh+j7GHKuo6k6GTLxPJ4J5gE5cjfJ26pnXst0N5Hax8Sr0T2Mi9zQ=="
"resolved" "https://registry.npmjs.org/@types/chai/-/chai-4.3.1.tgz"
"version" "4.3.1"
"@types/connect@^3.4.33":
"integrity" "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ=="
"resolved" "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz"
"version" "3.4.35"
dependencies:
"@types/node" "*"
"@types/express-serve-static-core@^4.17.9":
"integrity" "sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q=="
"resolved" "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.29.tgz"
"version" "4.17.29"
dependencies:
"@types/node" "*"
"@types/qs" "*"
"@types/range-parser" "*"
"@types/json5@^0.0.29":
"integrity" "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
"resolved" "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"
"version" "0.0.29"
"@types/lodash@^4.14.159":
"integrity" "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q=="
"resolved" "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.182.tgz"
"version" "4.14.182"
"@types/minimist@^1.2.0":
"integrity" "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ=="
"resolved" "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz"
"version" "1.2.2"
"@types/mocha@^9.0.0":
"integrity" "sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw=="
"resolved" "https://registry.npmjs.org/@types/mocha/-/mocha-9.1.1.tgz"
"version" "9.1.1"
"@types/node@*":
"integrity" "sha512-/xUq6H2aQm261exT6iZTMifUySEt4GR5KX8eYyY+C4MSNPqSh9oNIP7tz2GLKTlFaiBbgZNxffoR3CVRG+cljw=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-18.0.6.tgz"
"version" "18.0.6"
"@types/node@^12.12.54":
"integrity" "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz"
"version" "12.20.55"
"@types/normalize-package-data@^2.4.0":
"integrity" "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw=="
"resolved" "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz"
"version" "2.4.1"
"@types/promise-retry@^1.1.3":
"integrity" "sha512-LxIlEpEX6frE3co3vCO2EUJfHIta1IOmhDlcAsR4GMMv9hev1iTI9VwberVGkePJAuLZs5rMucrV8CziCfuJMw=="
"resolved" "https://registry.npmjs.org/@types/promise-retry/-/promise-retry-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"@types/retry" "*"
"@types/qs@*":
"integrity" "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw=="
"resolved" "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz"
"version" "6.9.7"
"@types/range-parser@*":
"integrity" "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="
"resolved" "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz"
"version" "1.2.4"
"@types/retry@*", "@types/retry@^0.12.2":
"integrity" "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow=="
"resolved" "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz"
"version" "0.12.2"
"@types/ws@^7.4.4":
"integrity" "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww=="
"resolved" "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz"
"version" "7.4.7"
dependencies:
"@types/node" "*"
"@ubeswap/token-math@^5.2.0":
"integrity" "sha512-SpNTx30ssrZB3BcjkSKIbJlNJewkfUgQXYx5NOY9YjUHpwFdEkgeM9uC0n6SV6JzmVelUXaRU7h7XnYKGUW7vg=="
"resolved" "https://registry.npmjs.org/@ubeswap/token-math/-/token-math-5.2.0.tgz"
"version" "5.2.0"
dependencies:
"@types/big.js" "^6.1.5"
"big.js" "^6.2.1"
"decimal.js-light" "^2.5.1"
"tiny-invariant" "^1.2.0"
"tslib" "^2.4.0"
"@ungap/[email protected]":
"integrity" "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q=="
"resolved" "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz"
"version" "1.1.2"
"@wallet-standard/base@^1.0.1":
"integrity" "sha512-1To3ekMfzhYxe0Yhkpri+Fedq0SYcfrOfJi3vbLjMwF2qiKPjTGLwZkf2C9ftdQmxES+hmxhBzTwF4KgcOwf8w=="
"resolved" "https://registry.npmjs.org/@wallet-standard/base/-/base-1.0.1.tgz"
"version" "1.0.1"
"@wallet-standard/features@^1.0.3":
"integrity" "sha512-m8475I6W5LTatTZuUz5JJNK42wFRgkJTB0I9tkruMwfqBF2UN2eomkYNVf9RbrsROelCRzSFmugqjKZBFaubsA=="
"resolved" "https://registry.npmjs.org/@wallet-standard/features/-/features-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"@wallet-standard/base" "^1.0.1"
"acorn-walk@^8.1.1":
"integrity" "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA=="
"resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz"
"version" "8.2.0"
"acorn@^8.4.1", "acorn@^8.5.0":
"integrity" "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz"
"version" "8.8.2"
"agentkeepalive@^4.2.1":
"integrity" "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg=="
"resolved" "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"debug" "^4.1.0"
"depd" "^2.0.0"
"humanize-ms" "^1.2.1"
"integrity" "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA=="
"resolved" "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz"
"version" "4.1.1"
"ansi-regex@^5.0.1":
"integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-styles@^3.2.1":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.0.0", "ansi-styles@^4.1.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"anymatch@~3.1.2":
"integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
"version" "3.1.2"
dependencies:
"normalize-path" "^3.0.0"
"picomatch" "^2.0.4"
"arg@^4.1.0":
"integrity" "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="
"resolved" "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz"
"version" "4.1.3"
"argparse@^2.0.1":
"integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
"version" "2.0.1"
"array-union@^2.1.0":
"integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
"resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
"version" "2.1.0"
"arrify@^1.0.0", "arrify@^1.0.1":
"integrity" "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA=="
"resolved" "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"
"version" "1.0.1"
"assertion-error@^1.1.0":
"integrity" "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw=="
"resolved" "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz"
"version" "1.1.0"
"axios@^0.21.1":
"integrity" "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg=="
"resolved" "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz"
"version" "0.21.4"
dependencies:
"follow-redirects" "^1.14.0"
"axios@^0.25.0":
"integrity" "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g=="
"resolved" "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz"
"version" "0.25.0"
dependencies:
"follow-redirects" "^1.14.7"
"balanced-match@^1.0.0":
"integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
"resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
"version" "1.0.2"
"base-x@^3.0.2":
"integrity" "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ=="
"resolved" "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz"
"version" "3.0.9"
dependencies:
"safe-buffer" "^5.0.1"
"base-x@^4.0.0":
"integrity" "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw=="
"resolved" "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz"
"version" "4.0.0"
"base64-js@^1.3.1", "base64-js@^1.5.1":
"integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
"resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
"version" "1.5.1"
"big.js@^5.2.2":
"integrity" "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="
"resolved" "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"
"version" "5.2.2"
"big.js@^6.2.1":
"integrity" "sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ=="
"resolved" "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz"
"version" "6.2.1"
"bigint-buffer@^1.1.5":
"integrity" "sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA=="
"resolved" "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz"
"version" "1.1.5"
dependencies:
"bindings" "^1.3.0"
"bignumber.js@^9.0.1":
"integrity" "sha512-GAcQvbpsM0pUb0zw1EI0KhQEZ+lRwR5fYaAp3vPOYuP7aDvGy6cVN6XHLauvF8SOga2y0dcLcjt3iQDTSEliyw=="
"resolved" "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.2.tgz"
"version" "9.0.2"
"binary-extensions@^2.0.0":
"integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="
"resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
"version" "2.2.0"
"bindings@^1.3.0":
"integrity" "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="
"resolved" "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz"
"version" "1.5.0"
dependencies:
"file-uri-to-path" "1.0.0"
"integrity" "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="
"resolved" "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz"
"version" "3.7.2"
"bn.js@^4 || ^5", "bn.js@^5.0.0", "bn.js@^5.1.0", "bn.js@^5.1.2", "bn.js@^5.2.0", "bn.js@>=5", "bn.js@>=5.2.0", "bn.js@~5.2.0", "[email protected]":
"integrity" "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
"resolved" "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz"
"version" "5.2.1"
"bn.js@^4.11.9":
"integrity" "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
"resolved" "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz"
"version" "4.12.0"
"borsh@^0.4.0":
"integrity" "sha512-aX6qtLya3K0AkT66CmYWCCDr77qsE9arV05OmdFpmat9qu8Pg9J5tBUPDztAW5fNh/d/MyVG/OYziP52Ndzx1g=="
"resolved" "https://registry.npmjs.org/borsh/-/borsh-0.4.0.tgz"
"version" "0.4.0"