@merkl/contracts 1.2.47 → 1.2.49

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.
Files changed (31) hide show
  1. package/dist/src/AlgebraIntegralPoolFactoryV10.d.ts +706 -0
  2. package/dist/src/AlgebraIntegralPoolFactoryV10.js +2 -0
  3. package/dist/src/AlgebraIntegralPoolFactoryV10.js.map +1 -0
  4. package/dist/src/AlgebraIntegralV10NonFungibleManager.d.ts +875 -0
  5. package/dist/src/AlgebraIntegralV10NonFungibleManager.js +2 -0
  6. package/dist/src/AlgebraIntegralV10NonFungibleManager.js.map +1 -0
  7. package/dist/src/AlgebraIntegralV10Pool.d.ts +817 -0
  8. package/dist/src/AlgebraIntegralV10Pool.js +2 -0
  9. package/dist/src/AlgebraIntegralV10Pool.js.map +1 -0
  10. package/dist/src/AlgebraPoolFactoryV10.d.ts +706 -0
  11. package/dist/src/AlgebraPoolFactoryV10.js +2 -0
  12. package/dist/src/AlgebraPoolFactoryV10.js.map +1 -0
  13. package/dist/src/factories/AlgebraIntegralPoolFactoryV10__factory.d.ts +711 -0
  14. package/dist/src/factories/AlgebraIntegralPoolFactoryV10__factory.js +927 -0
  15. package/dist/src/factories/AlgebraIntegralPoolFactoryV10__factory.js.map +1 -0
  16. package/dist/src/factories/AlgebraIntegralV10NonFungibleManager__factory.d.ts +966 -0
  17. package/dist/src/factories/AlgebraIntegralV10NonFungibleManager__factory.js +1250 -0
  18. package/dist/src/factories/AlgebraIntegralV10NonFungibleManager__factory.js.map +1 -0
  19. package/dist/src/factories/AlgebraIntegralV10Pool__factory.d.ts +821 -0
  20. package/dist/src/factories/AlgebraIntegralV10Pool__factory.js +1055 -0
  21. package/dist/src/factories/AlgebraIntegralV10Pool__factory.js.map +1 -0
  22. package/dist/src/factories/AlgebraPoolFactoryV10__factory.d.ts +711 -0
  23. package/dist/src/factories/AlgebraPoolFactoryV10__factory.js +927 -0
  24. package/dist/src/factories/AlgebraPoolFactoryV10__factory.js.map +1 -0
  25. package/dist/src/factories/index.d.ts +3 -0
  26. package/dist/src/factories/index.js +3 -0
  27. package/dist/src/factories/index.js.map +1 -1
  28. package/dist/src/index.d.ts +8 -0
  29. package/dist/src/index.js +8 -0
  30. package/dist/src/index.js.map +1 -1
  31. package/package.json +1 -1
@@ -0,0 +1,1250 @@
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: "_factory",
11
+ type: "address",
12
+ },
13
+ {
14
+ internalType: "address",
15
+ name: "_WNativeToken",
16
+ type: "address",
17
+ },
18
+ {
19
+ internalType: "address",
20
+ name: "_tokenDescriptor_",
21
+ type: "address",
22
+ },
23
+ {
24
+ internalType: "address",
25
+ name: "_poolDeployer",
26
+ type: "address",
27
+ },
28
+ ],
29
+ stateMutability: "nonpayable",
30
+ type: "constructor",
31
+ },
32
+ {
33
+ anonymous: false,
34
+ inputs: [
35
+ {
36
+ indexed: true,
37
+ internalType: "address",
38
+ name: "owner",
39
+ type: "address",
40
+ },
41
+ {
42
+ indexed: true,
43
+ internalType: "address",
44
+ name: "approved",
45
+ type: "address",
46
+ },
47
+ {
48
+ indexed: true,
49
+ internalType: "uint256",
50
+ name: "tokenId",
51
+ type: "uint256",
52
+ },
53
+ ],
54
+ name: "Approval",
55
+ type: "event",
56
+ },
57
+ {
58
+ anonymous: false,
59
+ inputs: [
60
+ {
61
+ indexed: true,
62
+ internalType: "address",
63
+ name: "owner",
64
+ type: "address",
65
+ },
66
+ {
67
+ indexed: true,
68
+ internalType: "address",
69
+ name: "operator",
70
+ type: "address",
71
+ },
72
+ {
73
+ indexed: false,
74
+ internalType: "bool",
75
+ name: "approved",
76
+ type: "bool",
77
+ },
78
+ ],
79
+ name: "ApprovalForAll",
80
+ type: "event",
81
+ },
82
+ {
83
+ anonymous: false,
84
+ inputs: [
85
+ {
86
+ indexed: true,
87
+ internalType: "uint256",
88
+ name: "tokenId",
89
+ type: "uint256",
90
+ },
91
+ {
92
+ indexed: false,
93
+ internalType: "address",
94
+ name: "recipient",
95
+ type: "address",
96
+ },
97
+ {
98
+ indexed: false,
99
+ internalType: "uint256",
100
+ name: "amount0",
101
+ type: "uint256",
102
+ },
103
+ {
104
+ indexed: false,
105
+ internalType: "uint256",
106
+ name: "amount1",
107
+ type: "uint256",
108
+ },
109
+ ],
110
+ name: "Collect",
111
+ type: "event",
112
+ },
113
+ {
114
+ anonymous: false,
115
+ inputs: [
116
+ {
117
+ indexed: true,
118
+ internalType: "uint256",
119
+ name: "tokenId",
120
+ type: "uint256",
121
+ },
122
+ {
123
+ indexed: false,
124
+ internalType: "uint128",
125
+ name: "liquidity",
126
+ type: "uint128",
127
+ },
128
+ {
129
+ indexed: false,
130
+ internalType: "uint256",
131
+ name: "amount0",
132
+ type: "uint256",
133
+ },
134
+ {
135
+ indexed: false,
136
+ internalType: "uint256",
137
+ name: "amount1",
138
+ type: "uint256",
139
+ },
140
+ ],
141
+ name: "DecreaseLiquidity",
142
+ type: "event",
143
+ },
144
+ {
145
+ anonymous: false,
146
+ inputs: [
147
+ {
148
+ indexed: true,
149
+ internalType: "uint256",
150
+ name: "tokenId",
151
+ type: "uint256",
152
+ },
153
+ {
154
+ indexed: false,
155
+ internalType: "uint128",
156
+ name: "liquidity",
157
+ type: "uint128",
158
+ },
159
+ {
160
+ indexed: false,
161
+ internalType: "uint128",
162
+ name: "actualLiquidity",
163
+ type: "uint128",
164
+ },
165
+ {
166
+ indexed: false,
167
+ internalType: "uint256",
168
+ name: "amount0",
169
+ type: "uint256",
170
+ },
171
+ {
172
+ indexed: false,
173
+ internalType: "uint256",
174
+ name: "amount1",
175
+ type: "uint256",
176
+ },
177
+ {
178
+ indexed: false,
179
+ internalType: "address",
180
+ name: "pool",
181
+ type: "address",
182
+ },
183
+ ],
184
+ name: "IncreaseLiquidity",
185
+ type: "event",
186
+ },
187
+ {
188
+ anonymous: false,
189
+ inputs: [
190
+ {
191
+ indexed: true,
192
+ internalType: "address",
193
+ name: "from",
194
+ type: "address",
195
+ },
196
+ {
197
+ indexed: true,
198
+ internalType: "address",
199
+ name: "to",
200
+ type: "address",
201
+ },
202
+ {
203
+ indexed: true,
204
+ internalType: "uint256",
205
+ name: "tokenId",
206
+ type: "uint256",
207
+ },
208
+ ],
209
+ name: "Transfer",
210
+ type: "event",
211
+ },
212
+ {
213
+ inputs: [],
214
+ name: "DOMAIN_SEPARATOR",
215
+ outputs: [
216
+ {
217
+ internalType: "bytes32",
218
+ name: "",
219
+ type: "bytes32",
220
+ },
221
+ ],
222
+ stateMutability: "view",
223
+ type: "function",
224
+ },
225
+ {
226
+ inputs: [],
227
+ name: "PERMIT_TYPEHASH",
228
+ outputs: [
229
+ {
230
+ internalType: "bytes32",
231
+ name: "",
232
+ type: "bytes32",
233
+ },
234
+ ],
235
+ stateMutability: "view",
236
+ type: "function",
237
+ },
238
+ {
239
+ inputs: [],
240
+ name: "WNativeToken",
241
+ outputs: [
242
+ {
243
+ internalType: "address",
244
+ name: "",
245
+ type: "address",
246
+ },
247
+ ],
248
+ stateMutability: "view",
249
+ type: "function",
250
+ },
251
+ {
252
+ inputs: [
253
+ {
254
+ internalType: "uint256",
255
+ name: "amount0Owed",
256
+ type: "uint256",
257
+ },
258
+ {
259
+ internalType: "uint256",
260
+ name: "amount1Owed",
261
+ type: "uint256",
262
+ },
263
+ {
264
+ internalType: "bytes",
265
+ name: "data",
266
+ type: "bytes",
267
+ },
268
+ ],
269
+ name: "algebraMintCallback",
270
+ outputs: [],
271
+ stateMutability: "nonpayable",
272
+ type: "function",
273
+ },
274
+ {
275
+ inputs: [
276
+ {
277
+ internalType: "address",
278
+ name: "to",
279
+ type: "address",
280
+ },
281
+ {
282
+ internalType: "uint256",
283
+ name: "tokenId",
284
+ type: "uint256",
285
+ },
286
+ ],
287
+ name: "approve",
288
+ outputs: [],
289
+ stateMutability: "nonpayable",
290
+ type: "function",
291
+ },
292
+ {
293
+ inputs: [
294
+ {
295
+ internalType: "address",
296
+ name: "owner",
297
+ type: "address",
298
+ },
299
+ ],
300
+ name: "balanceOf",
301
+ outputs: [
302
+ {
303
+ internalType: "uint256",
304
+ name: "",
305
+ type: "uint256",
306
+ },
307
+ ],
308
+ stateMutability: "view",
309
+ type: "function",
310
+ },
311
+ {
312
+ inputs: [],
313
+ name: "baseURI",
314
+ outputs: [
315
+ {
316
+ internalType: "string",
317
+ name: "",
318
+ type: "string",
319
+ },
320
+ ],
321
+ stateMutability: "pure",
322
+ type: "function",
323
+ },
324
+ {
325
+ inputs: [
326
+ {
327
+ internalType: "uint256",
328
+ name: "tokenId",
329
+ type: "uint256",
330
+ },
331
+ ],
332
+ name: "burn",
333
+ outputs: [],
334
+ stateMutability: "payable",
335
+ type: "function",
336
+ },
337
+ {
338
+ inputs: [
339
+ {
340
+ components: [
341
+ {
342
+ internalType: "uint256",
343
+ name: "tokenId",
344
+ type: "uint256",
345
+ },
346
+ {
347
+ internalType: "address",
348
+ name: "recipient",
349
+ type: "address",
350
+ },
351
+ {
352
+ internalType: "uint128",
353
+ name: "amount0Max",
354
+ type: "uint128",
355
+ },
356
+ {
357
+ internalType: "uint128",
358
+ name: "amount1Max",
359
+ type: "uint128",
360
+ },
361
+ ],
362
+ internalType: "struct INonfungiblePositionManager.CollectParams",
363
+ name: "params",
364
+ type: "tuple",
365
+ },
366
+ ],
367
+ name: "collect",
368
+ outputs: [
369
+ {
370
+ internalType: "uint256",
371
+ name: "amount0",
372
+ type: "uint256",
373
+ },
374
+ {
375
+ internalType: "uint256",
376
+ name: "amount1",
377
+ type: "uint256",
378
+ },
379
+ ],
380
+ stateMutability: "payable",
381
+ type: "function",
382
+ },
383
+ {
384
+ inputs: [
385
+ {
386
+ internalType: "address",
387
+ name: "token0",
388
+ type: "address",
389
+ },
390
+ {
391
+ internalType: "address",
392
+ name: "token1",
393
+ type: "address",
394
+ },
395
+ {
396
+ internalType: "uint160",
397
+ name: "sqrtPriceX96",
398
+ type: "uint160",
399
+ },
400
+ ],
401
+ name: "createAndInitializePoolIfNecessary",
402
+ outputs: [
403
+ {
404
+ internalType: "address",
405
+ name: "pool",
406
+ type: "address",
407
+ },
408
+ ],
409
+ stateMutability: "payable",
410
+ type: "function",
411
+ },
412
+ {
413
+ inputs: [
414
+ {
415
+ components: [
416
+ {
417
+ internalType: "uint256",
418
+ name: "tokenId",
419
+ type: "uint256",
420
+ },
421
+ {
422
+ internalType: "uint128",
423
+ name: "liquidity",
424
+ type: "uint128",
425
+ },
426
+ {
427
+ internalType: "uint256",
428
+ name: "amount0Min",
429
+ type: "uint256",
430
+ },
431
+ {
432
+ internalType: "uint256",
433
+ name: "amount1Min",
434
+ type: "uint256",
435
+ },
436
+ {
437
+ internalType: "uint256",
438
+ name: "deadline",
439
+ type: "uint256",
440
+ },
441
+ ],
442
+ internalType: "struct INonfungiblePositionManager.DecreaseLiquidityParams",
443
+ name: "params",
444
+ type: "tuple",
445
+ },
446
+ ],
447
+ name: "decreaseLiquidity",
448
+ outputs: [
449
+ {
450
+ internalType: "uint256",
451
+ name: "amount0",
452
+ type: "uint256",
453
+ },
454
+ {
455
+ internalType: "uint256",
456
+ name: "amount1",
457
+ type: "uint256",
458
+ },
459
+ ],
460
+ stateMutability: "payable",
461
+ type: "function",
462
+ },
463
+ {
464
+ inputs: [],
465
+ name: "factory",
466
+ outputs: [
467
+ {
468
+ internalType: "address",
469
+ name: "",
470
+ type: "address",
471
+ },
472
+ ],
473
+ stateMutability: "view",
474
+ type: "function",
475
+ },
476
+ {
477
+ inputs: [
478
+ {
479
+ internalType: "uint256",
480
+ name: "tokenId",
481
+ type: "uint256",
482
+ },
483
+ ],
484
+ name: "getApproved",
485
+ outputs: [
486
+ {
487
+ internalType: "address",
488
+ name: "",
489
+ type: "address",
490
+ },
491
+ ],
492
+ stateMutability: "view",
493
+ type: "function",
494
+ },
495
+ {
496
+ inputs: [
497
+ {
498
+ components: [
499
+ {
500
+ internalType: "uint256",
501
+ name: "tokenId",
502
+ type: "uint256",
503
+ },
504
+ {
505
+ internalType: "uint256",
506
+ name: "amount0Desired",
507
+ type: "uint256",
508
+ },
509
+ {
510
+ internalType: "uint256",
511
+ name: "amount1Desired",
512
+ type: "uint256",
513
+ },
514
+ {
515
+ internalType: "uint256",
516
+ name: "amount0Min",
517
+ type: "uint256",
518
+ },
519
+ {
520
+ internalType: "uint256",
521
+ name: "amount1Min",
522
+ type: "uint256",
523
+ },
524
+ {
525
+ internalType: "uint256",
526
+ name: "deadline",
527
+ type: "uint256",
528
+ },
529
+ ],
530
+ internalType: "struct INonfungiblePositionManager.IncreaseLiquidityParams",
531
+ name: "params",
532
+ type: "tuple",
533
+ },
534
+ ],
535
+ name: "increaseLiquidity",
536
+ outputs: [
537
+ {
538
+ internalType: "uint128",
539
+ name: "liquidity",
540
+ type: "uint128",
541
+ },
542
+ {
543
+ internalType: "uint256",
544
+ name: "amount0",
545
+ type: "uint256",
546
+ },
547
+ {
548
+ internalType: "uint256",
549
+ name: "amount1",
550
+ type: "uint256",
551
+ },
552
+ ],
553
+ stateMutability: "payable",
554
+ type: "function",
555
+ },
556
+ {
557
+ inputs: [
558
+ {
559
+ internalType: "address",
560
+ name: "owner",
561
+ type: "address",
562
+ },
563
+ {
564
+ internalType: "address",
565
+ name: "operator",
566
+ type: "address",
567
+ },
568
+ ],
569
+ name: "isApprovedForAll",
570
+ outputs: [
571
+ {
572
+ internalType: "bool",
573
+ name: "",
574
+ type: "bool",
575
+ },
576
+ ],
577
+ stateMutability: "view",
578
+ type: "function",
579
+ },
580
+ {
581
+ inputs: [
582
+ {
583
+ components: [
584
+ {
585
+ internalType: "address",
586
+ name: "token0",
587
+ type: "address",
588
+ },
589
+ {
590
+ internalType: "address",
591
+ name: "token1",
592
+ type: "address",
593
+ },
594
+ {
595
+ internalType: "int24",
596
+ name: "tickLower",
597
+ type: "int24",
598
+ },
599
+ {
600
+ internalType: "int24",
601
+ name: "tickUpper",
602
+ type: "int24",
603
+ },
604
+ {
605
+ internalType: "uint256",
606
+ name: "amount0Desired",
607
+ type: "uint256",
608
+ },
609
+ {
610
+ internalType: "uint256",
611
+ name: "amount1Desired",
612
+ type: "uint256",
613
+ },
614
+ {
615
+ internalType: "uint256",
616
+ name: "amount0Min",
617
+ type: "uint256",
618
+ },
619
+ {
620
+ internalType: "uint256",
621
+ name: "amount1Min",
622
+ type: "uint256",
623
+ },
624
+ {
625
+ internalType: "address",
626
+ name: "recipient",
627
+ type: "address",
628
+ },
629
+ {
630
+ internalType: "uint256",
631
+ name: "deadline",
632
+ type: "uint256",
633
+ },
634
+ ],
635
+ internalType: "struct INonfungiblePositionManager.MintParams",
636
+ name: "params",
637
+ type: "tuple",
638
+ },
639
+ ],
640
+ name: "mint",
641
+ outputs: [
642
+ {
643
+ internalType: "uint256",
644
+ name: "tokenId",
645
+ type: "uint256",
646
+ },
647
+ {
648
+ internalType: "uint128",
649
+ name: "liquidity",
650
+ type: "uint128",
651
+ },
652
+ {
653
+ internalType: "uint256",
654
+ name: "amount0",
655
+ type: "uint256",
656
+ },
657
+ {
658
+ internalType: "uint256",
659
+ name: "amount1",
660
+ type: "uint256",
661
+ },
662
+ ],
663
+ stateMutability: "payable",
664
+ type: "function",
665
+ },
666
+ {
667
+ inputs: [
668
+ {
669
+ internalType: "bytes[]",
670
+ name: "data",
671
+ type: "bytes[]",
672
+ },
673
+ ],
674
+ name: "multicall",
675
+ outputs: [
676
+ {
677
+ internalType: "bytes[]",
678
+ name: "results",
679
+ type: "bytes[]",
680
+ },
681
+ ],
682
+ stateMutability: "payable",
683
+ type: "function",
684
+ },
685
+ {
686
+ inputs: [],
687
+ name: "name",
688
+ outputs: [
689
+ {
690
+ internalType: "string",
691
+ name: "",
692
+ type: "string",
693
+ },
694
+ ],
695
+ stateMutability: "view",
696
+ type: "function",
697
+ },
698
+ {
699
+ inputs: [
700
+ {
701
+ internalType: "uint256",
702
+ name: "tokenId",
703
+ type: "uint256",
704
+ },
705
+ ],
706
+ name: "ownerOf",
707
+ outputs: [
708
+ {
709
+ internalType: "address",
710
+ name: "",
711
+ type: "address",
712
+ },
713
+ ],
714
+ stateMutability: "view",
715
+ type: "function",
716
+ },
717
+ {
718
+ inputs: [
719
+ {
720
+ internalType: "address",
721
+ name: "spender",
722
+ type: "address",
723
+ },
724
+ {
725
+ internalType: "uint256",
726
+ name: "tokenId",
727
+ type: "uint256",
728
+ },
729
+ {
730
+ internalType: "uint256",
731
+ name: "deadline",
732
+ type: "uint256",
733
+ },
734
+ {
735
+ internalType: "uint8",
736
+ name: "v",
737
+ type: "uint8",
738
+ },
739
+ {
740
+ internalType: "bytes32",
741
+ name: "r",
742
+ type: "bytes32",
743
+ },
744
+ {
745
+ internalType: "bytes32",
746
+ name: "s",
747
+ type: "bytes32",
748
+ },
749
+ ],
750
+ name: "permit",
751
+ outputs: [],
752
+ stateMutability: "payable",
753
+ type: "function",
754
+ },
755
+ {
756
+ inputs: [],
757
+ name: "poolDeployer",
758
+ outputs: [
759
+ {
760
+ internalType: "address",
761
+ name: "",
762
+ type: "address",
763
+ },
764
+ ],
765
+ stateMutability: "view",
766
+ type: "function",
767
+ },
768
+ {
769
+ inputs: [
770
+ {
771
+ internalType: "uint256",
772
+ name: "tokenId",
773
+ type: "uint256",
774
+ },
775
+ ],
776
+ name: "positions",
777
+ outputs: [
778
+ {
779
+ internalType: "uint96",
780
+ name: "nonce",
781
+ type: "uint96",
782
+ },
783
+ {
784
+ internalType: "address",
785
+ name: "operator",
786
+ type: "address",
787
+ },
788
+ {
789
+ internalType: "address",
790
+ name: "token0",
791
+ type: "address",
792
+ },
793
+ {
794
+ internalType: "address",
795
+ name: "token1",
796
+ type: "address",
797
+ },
798
+ {
799
+ internalType: "int24",
800
+ name: "tickLower",
801
+ type: "int24",
802
+ },
803
+ {
804
+ internalType: "int24",
805
+ name: "tickUpper",
806
+ type: "int24",
807
+ },
808
+ {
809
+ internalType: "uint128",
810
+ name: "liquidity",
811
+ type: "uint128",
812
+ },
813
+ {
814
+ internalType: "uint256",
815
+ name: "feeGrowthInside0LastX128",
816
+ type: "uint256",
817
+ },
818
+ {
819
+ internalType: "uint256",
820
+ name: "feeGrowthInside1LastX128",
821
+ type: "uint256",
822
+ },
823
+ {
824
+ internalType: "uint128",
825
+ name: "tokensOwed0",
826
+ type: "uint128",
827
+ },
828
+ {
829
+ internalType: "uint128",
830
+ name: "tokensOwed1",
831
+ type: "uint128",
832
+ },
833
+ ],
834
+ stateMutability: "view",
835
+ type: "function",
836
+ },
837
+ {
838
+ inputs: [],
839
+ name: "refundNativeToken",
840
+ outputs: [],
841
+ stateMutability: "payable",
842
+ type: "function",
843
+ },
844
+ {
845
+ inputs: [
846
+ {
847
+ internalType: "address",
848
+ name: "from",
849
+ type: "address",
850
+ },
851
+ {
852
+ internalType: "address",
853
+ name: "to",
854
+ type: "address",
855
+ },
856
+ {
857
+ internalType: "uint256",
858
+ name: "tokenId",
859
+ type: "uint256",
860
+ },
861
+ ],
862
+ name: "safeTransferFrom",
863
+ outputs: [],
864
+ stateMutability: "nonpayable",
865
+ type: "function",
866
+ },
867
+ {
868
+ inputs: [
869
+ {
870
+ internalType: "address",
871
+ name: "from",
872
+ type: "address",
873
+ },
874
+ {
875
+ internalType: "address",
876
+ name: "to",
877
+ type: "address",
878
+ },
879
+ {
880
+ internalType: "uint256",
881
+ name: "tokenId",
882
+ type: "uint256",
883
+ },
884
+ {
885
+ internalType: "bytes",
886
+ name: "_data",
887
+ type: "bytes",
888
+ },
889
+ ],
890
+ name: "safeTransferFrom",
891
+ outputs: [],
892
+ stateMutability: "nonpayable",
893
+ type: "function",
894
+ },
895
+ {
896
+ inputs: [
897
+ {
898
+ internalType: "address",
899
+ name: "token",
900
+ type: "address",
901
+ },
902
+ {
903
+ internalType: "uint256",
904
+ name: "value",
905
+ type: "uint256",
906
+ },
907
+ {
908
+ internalType: "uint256",
909
+ name: "deadline",
910
+ type: "uint256",
911
+ },
912
+ {
913
+ internalType: "uint8",
914
+ name: "v",
915
+ type: "uint8",
916
+ },
917
+ {
918
+ internalType: "bytes32",
919
+ name: "r",
920
+ type: "bytes32",
921
+ },
922
+ {
923
+ internalType: "bytes32",
924
+ name: "s",
925
+ type: "bytes32",
926
+ },
927
+ ],
928
+ name: "selfPermit",
929
+ outputs: [],
930
+ stateMutability: "payable",
931
+ type: "function",
932
+ },
933
+ {
934
+ inputs: [
935
+ {
936
+ internalType: "address",
937
+ name: "token",
938
+ type: "address",
939
+ },
940
+ {
941
+ internalType: "uint256",
942
+ name: "nonce",
943
+ type: "uint256",
944
+ },
945
+ {
946
+ internalType: "uint256",
947
+ name: "expiry",
948
+ type: "uint256",
949
+ },
950
+ {
951
+ internalType: "uint8",
952
+ name: "v",
953
+ type: "uint8",
954
+ },
955
+ {
956
+ internalType: "bytes32",
957
+ name: "r",
958
+ type: "bytes32",
959
+ },
960
+ {
961
+ internalType: "bytes32",
962
+ name: "s",
963
+ type: "bytes32",
964
+ },
965
+ ],
966
+ name: "selfPermitAllowed",
967
+ outputs: [],
968
+ stateMutability: "payable",
969
+ type: "function",
970
+ },
971
+ {
972
+ inputs: [
973
+ {
974
+ internalType: "address",
975
+ name: "token",
976
+ type: "address",
977
+ },
978
+ {
979
+ internalType: "uint256",
980
+ name: "nonce",
981
+ type: "uint256",
982
+ },
983
+ {
984
+ internalType: "uint256",
985
+ name: "expiry",
986
+ type: "uint256",
987
+ },
988
+ {
989
+ internalType: "uint8",
990
+ name: "v",
991
+ type: "uint8",
992
+ },
993
+ {
994
+ internalType: "bytes32",
995
+ name: "r",
996
+ type: "bytes32",
997
+ },
998
+ {
999
+ internalType: "bytes32",
1000
+ name: "s",
1001
+ type: "bytes32",
1002
+ },
1003
+ ],
1004
+ name: "selfPermitAllowedIfNecessary",
1005
+ outputs: [],
1006
+ stateMutability: "payable",
1007
+ type: "function",
1008
+ },
1009
+ {
1010
+ inputs: [
1011
+ {
1012
+ internalType: "address",
1013
+ name: "token",
1014
+ type: "address",
1015
+ },
1016
+ {
1017
+ internalType: "uint256",
1018
+ name: "value",
1019
+ type: "uint256",
1020
+ },
1021
+ {
1022
+ internalType: "uint256",
1023
+ name: "deadline",
1024
+ type: "uint256",
1025
+ },
1026
+ {
1027
+ internalType: "uint8",
1028
+ name: "v",
1029
+ type: "uint8",
1030
+ },
1031
+ {
1032
+ internalType: "bytes32",
1033
+ name: "r",
1034
+ type: "bytes32",
1035
+ },
1036
+ {
1037
+ internalType: "bytes32",
1038
+ name: "s",
1039
+ type: "bytes32",
1040
+ },
1041
+ ],
1042
+ name: "selfPermitIfNecessary",
1043
+ outputs: [],
1044
+ stateMutability: "payable",
1045
+ type: "function",
1046
+ },
1047
+ {
1048
+ inputs: [
1049
+ {
1050
+ internalType: "address",
1051
+ name: "operator",
1052
+ type: "address",
1053
+ },
1054
+ {
1055
+ internalType: "bool",
1056
+ name: "approved",
1057
+ type: "bool",
1058
+ },
1059
+ ],
1060
+ name: "setApprovalForAll",
1061
+ outputs: [],
1062
+ stateMutability: "nonpayable",
1063
+ type: "function",
1064
+ },
1065
+ {
1066
+ inputs: [
1067
+ {
1068
+ internalType: "bytes4",
1069
+ name: "interfaceId",
1070
+ type: "bytes4",
1071
+ },
1072
+ ],
1073
+ name: "supportsInterface",
1074
+ outputs: [
1075
+ {
1076
+ internalType: "bool",
1077
+ name: "",
1078
+ type: "bool",
1079
+ },
1080
+ ],
1081
+ stateMutability: "view",
1082
+ type: "function",
1083
+ },
1084
+ {
1085
+ inputs: [
1086
+ {
1087
+ internalType: "address",
1088
+ name: "token",
1089
+ type: "address",
1090
+ },
1091
+ {
1092
+ internalType: "uint256",
1093
+ name: "amountMinimum",
1094
+ type: "uint256",
1095
+ },
1096
+ {
1097
+ internalType: "address",
1098
+ name: "recipient",
1099
+ type: "address",
1100
+ },
1101
+ ],
1102
+ name: "sweepToken",
1103
+ outputs: [],
1104
+ stateMutability: "payable",
1105
+ type: "function",
1106
+ },
1107
+ {
1108
+ inputs: [],
1109
+ name: "symbol",
1110
+ outputs: [
1111
+ {
1112
+ internalType: "string",
1113
+ name: "",
1114
+ type: "string",
1115
+ },
1116
+ ],
1117
+ stateMutability: "view",
1118
+ type: "function",
1119
+ },
1120
+ {
1121
+ inputs: [
1122
+ {
1123
+ internalType: "uint256",
1124
+ name: "index",
1125
+ type: "uint256",
1126
+ },
1127
+ ],
1128
+ name: "tokenByIndex",
1129
+ outputs: [
1130
+ {
1131
+ internalType: "uint256",
1132
+ name: "",
1133
+ type: "uint256",
1134
+ },
1135
+ ],
1136
+ stateMutability: "view",
1137
+ type: "function",
1138
+ },
1139
+ {
1140
+ inputs: [
1141
+ {
1142
+ internalType: "address",
1143
+ name: "owner",
1144
+ type: "address",
1145
+ },
1146
+ {
1147
+ internalType: "uint256",
1148
+ name: "index",
1149
+ type: "uint256",
1150
+ },
1151
+ ],
1152
+ name: "tokenOfOwnerByIndex",
1153
+ outputs: [
1154
+ {
1155
+ internalType: "uint256",
1156
+ name: "",
1157
+ type: "uint256",
1158
+ },
1159
+ ],
1160
+ stateMutability: "view",
1161
+ type: "function",
1162
+ },
1163
+ {
1164
+ inputs: [
1165
+ {
1166
+ internalType: "uint256",
1167
+ name: "tokenId",
1168
+ type: "uint256",
1169
+ },
1170
+ ],
1171
+ name: "tokenURI",
1172
+ outputs: [
1173
+ {
1174
+ internalType: "string",
1175
+ name: "",
1176
+ type: "string",
1177
+ },
1178
+ ],
1179
+ stateMutability: "view",
1180
+ type: "function",
1181
+ },
1182
+ {
1183
+ inputs: [],
1184
+ name: "totalSupply",
1185
+ outputs: [
1186
+ {
1187
+ internalType: "uint256",
1188
+ name: "",
1189
+ type: "uint256",
1190
+ },
1191
+ ],
1192
+ stateMutability: "view",
1193
+ type: "function",
1194
+ },
1195
+ {
1196
+ inputs: [
1197
+ {
1198
+ internalType: "address",
1199
+ name: "from",
1200
+ type: "address",
1201
+ },
1202
+ {
1203
+ internalType: "address",
1204
+ name: "to",
1205
+ type: "address",
1206
+ },
1207
+ {
1208
+ internalType: "uint256",
1209
+ name: "tokenId",
1210
+ type: "uint256",
1211
+ },
1212
+ ],
1213
+ name: "transferFrom",
1214
+ outputs: [],
1215
+ stateMutability: "nonpayable",
1216
+ type: "function",
1217
+ },
1218
+ {
1219
+ inputs: [
1220
+ {
1221
+ internalType: "uint256",
1222
+ name: "amountMinimum",
1223
+ type: "uint256",
1224
+ },
1225
+ {
1226
+ internalType: "address",
1227
+ name: "recipient",
1228
+ type: "address",
1229
+ },
1230
+ ],
1231
+ name: "unwrapWNativeToken",
1232
+ outputs: [],
1233
+ stateMutability: "payable",
1234
+ type: "function",
1235
+ },
1236
+ {
1237
+ stateMutability: "payable",
1238
+ type: "receive",
1239
+ },
1240
+ ];
1241
+ export class AlgebraIntegralV10NonFungibleManager__factory {
1242
+ static abi = _abi;
1243
+ static createInterface() {
1244
+ return new utils.Interface(_abi);
1245
+ }
1246
+ static connect(address, signerOrProvider) {
1247
+ return new Contract(address, _abi, signerOrProvider);
1248
+ }
1249
+ }
1250
+ //# sourceMappingURL=AlgebraIntegralV10NonFungibleManager__factory.js.map