-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
27036 lines (22004 loc) · 938 KB
/
pnpm-lock.yaml
File metadata and controls
27036 lines (22004 loc) · 938 KB
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:
elliptic: ^6.6.1
sha.js: ^2.4.12
importers:
.: {}
clients/js:
dependencies:
'@noble/hashes':
specifier: 1.3.2
version: 1.3.2
'@oasisprotocol/deoxysii':
specifier: 0.0.6
version: 0.0.6
cborg:
specifier: 1.10.2
version: 1.10.2
devDependencies:
'@types/jest':
specifier: ^29.5.11
version: 29.5.14
'@types/node':
specifier: ^18.7.18
version: 18.19.86
'@typescript-eslint/eslint-plugin':
specifier: ^5.38.0
version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@4.9.5))(eslint@8.57.1)(typescript@4.9.5)
'@typescript-eslint/parser':
specifier: ^5.38.0
version: 5.62.0(eslint@8.57.1)(typescript@4.9.5)
eslint:
specifier: ^8.23.1
version: 8.57.1
eslint-config-prettier:
specifier: ^8.5.0
version: 8.10.0(eslint@8.57.1)
ethers:
specifier: 6.x
version: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@18.19.86)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.86)(typescript@4.9.5))
prettier:
specifier: ^2.7.1
version: 2.8.8
ts-jest:
specifier: ^29.1.1
version: 29.3.2(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest@29.7.0(@types/node@18.19.86)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.86)(typescript@4.9.5)))(typescript@4.9.5)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@18.19.86)(typescript@4.9.5)
tweetnacl:
specifier: ^1.0.3
version: 1.0.3
typedoc:
specifier: ^0.25.13
version: 0.25.13(typescript@4.9.5)
typescript:
specifier: ^4.8.3
version: 4.9.5
contracts:
dependencies:
'@openzeppelin/contracts':
specifier: ^5.0.2
version: 5.3.0
devDependencies:
'@noble/hashes':
specifier: 1.3.2
version: 1.3.2
'@nomicfoundation/hardhat-chai-matchers':
specifier: ^2.0.0
version: 2.0.8(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@18.19.86)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)))(chai@4.5.0)(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@18.19.86)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
'@nomicfoundation/hardhat-ethers':
specifier: ^3.0.5
version: 3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@18.19.86)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
'@oasisprotocol/client':
specifier: ^0.1.1-alpha.2
version: 0.1.1-alpha.2
'@oasisprotocol/sapphire-ethers-v6':
specifier: workspace:^
version: link:../integrations/ethers-v6
'@oasisprotocol/sapphire-hardhat':
specifier: workspace:^
version: link:../integrations/hardhat
'@oasisprotocol/sapphire-paratime':
specifier: workspace:^
version: link:../clients/js
'@typechain/ethers-v6':
specifier: ^0.5.1
version: 0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@4.9.5))(typescript@4.9.5)
'@typechain/hardhat':
specifier: ^9.1.0
version: 9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@4.9.5))(typescript@4.9.5))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@18.19.86)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@4.9.5))
'@types/chai':
specifier: ^4.3.3
version: 4.3.20
'@types/mocha':
specifier: ^9.1.1
version: 9.1.1
'@types/node':
specifier: ^18.7.18
version: 18.19.86
'@typescript-eslint/eslint-plugin':
specifier: ^5.37.0
version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@4.9.5))(eslint@8.57.1)(typescript@4.9.5)
'@typescript-eslint/parser':
specifier: ^5.37.0
version: 5.62.0(eslint@8.57.1)(typescript@4.9.5)
cborg:
specifier: ^1.9.5
version: 1.10.2
chai:
specifier: ^4.3.6
version: 4.5.0
eslint:
specifier: ^8.23.1
version: 8.57.1
eslint-config-prettier:
specifier: ^8.5.0
version: 8.10.0(eslint@8.57.1)
ethers:
specifier: 6.x
version: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
hardhat:
specifier: ^2.22.2
version: 2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@18.19.86)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)
hardhat-watcher:
specifier: ^2.5.0
version: 2.5.0(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@18.19.86)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
npm-run-all:
specifier: ^4.1.5
version: 4.1.5
prettier:
specifier: ^2.7.1
version: 2.8.8
prettier-plugin-solidity:
specifier: 1.0.0-beta.24
version: 1.0.0-beta.24(prettier@2.8.8)
siwe:
specifier: ^2.3.2
version: 2.3.2(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
solhint:
specifier: ^3.3.7
version: 3.6.2(typescript@4.9.5)
solidity-coverage:
specifier: ^0.8.2
version: 0.8.15(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@18.19.86)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
ts-node:
specifier: ^10.9.1
version: 10.9.2(@types/node@18.19.86)(typescript@4.9.5)
typechain:
specifier: ^8.3.2
version: 8.3.2(typescript@4.9.5)
typescript:
specifier: ^4.8.3
version: 4.9.5
examples/encrypted-events:
dependencies:
'@oasisprotocol/client-rt':
specifier: ^1.3.0
version: 1.3.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
'@oasisprotocol/deoxysii':
specifier: ^0.0.6
version: 0.0.6
'@oasisprotocol/sapphire-contracts':
specifier: ^0.2.14
version: 0.2.14
dotenv:
specifier: ^16.4.0
version: 16.6.1
hardhat:
specifier: ^2.26.1
version: 2.26.3(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10)
devDependencies:
'@noble/curves':
specifier: ^1.4.0
version: 1.9.0
'@nomicfoundation/hardhat-toolbox':
specifier: ^5.0.0
version: 5.0.0(c57650d770c281e6674bfc522685ca50)
'@oasisprotocol/sapphire-hardhat':
specifier: ^2.22.2
version: 2.22.2(hardhat@2.26.3(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10))
'@typechain/ethers-v6':
specifier: ^0.5.1
version: 0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))(typescript@5.8.3)
'@typechain/hardhat':
specifier: ^9.1.0
version: 9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))(typescript@5.8.3))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.26.3(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))
'@types/chai':
specifier: ^4.3.14
version: 4.3.20
chai:
specifier: ^4.3.7
version: 4.5.0
ts-node:
specifier: ^10.9.1
version: 10.9.2(@types/node@22.7.5)(typescript@5.8.3)
typescript:
specifier: ^5.4.5
version: 5.8.3
examples/hardhat:
dependencies:
'@nomicfoundation/hardhat-toolbox':
specifier: ^5.0.0
version: 5.0.0(82a203633d04c997c8896acadc79d5f4)
hardhat:
specifier: ^2.22.19
version: 2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10)
devDependencies:
'@biomejs/biome':
specifier: 1.9.4
version: 1.9.4
'@oasisprotocol/sapphire-hardhat':
specifier: workspace:^
version: link:../../integrations/hardhat
'@oasisprotocol/sapphire-paratime':
specifier: workspace:^
version: link:../../clients/js
chai:
specifier: ^4.3.7
version: 4.5.0
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@22.7.5)(typescript@5.8.3)
typescript:
specifier: ^5.7.3
version: 5.8.3
examples/hardhat-boilerplate:
dependencies:
'@oasisprotocol/sapphire-hardhat':
specifier: workspace:^
version: link:../../integrations/hardhat
devDependencies:
'@ethersproject/abi':
specifier: ^5.8.0
version: 5.8.0
'@ethersproject/providers':
specifier: ^5.8.0
version: 5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
'@nomicfoundation/hardhat-chai-matchers':
specifier: ^1.0.0
version: 1.0.6(@nomiclabs/hardhat-ethers@2.2.3(ethers@5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)))(chai@4.5.0)(ethers@5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
'@nomicfoundation/hardhat-network-helpers':
specifier: ^1.0.0
version: 1.0.12(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
'@nomicfoundation/hardhat-toolbox':
specifier: ^1.0.1
version: 1.0.2(f65b911889324841e76578a6f4f764a9)
'@nomiclabs/hardhat-ethers':
specifier: ^2.0.0
version: 2.2.3(ethers@5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
'@nomiclabs/hardhat-etherscan':
specifier: ^3.0.0
version: 3.1.8(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
'@typechain/ethers-v5':
specifier: ^10.1.0
version: 10.2.1(@ethersproject/abi@5.8.0)(@ethersproject/providers@5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(ethers@5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@4.9.5))(typescript@4.9.5)
'@typechain/hardhat':
specifier: ^6.1.3
version: 6.1.6(@ethersproject/abi@5.8.0)(@ethersproject/providers@5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.8.0)(@ethersproject/providers@5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(ethers@5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@4.9.5))(typescript@4.9.5))(ethers@5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@4.9.5))
'@types/mocha':
specifier: ^9.1.1
version: 9.1.1
chai:
specifier: ^4.2.0
version: 4.5.0
ethers:
specifier: ^5.8.0
version: 5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
hardhat:
specifier: ^2.11.0
version: 2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)
hardhat-gas-reporter:
specifier: ^1.0.8
version: 1.0.10(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
solidity-coverage:
specifier: ^0.7.21
version: 0.7.22(bufferutil@4.0.9)(utf-8-validate@5.0.10)
ts-node:
specifier: ^10.9.1
version: 10.9.2(@types/node@22.7.5)(typescript@4.9.5)
typechain:
specifier: ^8.1.0
version: 8.3.2(typescript@4.9.5)
typescript:
specifier: ^4.8.4
version: 4.9.5
examples/hardhat-boilerplate/frontend:
dependencies:
'@oasisprotocol/sapphire-paratime':
specifier: workspace:^
version: link:../../../clients/js
bootstrap:
specifier: ^4.4.1
version: 4.6.2(jquery@3.7.1)(popper.js@1.16.1)
ethers:
specifier: ^5.8.0
version: 5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
react:
specifier: ^18.2.0
version: 18.3.1
react-dom:
specifier: ^18.2.0
version: 18.3.1(react@18.3.1)
devDependencies:
react-scripts:
specifier: 5.0.1
version: 5.0.1(@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.10))(@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.10))(@types/babel__core@7.20.5)(bufferutil@4.0.9)(eslint@8.57.1)(react@18.3.1)(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.8.3))(type-fest@4.40.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)
webpack-bundle-analyzer:
specifier: ^4.10.2
version: 4.10.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)
webpack-cli:
specifier: ^5.1.4
version: 5.1.4(webpack-bundle-analyzer@4.10.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))(webpack-dev-server@4.15.2)(webpack@5.99.6)
examples/hardhat-viem:
dependencies:
'@nomicfoundation/hardhat-toolbox-viem':
specifier: ~3.0.0
version: 3.0.0(88bcfad2a8ca3da6985fd5b479b16ac4)
'@nomicfoundation/hardhat-viem':
specifier: ~2.0.0
version: 2.0.6(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10))(typescript@5.8.3)(viem@2.9.19(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)
'@oasisprotocol/sapphire-hardhat':
specifier: workspace:^
version: link:../../integrations/hardhat
'@oasisprotocol/sapphire-paratime':
specifier: workspace:^
version: link:../../clients/js
'@oasisprotocol/sapphire-viem-v2':
specifier: workspace:^
version: link:../../integrations/viem-v2
'@types/chai':
specifier: ^4.3.14
version: 4.3.20
chai:
specifier: ^4.4.1
version: 4.5.0
hardhat:
specifier: ~2.22.2
version: 2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10)
viem:
specifier: ~2.9.19
version: 2.9.19(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
examples/onchain-signer:
devDependencies:
'@nomicfoundation/hardhat-chai-matchers':
specifier: ^2.0.0
version: 2.0.8(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)))(chai@4.5.0)(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
'@nomicfoundation/hardhat-ethers':
specifier: ^3.0.5
version: 3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
'@nomicfoundation/hardhat-ignition':
specifier: ^0.15.1
version: 0.15.11(@nomicfoundation/hardhat-verify@2.0.13(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
'@nomicfoundation/hardhat-ignition-ethers':
specifier: ^0.15.1
version: 0.15.11(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-ignition@0.15.11(@nomicfoundation/hardhat-verify@2.0.13(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10))(@nomicfoundation/ignition-core@0.15.11(bufferutil@4.0.9)(utf-8-validate@5.0.10))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
'@nomicfoundation/hardhat-network-helpers':
specifier: ^1.0.0
version: 1.0.12(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
'@nomicfoundation/hardhat-toolbox':
specifier: ^4.0.0
version: 4.0.0(bb8eb00639b875d59db7e8e42218ae9a)
'@nomicfoundation/hardhat-verify':
specifier: ^2.0.2
version: 2.0.13(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
'@oasisprotocol/sapphire-contracts':
specifier: workspace:^
version: link:../../contracts
'@oasisprotocol/sapphire-hardhat':
specifier: workspace:^
version: link:../../integrations/hardhat
'@oasisprotocol/sapphire-paratime':
specifier: workspace:^
version: link:../../clients/js
'@typechain/ethers-v6':
specifier: ^0.5.1
version: 0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@4.9.5))(typescript@4.9.5)
'@typechain/hardhat':
specifier: ^9.1.0
version: 9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@4.9.5))(typescript@4.9.5))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@4.9.5))
'@types/mocha':
specifier: ^9.1.1
version: 9.1.1
chai:
specifier: ^4.2.0
version: 4.5.0
eslint:
specifier: ^8.23.1
version: 8.57.1
eslint-config-prettier:
specifier: ^8.5.0
version: 8.10.0(eslint@8.57.1)
ethers:
specifier: ^6.6.1
version: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
hardhat:
specifier: ^2.19.2
version: 2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)
hardhat-gas-reporter:
specifier: ^1.0.8
version: 1.0.10(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
npm-run-all:
specifier: ^4.1.5
version: 4.1.5
prettier:
specifier: ^3.0.3
version: 3.5.3
prettier-plugin-solidity:
specifier: ^1.2.0
version: 1.4.2(prettier@3.5.3)
solhint:
specifier: ^3.3.7
version: 3.6.2(typescript@4.9.5)
solidity-coverage:
specifier: ^0.8.5
version: 0.8.15(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@22.7.5)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))
ts-node:
specifier: ^10.9.1
version: 10.9.2(@types/node@22.7.5)(typescript@4.9.5)
typechain:
specifier: ^8.3.2
version: 8.3.2(typescript@4.9.5)
typescript:
specifier: ^4.8.4
version: 4.9.5
examples/wagmi-v1:
dependencies:
'@oasisprotocol/sapphire-paratime':
specifier: workspace:^
version: link:../../clients/js
abitype:
specifier: ^1.0.2
version: 1.0.8(typescript@5.8.3)(zod@3.22.4)
react:
specifier: ^18.2.0
version: 18.3.1
react-dom:
specifier: ^18.2.0
version: 18.3.1(react@18.3.1)
viem:
specifier: 2.9.19
version: 2.9.19(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
wagmi:
specifier: 1.4.13
version: 1.4.13(@types/react@18.3.20)(bufferutil@4.0.9)(immer@10.0.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.9.19(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)
devDependencies:
'@biomejs/biome':
specifier: ^1.7.0
version: 1.9.4
'@types/react':
specifier: ^18.2.79
version: 18.3.20
'@types/react-dom':
specifier: ^18.2.25
version: 18.3.6(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.2.1
version: 4.4.1(vite@4.5.13(@types/node@22.7.5)(terser@5.39.0))
buffer:
specifier: ^6.0.3
version: 6.0.3
rollup-plugin-visualizer:
specifier: ^5.12.0
version: 5.14.0(rollup@4.40.0)
typescript:
specifier: ^5.4.5
version: 5.8.3
vite:
specifier: ^4.5.3
version: 4.5.13(@types/node@22.7.5)(terser@5.39.0)
examples/wagmi-v2:
dependencies:
'@oasisprotocol/sapphire-paratime':
specifier: workspace:^
version: link:../../clients/js
'@oasisprotocol/sapphire-wagmi-v2':
specifier: workspace:^
version: link:../../integrations/wagmi-v2
'@rainbow-me/rainbowkit':
specifier: ^2.2.8
version: 2.2.8(@tanstack/react-query@5.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.20)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(viem@2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@2.14.16(@tanstack/query-core@5.83.1)(@tanstack/react-query@5.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.20)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))
'@tanstack/query-sync-storage-persister':
specifier: 5.0.5
version: 5.0.5
'@tanstack/react-query':
specifier: 5.0.5
version: 5.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tanstack/react-query-persist-client':
specifier: 5.0.5
version: 5.0.5(@tanstack/react-query@5.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
abitype:
specifier: ^1.0.2
version: 1.0.8(typescript@5.8.3)(zod@3.22.4)
react:
specifier: ^18.2.0
version: 18.3.1
react-dom:
specifier: ^18.2.0
version: 18.3.1(react@18.3.1)
react-router-dom:
specifier: ^7.5.3
version: 7.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
viem:
specifier: ^2.21.0
version: 2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
wagmi:
specifier: 2.x
version: 2.14.16(@tanstack/query-core@5.83.1)(@tanstack/react-query@5.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.20)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)
devDependencies:
'@biomejs/biome':
specifier: ^1.7.0
version: 1.9.4
'@playwright/test':
specifier: ^1.56.1
version: 1.57.0
'@tenkeylabs/dappwright':
specifier: ^2.13.1
version: 2.13.1(playwright-core@1.57.0)
'@types/react':
specifier: ^18.2.79
version: 18.3.20
'@types/react-dom':
specifier: ^18.2.25
version: 18.3.6(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.2.1
version: 4.4.1(vite@4.5.13(@types/node@22.7.5)(terser@5.39.0))
buffer:
specifier: ^6.0.3
version: 6.0.3
rollup-plugin-visualizer:
specifier: ^5.12.0
version: 5.14.0(rollup@4.40.0)
typescript:
specifier: ^5.4.5
version: 5.8.3
vite:
specifier: ^4.5.3
version: 4.5.13(@types/node@22.7.5)(terser@5.39.0)
examples/wagmi-v3:
dependencies:
'@oasisprotocol/sapphire-paratime':
specifier: workspace:^
version: link:../../clients/js
'@oasisprotocol/sapphire-wagmi-v3':
specifier: workspace:^
version: link:../../integrations/wagmi-v3
'@tanstack/query-sync-storage-persister':
specifier: 5.0.5
version: 5.0.5
'@tanstack/react-query':
specifier: 5.0.5
version: 5.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tanstack/react-query-persist-client':
specifier: 5.0.5
version: 5.0.5(@tanstack/react-query@5.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
abitype:
specifier: ^1.0.2
version: 1.1.0(typescript@5.8.3)(zod@3.22.4)
react:
specifier: ^18.2.0
version: 18.3.1
react-dom:
specifier: ^18.2.0
version: 18.3.1(react@18.3.1)
react-router-dom:
specifier: ^7.5.3
version: 7.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
viem:
specifier: ^2.21.0
version: 2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
wagmi:
specifier: 3.x
version: 3.3.2(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.83.1)(@tanstack/react-query@5.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.20)(@walletconnect/ethereum-provider@2.23.1(@types/react@18.3.20)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(ox@0.11.3(typescript@5.8.3)(zod@3.22.4))(react@18.3.1)(typescript@5.8.3)(viem@2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
devDependencies:
'@biomejs/biome':
specifier: ^1.7.0
version: 1.9.4
'@playwright/test':
specifier: ^1.56.1
version: 1.57.0
'@tenkeylabs/dappwright':
specifier: ^2.13.1
version: 2.13.1(playwright-core@1.57.0)
'@types/react':
specifier: ^18.2.79
version: 18.3.20
'@types/react-dom':
specifier: ^18.2.25
version: 18.3.6(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.2.1
version: 4.4.1(vite@4.5.13(@types/node@22.7.5)(terser@5.39.0))
buffer:
specifier: ^6.0.3
version: 6.0.3
rollup-plugin-visualizer:
specifier: ^5.12.0
version: 5.14.0(rollup@4.40.0)
typescript:
specifier: ^5.4.5
version: 5.8.3
vite:
specifier: ^4.5.3
version: 4.5.13(@types/node@22.7.5)(terser@5.39.0)
integrations/ethers-v6:
dependencies:
'@oasisprotocol/sapphire-paratime':
specifier: workspace:^
version: link:../../clients/js
ethers:
specifier: 6.x
version: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
devDependencies:
'@biomejs/biome':
specifier: ^1.6.3
version: 1.9.4
'@types/chai':
specifier: ^4.3.14
version: 4.3.20
'@types/mocha':
specifier: ^9.1.1
version: 9.1.1
'@types/node':
specifier: ^18.19.28
version: 18.19.86
c8:
specifier: ^9.1.0
version: 9.1.0
chai:
specifier: ^5.1.0
version: 5.2.0
mocha:
specifier: ^10.4.0
version: 10.8.2
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@18.19.86)(typescript@5.8.3)
typedoc:
specifier: ^0.25.13
version: 0.25.13(typescript@5.8.3)
typescript:
specifier: ^5.3.3
version: 5.8.3
integrations/hardhat:
dependencies:
'@oasisprotocol/sapphire-paratime':
specifier: workspace:^
version: link:../../clients/js
devDependencies:
'@nomicfoundation/hardhat-ethers':
specifier: ^3.0.5
version: 3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@8.10.2(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10))
'@nomicfoundation/hardhat-ignition':
specifier: ^0.15.1
version: 0.15.11(@nomicfoundation/hardhat-verify@2.0.13(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@8.10.2(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@8.10.2(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
'@nomicfoundation/hardhat-ignition-ethers':
specifier: ^0.15.1
version: 0.15.11(@nomicfoundation/hardhat-ethers@3.0.8(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@8.10.2(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-ignition@0.15.11(@nomicfoundation/hardhat-verify@2.0.13(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@8.10.2(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@8.10.2(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10))(@nomicfoundation/ignition-core@0.15.11(bufferutil@4.0.9)(utf-8-validate@5.0.10))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@8.10.2(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10))
'@nomicfoundation/hardhat-toolbox':
specifier: ^5.0.0
version: 5.0.0(bd03429e1464cfd662c4d9b64cad4c1e)
'@typechain/ethers-v6':
specifier: ^0.5.1
version: 0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))(typescript@5.8.3)
'@typechain/hardhat':
specifier: ^9.1.0
version: 9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))(typescript@5.8.3))(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@8.10.2(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))
'@types/chai':
specifier: ~4.3.14
version: 4.3.20
'@types/mocha':
specifier: ^9.1.1
version: 9.1.1
'@types/node':
specifier: ^18.19.31
version: 18.19.86
chai:
specifier: ~4.3.7
version: 4.3.10
ethers:
specifier: 6.x
version: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
hardhat:
specifier: 2.x
version: 2.22.19(bufferutil@4.0.9)(ts-node@8.10.2(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10)
mocha:
specifier: ^10.4.0
version: 10.8.2
prettier:
specifier: ^2.8.8
version: 2.8.8
ts-node:
specifier: ^8.10.2
version: 8.10.2(typescript@5.8.3)
typechain:
specifier: ^8.3.2
version: 8.3.2(typescript@5.8.3)
typedoc:
specifier: ^0.25.13
version: 0.25.13(typescript@5.8.3)
typescript:
specifier: 5.x
version: 5.8.3
integrations/viem-v2:
dependencies:
'@oasisprotocol/sapphire-paratime':
specifier: workspace:^
version: link:../../clients/js
'@wagmi/core':
specifier: 2.x
version: 2.16.7(@tanstack/query-core@5.83.1)(@types/react@18.3.20)(immer@10.0.2)(react@18.3.1)(typescript@5.8.3)(use-sync-external-store@1.5.0(react@18.3.1))(viem@2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
viem:
specifier: ^2.21.0
version: 2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
devDependencies:
'@biomejs/biome':
specifier: ^1.7.0
version: 1.9.4
'@types/node':
specifier: ^18.19.31
version: 18.19.86
rimraf:
specifier: ^6.0.1
version: 6.0.1
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@18.19.86)(typescript@5.8.3)
typedoc:
specifier: ^0.25.13
version: 0.25.13(typescript@5.8.3)
typescript:
specifier: ^5.4.5
version: 5.8.3
vitest:
specifier: ^1.6.0
version: 1.6.1(@types/node@18.19.86)(jsdom@16.7.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(terser@5.39.0)
integrations/wagmi-v2:
dependencies:
'@oasisprotocol/sapphire-paratime':
specifier: workspace:^
version: link:../../clients/js
'@oasisprotocol/sapphire-viem-v2':
specifier: workspace:^
version: link:../viem-v2
'@wagmi/core':
specifier: 2.x
version: 2.16.7(@tanstack/query-core@5.83.1)(@types/react@18.3.20)(immer@10.0.2)(react@18.3.1)(typescript@5.8.3)(use-sync-external-store@1.5.0(react@18.3.1))(viem@2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
viem:
specifier: ^2.21.0
version: 2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
wagmi:
specifier: 2.x
version: 2.14.16(@tanstack/query-core@5.83.1)(@tanstack/react-query@5.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.20)(bufferutil@4.0.9)(immer@10.0.2)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)
devDependencies:
'@biomejs/biome':
specifier: ^1.7.0
version: 1.9.4
'@types/node':
specifier: ^18.19.31
version: 18.19.86
'@walletconnect/ethereum-provider':
specifier: ^2.23.0
version: 2.23.1(@types/react@18.3.20)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@18.19.86)(typescript@5.8.3)
typedoc:
specifier: ^0.25.13
version: 0.25.13(typescript@5.8.3)
typescript:
specifier: ^5.4.5
version: 5.8.3
integrations/wagmi-v3:
dependencies:
'@oasisprotocol/sapphire-paratime':
specifier: workspace:^
version: link:../../clients/js
'@oasisprotocol/sapphire-viem-v2':
specifier: workspace:^
version: link:../viem-v2
'@wagmi/connectors':
specifier: 3.x
version: 3.1.11(@types/react@18.3.20)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)
'@wagmi/core':
specifier: 3.x
version: 3.2.2(@tanstack/query-core@5.83.1)(@types/react@18.3.20)(immer@10.0.2)(ox@0.11.3(typescript@5.8.3)(zod@3.22.4))(react@18.3.1)(typescript@5.8.3)(use-sync-external-store@1.5.0(react@18.3.1))(viem@2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
viem:
specifier: ^2.21.0
version: 2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
wagmi:
specifier: 3.x
version: 3.3.2(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.83.1)(@tanstack/react-query@5.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.20)(@walletconnect/ethereum-provider@2.23.1(@types/react@18.3.20)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(immer@10.0.2)(ox@0.11.3(typescript@5.8.3)(zod@3.22.4))(react@18.3.1)(typescript@5.8.3)(viem@2.44.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
devDependencies:
'@biomejs/biome':
specifier: ^1.7.0
version: 1.9.4
'@types/node':
specifier: ^18.19.31
version: 18.19.86
'@walletconnect/ethereum-provider':
specifier: ^2.23.0
version: 2.23.1(@types/react@18.3.20)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@18.19.86)(typescript@5.8.3)
typedoc:
specifier: ^0.25.13
version: 0.25.13(typescript@5.8.3)
typescript:
specifier: ^5.4.5
version: 5.8.3
packages:
'@adraffy/ens-normalize@1.10.0':
resolution: {integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==}
'@adraffy/ens-normalize@1.10.1':
resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==}
'@adraffy/ens-normalize@1.11.1':
resolution: {integrity: sha512-nhCBV3quEgesuf7c7KYfperqSS14T8bYuvJ8PcLJp6znkZpFc0AuW4qBtr8eKVyPPe/8RSr7sglCWPU5eaxwKQ==}
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@apideck/better-ajv-errors@0.3.6':
resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==}
engines: {node: '>=10'}
peerDependencies:
ajv: '>=8'
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.26.8':
resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.26.10':
resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
engines: {node: '>=6.9.0'}
'@babel/eslint-parser@7.27.0':
resolution: {integrity: sha512-dtnzmSjXfgL/HDgMcmsLSzyGbEosi4DrGWoCNfuI+W4IkVJw6izpTe7LtOdwAXnkDqw5yweboYCTkM2rQizCng==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
'@babel/generator@7.27.0':
resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.25.9':
resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.27.0':
resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.27.0':
resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-create-regexp-features-plugin@7.27.0':
resolution: {integrity: sha512-fO8l08T76v48BhpNRW/nQ0MxfnSdoSKUJBMjubOAYffsVuGG5qOfMq7N6Es7UJvi7Y8goXXo07EfcHZXDPuELQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-define-polyfill-provider@0.6.4':
resolution: {integrity: sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
'@babel/helper-member-expression-to-functions@7.25.9':
resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
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-optimise-call-expression@7.25.9':
resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.26.5':
resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
engines: {node: '>=6.9.0'}
'@babel/helper-remap-async-to-generator@7.25.9':
resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-replace-supers@7.26.5':
resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
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/helper-wrap-function@7.25.9':
resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.27.0':
resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.27.0':
resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}