@merkl/contracts 0.1.103 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1109 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ import { Contract, utils } from "ethers";
5
+ const _abi = [
6
+ {
7
+ inputs: [
8
+ {
9
+ internalType: "address",
10
+ name: "_evc",
11
+ type: "address",
12
+ },
13
+ {
14
+ internalType: "address",
15
+ name: "_nonFungiblePositionManager",
16
+ type: "address",
17
+ },
18
+ {
19
+ internalType: "address",
20
+ name: "_oracle",
21
+ type: "address",
22
+ },
23
+ {
24
+ internalType: "address",
25
+ name: "_unitOfAccount",
26
+ type: "address",
27
+ },
28
+ {
29
+ internalType: "address",
30
+ name: "_poolAddress",
31
+ type: "address",
32
+ },
33
+ ],
34
+ stateMutability: "nonpayable",
35
+ type: "constructor",
36
+ },
37
+ {
38
+ inputs: [],
39
+ name: "ControllerDisabled",
40
+ type: "error",
41
+ },
42
+ {
43
+ inputs: [
44
+ {
45
+ internalType: "address",
46
+ name: "spender",
47
+ type: "address",
48
+ },
49
+ {
50
+ internalType: "uint256",
51
+ name: "allowance",
52
+ type: "uint256",
53
+ },
54
+ {
55
+ internalType: "uint256",
56
+ name: "needed",
57
+ type: "uint256",
58
+ },
59
+ {
60
+ internalType: "uint256",
61
+ name: "id",
62
+ type: "uint256",
63
+ },
64
+ ],
65
+ name: "ERC6909InsufficientAllowance",
66
+ type: "error",
67
+ },
68
+ {
69
+ inputs: [
70
+ {
71
+ internalType: "address",
72
+ name: "sender",
73
+ type: "address",
74
+ },
75
+ {
76
+ internalType: "uint256",
77
+ name: "balance",
78
+ type: "uint256",
79
+ },
80
+ {
81
+ internalType: "uint256",
82
+ name: "needed",
83
+ type: "uint256",
84
+ },
85
+ {
86
+ internalType: "uint256",
87
+ name: "id",
88
+ type: "uint256",
89
+ },
90
+ ],
91
+ name: "ERC6909InsufficientBalance",
92
+ type: "error",
93
+ },
94
+ {
95
+ inputs: [
96
+ {
97
+ internalType: "address",
98
+ name: "approver",
99
+ type: "address",
100
+ },
101
+ ],
102
+ name: "ERC6909InvalidApprover",
103
+ type: "error",
104
+ },
105
+ {
106
+ inputs: [
107
+ {
108
+ internalType: "address",
109
+ name: "receiver",
110
+ type: "address",
111
+ },
112
+ ],
113
+ name: "ERC6909InvalidReceiver",
114
+ type: "error",
115
+ },
116
+ {
117
+ inputs: [
118
+ {
119
+ internalType: "address",
120
+ name: "sender",
121
+ type: "address",
122
+ },
123
+ ],
124
+ name: "ERC6909InvalidSender",
125
+ type: "error",
126
+ },
127
+ {
128
+ inputs: [
129
+ {
130
+ internalType: "address",
131
+ name: "spender",
132
+ type: "address",
133
+ },
134
+ ],
135
+ name: "ERC6909InvalidSpender",
136
+ type: "error",
137
+ },
138
+ {
139
+ inputs: [],
140
+ name: "EVC_InvalidAddress",
141
+ type: "error",
142
+ },
143
+ {
144
+ inputs: [],
145
+ name: "InvalidPoolAddress",
146
+ type: "error",
147
+ },
148
+ {
149
+ inputs: [],
150
+ name: "MaximumAllowedTokenIdsReached",
151
+ type: "error",
152
+ },
153
+ {
154
+ inputs: [],
155
+ name: "NotAuthorized",
156
+ type: "error",
157
+ },
158
+ {
159
+ inputs: [],
160
+ name: "TokenIdIsAlreadyWrapped",
161
+ type: "error",
162
+ },
163
+ {
164
+ inputs: [],
165
+ name: "TokenIdNotOwnedByThisContract",
166
+ type: "error",
167
+ },
168
+ {
169
+ anonymous: false,
170
+ inputs: [
171
+ {
172
+ indexed: true,
173
+ internalType: "address",
174
+ name: "owner",
175
+ type: "address",
176
+ },
177
+ {
178
+ indexed: true,
179
+ internalType: "address",
180
+ name: "spender",
181
+ type: "address",
182
+ },
183
+ {
184
+ indexed: true,
185
+ internalType: "uint256",
186
+ name: "id",
187
+ type: "uint256",
188
+ },
189
+ {
190
+ indexed: false,
191
+ internalType: "uint256",
192
+ name: "amount",
193
+ type: "uint256",
194
+ },
195
+ ],
196
+ name: "Approval",
197
+ type: "event",
198
+ },
199
+ {
200
+ anonymous: false,
201
+ inputs: [
202
+ {
203
+ indexed: true,
204
+ internalType: "address",
205
+ name: "owner",
206
+ type: "address",
207
+ },
208
+ {
209
+ indexed: true,
210
+ internalType: "address",
211
+ name: "spender",
212
+ type: "address",
213
+ },
214
+ {
215
+ indexed: false,
216
+ internalType: "bool",
217
+ name: "approved",
218
+ type: "bool",
219
+ },
220
+ ],
221
+ name: "OperatorSet",
222
+ type: "event",
223
+ },
224
+ {
225
+ anonymous: false,
226
+ inputs: [
227
+ {
228
+ indexed: true,
229
+ internalType: "address",
230
+ name: "owner",
231
+ type: "address",
232
+ },
233
+ {
234
+ indexed: true,
235
+ internalType: "uint256",
236
+ name: "tokenId",
237
+ type: "uint256",
238
+ },
239
+ {
240
+ indexed: false,
241
+ internalType: "bool",
242
+ name: "enabled",
243
+ type: "bool",
244
+ },
245
+ ],
246
+ name: "TokenIdEnabled",
247
+ type: "event",
248
+ },
249
+ {
250
+ anonymous: false,
251
+ inputs: [
252
+ {
253
+ indexed: false,
254
+ internalType: "address",
255
+ name: "caller",
256
+ type: "address",
257
+ },
258
+ {
259
+ indexed: true,
260
+ internalType: "address",
261
+ name: "sender",
262
+ type: "address",
263
+ },
264
+ {
265
+ indexed: true,
266
+ internalType: "address",
267
+ name: "receiver",
268
+ type: "address",
269
+ },
270
+ {
271
+ indexed: true,
272
+ internalType: "uint256",
273
+ name: "id",
274
+ type: "uint256",
275
+ },
276
+ {
277
+ indexed: false,
278
+ internalType: "uint256",
279
+ name: "amount",
280
+ type: "uint256",
281
+ },
282
+ ],
283
+ name: "Transfer",
284
+ type: "event",
285
+ },
286
+ {
287
+ inputs: [],
288
+ name: "EVC",
289
+ outputs: [
290
+ {
291
+ internalType: "address",
292
+ name: "",
293
+ type: "address",
294
+ },
295
+ ],
296
+ stateMutability: "view",
297
+ type: "function",
298
+ },
299
+ {
300
+ inputs: [],
301
+ name: "FULL_AMOUNT",
302
+ outputs: [
303
+ {
304
+ internalType: "uint256",
305
+ name: "",
306
+ type: "uint256",
307
+ },
308
+ ],
309
+ stateMutability: "view",
310
+ type: "function",
311
+ },
312
+ {
313
+ inputs: [],
314
+ name: "MAX_TOKENIDS_ALLOWED",
315
+ outputs: [
316
+ {
317
+ internalType: "uint256",
318
+ name: "",
319
+ type: "uint256",
320
+ },
321
+ ],
322
+ stateMutability: "view",
323
+ type: "function",
324
+ },
325
+ {
326
+ inputs: [
327
+ {
328
+ internalType: "address",
329
+ name: "owner",
330
+ type: "address",
331
+ },
332
+ {
333
+ internalType: "address",
334
+ name: "spender",
335
+ type: "address",
336
+ },
337
+ {
338
+ internalType: "uint256",
339
+ name: "id",
340
+ type: "uint256",
341
+ },
342
+ ],
343
+ name: "allowance",
344
+ outputs: [
345
+ {
346
+ internalType: "uint256",
347
+ name: "",
348
+ type: "uint256",
349
+ },
350
+ ],
351
+ stateMutability: "view",
352
+ type: "function",
353
+ },
354
+ {
355
+ inputs: [
356
+ {
357
+ internalType: "address",
358
+ name: "spender",
359
+ type: "address",
360
+ },
361
+ {
362
+ internalType: "uint256",
363
+ name: "id",
364
+ type: "uint256",
365
+ },
366
+ {
367
+ internalType: "uint256",
368
+ name: "amount",
369
+ type: "uint256",
370
+ },
371
+ ],
372
+ name: "approve",
373
+ outputs: [
374
+ {
375
+ internalType: "bool",
376
+ name: "",
377
+ type: "bool",
378
+ },
379
+ ],
380
+ stateMutability: "nonpayable",
381
+ type: "function",
382
+ },
383
+ {
384
+ inputs: [
385
+ {
386
+ internalType: "address",
387
+ name: "owner",
388
+ type: "address",
389
+ },
390
+ {
391
+ internalType: "uint256",
392
+ name: "id",
393
+ type: "uint256",
394
+ },
395
+ ],
396
+ name: "balanceOf",
397
+ outputs: [
398
+ {
399
+ internalType: "uint256",
400
+ name: "",
401
+ type: "uint256",
402
+ },
403
+ ],
404
+ stateMutability: "view",
405
+ type: "function",
406
+ },
407
+ {
408
+ inputs: [
409
+ {
410
+ internalType: "address",
411
+ name: "owner",
412
+ type: "address",
413
+ },
414
+ ],
415
+ name: "balanceOf",
416
+ outputs: [
417
+ {
418
+ internalType: "uint256",
419
+ name: "totalValue",
420
+ type: "uint256",
421
+ },
422
+ ],
423
+ stateMutability: "view",
424
+ type: "function",
425
+ },
426
+ {
427
+ inputs: [
428
+ {
429
+ internalType: "uint256",
430
+ name: "tokenId",
431
+ type: "uint256",
432
+ },
433
+ {
434
+ internalType: "uint256",
435
+ name: "amount",
436
+ type: "uint256",
437
+ },
438
+ ],
439
+ name: "calculateValueOfTokenId",
440
+ outputs: [
441
+ {
442
+ internalType: "uint256",
443
+ name: "",
444
+ type: "uint256",
445
+ },
446
+ ],
447
+ stateMutability: "view",
448
+ type: "function",
449
+ },
450
+ {
451
+ inputs: [
452
+ {
453
+ internalType: "uint256",
454
+ name: "tokenId",
455
+ type: "uint256",
456
+ },
457
+ ],
458
+ name: "disableTokenIdAsCollateral",
459
+ outputs: [
460
+ {
461
+ internalType: "bool",
462
+ name: "disabled",
463
+ type: "bool",
464
+ },
465
+ ],
466
+ stateMutability: "nonpayable",
467
+ type: "function",
468
+ },
469
+ {
470
+ inputs: [],
471
+ name: "enableCurrentSkimCandidateAsCollateral",
472
+ outputs: [
473
+ {
474
+ internalType: "bool",
475
+ name: "",
476
+ type: "bool",
477
+ },
478
+ ],
479
+ stateMutability: "nonpayable",
480
+ type: "function",
481
+ },
482
+ {
483
+ inputs: [
484
+ {
485
+ internalType: "uint256",
486
+ name: "tokenId",
487
+ type: "uint256",
488
+ },
489
+ ],
490
+ name: "enableTokenIdAsCollateral",
491
+ outputs: [
492
+ {
493
+ internalType: "bool",
494
+ name: "enabled",
495
+ type: "bool",
496
+ },
497
+ ],
498
+ stateMutability: "nonpayable",
499
+ type: "function",
500
+ },
501
+ {
502
+ inputs: [],
503
+ name: "factory",
504
+ outputs: [
505
+ {
506
+ internalType: "contract IUniswapV3Factory",
507
+ name: "",
508
+ type: "address",
509
+ },
510
+ ],
511
+ stateMutability: "view",
512
+ type: "function",
513
+ },
514
+ {
515
+ inputs: [],
516
+ name: "fee",
517
+ outputs: [
518
+ {
519
+ internalType: "uint24",
520
+ name: "",
521
+ type: "uint24",
522
+ },
523
+ ],
524
+ stateMutability: "view",
525
+ type: "function",
526
+ },
527
+ {
528
+ inputs: [
529
+ {
530
+ internalType: "address",
531
+ name: "owner",
532
+ type: "address",
533
+ },
534
+ ],
535
+ name: "getEnabledTokenIds",
536
+ outputs: [
537
+ {
538
+ internalType: "uint256[]",
539
+ name: "",
540
+ type: "uint256[]",
541
+ },
542
+ ],
543
+ stateMutability: "view",
544
+ type: "function",
545
+ },
546
+ {
547
+ inputs: [
548
+ {
549
+ internalType: "uint256",
550
+ name: "inAmount",
551
+ type: "uint256",
552
+ },
553
+ {
554
+ internalType: "address",
555
+ name: "base",
556
+ type: "address",
557
+ },
558
+ ],
559
+ name: "getQuote",
560
+ outputs: [
561
+ {
562
+ internalType: "uint256",
563
+ name: "outAmount",
564
+ type: "uint256",
565
+ },
566
+ ],
567
+ stateMutability: "view",
568
+ type: "function",
569
+ },
570
+ {
571
+ inputs: [
572
+ {
573
+ internalType: "address",
574
+ name: "token0",
575
+ type: "address",
576
+ },
577
+ {
578
+ internalType: "address",
579
+ name: "token1",
580
+ type: "address",
581
+ },
582
+ {
583
+ internalType: "uint256",
584
+ name: "unit0",
585
+ type: "uint256",
586
+ },
587
+ {
588
+ internalType: "uint256",
589
+ name: "unit1",
590
+ type: "uint256",
591
+ },
592
+ ],
593
+ name: "getSqrtRatioX96",
594
+ outputs: [
595
+ {
596
+ internalType: "uint160",
597
+ name: "sqrtRatioX96",
598
+ type: "uint160",
599
+ },
600
+ ],
601
+ stateMutability: "view",
602
+ type: "function",
603
+ },
604
+ {
605
+ inputs: [],
606
+ name: "getTokenIdToSkim",
607
+ outputs: [
608
+ {
609
+ internalType: "uint256",
610
+ name: "",
611
+ type: "uint256",
612
+ },
613
+ ],
614
+ stateMutability: "view",
615
+ type: "function",
616
+ },
617
+ {
618
+ inputs: [
619
+ {
620
+ internalType: "address",
621
+ name: "owner",
622
+ type: "address",
623
+ },
624
+ {
625
+ internalType: "address",
626
+ name: "spender",
627
+ type: "address",
628
+ },
629
+ ],
630
+ name: "isOperator",
631
+ outputs: [
632
+ {
633
+ internalType: "bool",
634
+ name: "",
635
+ type: "bool",
636
+ },
637
+ ],
638
+ stateMutability: "view",
639
+ type: "function",
640
+ },
641
+ {
642
+ inputs: [
643
+ {
644
+ internalType: "address",
645
+ name: "user",
646
+ type: "address",
647
+ },
648
+ {
649
+ internalType: "uint256",
650
+ name: "tokenId",
651
+ type: "uint256",
652
+ },
653
+ {
654
+ internalType: "uint256",
655
+ name: "amount",
656
+ type: "uint256",
657
+ },
658
+ {
659
+ internalType: "uint256",
660
+ name: "currentBalance",
661
+ type: "uint256",
662
+ },
663
+ ],
664
+ name: "normalizedToFull",
665
+ outputs: [
666
+ {
667
+ internalType: "uint256",
668
+ name: "",
669
+ type: "uint256",
670
+ },
671
+ ],
672
+ stateMutability: "view",
673
+ type: "function",
674
+ },
675
+ {
676
+ inputs: [],
677
+ name: "oracle",
678
+ outputs: [
679
+ {
680
+ internalType: "contract IPriceOracle",
681
+ name: "",
682
+ type: "address",
683
+ },
684
+ ],
685
+ stateMutability: "view",
686
+ type: "function",
687
+ },
688
+ {
689
+ inputs: [],
690
+ name: "pool",
691
+ outputs: [
692
+ {
693
+ internalType: "contract IUniswapV3Pool",
694
+ name: "",
695
+ type: "address",
696
+ },
697
+ ],
698
+ stateMutability: "view",
699
+ type: "function",
700
+ },
701
+ {
702
+ inputs: [
703
+ {
704
+ internalType: "uint256",
705
+ name: "tokenId",
706
+ type: "uint256",
707
+ },
708
+ {
709
+ internalType: "uint256",
710
+ name: "amount",
711
+ type: "uint256",
712
+ },
713
+ {
714
+ internalType: "uint256",
715
+ name: "part",
716
+ type: "uint256",
717
+ },
718
+ ],
719
+ name: "proportionalShare",
720
+ outputs: [
721
+ {
722
+ internalType: "uint256",
723
+ name: "",
724
+ type: "uint256",
725
+ },
726
+ ],
727
+ stateMutability: "view",
728
+ type: "function",
729
+ },
730
+ {
731
+ inputs: [
732
+ {
733
+ internalType: "address",
734
+ name: "spender",
735
+ type: "address",
736
+ },
737
+ {
738
+ internalType: "bool",
739
+ name: "approved",
740
+ type: "bool",
741
+ },
742
+ ],
743
+ name: "setOperator",
744
+ outputs: [
745
+ {
746
+ internalType: "bool",
747
+ name: "",
748
+ type: "bool",
749
+ },
750
+ ],
751
+ stateMutability: "nonpayable",
752
+ type: "function",
753
+ },
754
+ {
755
+ inputs: [
756
+ {
757
+ internalType: "address",
758
+ name: "to",
759
+ type: "address",
760
+ },
761
+ ],
762
+ name: "skim",
763
+ outputs: [],
764
+ stateMutability: "nonpayable",
765
+ type: "function",
766
+ },
767
+ {
768
+ inputs: [
769
+ {
770
+ internalType: "bytes4",
771
+ name: "interfaceId",
772
+ type: "bytes4",
773
+ },
774
+ ],
775
+ name: "supportsInterface",
776
+ outputs: [
777
+ {
778
+ internalType: "bool",
779
+ name: "",
780
+ type: "bool",
781
+ },
782
+ ],
783
+ stateMutability: "view",
784
+ type: "function",
785
+ },
786
+ {
787
+ inputs: [],
788
+ name: "token0",
789
+ outputs: [
790
+ {
791
+ internalType: "address",
792
+ name: "",
793
+ type: "address",
794
+ },
795
+ ],
796
+ stateMutability: "view",
797
+ type: "function",
798
+ },
799
+ {
800
+ inputs: [],
801
+ name: "token1",
802
+ outputs: [
803
+ {
804
+ internalType: "address",
805
+ name: "",
806
+ type: "address",
807
+ },
808
+ ],
809
+ stateMutability: "view",
810
+ type: "function",
811
+ },
812
+ {
813
+ inputs: [
814
+ {
815
+ internalType: "address",
816
+ name: "owner",
817
+ type: "address",
818
+ },
819
+ {
820
+ internalType: "uint256",
821
+ name: "index",
822
+ type: "uint256",
823
+ },
824
+ ],
825
+ name: "tokenIdOfOwnerByIndex",
826
+ outputs: [
827
+ {
828
+ internalType: "uint256",
829
+ name: "",
830
+ type: "uint256",
831
+ },
832
+ ],
833
+ stateMutability: "view",
834
+ type: "function",
835
+ },
836
+ {
837
+ inputs: [
838
+ {
839
+ internalType: "uint256",
840
+ name: "id",
841
+ type: "uint256",
842
+ },
843
+ ],
844
+ name: "totalSupply",
845
+ outputs: [
846
+ {
847
+ internalType: "uint256",
848
+ name: "",
849
+ type: "uint256",
850
+ },
851
+ ],
852
+ stateMutability: "view",
853
+ type: "function",
854
+ },
855
+ {
856
+ inputs: [
857
+ {
858
+ internalType: "address",
859
+ name: "owner",
860
+ type: "address",
861
+ },
862
+ ],
863
+ name: "totalTokenIdsEnabledBy",
864
+ outputs: [
865
+ {
866
+ internalType: "uint256",
867
+ name: "",
868
+ type: "uint256",
869
+ },
870
+ ],
871
+ stateMutability: "view",
872
+ type: "function",
873
+ },
874
+ {
875
+ inputs: [
876
+ {
877
+ internalType: "address",
878
+ name: "receiver",
879
+ type: "address",
880
+ },
881
+ {
882
+ internalType: "uint256",
883
+ name: "id",
884
+ type: "uint256",
885
+ },
886
+ {
887
+ internalType: "uint256",
888
+ name: "amount",
889
+ type: "uint256",
890
+ },
891
+ ],
892
+ name: "transfer",
893
+ outputs: [
894
+ {
895
+ internalType: "bool",
896
+ name: "",
897
+ type: "bool",
898
+ },
899
+ ],
900
+ stateMutability: "nonpayable",
901
+ type: "function",
902
+ },
903
+ {
904
+ inputs: [
905
+ {
906
+ internalType: "address",
907
+ name: "to",
908
+ type: "address",
909
+ },
910
+ {
911
+ internalType: "uint256",
912
+ name: "amount",
913
+ type: "uint256",
914
+ },
915
+ ],
916
+ name: "transfer",
917
+ outputs: [
918
+ {
919
+ internalType: "bool",
920
+ name: "",
921
+ type: "bool",
922
+ },
923
+ ],
924
+ stateMutability: "nonpayable",
925
+ type: "function",
926
+ },
927
+ {
928
+ inputs: [
929
+ {
930
+ internalType: "address",
931
+ name: "sender",
932
+ type: "address",
933
+ },
934
+ {
935
+ internalType: "address",
936
+ name: "receiver",
937
+ type: "address",
938
+ },
939
+ {
940
+ internalType: "uint256",
941
+ name: "id",
942
+ type: "uint256",
943
+ },
944
+ {
945
+ internalType: "uint256",
946
+ name: "amount",
947
+ type: "uint256",
948
+ },
949
+ ],
950
+ name: "transferFrom",
951
+ outputs: [
952
+ {
953
+ internalType: "bool",
954
+ name: "",
955
+ type: "bool",
956
+ },
957
+ ],
958
+ stateMutability: "nonpayable",
959
+ type: "function",
960
+ },
961
+ {
962
+ inputs: [],
963
+ name: "underlying",
964
+ outputs: [
965
+ {
966
+ internalType: "contract IERC721",
967
+ name: "",
968
+ type: "address",
969
+ },
970
+ ],
971
+ stateMutability: "view",
972
+ type: "function",
973
+ },
974
+ {
975
+ inputs: [],
976
+ name: "unit0",
977
+ outputs: [
978
+ {
979
+ internalType: "uint256",
980
+ name: "",
981
+ type: "uint256",
982
+ },
983
+ ],
984
+ stateMutability: "view",
985
+ type: "function",
986
+ },
987
+ {
988
+ inputs: [],
989
+ name: "unit1",
990
+ outputs: [
991
+ {
992
+ internalType: "uint256",
993
+ name: "",
994
+ type: "uint256",
995
+ },
996
+ ],
997
+ stateMutability: "view",
998
+ type: "function",
999
+ },
1000
+ {
1001
+ inputs: [],
1002
+ name: "unitOfAccount",
1003
+ outputs: [
1004
+ {
1005
+ internalType: "address",
1006
+ name: "",
1007
+ type: "address",
1008
+ },
1009
+ ],
1010
+ stateMutability: "view",
1011
+ type: "function",
1012
+ },
1013
+ {
1014
+ inputs: [
1015
+ {
1016
+ internalType: "address",
1017
+ name: "from",
1018
+ type: "address",
1019
+ },
1020
+ {
1021
+ internalType: "uint256",
1022
+ name: "tokenId",
1023
+ type: "uint256",
1024
+ },
1025
+ {
1026
+ internalType: "address",
1027
+ name: "to",
1028
+ type: "address",
1029
+ },
1030
+ {
1031
+ internalType: "uint256",
1032
+ name: "amount",
1033
+ type: "uint256",
1034
+ },
1035
+ {
1036
+ internalType: "bytes",
1037
+ name: "extraData",
1038
+ type: "bytes",
1039
+ },
1040
+ ],
1041
+ name: "unwrap",
1042
+ outputs: [],
1043
+ stateMutability: "nonpayable",
1044
+ type: "function",
1045
+ },
1046
+ {
1047
+ inputs: [
1048
+ {
1049
+ internalType: "address",
1050
+ name: "from",
1051
+ type: "address",
1052
+ },
1053
+ {
1054
+ internalType: "uint256",
1055
+ name: "tokenId",
1056
+ type: "uint256",
1057
+ },
1058
+ {
1059
+ internalType: "address",
1060
+ name: "to",
1061
+ type: "address",
1062
+ },
1063
+ ],
1064
+ name: "unwrap",
1065
+ outputs: [],
1066
+ stateMutability: "nonpayable",
1067
+ type: "function",
1068
+ },
1069
+ {
1070
+ inputs: [
1071
+ {
1072
+ internalType: "uint256",
1073
+ name: "tokenId",
1074
+ type: "uint256",
1075
+ },
1076
+ ],
1077
+ name: "validatePosition",
1078
+ outputs: [],
1079
+ stateMutability: "view",
1080
+ type: "function",
1081
+ },
1082
+ {
1083
+ inputs: [
1084
+ {
1085
+ internalType: "uint256",
1086
+ name: "tokenId",
1087
+ type: "uint256",
1088
+ },
1089
+ {
1090
+ internalType: "address",
1091
+ name: "to",
1092
+ type: "address",
1093
+ },
1094
+ ],
1095
+ name: "wrap",
1096
+ outputs: [],
1097
+ stateMutability: "nonpayable",
1098
+ type: "function",
1099
+ },
1100
+ ];
1101
+ export class VIIUniswapV3Wrapper__factory {
1102
+ static abi = _abi;
1103
+ static createInterface() {
1104
+ return new utils.Interface(_abi);
1105
+ }
1106
+ static connect(address, signerOrProvider) {
1107
+ return new Contract(address, _abi, signerOrProvider);
1108
+ }
1109
+ }