@centurion_project/v3-sdk 3.31.4 → 3.31.6

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