@pendle/core-v2 4.5.1-beta-1 → 4.5.1-beta-3

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 (104) hide show
  1. package/build/artifacts/contracts/core/StandardizedYield/implementations/PendleERC20WithSupplyCapSY.sol/PendleERC20WithSupplyCapSY.dbg.json +1 -1
  2. package/build/artifacts/contracts/core/StandardizedYield/implementations/PendleERC20WithSupplyCapSY.sol/PendleERC20WithSupplyCapSY.json +2 -2
  3. package/build/artifacts/contracts/core/StandardizedYield/implementations/Swell/PendleSwellRswETHStakingSY.sol/PendleSwellRswETHStakingSY.dbg.json +4 -0
  4. package/build/artifacts/contracts/core/StandardizedYield/implementations/Swell/PendleSwellRswETHStakingSY.sol/PendleSwellRswETHStakingSY.json +1049 -0
  5. package/build/artifacts/contracts/core/StandardizedYield/implementations/Swell/PendleSwellStakingERC20SY.sol/PendleSwellStakingERC20SY.dbg.json +4 -0
  6. package/build/artifacts/contracts/core/StandardizedYield/implementations/Swell/PendleSwellStakingERC20SY.sol/PendleSwellStakingERC20SY.json +1039 -0
  7. package/build/artifacts/contracts/interfaces/IPActionMiscV3.sol/IPActionMiscV3.dbg.json +1 -1
  8. package/build/artifacts/contracts/interfaces/IPActionMiscV3.sol/IPActionMiscV3.json +805 -80
  9. package/build/artifacts/contracts/interfaces/IPAllActionV3.sol/IPAllActionV3.dbg.json +1 -1
  10. package/build/artifacts/contracts/interfaces/IPAllActionV3.sol/IPAllActionV3.json +958 -233
  11. package/build/artifacts/contracts/interfaces/IPGovernanceProxy.sol/IPGovernanceProxy.dbg.json +4 -0
  12. package/build/artifacts/contracts/interfaces/IPGovernanceProxy.sol/IPGovernanceProxy.json +60 -0
  13. package/build/artifacts/contracts/interfaces/IPPausingInterface.sol/IPPausingInterface.dbg.json +4 -0
  14. package/build/artifacts/contracts/interfaces/IPPausingInterface.sol/IPPausingInterface.json +25 -0
  15. package/build/artifacts/contracts/interfaces/IPPtLpOracle.sol/IPPtLpOracle.dbg.json +1 -1
  16. package/build/artifacts/contracts/interfaces/Swell/ISwellSimpleStakingERC20.sol/ISwellSimpleStakingERC20.dbg.json +4 -0
  17. package/build/artifacts/contracts/interfaces/Swell/ISwellSimpleStakingERC20.sol/ISwellSimpleStakingERC20.json +207 -0
  18. package/build/artifacts/contracts/offchain-helpers/PendleGovernanceProxy.sol/PendleGovernanceProxy.dbg.json +4 -0
  19. package/build/artifacts/contracts/offchain-helpers/PendleGovernanceProxy.sol/PendleGovernanceProxy.json +401 -0
  20. package/build/artifacts/contracts/offchain-helpers/PendlePoolDeployHelper.sol/PendlePoolDeployHelper.dbg.json +1 -1
  21. package/build/artifacts/contracts/offchain-helpers/PendlePoolDeployHelper.sol/PendlePoolDeployHelper.json +2 -2
  22. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionMarketAuxStatic.sol/ActionMarketAuxStatic.dbg.json +1 -1
  23. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionMarketAuxStatic.sol/ActionMarketAuxStatic.json +2 -2
  24. package/build/artifacts/contracts/oracles/PendleLpOracleLib.sol/PendleLpOracleLib.dbg.json +1 -1
  25. package/build/artifacts/contracts/oracles/PendlePtLpOracle.sol/PendlePtLpOracle.dbg.json +1 -1
  26. package/build/artifacts/contracts/oracles/PendlePtOracleLib.sol/PendlePtOracleLib.dbg.json +1 -1
  27. package/build/artifacts/contracts/oracles/samples/BoringLpGlpOracle.sol/BoringLpGlpOracle.dbg.json +1 -1
  28. package/build/artifacts/contracts/oracles/samples/BoringPtUsdChainlinkOracle.sol/BoringPtUsdChainlinkOracle.dbg.json +1 -1
  29. package/build/artifacts/contracts/router/ActionAddRemoveLiqV3.sol/ActionAddRemoveLiqV3.dbg.json +1 -1
  30. package/build/artifacts/contracts/router/ActionAddRemoveLiqV3.sol/ActionAddRemoveLiqV3.json +2 -2
  31. package/build/artifacts/contracts/router/ActionMiscV3.sol/ActionMiscV3.dbg.json +1 -1
  32. package/build/artifacts/contracts/router/ActionMiscV3.sol/ActionMiscV3.json +707 -140
  33. package/build/artifacts/contracts/router/ActionSwapPTV3.sol/ActionSwapPTV3.dbg.json +1 -1
  34. package/build/artifacts/contracts/router/ActionSwapPTV3.sol/ActionSwapPTV3.json +2 -2
  35. package/build/artifacts/contracts/router/ActionSwapYTV3.sol/ActionSwapYTV3.dbg.json +1 -1
  36. package/build/artifacts/contracts/router/ActionSwapYTV3.sol/ActionSwapYTV3.json +2 -2
  37. package/build/artifacts/contracts/router/Reflector.sol/Reflector.dbg.json +4 -0
  38. package/build/artifacts/contracts/router/Reflector.sol/Reflector.json +39 -0
  39. package/build/artifacts/contracts/router/base/ActionBase.sol/ActionBase.dbg.json +1 -1
  40. package/contracts/core/StandardizedYield/implementations/PendleERC20WithSupplyCapSY.sol +6 -1
  41. package/contracts/core/StandardizedYield/implementations/Swell/PendleSwellRswETHStakingSY.sol +56 -0
  42. package/contracts/core/StandardizedYield/implementations/Swell/PendleSwellStakingERC20SY.sol +111 -0
  43. package/contracts/interfaces/IPActionMiscV3.sol +85 -25
  44. package/contracts/interfaces/IPGovernanceProxy.sol +14 -0
  45. package/contracts/interfaces/IPPausingInterface.sol +8 -0
  46. package/contracts/interfaces/Swell/ISwellSimpleStakingERC20.sol +66 -0
  47. package/contracts/offchain-helpers/PendleGovernanceProxy.sol +84 -0
  48. package/contracts/offchain-helpers/router-static/base/ActionMarketAuxStatic.sol +12 -4
  49. package/contracts/router/ActionMiscV3.sol +140 -167
  50. package/contracts/router/Reflector.sol +61 -0
  51. package/contracts/router/base/ActionBase.sol +0 -16
  52. package/deployments/1-markets/EZETH-MAINNET-SEP2024.json +11 -0
  53. package/deployments/1-markets/PUFETH-MAINNET-SEP2024.json +11 -0
  54. package/deployments/1-markets/RSETH-MAINNET-SEP2024.json +11 -0
  55. package/deployments/1-markets/RSWETH-SWELL-STAKING-MAINNET-JUL2024.json +11 -0
  56. package/deployments/1-markets/SUSDE-MAINNET-SEP2024.json +13 -0
  57. package/deployments/1-markets/UNIETH-MAINNET-SEP2024.json +13 -0
  58. package/deployments/1-markets/WEETH-MAINNET-SEP2024.json +11 -0
  59. package/deployments/42161-core.json +1 -1
  60. package/deployments/42161-markets/EZETH-ARB-SEP2024.json +11 -0
  61. package/deployments/42161-markets/RSETH-ARBITRUM-SEP2024.json +11 -0
  62. package/deployments/42161-markets/SILO-PTEETH-ARBITRUM-JUNE2024.json +11 -0
  63. package/deployments/42161-markets/SILO-PTEZETH-ARBITRUM-JUNE2024.json +11 -0
  64. package/deployments/42161-markets/WEETH-ARB-SEP2024.json +11 -0
  65. package/deployments/56-markets/WEETH-BSC-SEP2024.json +11 -0
  66. package/package.json +2 -2
  67. package/typechain-types/ActionMiscV3.ts +358 -120
  68. package/typechain-types/BoringPYUsdChainlinkAssetOracle.ts +244 -0
  69. package/typechain-types/BoringPYUsdChainlinkSYOracle.ts +243 -0
  70. package/typechain-types/IPActionMiscV3.ts +408 -40
  71. package/typechain-types/IPAllActionV3.ts +408 -40
  72. package/typechain-types/IPGovernanceProxy.ts +142 -0
  73. package/typechain-types/IPPYLpOracle.ts +379 -0
  74. package/typechain-types/IPPausingInterface.ts +112 -0
  75. package/typechain-types/IPossibleSupplyCapInterface.ts +142 -0
  76. package/typechain-types/PendleGovernanceProxy.ts +603 -0
  77. package/typechain-types/PendlePYLpOracle.ts +612 -0
  78. package/typechain-types/Reflector.ts +98 -0
  79. package/typechain-types/SupplyCapReader.ts +105 -0
  80. package/typechain-types/factories/ActionAddRemoveLiqV3__factory.ts +1 -1
  81. package/typechain-types/factories/ActionMarketAuxStatic__factory.ts +1 -1
  82. package/typechain-types/factories/ActionMiscV3__factory.ts +705 -138
  83. package/typechain-types/factories/ActionSwapPTV3__factory.ts +1 -1
  84. package/typechain-types/factories/ActionSwapYTV3__factory.ts +1 -1
  85. package/typechain-types/factories/BoringPYUsdChainlinkAssetOracle__factory.ts +269 -0
  86. package/typechain-types/factories/BoringPYUsdChainlinkSYOracle__factory.ts +267 -0
  87. package/typechain-types/factories/IPActionMiscV3__factory.ts +805 -80
  88. package/typechain-types/factories/IPAllActionV3__factory.ts +958 -233
  89. package/typechain-types/factories/IPGovernanceProxy__factory.ts +75 -0
  90. package/typechain-types/factories/IPPYLpOracle__factory.ts +214 -0
  91. package/typechain-types/factories/IPPausingInterface__factory.ts +40 -0
  92. package/typechain-types/factories/IPossibleSupplyCapInterface__factory.ts +82 -0
  93. package/typechain-types/factories/PendleERC20WithSupplyCapSY__factory.ts +1 -1
  94. package/typechain-types/factories/PendleGovernanceProxy__factory.ts +458 -0
  95. package/typechain-types/factories/PendlePYLpOracle__factory.ts +487 -0
  96. package/typechain-types/factories/PendlePoolDeployHelper__factory.ts +1 -1
  97. package/typechain-types/factories/PendleSwellRswETHStakingSY__factory.ts +1 -1
  98. package/typechain-types/factories/Reflector__factory.ts +89 -0
  99. package/typechain-types/factories/SupplyCapReader__factory.ts +88 -0
  100. package/typechain-types/hardhat.d.ts +54 -0
  101. package/typechain-types/index.ts +12 -0
  102. /package/deployments/1-markets/{EZETH-JUNE2024.json → EZETH-APR2024.json} +0 -0
  103. /package/deployments/42161-markets/{RSETH-MAY2024.json → RSETH-JUNE2024.json} +0 -0
  104. /package/deployments/42161-markets/{WEETH-MAY2024.json → WEETH-JUNE2024.json} +0 -0
@@ -346,29 +346,56 @@
346
346
  {
347
347
  "indexed": true,
348
348
  "internalType": "address",
349
- "name": "receiver",
349
+ "name": "market",
350
350
  "type": "address"
351
351
  },
352
352
  {
353
353
  "indexed": true,
354
354
  "internalType": "address",
355
- "name": "YT",
355
+ "name": "receiver",
356
356
  "type": "address"
357
357
  },
358
358
  {
359
359
  "indexed": false,
360
360
  "internalType": "uint256",
361
- "name": "netSyIn",
361
+ "name": "netLpIn",
362
362
  "type": "uint256"
363
363
  },
364
364
  {
365
+ "components": [
366
+ {
367
+ "internalType": "uint256",
368
+ "name": "netPtFromRemove",
369
+ "type": "uint256"
370
+ },
371
+ {
372
+ "internalType": "uint256",
373
+ "name": "netSyFromRemove",
374
+ "type": "uint256"
375
+ },
376
+ {
377
+ "internalType": "uint256",
378
+ "name": "netPtRedeem",
379
+ "type": "uint256"
380
+ },
381
+ {
382
+ "internalType": "uint256",
383
+ "name": "netSyFromRedeem",
384
+ "type": "uint256"
385
+ },
386
+ {
387
+ "internalType": "uint256",
388
+ "name": "totalSyOut",
389
+ "type": "uint256"
390
+ }
391
+ ],
365
392
  "indexed": false,
366
- "internalType": "uint256",
367
- "name": "netPyOut",
368
- "type": "uint256"
393
+ "internalType": "struct IPActionMiscV3.ExitPostExpReturnParams",
394
+ "name": "params",
395
+ "type": "tuple"
369
396
  }
370
397
  ],
371
- "name": "MintPyFromSy",
398
+ "name": "ExitPostExpToSy",
372
399
  "type": "event"
373
400
  },
374
401
  {
@@ -383,13 +410,13 @@
383
410
  {
384
411
  "indexed": true,
385
412
  "internalType": "address",
386
- "name": "tokenIn",
413
+ "name": "market",
387
414
  "type": "address"
388
415
  },
389
416
  {
390
417
  "indexed": true,
391
418
  "internalType": "address",
392
- "name": "YT",
419
+ "name": "token",
393
420
  "type": "address"
394
421
  },
395
422
  {
@@ -401,23 +428,50 @@
401
428
  {
402
429
  "indexed": false,
403
430
  "internalType": "uint256",
404
- "name": "netTokenIn",
431
+ "name": "netLpIn",
405
432
  "type": "uint256"
406
433
  },
407
434
  {
408
435
  "indexed": false,
409
436
  "internalType": "uint256",
410
- "name": "netPyOut",
437
+ "name": "totalTokenOut",
411
438
  "type": "uint256"
412
439
  },
413
440
  {
441
+ "components": [
442
+ {
443
+ "internalType": "uint256",
444
+ "name": "netPtFromRemove",
445
+ "type": "uint256"
446
+ },
447
+ {
448
+ "internalType": "uint256",
449
+ "name": "netSyFromRemove",
450
+ "type": "uint256"
451
+ },
452
+ {
453
+ "internalType": "uint256",
454
+ "name": "netPtRedeem",
455
+ "type": "uint256"
456
+ },
457
+ {
458
+ "internalType": "uint256",
459
+ "name": "netSyFromRedeem",
460
+ "type": "uint256"
461
+ },
462
+ {
463
+ "internalType": "uint256",
464
+ "name": "totalSyOut",
465
+ "type": "uint256"
466
+ }
467
+ ],
414
468
  "indexed": false,
415
- "internalType": "uint256",
416
- "name": "netSyInterm",
417
- "type": "uint256"
469
+ "internalType": "struct IPActionMiscV3.ExitPostExpReturnParams",
470
+ "name": "params",
471
+ "type": "tuple"
418
472
  }
419
473
  ],
420
- "name": "MintPyFromToken",
474
+ "name": "ExitPostExpToToken",
421
475
  "type": "event"
422
476
  },
423
477
  {
@@ -432,35 +486,76 @@
432
486
  {
433
487
  "indexed": true,
434
488
  "internalType": "address",
435
- "name": "tokenIn",
489
+ "name": "market",
436
490
  "type": "address"
437
491
  },
438
492
  {
439
493
  "indexed": true,
440
494
  "internalType": "address",
441
- "name": "SY",
442
- "type": "address"
443
- },
444
- {
445
- "indexed": false,
446
- "internalType": "address",
447
495
  "name": "receiver",
448
496
  "type": "address"
449
497
  },
450
498
  {
451
499
  "indexed": false,
452
500
  "internalType": "uint256",
453
- "name": "netTokenIn",
501
+ "name": "netLpIn",
454
502
  "type": "uint256"
455
503
  },
456
504
  {
505
+ "components": [
506
+ {
507
+ "internalType": "uint256",
508
+ "name": "netPtFromRemove",
509
+ "type": "uint256"
510
+ },
511
+ {
512
+ "internalType": "uint256",
513
+ "name": "netSyFromRemove",
514
+ "type": "uint256"
515
+ },
516
+ {
517
+ "internalType": "uint256",
518
+ "name": "netPyRedeem",
519
+ "type": "uint256"
520
+ },
521
+ {
522
+ "internalType": "uint256",
523
+ "name": "netSyFromRedeem",
524
+ "type": "uint256"
525
+ },
526
+ {
527
+ "internalType": "uint256",
528
+ "name": "netPtSwap",
529
+ "type": "uint256"
530
+ },
531
+ {
532
+ "internalType": "uint256",
533
+ "name": "netYtSwap",
534
+ "type": "uint256"
535
+ },
536
+ {
537
+ "internalType": "uint256",
538
+ "name": "netSyFromSwap",
539
+ "type": "uint256"
540
+ },
541
+ {
542
+ "internalType": "uint256",
543
+ "name": "netSyFee",
544
+ "type": "uint256"
545
+ },
546
+ {
547
+ "internalType": "uint256",
548
+ "name": "totalSyOut",
549
+ "type": "uint256"
550
+ }
551
+ ],
457
552
  "indexed": false,
458
- "internalType": "uint256",
459
- "name": "netSyOut",
460
- "type": "uint256"
553
+ "internalType": "struct IPActionMiscV3.ExitPreExpReturnParams",
554
+ "name": "params",
555
+ "type": "tuple"
461
556
  }
462
557
  ],
463
- "name": "MintSyFromToken",
558
+ "name": "ExitPreExpToSy",
464
559
  "type": "event"
465
560
  },
466
561
  {
@@ -469,17 +564,94 @@
469
564
  {
470
565
  "indexed": true,
471
566
  "internalType": "address",
472
- "name": "previousOwner",
567
+ "name": "caller",
473
568
  "type": "address"
474
569
  },
475
570
  {
476
571
  "indexed": true,
477
572
  "internalType": "address",
478
- "name": "newOwner",
573
+ "name": "market",
574
+ "type": "address"
575
+ },
576
+ {
577
+ "indexed": true,
578
+ "internalType": "address",
579
+ "name": "token",
580
+ "type": "address"
581
+ },
582
+ {
583
+ "indexed": false,
584
+ "internalType": "address",
585
+ "name": "receiver",
479
586
  "type": "address"
587
+ },
588
+ {
589
+ "indexed": false,
590
+ "internalType": "uint256",
591
+ "name": "netLpIn",
592
+ "type": "uint256"
593
+ },
594
+ {
595
+ "indexed": false,
596
+ "internalType": "uint256",
597
+ "name": "totalTokenOut",
598
+ "type": "uint256"
599
+ },
600
+ {
601
+ "components": [
602
+ {
603
+ "internalType": "uint256",
604
+ "name": "netPtFromRemove",
605
+ "type": "uint256"
606
+ },
607
+ {
608
+ "internalType": "uint256",
609
+ "name": "netSyFromRemove",
610
+ "type": "uint256"
611
+ },
612
+ {
613
+ "internalType": "uint256",
614
+ "name": "netPyRedeem",
615
+ "type": "uint256"
616
+ },
617
+ {
618
+ "internalType": "uint256",
619
+ "name": "netSyFromRedeem",
620
+ "type": "uint256"
621
+ },
622
+ {
623
+ "internalType": "uint256",
624
+ "name": "netPtSwap",
625
+ "type": "uint256"
626
+ },
627
+ {
628
+ "internalType": "uint256",
629
+ "name": "netYtSwap",
630
+ "type": "uint256"
631
+ },
632
+ {
633
+ "internalType": "uint256",
634
+ "name": "netSyFromSwap",
635
+ "type": "uint256"
636
+ },
637
+ {
638
+ "internalType": "uint256",
639
+ "name": "netSyFee",
640
+ "type": "uint256"
641
+ },
642
+ {
643
+ "internalType": "uint256",
644
+ "name": "totalSyOut",
645
+ "type": "uint256"
646
+ }
647
+ ],
648
+ "indexed": false,
649
+ "internalType": "struct IPActionMiscV3.ExitPreExpReturnParams",
650
+ "name": "params",
651
+ "type": "tuple"
480
652
  }
481
653
  ],
482
- "name": "OwnershipTransferred",
654
+ "name": "ExitPreExpToToken",
483
655
  "type": "event"
484
656
  },
485
657
  {
@@ -506,17 +678,17 @@
506
678
  {
507
679
  "indexed": false,
508
680
  "internalType": "uint256",
509
- "name": "netPyIn",
681
+ "name": "netSyIn",
510
682
  "type": "uint256"
511
683
  },
512
684
  {
513
685
  "indexed": false,
514
686
  "internalType": "uint256",
515
- "name": "netSyOut",
687
+ "name": "netPyOut",
516
688
  "type": "uint256"
517
689
  }
518
690
  ],
519
- "name": "RedeemPyToSy",
691
+ "name": "MintPyFromSy",
520
692
  "type": "event"
521
693
  },
522
694
  {
@@ -531,7 +703,7 @@
531
703
  {
532
704
  "indexed": true,
533
705
  "internalType": "address",
534
- "name": "tokenOut",
706
+ "name": "tokenIn",
535
707
  "type": "address"
536
708
  },
537
709
  {
@@ -549,13 +721,13 @@
549
721
  {
550
722
  "indexed": false,
551
723
  "internalType": "uint256",
552
- "name": "netPyIn",
724
+ "name": "netTokenIn",
553
725
  "type": "uint256"
554
726
  },
555
727
  {
556
728
  "indexed": false,
557
729
  "internalType": "uint256",
558
- "name": "netTokenOut",
730
+ "name": "netPyOut",
559
731
  "type": "uint256"
560
732
  },
561
733
  {
@@ -565,7 +737,7 @@
565
737
  "type": "uint256"
566
738
  }
567
739
  ],
568
- "name": "RedeemPyToToken",
740
+ "name": "MintPyFromToken",
569
741
  "type": "event"
570
742
  },
571
743
  {
@@ -580,7 +752,7 @@
580
752
  {
581
753
  "indexed": true,
582
754
  "internalType": "address",
583
- "name": "tokenOut",
755
+ "name": "tokenIn",
584
756
  "type": "address"
585
757
  },
586
758
  {
@@ -598,17 +770,17 @@
598
770
  {
599
771
  "indexed": false,
600
772
  "internalType": "uint256",
601
- "name": "netSyIn",
773
+ "name": "netTokenIn",
602
774
  "type": "uint256"
603
775
  },
604
776
  {
605
777
  "indexed": false,
606
778
  "internalType": "uint256",
607
- "name": "netTokenOut",
779
+ "name": "netSyOut",
608
780
  "type": "uint256"
609
781
  }
610
782
  ],
611
- "name": "RedeemSyToToken",
783
+ "name": "MintSyFromToken",
612
784
  "type": "event"
613
785
  },
614
786
  {
@@ -617,13 +789,26 @@
617
789
  {
618
790
  "indexed": true,
619
791
  "internalType": "address",
620
- "name": "caller",
792
+ "name": "previousOwner",
621
793
  "type": "address"
622
794
  },
623
795
  {
624
796
  "indexed": true,
625
797
  "internalType": "address",
626
- "name": "market",
798
+ "name": "newOwner",
799
+ "type": "address"
800
+ }
801
+ ],
802
+ "name": "OwnershipTransferred",
803
+ "type": "event"
804
+ },
805
+ {
806
+ "anonymous": false,
807
+ "inputs": [
808
+ {
809
+ "indexed": true,
810
+ "internalType": "address",
811
+ "name": "caller",
627
812
  "type": "address"
628
813
  },
629
814
  {
@@ -633,15 +818,15 @@
633
818
  "type": "address"
634
819
  },
635
820
  {
636
- "indexed": false,
637
- "internalType": "uint256",
638
- "name": "netLpToRemove",
639
- "type": "uint256"
821
+ "indexed": true,
822
+ "internalType": "address",
823
+ "name": "YT",
824
+ "type": "address"
640
825
  },
641
826
  {
642
827
  "indexed": false,
643
828
  "internalType": "uint256",
644
- "name": "netPtOut",
829
+ "name": "netPyIn",
645
830
  "type": "uint256"
646
831
  },
647
832
  {
@@ -651,7 +836,7 @@
651
836
  "type": "uint256"
652
837
  }
653
838
  ],
654
- "name": "RemoveLiquidityDualSyAndPt",
839
+ "name": "RedeemPyToSy",
655
840
  "type": "event"
656
841
  },
657
842
  {
@@ -666,13 +851,13 @@
666
851
  {
667
852
  "indexed": true,
668
853
  "internalType": "address",
669
- "name": "market",
854
+ "name": "tokenOut",
670
855
  "type": "address"
671
856
  },
672
857
  {
673
858
  "indexed": true,
674
859
  "internalType": "address",
675
- "name": "tokenOut",
860
+ "name": "YT",
676
861
  "type": "address"
677
862
  },
678
863
  {
@@ -684,13 +869,7 @@
684
869
  {
685
870
  "indexed": false,
686
871
  "internalType": "uint256",
687
- "name": "netLpToRemove",
688
- "type": "uint256"
689
- },
690
- {
691
- "indexed": false,
692
- "internalType": "uint256",
693
- "name": "netPtOut",
872
+ "name": "netPyIn",
694
873
  "type": "uint256"
695
874
  },
696
875
  {
@@ -706,7 +885,7 @@
706
885
  "type": "uint256"
707
886
  }
708
887
  ],
709
- "name": "RemoveLiquidityDualTokenAndPt",
888
+ "name": "RedeemPyToToken",
710
889
  "type": "event"
711
890
  },
712
891
  {
@@ -721,7 +900,148 @@
721
900
  {
722
901
  "indexed": true,
723
902
  "internalType": "address",
724
- "name": "market",
903
+ "name": "tokenOut",
904
+ "type": "address"
905
+ },
906
+ {
907
+ "indexed": true,
908
+ "internalType": "address",
909
+ "name": "SY",
910
+ "type": "address"
911
+ },
912
+ {
913
+ "indexed": false,
914
+ "internalType": "address",
915
+ "name": "receiver",
916
+ "type": "address"
917
+ },
918
+ {
919
+ "indexed": false,
920
+ "internalType": "uint256",
921
+ "name": "netSyIn",
922
+ "type": "uint256"
923
+ },
924
+ {
925
+ "indexed": false,
926
+ "internalType": "uint256",
927
+ "name": "netTokenOut",
928
+ "type": "uint256"
929
+ }
930
+ ],
931
+ "name": "RedeemSyToToken",
932
+ "type": "event"
933
+ },
934
+ {
935
+ "anonymous": false,
936
+ "inputs": [
937
+ {
938
+ "indexed": true,
939
+ "internalType": "address",
940
+ "name": "caller",
941
+ "type": "address"
942
+ },
943
+ {
944
+ "indexed": true,
945
+ "internalType": "address",
946
+ "name": "market",
947
+ "type": "address"
948
+ },
949
+ {
950
+ "indexed": true,
951
+ "internalType": "address",
952
+ "name": "receiver",
953
+ "type": "address"
954
+ },
955
+ {
956
+ "indexed": false,
957
+ "internalType": "uint256",
958
+ "name": "netLpToRemove",
959
+ "type": "uint256"
960
+ },
961
+ {
962
+ "indexed": false,
963
+ "internalType": "uint256",
964
+ "name": "netPtOut",
965
+ "type": "uint256"
966
+ },
967
+ {
968
+ "indexed": false,
969
+ "internalType": "uint256",
970
+ "name": "netSyOut",
971
+ "type": "uint256"
972
+ }
973
+ ],
974
+ "name": "RemoveLiquidityDualSyAndPt",
975
+ "type": "event"
976
+ },
977
+ {
978
+ "anonymous": false,
979
+ "inputs": [
980
+ {
981
+ "indexed": true,
982
+ "internalType": "address",
983
+ "name": "caller",
984
+ "type": "address"
985
+ },
986
+ {
987
+ "indexed": true,
988
+ "internalType": "address",
989
+ "name": "market",
990
+ "type": "address"
991
+ },
992
+ {
993
+ "indexed": true,
994
+ "internalType": "address",
995
+ "name": "tokenOut",
996
+ "type": "address"
997
+ },
998
+ {
999
+ "indexed": false,
1000
+ "internalType": "address",
1001
+ "name": "receiver",
1002
+ "type": "address"
1003
+ },
1004
+ {
1005
+ "indexed": false,
1006
+ "internalType": "uint256",
1007
+ "name": "netLpToRemove",
1008
+ "type": "uint256"
1009
+ },
1010
+ {
1011
+ "indexed": false,
1012
+ "internalType": "uint256",
1013
+ "name": "netPtOut",
1014
+ "type": "uint256"
1015
+ },
1016
+ {
1017
+ "indexed": false,
1018
+ "internalType": "uint256",
1019
+ "name": "netTokenOut",
1020
+ "type": "uint256"
1021
+ },
1022
+ {
1023
+ "indexed": false,
1024
+ "internalType": "uint256",
1025
+ "name": "netSyInterm",
1026
+ "type": "uint256"
1027
+ }
1028
+ ],
1029
+ "name": "RemoveLiquidityDualTokenAndPt",
1030
+ "type": "event"
1031
+ },
1032
+ {
1033
+ "anonymous": false,
1034
+ "inputs": [
1035
+ {
1036
+ "indexed": true,
1037
+ "internalType": "address",
1038
+ "name": "caller",
1039
+ "type": "address"
1040
+ },
1041
+ {
1042
+ "indexed": true,
1043
+ "internalType": "address",
1044
+ "name": "market",
725
1045
  "type": "address"
726
1046
  },
727
1047
  {
@@ -2165,162 +2485,521 @@
2165
2485
  "type": "tuple"
2166
2486
  }
2167
2487
  ],
2168
- "internalType": "struct TokenInput",
2169
- "name": "input",
2488
+ "internalType": "struct TokenInput",
2489
+ "name": "input",
2490
+ "type": "tuple"
2491
+ }
2492
+ ],
2493
+ "name": "addLiquiditySingleTokenKeepYt",
2494
+ "outputs": [
2495
+ {
2496
+ "internalType": "uint256",
2497
+ "name": "netLpOut",
2498
+ "type": "uint256"
2499
+ },
2500
+ {
2501
+ "internalType": "uint256",
2502
+ "name": "netYtOut",
2503
+ "type": "uint256"
2504
+ },
2505
+ {
2506
+ "internalType": "uint256",
2507
+ "name": "netSyMintPy",
2508
+ "type": "uint256"
2509
+ },
2510
+ {
2511
+ "internalType": "uint256",
2512
+ "name": "netSyInterm",
2513
+ "type": "uint256"
2514
+ }
2515
+ ],
2516
+ "stateMutability": "payable",
2517
+ "type": "function"
2518
+ },
2519
+ {
2520
+ "inputs": [
2521
+ {
2522
+ "internalType": "address[]",
2523
+ "name": "markets",
2524
+ "type": "address[]"
2525
+ }
2526
+ ],
2527
+ "name": "boostMarkets",
2528
+ "outputs": [],
2529
+ "stateMutability": "nonpayable",
2530
+ "type": "function"
2531
+ },
2532
+ {
2533
+ "inputs": [],
2534
+ "name": "claimOwnership",
2535
+ "outputs": [],
2536
+ "stateMutability": "nonpayable",
2537
+ "type": "function"
2538
+ },
2539
+ {
2540
+ "inputs": [
2541
+ {
2542
+ "internalType": "address",
2543
+ "name": "receiver",
2544
+ "type": "address"
2545
+ },
2546
+ {
2547
+ "internalType": "address",
2548
+ "name": "market",
2549
+ "type": "address"
2550
+ },
2551
+ {
2552
+ "internalType": "uint256",
2553
+ "name": "netPtIn",
2554
+ "type": "uint256"
2555
+ },
2556
+ {
2557
+ "internalType": "uint256",
2558
+ "name": "netLpIn",
2559
+ "type": "uint256"
2560
+ },
2561
+ {
2562
+ "internalType": "uint256",
2563
+ "name": "minSyOut",
2564
+ "type": "uint256"
2565
+ }
2566
+ ],
2567
+ "name": "exitPostExpToSy",
2568
+ "outputs": [
2569
+ {
2570
+ "components": [
2571
+ {
2572
+ "internalType": "uint256",
2573
+ "name": "netPtFromRemove",
2574
+ "type": "uint256"
2575
+ },
2576
+ {
2577
+ "internalType": "uint256",
2578
+ "name": "netSyFromRemove",
2579
+ "type": "uint256"
2580
+ },
2581
+ {
2582
+ "internalType": "uint256",
2583
+ "name": "netPtRedeem",
2584
+ "type": "uint256"
2585
+ },
2586
+ {
2587
+ "internalType": "uint256",
2588
+ "name": "netSyFromRedeem",
2589
+ "type": "uint256"
2590
+ },
2591
+ {
2592
+ "internalType": "uint256",
2593
+ "name": "totalSyOut",
2594
+ "type": "uint256"
2595
+ }
2596
+ ],
2597
+ "internalType": "struct IPActionMiscV3.ExitPostExpReturnParams",
2598
+ "name": "params",
2599
+ "type": "tuple"
2600
+ }
2601
+ ],
2602
+ "stateMutability": "nonpayable",
2603
+ "type": "function"
2604
+ },
2605
+ {
2606
+ "inputs": [
2607
+ {
2608
+ "internalType": "address",
2609
+ "name": "receiver",
2610
+ "type": "address"
2611
+ },
2612
+ {
2613
+ "internalType": "address",
2614
+ "name": "market",
2615
+ "type": "address"
2616
+ },
2617
+ {
2618
+ "internalType": "uint256",
2619
+ "name": "netPtIn",
2620
+ "type": "uint256"
2621
+ },
2622
+ {
2623
+ "internalType": "uint256",
2624
+ "name": "netLpIn",
2625
+ "type": "uint256"
2626
+ },
2627
+ {
2628
+ "components": [
2629
+ {
2630
+ "internalType": "address",
2631
+ "name": "tokenOut",
2632
+ "type": "address"
2633
+ },
2634
+ {
2635
+ "internalType": "uint256",
2636
+ "name": "minTokenOut",
2637
+ "type": "uint256"
2638
+ },
2639
+ {
2640
+ "internalType": "address",
2641
+ "name": "tokenRedeemSy",
2642
+ "type": "address"
2643
+ },
2644
+ {
2645
+ "internalType": "address",
2646
+ "name": "pendleSwap",
2647
+ "type": "address"
2648
+ },
2649
+ {
2650
+ "components": [
2651
+ {
2652
+ "internalType": "enum SwapType",
2653
+ "name": "swapType",
2654
+ "type": "uint8"
2655
+ },
2656
+ {
2657
+ "internalType": "address",
2658
+ "name": "extRouter",
2659
+ "type": "address"
2660
+ },
2661
+ {
2662
+ "internalType": "bytes",
2663
+ "name": "extCalldata",
2664
+ "type": "bytes"
2665
+ },
2666
+ {
2667
+ "internalType": "bool",
2668
+ "name": "needScale",
2669
+ "type": "bool"
2670
+ }
2671
+ ],
2672
+ "internalType": "struct SwapData",
2673
+ "name": "swapData",
2674
+ "type": "tuple"
2675
+ }
2676
+ ],
2677
+ "internalType": "struct TokenOutput",
2678
+ "name": "output",
2679
+ "type": "tuple"
2680
+ }
2681
+ ],
2682
+ "name": "exitPostExpToToken",
2683
+ "outputs": [
2684
+ {
2685
+ "internalType": "uint256",
2686
+ "name": "netTokenOut",
2687
+ "type": "uint256"
2688
+ },
2689
+ {
2690
+ "components": [
2691
+ {
2692
+ "internalType": "uint256",
2693
+ "name": "netPtFromRemove",
2694
+ "type": "uint256"
2695
+ },
2696
+ {
2697
+ "internalType": "uint256",
2698
+ "name": "netSyFromRemove",
2699
+ "type": "uint256"
2700
+ },
2701
+ {
2702
+ "internalType": "uint256",
2703
+ "name": "netPtRedeem",
2704
+ "type": "uint256"
2705
+ },
2706
+ {
2707
+ "internalType": "uint256",
2708
+ "name": "netSyFromRedeem",
2709
+ "type": "uint256"
2710
+ },
2711
+ {
2712
+ "internalType": "uint256",
2713
+ "name": "totalSyOut",
2714
+ "type": "uint256"
2715
+ }
2716
+ ],
2717
+ "internalType": "struct IPActionMiscV3.ExitPostExpReturnParams",
2718
+ "name": "params",
2719
+ "type": "tuple"
2720
+ }
2721
+ ],
2722
+ "stateMutability": "nonpayable",
2723
+ "type": "function"
2724
+ },
2725
+ {
2726
+ "inputs": [
2727
+ {
2728
+ "internalType": "address",
2729
+ "name": "receiver",
2730
+ "type": "address"
2731
+ },
2732
+ {
2733
+ "internalType": "address",
2734
+ "name": "market",
2735
+ "type": "address"
2736
+ },
2737
+ {
2738
+ "internalType": "uint256",
2739
+ "name": "netPtIn",
2740
+ "type": "uint256"
2741
+ },
2742
+ {
2743
+ "internalType": "uint256",
2744
+ "name": "netYtIn",
2745
+ "type": "uint256"
2746
+ },
2747
+ {
2748
+ "internalType": "uint256",
2749
+ "name": "netLpIn",
2750
+ "type": "uint256"
2751
+ },
2752
+ {
2753
+ "internalType": "uint256",
2754
+ "name": "minSyOut",
2755
+ "type": "uint256"
2756
+ },
2757
+ {
2758
+ "components": [
2759
+ {
2760
+ "internalType": "address",
2761
+ "name": "limitRouter",
2762
+ "type": "address"
2763
+ },
2764
+ {
2765
+ "internalType": "uint256",
2766
+ "name": "epsSkipMarket",
2767
+ "type": "uint256"
2768
+ },
2769
+ {
2770
+ "components": [
2771
+ {
2772
+ "components": [
2773
+ {
2774
+ "internalType": "uint256",
2775
+ "name": "salt",
2776
+ "type": "uint256"
2777
+ },
2778
+ {
2779
+ "internalType": "uint256",
2780
+ "name": "expiry",
2781
+ "type": "uint256"
2782
+ },
2783
+ {
2784
+ "internalType": "uint256",
2785
+ "name": "nonce",
2786
+ "type": "uint256"
2787
+ },
2788
+ {
2789
+ "internalType": "enum IPLimitOrderType.OrderType",
2790
+ "name": "orderType",
2791
+ "type": "uint8"
2792
+ },
2793
+ {
2794
+ "internalType": "address",
2795
+ "name": "token",
2796
+ "type": "address"
2797
+ },
2798
+ {
2799
+ "internalType": "address",
2800
+ "name": "YT",
2801
+ "type": "address"
2802
+ },
2803
+ {
2804
+ "internalType": "address",
2805
+ "name": "maker",
2806
+ "type": "address"
2807
+ },
2808
+ {
2809
+ "internalType": "address",
2810
+ "name": "receiver",
2811
+ "type": "address"
2812
+ },
2813
+ {
2814
+ "internalType": "uint256",
2815
+ "name": "makingAmount",
2816
+ "type": "uint256"
2817
+ },
2818
+ {
2819
+ "internalType": "uint256",
2820
+ "name": "lnImpliedRate",
2821
+ "type": "uint256"
2822
+ },
2823
+ {
2824
+ "internalType": "uint256",
2825
+ "name": "failSafeRate",
2826
+ "type": "uint256"
2827
+ },
2828
+ {
2829
+ "internalType": "bytes",
2830
+ "name": "permit",
2831
+ "type": "bytes"
2832
+ }
2833
+ ],
2834
+ "internalType": "struct Order",
2835
+ "name": "order",
2836
+ "type": "tuple"
2837
+ },
2838
+ {
2839
+ "internalType": "bytes",
2840
+ "name": "signature",
2841
+ "type": "bytes"
2842
+ },
2843
+ {
2844
+ "internalType": "uint256",
2845
+ "name": "makingAmount",
2846
+ "type": "uint256"
2847
+ }
2848
+ ],
2849
+ "internalType": "struct FillOrderParams[]",
2850
+ "name": "normalFills",
2851
+ "type": "tuple[]"
2852
+ },
2853
+ {
2854
+ "components": [
2855
+ {
2856
+ "components": [
2857
+ {
2858
+ "internalType": "uint256",
2859
+ "name": "salt",
2860
+ "type": "uint256"
2861
+ },
2862
+ {
2863
+ "internalType": "uint256",
2864
+ "name": "expiry",
2865
+ "type": "uint256"
2866
+ },
2867
+ {
2868
+ "internalType": "uint256",
2869
+ "name": "nonce",
2870
+ "type": "uint256"
2871
+ },
2872
+ {
2873
+ "internalType": "enum IPLimitOrderType.OrderType",
2874
+ "name": "orderType",
2875
+ "type": "uint8"
2876
+ },
2877
+ {
2878
+ "internalType": "address",
2879
+ "name": "token",
2880
+ "type": "address"
2881
+ },
2882
+ {
2883
+ "internalType": "address",
2884
+ "name": "YT",
2885
+ "type": "address"
2886
+ },
2887
+ {
2888
+ "internalType": "address",
2889
+ "name": "maker",
2890
+ "type": "address"
2891
+ },
2892
+ {
2893
+ "internalType": "address",
2894
+ "name": "receiver",
2895
+ "type": "address"
2896
+ },
2897
+ {
2898
+ "internalType": "uint256",
2899
+ "name": "makingAmount",
2900
+ "type": "uint256"
2901
+ },
2902
+ {
2903
+ "internalType": "uint256",
2904
+ "name": "lnImpliedRate",
2905
+ "type": "uint256"
2906
+ },
2907
+ {
2908
+ "internalType": "uint256",
2909
+ "name": "failSafeRate",
2910
+ "type": "uint256"
2911
+ },
2912
+ {
2913
+ "internalType": "bytes",
2914
+ "name": "permit",
2915
+ "type": "bytes"
2916
+ }
2917
+ ],
2918
+ "internalType": "struct Order",
2919
+ "name": "order",
2920
+ "type": "tuple"
2921
+ },
2922
+ {
2923
+ "internalType": "bytes",
2924
+ "name": "signature",
2925
+ "type": "bytes"
2926
+ },
2927
+ {
2928
+ "internalType": "uint256",
2929
+ "name": "makingAmount",
2930
+ "type": "uint256"
2931
+ }
2932
+ ],
2933
+ "internalType": "struct FillOrderParams[]",
2934
+ "name": "flashFills",
2935
+ "type": "tuple[]"
2936
+ },
2937
+ {
2938
+ "internalType": "bytes",
2939
+ "name": "optData",
2940
+ "type": "bytes"
2941
+ }
2942
+ ],
2943
+ "internalType": "struct LimitOrderData",
2944
+ "name": "limit",
2170
2945
  "type": "tuple"
2171
2946
  }
2172
2947
  ],
2173
- "name": "addLiquiditySingleTokenKeepYt",
2948
+ "name": "exitPreExpToSy",
2174
2949
  "outputs": [
2175
- {
2176
- "internalType": "uint256",
2177
- "name": "netLpOut",
2178
- "type": "uint256"
2179
- },
2180
- {
2181
- "internalType": "uint256",
2182
- "name": "netYtOut",
2183
- "type": "uint256"
2184
- },
2185
- {
2186
- "internalType": "uint256",
2187
- "name": "netSyMintPy",
2188
- "type": "uint256"
2189
- },
2190
- {
2191
- "internalType": "uint256",
2192
- "name": "netSyInterm",
2193
- "type": "uint256"
2194
- }
2195
- ],
2196
- "stateMutability": "payable",
2197
- "type": "function"
2198
- },
2199
- {
2200
- "inputs": [
2201
- {
2202
- "internalType": "address[]",
2203
- "name": "markets",
2204
- "type": "address[]"
2205
- }
2206
- ],
2207
- "name": "boostMarkets",
2208
- "outputs": [],
2209
- "stateMutability": "nonpayable",
2210
- "type": "function"
2211
- },
2212
- {
2213
- "inputs": [],
2214
- "name": "claimOwnership",
2215
- "outputs": [],
2216
- "stateMutability": "nonpayable",
2217
- "type": "function"
2218
- },
2219
- {
2220
- "inputs": [
2221
- {
2222
- "internalType": "address",
2223
- "name": "receiver",
2224
- "type": "address"
2225
- },
2226
- {
2227
- "internalType": "address",
2228
- "name": "market",
2229
- "type": "address"
2230
- },
2231
- {
2232
- "internalType": "uint256",
2233
- "name": "netPtIn",
2234
- "type": "uint256"
2235
- },
2236
- {
2237
- "internalType": "uint256",
2238
- "name": "netLpIn",
2239
- "type": "uint256"
2240
- },
2241
2950
  {
2242
2951
  "components": [
2243
2952
  {
2244
- "internalType": "address",
2245
- "name": "tokenOut",
2246
- "type": "address"
2953
+ "internalType": "uint256",
2954
+ "name": "netPtFromRemove",
2955
+ "type": "uint256"
2247
2956
  },
2248
2957
  {
2249
2958
  "internalType": "uint256",
2250
- "name": "minTokenOut",
2959
+ "name": "netSyFromRemove",
2251
2960
  "type": "uint256"
2252
2961
  },
2253
2962
  {
2254
- "internalType": "address",
2255
- "name": "tokenRedeemSy",
2256
- "type": "address"
2963
+ "internalType": "uint256",
2964
+ "name": "netPyRedeem",
2965
+ "type": "uint256"
2257
2966
  },
2258
2967
  {
2259
- "internalType": "address",
2260
- "name": "pendleSwap",
2261
- "type": "address"
2968
+ "internalType": "uint256",
2969
+ "name": "netSyFromRedeem",
2970
+ "type": "uint256"
2262
2971
  },
2263
2972
  {
2264
- "components": [
2265
- {
2266
- "internalType": "enum SwapType",
2267
- "name": "swapType",
2268
- "type": "uint8"
2269
- },
2270
- {
2271
- "internalType": "address",
2272
- "name": "extRouter",
2273
- "type": "address"
2274
- },
2275
- {
2276
- "internalType": "bytes",
2277
- "name": "extCalldata",
2278
- "type": "bytes"
2279
- },
2280
- {
2281
- "internalType": "bool",
2282
- "name": "needScale",
2283
- "type": "bool"
2284
- }
2285
- ],
2286
- "internalType": "struct SwapData",
2287
- "name": "swapData",
2288
- "type": "tuple"
2973
+ "internalType": "uint256",
2974
+ "name": "netPtSwap",
2975
+ "type": "uint256"
2976
+ },
2977
+ {
2978
+ "internalType": "uint256",
2979
+ "name": "netYtSwap",
2980
+ "type": "uint256"
2981
+ },
2982
+ {
2983
+ "internalType": "uint256",
2984
+ "name": "netSyFromSwap",
2985
+ "type": "uint256"
2986
+ },
2987
+ {
2988
+ "internalType": "uint256",
2989
+ "name": "netSyFee",
2990
+ "type": "uint256"
2991
+ },
2992
+ {
2993
+ "internalType": "uint256",
2994
+ "name": "totalSyOut",
2995
+ "type": "uint256"
2289
2996
  }
2290
2997
  ],
2291
- "internalType": "struct TokenOutput",
2292
- "name": "output",
2998
+ "internalType": "struct IPActionMiscV3.ExitPreExpReturnParams",
2999
+ "name": "params",
2293
3000
  "type": "tuple"
2294
3001
  }
2295
3002
  ],
2296
- "name": "exitMultiplePostExpiry",
2297
- "outputs": [
2298
- {
2299
- "internalType": "uint256",
2300
- "name": "netTokenOut",
2301
- "type": "uint256"
2302
- },
2303
- {
2304
- "internalType": "uint256",
2305
- "name": "netPtFromRemove",
2306
- "type": "uint256"
2307
- },
2308
- {
2309
- "internalType": "uint256",
2310
- "name": "netSyFromRemove",
2311
- "type": "uint256"
2312
- },
2313
- {
2314
- "internalType": "uint256",
2315
- "name": "netPtRedeem",
2316
- "type": "uint256"
2317
- },
2318
- {
2319
- "internalType": "uint256",
2320
- "name": "netSyFromRedeem",
2321
- "type": "uint256"
2322
- }
2323
- ],
2324
3003
  "stateMutability": "nonpayable",
2325
3004
  "type": "function"
2326
3005
  },
@@ -2596,7 +3275,7 @@
2596
3275
  "type": "tuple"
2597
3276
  }
2598
3277
  ],
2599
- "name": "exitMultiplePreExpiry",
3278
+ "name": "exitPreExpToToken",
2600
3279
  "outputs": [
2601
3280
  {
2602
3281
  "internalType": "uint256",
@@ -2604,44 +3283,56 @@
2604
3283
  "type": "uint256"
2605
3284
  },
2606
3285
  {
2607
- "internalType": "uint256",
2608
- "name": "netPtFromRemove",
2609
- "type": "uint256"
2610
- },
2611
- {
2612
- "internalType": "uint256",
2613
- "name": "netSyFromRemove",
2614
- "type": "uint256"
2615
- },
2616
- {
2617
- "internalType": "uint256",
2618
- "name": "netPyRedeem",
2619
- "type": "uint256"
2620
- },
2621
- {
2622
- "internalType": "uint256",
2623
- "name": "netSyFromRedeem",
2624
- "type": "uint256"
2625
- },
2626
- {
2627
- "internalType": "uint256",
2628
- "name": "netPtSwap",
2629
- "type": "uint256"
2630
- },
2631
- {
2632
- "internalType": "uint256",
2633
- "name": "netYtSwap",
2634
- "type": "uint256"
2635
- },
2636
- {
2637
- "internalType": "uint256",
2638
- "name": "netSyFromSwap",
2639
- "type": "uint256"
2640
- },
2641
- {
2642
- "internalType": "uint256",
2643
- "name": "netSyFee",
2644
- "type": "uint256"
3286
+ "components": [
3287
+ {
3288
+ "internalType": "uint256",
3289
+ "name": "netPtFromRemove",
3290
+ "type": "uint256"
3291
+ },
3292
+ {
3293
+ "internalType": "uint256",
3294
+ "name": "netSyFromRemove",
3295
+ "type": "uint256"
3296
+ },
3297
+ {
3298
+ "internalType": "uint256",
3299
+ "name": "netPyRedeem",
3300
+ "type": "uint256"
3301
+ },
3302
+ {
3303
+ "internalType": "uint256",
3304
+ "name": "netSyFromRedeem",
3305
+ "type": "uint256"
3306
+ },
3307
+ {
3308
+ "internalType": "uint256",
3309
+ "name": "netPtSwap",
3310
+ "type": "uint256"
3311
+ },
3312
+ {
3313
+ "internalType": "uint256",
3314
+ "name": "netYtSwap",
3315
+ "type": "uint256"
3316
+ },
3317
+ {
3318
+ "internalType": "uint256",
3319
+ "name": "netSyFromSwap",
3320
+ "type": "uint256"
3321
+ },
3322
+ {
3323
+ "internalType": "uint256",
3324
+ "name": "netSyFee",
3325
+ "type": "uint256"
3326
+ },
3327
+ {
3328
+ "internalType": "uint256",
3329
+ "name": "totalSyOut",
3330
+ "type": "uint256"
3331
+ }
3332
+ ],
3333
+ "internalType": "struct IPActionMiscV3.ExitPreExpReturnParams",
3334
+ "name": "params",
3335
+ "type": "tuple"
2645
3336
  }
2646
3337
  ],
2647
3338
  "stateMutability": "nonpayable",
@@ -2929,6 +3620,40 @@
2929
3620
  "stateMutability": "payable",
2930
3621
  "type": "function"
2931
3622
  },
3623
+ {
3624
+ "inputs": [
3625
+ {
3626
+ "internalType": "address payable",
3627
+ "name": "reflector",
3628
+ "type": "address"
3629
+ },
3630
+ {
3631
+ "internalType": "bytes",
3632
+ "name": "selfCall",
3633
+ "type": "bytes"
3634
+ },
3635
+ {
3636
+ "internalType": "bytes",
3637
+ "name": "reflectCall",
3638
+ "type": "bytes"
3639
+ }
3640
+ ],
3641
+ "name": "multicallAlpha",
3642
+ "outputs": [
3643
+ {
3644
+ "internalType": "bytes",
3645
+ "name": "selfRes",
3646
+ "type": "bytes"
3647
+ },
3648
+ {
3649
+ "internalType": "bytes",
3650
+ "name": "reflectRes",
3651
+ "type": "bytes"
3652
+ }
3653
+ ],
3654
+ "stateMutability": "payable",
3655
+ "type": "function"
3656
+ },
2932
3657
  {
2933
3658
  "inputs": [],
2934
3659
  "name": "owner",