@dodoex/dodo-contract-request 1.14.0 → 1.15.0-morph-holesky.2

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