-
Notifications
You must be signed in to change notification settings - Fork 1
/
pnpm-lock.yaml
12798 lines (10047 loc) · 415 KB
/
pnpm-lock.yaml
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
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
overrides:
'@polkadot/api': ^9.14.2
'@polkadot/api-augment': ^9.14.2
'@polkadot/api-base': ^9.14.2
'@polkadot/api-contract': ^9.14.2
'@polkadot/api-derive': ^9.14.2
'@polkadot/keyring': ^10.4.2
'@polkadot/networks': ^10.4.2
'@polkadot/rpc-augment': ^9.14.2
'@polkadot/rpc-core': ^9.14.2
'@polkadot/rpc-provider': ^9.14.2
'@polkadot/types': ^9.14.2
'@polkadot/types-augment': ^9.14.2
'@polkadot/types-codec': ^9.14.2
'@polkadot/types-create': ^9.14.2
'@polkadot/types-known': ^9.14.2
'@polkadot/types-support': ^9.14.2
'@polkadot/util': ^10.4.2
'@polkadot/util-crypto': ^10.4.2
'@polkadot/wasm-crypto': ^6.4.1
'@polkadot/x-bigint': ^10.4.2
'@polkadot/x-fetch': ^10.4.2
'@polkadot/x-global': ^10.4.2
'@polkadot/x-randomvalues': ^10.4.2
'@polkadot/x-textdecoder': ^10.4.2
importers:
.:
dependencies:
'@bitgo/utxo-lib':
specifier: ^1.9.6
version: 1.9.6
'@bitgo/utxo-lib-v2':
specifier: npm:@bitgo/utxo-lib@^2.4.1
version: '@bitgo/utxo-lib@2.4.1'
'@clover-network/node-types':
specifier: ^1.0.5
version: 1.0.5
'@coral-xyz/anchor':
specifier: ^0.29.0
version: 0.29.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/amino':
specifier: ^0.29.5
version: 0.29.5
'@cosmjs/crypto':
specifier: ^0.29.5
version: 0.29.5
'@cosmjs/encoding':
specifier: ^0.29.5
version: 0.29.5
'@cosmjs/math':
specifier: ^0.29.5
version: 0.29.5
'@cosmjs/proto-signing':
specifier: ^0.29.5
version: 0.29.5
'@cosmjs/stargate':
specifier: ^0.29.5
version: 0.29.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cryptoless/utxo-lib':
specifier: https://gitpkg.now.sh/cryptoless/BitGoJS/modules/utxo-lib?f22b435db9dd991d260ecf97e5c65310f48e27f3
version: '@bitgo/utxo-lib@https://gitpkg.now.sh/cryptoless/BitGoJS/modules/utxo-lib?f22b435db9dd991d260ecf97e5c65310f48e27f3'
'@debridge-finance/solana-transaction-parser':
specifier: ^2.0.1
version: 2.0.2(@solana/buffer-layout-utils@0.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@solana/buffer-layout@4.0.1)(bufferutil@4.0.8)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@4.9.5)(utf-8-validate@5.0.10)
'@emurgo/cardano-serialization-lib-nodejs':
specifier: ^8.1.0
version: 8.1.0
'@ethereumjs/common':
specifier: ^2.6.5
version: 2.6.5
'@ethereumjs/tx':
specifier: ^3.5.2
version: 3.5.2
'@ethereumjs/util':
specifier: ^9.1.0
version: 9.1.0
'@ethersproject/bytes':
specifier: ^5.5.0
version: 5.7.0
'@ethersproject/hash':
specifier: ^5.6.1
version: 5.7.0
'@ethersproject/networks':
specifier: ^5.7.1
version: 5.7.1
'@filecoin-shipyard/lotus-client-provider-nodejs':
specifier: ^1.0.3
version: 1.1.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@filecoin-shipyard/lotus-client-rpc':
specifier: ^1.1.2
version: 1.2.0
'@filecoin-shipyard/lotus-client-schema':
specifier: ^4.0.4
version: 4.2.0
'@gnosis.pm/safe-deployments':
specifier: ^1.8.0
version: 1.19.0
'@jup-ag/api':
specifier: ^6.0.32
version: 6.0.32
'@jup-ag/referral-sdk':
specifier: ^0.1.7
version: 0.1.7(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@mycrypto/gas-estimation':
specifier: ^1.1.1
version: 1.1.1
'@mysten/sui.js':
specifier: ^0.14.0
version: 0.14.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@noble/curves':
specifier: ^1.5.0
version: 1.7.0
'@noble/ed25519':
specifier: ^2.1.0
version: 2.1.0
'@noble/hashes':
specifier: ^1.4.0
version: 1.6.1
'@polkadot/api':
specifier: ^9.14.2
version: 9.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@polkadot/util':
specifier: ^10.4.2
version: 10.4.2
'@project-serum/anchor':
specifier: ^0.26.0
version: 0.26.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@rainbow-me/fee-suggestions':
specifier: ^2.1.0
version: 2.1.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@raydium-io/raydium-sdk':
specifier: 1.3.1-beta.58
version: 1.3.1-beta.58(@solana/web3.js@1.98.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@4.9.5)(utf-8-validate@5.0.10)
'@safe-global/relay-kit':
specifier: 0.1.0-alpha.1
version: 0.1.0-alpha.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@scure/bip39':
specifier: ^1.1.0
version: 1.5.0
'@solana/spl-token':
specifier: ^0.4.9
version: 0.4.9(@solana/web3.js@1.98.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@4.9.5)(utf-8-validate@5.0.10)
'@solana/web3.js':
specifier: ^1.98.0
version: 1.98.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@sqds/multisig':
specifier: 2.1.1
version: 2.1.1(bufferutil@4.0.8)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@4.9.5)(utf-8-validate@5.0.10)
'@sqds/sdk':
specifier: 2.0.4
version: 2.0.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@substrate/txwrapper-polkadot':
specifier: ^5.0.1
version: 5.0.1(@polkadot/util-crypto@10.4.2(@polkadot/util@10.4.2))(@polkadot/util@10.4.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@ton/core':
specifier: ^0.56.3
version: 0.56.3(@ton/crypto@3.3.0)
'@ton/crypto':
specifier: ^3.3.0
version: 3.3.0
'@ton/ton':
specifier: ^14.0.0
version: 14.0.0(@ton/core@0.56.3(@ton/crypto@3.3.0))(@ton/crypto@3.3.0)
'@types/bn.js':
specifier: ^5.1.5
version: 5.1.6
'@uniswap/sdk-core':
specifier: ^3.2.3
version: 3.2.6
'@uniswap/smart-order-router':
specifier: ^2.10.2
version: 2.10.2(bufferutil@4.0.8)(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.10.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(jsbi@3.2.5)(utf-8-validate@5.0.10)
'@uniswap/token-lists':
specifier: 1.0.0-beta.33
version: 1.0.0-beta.33
'@uniswap/v3-sdk':
specifier: ^3.9.0
version: 3.19.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.10.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
abi-decoder:
specifier: ^2.4.0
version: 2.4.0
ajv:
specifier: ^8.12.0
version: 8.17.1
ajv-formats:
specifier: ^2.1.1
version: 2.1.1(ajv@8.17.1)
aptos:
specifier: ^1.3.16
version: 1.21.0
avalanche:
specifier: ^3.12.0
version: 3.16.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
axios:
specifier: ^1.7.7
version: 1.7.9
bignumber.js:
specifier: ^9.0.1
version: 9.1.2
bip39:
specifier: ^3.0.4
version: 3.1.0
bitcoinjs-lib:
specifier: ^6.1.6
version: 6.1.7
bitcoinjs-lib-v3:
specifier: npm:bitcoinjs-lib@^3.3.2
version: bitcoinjs-lib@3.3.2
bitcoinjs-lib-v7:
specifier: npm:@bitgo-forks/bitcoinjs-lib@7.1.0-master.9
version: '@bitgo-forks/bitcoinjs-lib@7.1.0-master.9'
bitcore-lib:
specifier: ^10.5.3
version: 10.7.0
bitcore-lib-cash:
specifier: ^10.5.3
version: 10.7.0
bn.js:
specifier: ^5.2.1
version: 5.2.1
bs58:
specifier: ^4.0.1
version: 4.0.1
cardano-addresses:
specifier: ^3.12.0
version: 3.12.0
cardano-crypto.js:
specifier: ^6.1.2
version: 6.1.2
cardano-wallet:
specifier: ^1.2.2
version: 1.2.2
cardano-wallet-js:
specifier: ^1.4.0
version: 1.4.0
cardanocli-js:
specifier: ^3.1.2
version: 3.1.2
coinselect:
specifier: ^3.1.13
version: 3.1.13
cosmjs-types:
specifier: ^0.6.1
version: 0.6.1
dayjs:
specifier: ^1.11.11
version: 1.11.13
dotenv:
specifier: ^16.4.7
version: 16.4.7
ed25519-hd-key:
specifier: ^1.3.0
version: 1.3.0
elliptic:
specifier: ^6.5.7
version: 6.6.1
ethereum-cryptography:
specifier: ^0.1.3
version: 0.1.3
ethereumjs-abi:
specifier: ^0.6.8
version: 0.6.8
ethereumjs-util:
specifier: ^6.2.1
version: 6.2.1
ethers:
specifier: ^5.7.2
version: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
ethjs-util:
specifier: ^0.1.6
version: 0.1.6
invariant:
specifier: ^2.2.4
version: 2.2.4
js-chain-libs:
specifier: ^0.3.0
version: 0.3.0
keccak256:
specifier: ^1.0.6
version: 1.0.6
lodash:
specifier: ^4.17.21
version: 4.17.21
log4js:
specifier: ^6.9.1
version: 6.9.1
long:
specifier: ^5.2.3
version: 5.2.3
merkletreejs:
specifier: ^0.2.32
version: 0.2.32
micro-ed25519-hdkey:
specifier: ^0.1.2
version: 0.1.2
micro-key-producer:
specifier: ^0.7.2
version: 0.7.2
node-fetch:
specifier: ^2.7.0
version: 2.7.0
ripple-keypairs:
specifier: ^1.3.1
version: 1.3.1
ripple-lib:
specifier: ^1.10.1
version: 1.10.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
rlp:
specifier: ^2.2.7
version: 2.2.7
secp256k1:
specifier: ^4.0.3
version: 4.0.4
shelljs:
specifier: ^0.8.5
version: 0.8.5
socket.io-client:
specifier: ^4.7.5
version: 4.8.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
stellar-sdk:
specifier: ^8.3.0
version: 8.3.0
stream-transform:
specifier: ^3.3.2
version: 3.3.3
tiny-secp256k1:
specifier: ^2.2.3
version: 2.2.3
tweetnacl:
specifier: ^1.0.3
version: 1.0.3
typescript:
specifier: ^4.9.5
version: 4.9.5
web3:
specifier: ^1.10.4
version: 1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)
web3-core-method:
specifier: ^1.10.3
version: 1.10.3
web3-eth-accounts:
specifier: ^1.10.4
version: 1.10.4
web3-eth-contract:
specifier: ^1.10.4
version: 1.10.4
web3-utils:
specifier: ^1.10.4
version: 1.10.4
yesno:
specifier: ^0.4.0
version: 0.4.0
devDependencies:
'@tsconfig/recommended':
specifier: ^1.0.7
version: 1.0.8
'@types/bs58':
specifier: ^4.0.4
version: 4.0.4
'@types/elliptic':
specifier: ^6.4.18
version: 6.4.18
'@types/ethjs-util':
specifier: ^0.1.3
version: 0.1.3
'@types/invariant':
specifier: ^2.2.37
version: 2.2.37
'@types/jest':
specifier: ^29.5.14
version: 29.5.14
jest:
specifier: ^27.5.1
version: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.10.2)(typescript@4.9.5))(utf-8-validate@5.0.10)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@22.10.2)(typescript@4.9.5)
packages:
'@ampproject/remapping@2.3.0':
resolution: { integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== }
engines: { node: '>=6.0.0' }
'@aptos-labs/aptos-client@0.1.1':
resolution: { integrity: sha512-kJsoy4fAPTOhzVr7Vwq8s/AUg6BQiJDa7WOqRzev4zsuIS3+JCuIZ6vUd7UBsjnxtmguJJulMRs9qWCzVBt2XA== }
engines: { node: '>=15.10.0' }
'@babel/code-frame@7.26.2':
resolution: { integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== }
engines: { node: '>=6.9.0' }
'@babel/compat-data@7.26.3':
resolution: { integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g== }
engines: { node: '>=6.9.0' }
'@babel/core@7.26.0':
resolution: { integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== }
engines: { node: '>=6.9.0' }
'@babel/generator@7.26.3':
resolution: { integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ== }
engines: { node: '>=6.9.0' }
'@babel/helper-compilation-targets@7.25.9':
resolution: { integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ== }
engines: { node: '>=6.9.0' }
'@babel/helper-module-imports@7.25.9':
resolution: { integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== }
engines: { node: '>=6.9.0' }
'@babel/helper-module-transforms@7.26.0':
resolution: { integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== }
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-plugin-utils@7.25.9':
resolution: { integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw== }
engines: { node: '>=6.9.0' }
'@babel/helper-string-parser@7.25.9':
resolution: { integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== }
engines: { node: '>=6.9.0' }
'@babel/helper-validator-identifier@7.25.9':
resolution: { integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== }
engines: { node: '>=6.9.0' }
'@babel/helper-validator-option@7.25.9':
resolution: { integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== }
engines: { node: '>=6.9.0' }
'@babel/helpers@7.26.0':
resolution: { integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw== }
engines: { node: '>=6.9.0' }
'@babel/parser@7.26.3':
resolution: { integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA== }
engines: { node: '>=6.0.0' }
hasBin: true
'@babel/plugin-syntax-async-generators@7.8.4':
resolution: { integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-bigint@7.8.3':
resolution: { integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-class-properties@7.12.13':
resolution: { integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-class-static-block@7.14.5':
resolution: { integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== }
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-import-attributes@7.26.0':
resolution: { integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A== }
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-import-meta@7.10.4':
resolution: { integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-json-strings@7.8.3':
resolution: { integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-logical-assignment-operators@7.10.4':
resolution: { integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
resolution: { integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-numeric-separator@7.10.4':
resolution: { integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-object-rest-spread@7.8.3':
resolution: { integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-optional-catch-binding@7.8.3':
resolution: { integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-optional-chaining@7.8.3':
resolution: { integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-private-property-in-object@7.14.5':
resolution: { integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== }
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-top-level-await@7.14.5':
resolution: { integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== }
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-typescript@7.25.9':
resolution: { integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ== }
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/runtime@7.26.0':
resolution: { integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw== }
engines: { node: '>=6.9.0' }
'@babel/template@7.25.9':
resolution: { integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg== }
engines: { node: '>=6.9.0' }
'@babel/traverse@7.26.4':
resolution: { integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w== }
engines: { node: '>=6.9.0' }
'@babel/types@7.26.3':
resolution: { integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA== }
engines: { node: '>=6.9.0' }
'@bcoe/v8-coverage@0.2.3':
resolution: { integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== }
'@bitgo-forks/bip174@3.1.0-master.4':
resolution: { integrity: sha512-WDRNzPSdJGDqQNqfN+L5KHNHFDmNOPYnUnT7NkEkfHWn5m1jSOfcf8Swaslt5P0xcSDiERdN2gZxFc6XtOqRYg== }
engines: { node: '>=8.0.0' }
'@bitgo-forks/bitcoinjs-lib@7.1.0-master.9':
resolution: { integrity: sha512-iWDwsRZK30tW7jtBiOlOJhuJzZ2THIvdvREBHM2cHG669nGQxNPxpYXmk0Lgm5x4jG4GN1dM6dPR6Car6EtDsA== }
engines: { node: '>=8.0.0' }
'@bitgo/bitcoinjs-lib@6.1.0-rc.3':
resolution: { integrity: sha512-HQa13C61wVtkMKJG+L2Nz7bjuu8N252OHouRd3bFP38Xhlxc0+KX0j0H7KBEjcjYMsknV2Ts51gGLzBltdXvoA== }
engines: { node: '>=8.0.0' }
'@bitgo/blake2b-wasm@3.2.3':
resolution: { integrity: sha512-NaurBrMaEpjfg7EdUJgW/c6byt27O6q1ZaxB5Ita10MjjYjUu0SyYF4q7JPNxpHF/lMxb0YZakOxigbDBu9Jjw== }
'@bitgo/blake2b@3.2.4':
resolution: { integrity: sha512-46PEgEVPxecNJ/xczggIllSxIkFIvvbVM0OfIDdNJ5qpFHUeBCkNIiGdzC3fYZlsv7bVTdUZOj79GcFBLMYBqA== }
'@bitgo/utxo-lib@1.9.6':
resolution: { integrity: sha512-b7bC5bzaiCrnVVt9epYWAhu1+ILPlgZK73YIHLHkYbcXxmCxk/nM8G6bXKdDCcRXAipnv2fLC3XTVVw1idfDdA== }
engines: { node: '>=10.22.0 <16', npm: '>=3.10.10' }
'@bitgo/utxo-lib@2.4.1':
resolution: { integrity: sha512-hy992E7xdZBBdPF1Gld3bpiTuQn1XWZBfGj3GnDmeP3/ocFvd73C1Tugh5GDn1rLI1fMJK4VwgExmzrxPvgKMA== }
engines: { node: '>=10.22.0 <17', npm: '>=3.10.10' }
'@bitgo/utxo-lib@https://gitpkg.now.sh/cryptoless/BitGoJS/modules/utxo-lib?f22b435db9dd991d260ecf97e5c65310f48e27f3':
resolution: { tarball: https://gitpkg.now.sh/cryptoless/BitGoJS/modules/utxo-lib?f22b435db9dd991d260ecf97e5c65310f48e27f3 }
version: 2.1.0
engines: { node: '>=10.22.0 <17', npm: '>=3.10.10' }
'@clover-network/node-types@1.0.5':
resolution: { integrity: sha512-/11t81t+kRxCOa3p1BZOMllMaKyxk09xN4xIEbwmjxPVvVWGgM/gBKr/rdqUe5D2Q7mIY2gtEy/6q4KPCX+qFQ== }
'@confio/ics23@0.6.8':
resolution: { integrity: sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w== }
'@coral-xyz/anchor@0.26.0':
resolution: { integrity: sha512-PxRl+wu5YyptWiR9F2MBHOLLibm87Z4IMUBPreX+DYBtPM+xggvcPi0KAN7+kIL4IrIhXI8ma5V0MCXxSN1pHg== }
engines: { node: '>=11' }
'@coral-xyz/anchor@0.28.1-beta.2':
resolution: { integrity: sha512-xreUcOFF8+IQKWOBUrDKJbIw2ftpRVybFlEPVrbSlOBCbreCWrQ5754Gt9cHIcuBDAzearCDiBqzsGQdNgPJiw== }
engines: { node: '>=11' }
'@coral-xyz/anchor@0.29.0':
resolution: { integrity: sha512-eny6QNG0WOwqV0zQ7cs/b1tIuzZGmP7U7EcH+ogt4Gdbl8HDmIYVMh/9aTmYZPaFWjtUaI8qSn73uYEXWfATdA== }
engines: { node: '>=11' }
'@coral-xyz/borsh@0.26.0':
resolution: { integrity: sha512-uCZ0xus0CszQPHYfWAqKS5swS1UxvePu83oOF+TWpUkedsNlg6p2p4azxZNSSqwXb9uXMFgxhuMBX9r3Xoi0vQ== }
engines: { node: '>=10' }
peerDependencies:
'@solana/web3.js': ^1.68.0
'@coral-xyz/borsh@0.28.0':
resolution: { integrity: sha512-/u1VTzw7XooK7rqeD7JLUSwOyRSesPUk0U37BV9zK0axJc1q0nRbKFGFLYCQ16OtdOJTTwGfGp11Lx9B45bRCQ== }
engines: { node: '>=10' }
peerDependencies:
'@solana/web3.js': ^1.68.0
'@coral-xyz/borsh@0.29.0':
resolution: { integrity: sha512-s7VFVa3a0oqpkuRloWVPdCK7hMbAMY270geZOGfCnaqexrP5dTIpbEHL33req6IYPPJ0hYa71cdvJ1h6V55/oQ== }
engines: { node: '>=10' }
peerDependencies:
'@solana/web3.js': ^1.68.0
'@coral-xyz/spl-token@0.29.0':
resolution: { integrity: sha512-NgkbBGI87pUPmf0FNuPoizwQImKLVt1hc28ylxTvszbRg19azqeLs1hBK7WGHV2RXDN+RqH8dASb+7Gj1aXJMw== }
'@cosmjs/amino@0.29.5':
resolution: { integrity: sha512-Qo8jpC0BiziTSUqpkNatBcwtKNhCovUnFul9SlT/74JUCdLYaeG5hxr3q1cssQt++l4LvlcpF+OUXL48XjNjLw== }
'@cosmjs/crypto@0.29.5':
resolution: { integrity: sha512-2bKkaLGictaNL0UipQCL6C1afaisv6k8Wr/GCLx9FqiyFkh9ZgRHDyetD64ZsjnWV/N/D44s/esI+k6oPREaiQ== }
'@cosmjs/encoding@0.29.5':
resolution: { integrity: sha512-G4rGl/Jg4dMCw5u6PEZHZcoHnUBlukZODHbm/wcL4Uu91fkn5jVo5cXXZcvs4VCkArVGrEj/52eUgTZCmOBGWQ== }
'@cosmjs/json-rpc@0.29.5':
resolution: { integrity: sha512-C78+X06l+r9xwdM1yFWIpGl03LhB9NdM1xvZpQHwgCOl0Ir/WV8pw48y3Ez2awAoUBRfTeejPe4KvrE6NoIi/w== }
'@cosmjs/math@0.29.5':
resolution: { integrity: sha512-2GjKcv+A9f86MAWYLUkjhw1/WpRl2R1BTb3m9qPG7lzMA7ioYff9jY5SPCfafKdxM4TIQGxXQlYGewQL16O68Q== }
'@cosmjs/proto-signing@0.29.5':
resolution: { integrity: sha512-QRrS7CiKaoETdgIqvi/7JC2qCwCR7lnWaUsTzh/XfRy3McLkEd+cXbKAW3cygykv7IN0VAEIhZd2lyIfT8KwNA== }
'@cosmjs/socket@0.29.5':
resolution: { integrity: sha512-5VYDupIWbIXq3ftPV1LkS5Ya/T7Ol/AzWVhNxZ79hPe/mBfv1bGau/LqIYOm2zxGlgm9hBHOTmWGqNYDwr9LNQ== }
'@cosmjs/stargate@0.29.5':
resolution: { integrity: sha512-hjEv8UUlJruLrYGJcUZXM/CziaINOKwfVm2BoSdUnNTMxGvY/jC1ABHKeZUYt9oXHxEJ1n9+pDqzbKc8pT0nBw== }
'@cosmjs/stream@0.29.5':
resolution: { integrity: sha512-TToTDWyH1p05GBtF0Y8jFw2C+4783ueDCmDyxOMM6EU82IqpmIbfwcdMOCAm0JhnyMh+ocdebbFvnX/sGKzRAA== }
'@cosmjs/tendermint-rpc@0.29.5':
resolution: { integrity: sha512-ar80twieuAxsy0x2za/aO3kBr2DFPAXDmk2ikDbmkda+qqfXgl35l9CVAAjKRqd9d+cRvbQyb5M4wy6XQpEV6w== }
'@cosmjs/utils@0.29.5':
resolution: { integrity: sha512-m7h+RXDUxOzEOGt4P+3OVPX7PuakZT3GBmaM/Y2u+abN3xZkziykD/NvedYFvvCCdQo714XcGl33bwifS9FZPQ== }
'@cryptoless/bitcoinjs-lib@https://codeload.github.com/cryptoless/bitcoinjs-lib/tar.gz/b870a6ec65610bded74d5d1e77c4038c49f96541':
resolution: { tarball: https://codeload.github.com/cryptoless/bitcoinjs-lib/tar.gz/b870a6ec65610bded74d5d1e77c4038c49f96541 }
version: 6.1.0-rc
engines: { node: '>=8.0.0' }
'@cspotcode/source-map-support@0.8.1':
resolution: { integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== }
engines: { node: '>=12' }
'@debridge-finance/solana-transaction-parser@2.0.2':
resolution: { integrity: sha512-paD4JCelENYvfL4kq9iO0/P9VqJOwRyxdJUOq4+7+Xm5MugCcVRBLyRAgVMBLQ8PL3HBkRLwWGCmV/0QffhUrA== }
peerDependencies:
'@solana/buffer-layout': ^4.0.0
'@solana/buffer-layout-utils': ^0.2.0
'@emurgo/cardano-serialization-lib-nodejs@10.2.0':
resolution: { integrity: sha512-rRWBQcbQlMj4GS7gt6toxRzY9cjMfFBWYKWrfH+eEqUXSO+3blKKA3T/yra3khxU/8+EAY1T94uoUDvjkrpTzg== }
'@emurgo/cardano-serialization-lib-nodejs@8.1.0':
resolution: { integrity: sha512-BH8MhQQt+BDqWM4Yqa9Asn/vhJJLxi43pp7Crq6bdQuj2NOT2F6e3nhdLS2KJhvb47YGFdg0pnvGaH+TCmUoIA== }
'@esbuild/aix-ppc64@0.24.2':
resolution: { integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA== }
engines: { node: '>=18' }
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.24.2':
resolution: { integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg== }
engines: { node: '>=18' }
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.24.2':
resolution: { integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q== }
engines: { node: '>=18' }
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.24.2':
resolution: { integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw== }
engines: { node: '>=18' }
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.24.2':
resolution: { integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA== }
engines: { node: '>=18' }
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.24.2':
resolution: { integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA== }
engines: { node: '>=18' }
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.24.2':
resolution: { integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg== }
engines: { node: '>=18' }
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.24.2':
resolution: { integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q== }
engines: { node: '>=18' }
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.24.2':
resolution: { integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg== }
engines: { node: '>=18' }
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.24.2':
resolution: { integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA== }
engines: { node: '>=18' }
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.24.2':
resolution: { integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw== }
engines: { node: '>=18' }
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.24.2':
resolution: { integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ== }
engines: { node: '>=18' }
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.24.2':
resolution: { integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw== }
engines: { node: '>=18' }
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.24.2':
resolution: { integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw== }
engines: { node: '>=18' }
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.24.2':
resolution: { integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q== }
engines: { node: '>=18' }
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.24.2':
resolution: { integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw== }
engines: { node: '>=18' }
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.24.2':
resolution: { integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q== }
engines: { node: '>=18' }
cpu: [x64]
os: [linux]
'@esbuild/netbsd-arm64@0.24.2':
resolution: { integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw== }
engines: { node: '>=18' }
cpu: [arm64]
os: [netbsd]
'@esbuild/netbsd-x64@0.24.2':
resolution: { integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw== }
engines: { node: '>=18' }
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-arm64@0.24.2':
resolution: { integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A== }
engines: { node: '>=18' }
cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.24.2':
resolution: { integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA== }
engines: { node: '>=18' }
cpu: [x64]
os: [openbsd]
'@esbuild/sunos-x64@0.24.2':
resolution: { integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig== }
engines: { node: '>=18' }
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.24.2':
resolution: { integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ== }
engines: { node: '>=18' }
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.24.2':
resolution: { integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA== }
engines: { node: '>=18' }
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.24.2':
resolution: { integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg== }
engines: { node: '>=18' }
cpu: [x64]
os: [win32]
'@ethereumjs/common@2.6.5':
resolution: { integrity: sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA== }
'@ethereumjs/rlp@4.0.1':
resolution: { integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw== }
engines: { node: '>=14' }
hasBin: true
'@ethereumjs/rlp@5.0.2':
resolution: { integrity: sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA== }
engines: { node: '>=18' }
hasBin: true
'@ethereumjs/tx@3.5.2':
resolution: { integrity: sha512-gQDNJWKrSDGu2w7w0PzVXVBNMzb7wwdDOmOqczmhNjqFxFuIbhVJDwiGEnxFNC2/b8ifcZzY7MLcluizohRzNw== }
'@ethereumjs/util@8.1.0':
resolution: { integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA== }
engines: { node: '>=14' }
'@ethereumjs/util@9.1.0':
resolution: { integrity: sha512-XBEKsYqLGXLah9PNJbgdkigthkG7TAGvlD/sH12beMXEyHDyigfcbdvHhmLyDWgDyOJn4QwiQUaF7yeuhnjdog== }
engines: { node: '>=18' }
'@ethersproject/abi@5.7.0':
resolution: { integrity: sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA== }
'@ethersproject/abstract-provider@5.7.0':
resolution: { integrity: sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw== }
'@ethersproject/abstract-signer@5.7.0':
resolution: { integrity: sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ== }
'@ethersproject/address@5.7.0':
resolution: { integrity: sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA== }
'@ethersproject/base64@5.7.0':
resolution: { integrity: sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ== }
'@ethersproject/basex@5.7.0':
resolution: { integrity: sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw== }
'@ethersproject/bignumber@5.7.0':
resolution: { integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw== }
'@ethersproject/bytes@5.7.0':
resolution: { integrity: sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== }
'@ethersproject/constants@5.7.0':
resolution: { integrity: sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA== }
'@ethersproject/contracts@5.7.0':
resolution: { integrity: sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg== }
'@ethersproject/hash@5.7.0':
resolution: { integrity: sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g== }
'@ethersproject/hdnode@5.7.0':
resolution: { integrity: sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg== }
'@ethersproject/json-wallets@5.7.0':
resolution: { integrity: sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g== }
'@ethersproject/keccak256@5.7.0':
resolution: { integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg== }
'@ethersproject/logger@5.7.0':
resolution: { integrity: sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== }
'@ethersproject/networks@5.7.1':
resolution: { integrity: sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ== }
'@ethersproject/pbkdf2@5.7.0':
resolution: { integrity: sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw== }
'@ethersproject/properties@5.7.0':
resolution: { integrity: sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw== }
'@ethersproject/providers@5.7.2':
resolution: { integrity: sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg== }
'@ethersproject/random@5.7.0':
resolution: { integrity: sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ== }
'@ethersproject/rlp@5.7.0':
resolution: { integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w== }
'@ethersproject/sha2@5.7.0':
resolution: { integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw== }
'@ethersproject/signing-key@5.7.0':
resolution: { integrity: sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q== }
'@ethersproject/solidity@5.7.0':
resolution: { integrity: sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA== }
'@ethersproject/strings@5.7.0':
resolution: { integrity: sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg== }
'@ethersproject/transactions@5.7.0':
resolution: { integrity: sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ== }
'@ethersproject/units@5.7.0':
resolution: { integrity: sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg== }
'@ethersproject/wallet@5.7.0':
resolution: { integrity: sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA== }
'@ethersproject/web@5.7.1':
resolution: { integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w== }
'@ethersproject/wordlists@5.7.0':
resolution: { integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA== }
'@fastify/busboy@2.1.1':
resolution: { integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA== }
engines: { node: '>=14' }
'@filecoin-shipyard/lotus-client-provider-browser@1.1.1':
resolution: { integrity: sha512-Ii5k3CobPBs0c1OYJdSqYkG3VxlnLSuH0+ZxE+NJ8C19mQtY+uhum9au9MsKMwTSXCx71ky0gp5vTqNJwAoPsQ== }
'@filecoin-shipyard/lotus-client-provider-nodejs@1.1.1':
resolution: { integrity: sha512-PgjQeABOpiZ89XLqL74GnPQ3KvBWo8HN8N13blOSuev5V4dagPNEFOwhvXt4zWTbqAfLwYwWxY1nZtsnEtRysg== }
'@filecoin-shipyard/lotus-client-rpc@1.2.0':
resolution: { integrity: sha512-z7PhEPHkOHhCz/RQEPFEOHegPHyOxH99/1qOkY+COLmCRrHsVxpGAy6TqJLxOFLxeYaUzyTPxpG4c4cRrQ25+w== }
'@filecoin-shipyard/lotus-client-schema@4.2.0':
resolution: { integrity: sha512-JX1ItITk5wdsMLRwdmxfFP+p7M9qatTbQ1C2iH4KPhRU0Yds4/b2R37XovuH88gNHqKq89VBOOzHehyibEzvtQ== }
'@findeth/abi@0.7.1':
resolution: { integrity: sha512-9uNu+/UxeuIibxIB7slf7BGG2PWjgBZr+rKzohhLb7VuoZjmlCcKZkenqwErROxkPdsap7OGO/o1DuYMvObMvw== }
engines: { node: '>=10' }
'@gelatonetwork/relay-sdk@3.5.0':
resolution: { integrity: sha512-oj4rFH09yzFT4wnYCv7V3bZCIVhpuKbnK5jv0fgzclxTbbA6UEWZErn3QiD13yspiIkKafSgMWT0G8z41CINYg== }
'@gnosis.pm/safe-deployments@1.19.0':
resolution: { integrity: sha512-EvHR/LjMwJm0QKXyTscRXqR9vnJwCUDiMnRNKRyXe1akW+udiYXjJTAiGuleFS4DOUSqs6DpAjYlLnXMzUsVMw== }
deprecated: 'WARNING: This project has been renamed to @safe-global/safe-deployments . Please, update your dependencies.'
'@isaacs/cliui@8.0.2':
resolution: { integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== }
engines: { node: '>=12' }
'@istanbuljs/load-nyc-config@1.1.0':
resolution: { integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== }
engines: { node: '>=8' }
'@istanbuljs/schema@0.1.3':
resolution: { integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== }
engines: { node: '>=8' }
'@jest/console@27.5.1':
resolution: { integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg== }
engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 }
'@jest/core@27.5.1':
resolution: { integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ== }
engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 }
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
'@jest/environment@27.5.1':
resolution: { integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA== }
engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 }
'@jest/expect-utils@29.7.0':
resolution: { integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== }
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }