@pendle/core-v2 5.11.1-alpha → 5.11.3-alpha

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 (686) hide show
  1. package/contracts/LiquidityMining/CrossChainMsg/libraries/LayerZeroHelper.sol +4 -0
  2. package/deployments/1-core.json +2 -2
  3. package/deployments/999-core.json +13 -13
  4. package/package.json +2 -2
  5. package/typechain-types/AccessControlUpgradeable.ts +369 -0
  6. package/typechain-types/AddressCast.ts +57 -0
  7. package/typechain-types/AggregatorInterface.ts +233 -0
  8. package/typechain-types/AggregatorV2V3Interface.ts +385 -0
  9. package/typechain-types/AggregatorV3Interface.ts +221 -0
  10. package/typechain-types/AutomateReady.ts +102 -0
  11. package/typechain-types/BasePendleBridgedPrincipalToken.ts +1689 -0
  12. package/typechain-types/ContextUpgradeable.ts +68 -0
  13. package/typechain-types/EIP712Upgradeable.ts +144 -0
  14. package/typechain-types/ERC165Upgradeable.ts +113 -0
  15. package/typechain-types/ERC1967Upgrade.ts +97 -0
  16. package/typechain-types/ERC20.ts +417 -0
  17. package/typechain-types/Errors.ts +57 -0
  18. package/typechain-types/FixedPricePTAMM.ts +616 -0
  19. package/typechain-types/IAccessControlUpgradeable.ts +305 -0
  20. package/typechain-types/IAddressProvider.ts +123 -0
  21. package/typechain-types/IAutomate.ts +203 -0
  22. package/typechain-types/IBeacon.ts +87 -0
  23. package/typechain-types/IERC1271.ts +107 -0
  24. package/typechain-types/IERC165.ts +102 -0
  25. package/typechain-types/IERC165Upgradeable.ts +102 -0
  26. package/typechain-types/IERC1822Proxiable.ts +87 -0
  27. package/typechain-types/IERC1967.ts +97 -0
  28. package/typechain-types/IERC20.ts +300 -0
  29. package/typechain-types/IERC20Metadata.ts +339 -0
  30. package/typechain-types/IERC20Permit.ts +175 -0
  31. package/typechain-types/IERC5267Upgradeable.ts +135 -0
  32. package/typechain-types/ILayerZeroEndpoint.ts +256 -0
  33. package/typechain-types/ILayerZeroEndpointV2.ts +2323 -0
  34. package/typechain-types/ILayerZeroReceiver.ts +204 -0
  35. package/typechain-types/IMessageLib.ts +284 -0
  36. package/typechain-types/IMessageLibManager.ts +998 -0
  37. package/typechain-types/IMessagingChannel.ts +539 -0
  38. package/typechain-types/IMessagingComposer.ts +331 -0
  39. package/typechain-types/IMessagingContext.ts +112 -0
  40. package/typechain-types/IOAppCore.ts +223 -0
  41. package/typechain-types/IOAppMsgInspector.ts +104 -0
  42. package/typechain-types/IOAppOptionsType3.ts +178 -0
  43. package/typechain-types/IOAppPreCrimeSimulator.ts +253 -0
  44. package/typechain-types/IOAppReceiver.ts +248 -0
  45. package/typechain-types/IOFT.ts +413 -0
  46. package/typechain-types/IOpsProxyFactory.ts +93 -0
  47. package/typechain-types/IPActionInfoStatic.ts +310 -0
  48. package/typechain-types/IPActionMintRedeemStatic.ts +435 -0
  49. package/typechain-types/IPBridgedPrincipalToken.ts +948 -0
  50. package/typechain-types/IPChainlinkOracleEssential.ts +130 -0
  51. package/typechain-types/IPChainlinkOracleWithQuote.ts +404 -0
  52. package/typechain-types/IPExchangeRateOracle.ts +87 -0
  53. package/typechain-types/IPFeeDistributor.ts +191 -0
  54. package/typechain-types/IPFeeDistributorV2.ts +287 -0
  55. package/typechain-types/IPFixedPricePTAMM.ts +460 -0
  56. package/typechain-types/IPFixedPricePTAMMSwapCallback.ts +116 -0
  57. package/typechain-types/IPGauge.ts +132 -0
  58. package/typechain-types/IPGaugeController.ts +275 -0
  59. package/typechain-types/IPGaugeControllerMainchain.ts +319 -0
  60. package/typechain-types/IPInterestManagerYT.ts +131 -0
  61. package/typechain-types/IPInterestManagerYTV2.ts +117 -0
  62. package/typechain-types/IPMarketFactory.ts +234 -0
  63. package/typechain-types/IPMarketSwapCallback.ts +115 -0
  64. package/typechain-types/IPMerkleDistributor.ts +235 -0
  65. package/typechain-types/IPMiniDiamond.ts +147 -0
  66. package/typechain-types/IPMsgReceiverApp.ts +104 -0
  67. package/typechain-types/IPMsgSendEndpoint.ts +166 -0
  68. package/typechain-types/IPOffchainStorage.ts +146 -0
  69. package/typechain-types/IPPTOFTAdapterFactory.ts +163 -0
  70. package/typechain-types/IPPYLpOracle.ts +400 -0
  71. package/typechain-types/IPPriceFeed.ts +81 -0
  72. package/typechain-types/IPPrincipalToken.ts +501 -0
  73. package/typechain-types/IPReflector.ts +95 -0
  74. package/typechain-types/IPTokenWithSupplyCap.ts +110 -0
  75. package/typechain-types/IPVeToken.ts +201 -0
  76. package/typechain-types/IPYieldContractFactory.ts +370 -0
  77. package/typechain-types/{PendleMarket.ts → IPYieldToken.ts} +315 -605
  78. package/typechain-types/IPYieldTokenV2.ts +901 -0
  79. package/typechain-types/IPossibleSupplyCapInterface.ts +142 -0
  80. package/typechain-types/IPreCrime.ts +225 -0
  81. package/typechain-types/IRedstonePriceFeed.ts +259 -0
  82. package/typechain-types/IRewardManager.ts +108 -0
  83. package/typechain-types/ISendLib.ts +515 -0
  84. package/typechain-types/IStandardizedYield.ts +895 -0
  85. package/typechain-types/ITaskTreasuryUpgradable.ts +160 -0
  86. package/typechain-types/IWETH.ts +380 -0
  87. package/typechain-types/IWstETH.ts +162 -0
  88. package/typechain-types/Initializable.ts +68 -0
  89. package/typechain-types/LegacyNFTHelper.ts +87 -0
  90. package/typechain-types/Multicall2.ts +437 -0
  91. package/typechain-types/NonceManager.ts +209 -0
  92. package/typechain-types/OApp.ts +492 -0
  93. package/typechain-types/OAppCore.ts +314 -0
  94. package/typechain-types/OAppOptionsType3.ts +310 -0
  95. package/typechain-types/OAppPreCrimeSimulator.ts +400 -0
  96. package/typechain-types/OAppReceiver.ts +492 -0
  97. package/typechain-types/OAppSender.ts +314 -0
  98. package/typechain-types/OFT.ts +1675 -0
  99. package/typechain-types/OFTAdapter.ts +1331 -0
  100. package/typechain-types/OFTAdapterImpl.ts +1331 -0
  101. package/typechain-types/OFTCore.ts +1331 -0
  102. package/typechain-types/OracleLib.ts +124 -0
  103. package/typechain-types/{BoringOwnableUpgradeable__deprecated.ts → Ownable.ts} +23 -62
  104. package/typechain-types/PTExpiry.ts +81 -0
  105. package/typechain-types/PendleBridgedPrincipalToken_18Decimals.ts +1689 -0
  106. package/typechain-types/PendleBridgedPrincipalToken_6Decimals.ts +1689 -0
  107. package/typechain-types/PendleBridgedPrincipalToken_8Decimals.ts +1689 -0
  108. package/typechain-types/PendleERC20.ts +339 -0
  109. package/typechain-types/PendleMulticallV1.ts +162 -0
  110. package/typechain-types/PendleMulticallV2.ts +241 -0
  111. package/typechain-types/PendleOffchainStorage.ts +666 -0
  112. package/typechain-types/PendlePTOFTAdapterFactory.ts +294 -0
  113. package/typechain-types/PendlePrincipalToken.ts +510 -0
  114. package/typechain-types/PendleSparkLinearDiscountOracle.ts +213 -0
  115. package/typechain-types/PendleWstETHPriceFeed.ts +148 -0
  116. package/typechain-types/Proxy.ts +57 -0
  117. package/typechain-types/SimulateHelper.ts +153 -0
  118. package/typechain-types/StarNFTV1.ts +880 -0
  119. package/typechain-types/SupplyCapReader.ts +105 -0
  120. package/typechain-types/UUPSUpgradeable.ts +197 -0
  121. package/typechain-types/factories/AccessControlUpgradeable__factory.ts +247 -0
  122. package/typechain-types/factories/AddressCast__factory.ts +71 -0
  123. package/typechain-types/factories/AggregatorInterface__factory.ts +153 -0
  124. package/typechain-types/factories/AggregatorV2V3Interface__factory.ts +268 -0
  125. package/typechain-types/factories/AggregatorV3Interface__factory.ts +141 -0
  126. package/typechain-types/factories/AutomateReady__factory.ts +49 -0
  127. package/typechain-types/factories/BasePendleBridgedPrincipalToken__factory.ts +1548 -0
  128. package/typechain-types/factories/BoringOwnableUpgradeableData__factory.ts +1 -1
  129. package/typechain-types/factories/BoringPYUsdChainlinkAssetOracle__factory.ts +1 -1
  130. package/typechain-types/factories/BoringPYUsdChainlinkSYOracle__factory.ts +1 -1
  131. package/typechain-types/factories/ContextUpgradeable__factory.ts +39 -0
  132. package/typechain-types/factories/EIP712Upgradeable__factory.ts +88 -0
  133. package/typechain-types/factories/ERC165Upgradeable__factory.ts +58 -0
  134. package/typechain-types/factories/ERC1967Upgrade__factory.ts +71 -0
  135. package/typechain-types/factories/ERC20__factory.ts +348 -0
  136. package/typechain-types/factories/Errors__factory.ts +1483 -0
  137. package/typechain-types/factories/FixedPricePTAMM__factory.ts +519 -0
  138. package/typechain-types/factories/IAccessControlUpgradeable__factory.ts +202 -0
  139. package/typechain-types/factories/IAddressProvider__factory.ts +63 -0
  140. package/typechain-types/factories/IAutomate__factory.ts +126 -0
  141. package/typechain-types/factories/IBeacon__factory.ts +36 -0
  142. package/typechain-types/factories/IERC1271__factory.ts +47 -0
  143. package/typechain-types/factories/IERC165Upgradeable__factory.ts +45 -0
  144. package/typechain-types/factories/IERC165__factory.ts +42 -0
  145. package/typechain-types/factories/IERC1822Proxiable__factory.ts +39 -0
  146. package/typechain-types/factories/IERC1967__factory.ts +68 -0
  147. package/typechain-types/factories/IERC20Metadata__factory.ts +248 -0
  148. package/typechain-types/factories/IERC20Permit__factory.ts +98 -0
  149. package/typechain-types/factories/IERC20__factory.ts +203 -0
  150. package/typechain-types/factories/IERC5267Upgradeable__factory.ts +75 -0
  151. package/typechain-types/factories/ILayerZeroEndpointV2__factory.ts +1918 -0
  152. package/typechain-types/factories/ILayerZeroEndpoint__factory.ts +134 -0
  153. package/typechain-types/factories/ILayerZeroReceiver__factory.ts +136 -0
  154. package/typechain-types/factories/IMessageLibManager__factory.ts +661 -0
  155. package/typechain-types/factories/IMessageLib__factory.ts +161 -0
  156. package/typechain-types/factories/IMessagingChannel__factory.ts +388 -0
  157. package/typechain-types/factories/IMessagingComposer__factory.ts +261 -0
  158. package/typechain-types/factories/IMessagingContext__factory.ts +57 -0
  159. package/typechain-types/factories/IOAppCore__factory.ts +160 -0
  160. package/typechain-types/factories/IOAppMsgInspector__factory.ts +66 -0
  161. package/typechain-types/factories/IOAppOptionsType3__factory.ts +126 -0
  162. package/typechain-types/factories/IOAppPreCrimeSimulator__factory.ts +194 -0
  163. package/typechain-types/factories/IOAppReceiver__factory.ts +179 -0
  164. package/typechain-types/factories/IOFT__factory.ts +465 -0
  165. package/typechain-types/factories/IOpsProxyFactory__factory.ts +50 -0
  166. package/typechain-types/factories/IPActionInfoStatic__factory.ts +322 -0
  167. package/typechain-types/factories/IPActionMintRedeemStatic__factory.ts +261 -0
  168. package/typechain-types/factories/IPBridgedPrincipalToken__factory.ts +947 -0
  169. package/typechain-types/factories/IPChainlinkOracleEssential__factory.ts +76 -0
  170. package/typechain-types/factories/IPChainlinkOracleWithQuote__factory.ts +281 -0
  171. package/typechain-types/factories/IPExchangeRateOracle__factory.ts +43 -0
  172. package/typechain-types/factories/IPFeeDistributorV2__factory.ts +184 -0
  173. package/typechain-types/factories/IPFeeDistributor__factory.ts +138 -0
  174. package/typechain-types/factories/IPFixedPricePTAMMSwapCallback__factory.ts +53 -0
  175. package/typechain-types/factories/IPFixedPricePTAMM__factory.ts +317 -0
  176. package/typechain-types/factories/IPGaugeControllerMainchain__factory.ts +202 -0
  177. package/typechain-types/factories/IPGaugeController__factory.ts +175 -0
  178. package/typechain-types/factories/IPGauge__factory.ts +74 -0
  179. package/typechain-types/factories/IPInterestManagerYTV2__factory.ts +59 -0
  180. package/typechain-types/factories/IPInterestManagerYT__factory.ts +63 -0
  181. package/typechain-types/factories/IPMarketFactory__factory.ts +168 -0
  182. package/typechain-types/factories/IPMarketSwapCallback__factory.ts +53 -0
  183. package/typechain-types/factories/IPMerkleDistributor__factory.ts +165 -0
  184. package/typechain-types/factories/IPMiniDiamond__factory.ts +67 -0
  185. package/typechain-types/factories/IPMsgReceiverApp__factory.ts +39 -0
  186. package/typechain-types/factories/IPMsgSendEndpoint__factory.ts +88 -0
  187. package/typechain-types/factories/IPOffchainStorage__factory.ts +82 -0
  188. package/typechain-types/factories/{BoringOwnableUpgradeable__deprecated__factory.ts → IPPTOFTAdapterFactory__factory.ts} +33 -53
  189. package/typechain-types/factories/IPPYLpOracle__factory.ts +227 -0
  190. package/typechain-types/factories/IPPriceFeed__factory.ts +36 -0
  191. package/typechain-types/factories/IPPrincipalToken__factory.ts +362 -0
  192. package/typechain-types/factories/IPReflector__factory.ts +42 -0
  193. package/typechain-types/factories/IPTokenWithSupplyCap__factory.ts +56 -0
  194. package/typechain-types/factories/IPVeToken__factory.ts +116 -0
  195. package/typechain-types/factories/IPYieldContractFactory__factory.ts +285 -0
  196. package/typechain-types/factories/IPYieldTokenV2__factory.ts +694 -0
  197. package/typechain-types/factories/IPYieldToken__factory.ts +693 -0
  198. package/typechain-types/factories/IPossibleSupplyCapInterface__factory.ts +82 -0
  199. package/typechain-types/factories/IPreCrime__factory.ts +200 -0
  200. package/typechain-types/factories/IRedstonePriceFeed__factory.ts +163 -0
  201. package/typechain-types/factories/IRewardManager__factory.ts +55 -0
  202. package/typechain-types/factories/ISendLib__factory.ts +376 -0
  203. package/typechain-types/factories/IStandardizedYield__factory.ts +658 -0
  204. package/typechain-types/factories/ITaskTreasuryUpgradable__factory.ts +76 -0
  205. package/typechain-types/factories/IWETH__factory.ts +261 -0
  206. package/typechain-types/factories/IWstETH__factory.ts +87 -0
  207. package/typechain-types/factories/Initializable__factory.ts +36 -0
  208. package/typechain-types/factories/LegacyNFTHelper__factory.ts +83 -0
  209. package/typechain-types/factories/Multicall2__factory.ts +372 -0
  210. package/typechain-types/factories/NonceManager__factory.ts +149 -0
  211. package/typechain-types/factories/OAppCore__factory.ts +212 -0
  212. package/typechain-types/factories/OAppOptionsType3__factory.ts +202 -0
  213. package/typechain-types/factories/OAppPreCrimeSimulator__factory.ts +296 -0
  214. package/typechain-types/factories/OAppReceiver__factory.ts +379 -0
  215. package/typechain-types/factories/OAppSender__factory.ts +228 -0
  216. package/typechain-types/factories/OApp__factory.ts +392 -0
  217. package/typechain-types/factories/OFTAdapterImpl__factory.ts +1334 -0
  218. package/typechain-types/factories/OFTAdapter__factory.ts +1256 -0
  219. package/typechain-types/factories/OFTCore__factory.ts +1256 -0
  220. package/typechain-types/factories/OFT__factory.ts +1523 -0
  221. package/typechain-types/factories/OracleLib__factory.ts +150 -0
  222. package/typechain-types/factories/Ownable__factory.ts +75 -0
  223. package/typechain-types/factories/PTExpiry__factory.ts +36 -0
  224. package/typechain-types/factories/PendleBridgedPrincipalToken_18Decimals__factory.ts +1652 -0
  225. package/typechain-types/factories/PendleBridgedPrincipalToken_6Decimals__factory.ts +1650 -0
  226. package/typechain-types/factories/PendleBridgedPrincipalToken_8Decimals__factory.ts +1650 -0
  227. package/typechain-types/factories/PendleChainlinkOracleFactory__factory.ts +1 -1
  228. package/typechain-types/factories/PendleChainlinkOracleWithQuote__factory.ts +1 -1
  229. package/typechain-types/factories/PendleChainlinkOracle__factory.ts +1 -1
  230. package/typechain-types/factories/PendleERC20__factory.ts +327 -0
  231. package/typechain-types/factories/PendleMsgReceiveEndpointUpg__factory.ts +1 -1
  232. package/typechain-types/factories/PendleMsgSendEndpointUpg__factory.ts +1 -1
  233. package/typechain-types/factories/PendleMulticallV1__factory.ts +142 -0
  234. package/typechain-types/factories/PendleMulticallV2__factory.ts +212 -0
  235. package/typechain-types/factories/PendleOffchainStorage__factory.ts +492 -0
  236. package/typechain-types/factories/PendlePTOFTAdapterFactory__factory.ts +253 -0
  237. package/typechain-types/factories/PendlePrincipalToken__factory.ts +489 -0
  238. package/typechain-types/factories/PendleRedStoneRateOracleAdapter__factory.ts +1 -1
  239. package/typechain-types/factories/PendleSparkLinearDiscountOracle__factory.ts +209 -0
  240. package/typechain-types/factories/PendleWstETHPriceFeed__factory.ts +133 -0
  241. package/typechain-types/factories/Proxy__factory.ts +28 -0
  242. package/typechain-types/factories/SimulateHelper__factory.ts +137 -0
  243. package/typechain-types/factories/StarNFTV1__factory.ts +584 -0
  244. package/typechain-types/factories/SupplyCapReader__factory.ts +88 -0
  245. package/typechain-types/factories/UUPSUpgradeable__factory.ts +115 -0
  246. package/typechain-types/hardhat.d.ts +243 -0
  247. package/typechain-types/index.ts +54 -2
  248. package/build/artifacts/contracts/LiquidityMining/CrossChainMsg/PendleMsgReceiveEndpointUpg.sol/PendleMsgReceiveEndpointUpg.dbg.json +0 -4
  249. package/build/artifacts/contracts/LiquidityMining/CrossChainMsg/PendleMsgReceiveEndpointUpg.sol/PendleMsgReceiveEndpointUpg.json +0 -378
  250. package/build/artifacts/contracts/LiquidityMining/CrossChainMsg/PendleMsgReceiverAppUpg.sol/PendleMsgReceiverAppUpg.dbg.json +0 -4
  251. package/build/artifacts/contracts/LiquidityMining/CrossChainMsg/PendleMsgReceiverAppUpg.sol/PendleMsgReceiverAppUpg.json +0 -48
  252. package/build/artifacts/contracts/LiquidityMining/CrossChainMsg/PendleMsgSendEndpointUpg.sol/PendleMsgSendEndpointUpg.dbg.json +0 -4
  253. package/build/artifacts/contracts/LiquidityMining/CrossChainMsg/PendleMsgSendEndpointUpg.sol/PendleMsgSendEndpointUpg.json +0 -396
  254. package/build/artifacts/contracts/LiquidityMining/CrossChainMsg/PendleMsgSenderAppUpg.sol/PendleMsgSenderAppUpg.dbg.json +0 -4
  255. package/build/artifacts/contracts/LiquidityMining/CrossChainMsg/PendleMsgSenderAppUpg.sol/PendleMsgSenderAppUpg.json +0 -174
  256. package/build/artifacts/contracts/LiquidityMining/CrossChainMsg/libraries/ExcessivelySafeCall.sol/ExcessivelySafeCall.dbg.json +0 -4
  257. package/build/artifacts/contracts/LiquidityMining/CrossChainMsg/libraries/ExcessivelySafeCall.sol/ExcessivelySafeCall.json +0 -10
  258. package/build/artifacts/contracts/LiquidityMining/CrossChainMsg/libraries/LayerZeroHelper.sol/LayerZeroHelper.dbg.json +0 -4
  259. package/build/artifacts/contracts/LiquidityMining/CrossChainMsg/libraries/LayerZeroHelper.sol/LayerZeroHelper.json +0 -10
  260. package/build/artifacts/contracts/LiquidityMining/GaugeController/PendleGaugeControllerBaseUpg.sol/PendleGaugeControllerBaseUpg.dbg.json +0 -4
  261. package/build/artifacts/contracts/LiquidityMining/GaugeController/PendleGaugeControllerBaseUpg.sol/PendleGaugeControllerBaseUpg.json +0 -438
  262. package/build/artifacts/contracts/LiquidityMining/GaugeController/PendleGaugeControllerMainchainUpg.sol/PendleGaugeControllerMainchainUpg.dbg.json +0 -4
  263. package/build/artifacts/contracts/LiquidityMining/GaugeController/PendleGaugeControllerMainchainUpg.sol/PendleGaugeControllerMainchainUpg.json +0 -539
  264. package/build/artifacts/contracts/LiquidityMining/GaugeController/PendleGaugeControllerSidechainUpg.sol/PendleGaugeControllerSidechainUpg.dbg.json +0 -4
  265. package/build/artifacts/contracts/LiquidityMining/GaugeController/PendleGaugeControllerSidechainUpg.sol/PendleGaugeControllerSidechainUpg.json +0 -529
  266. package/build/artifacts/contracts/LiquidityMining/PendleMerkleDistributor.sol/PendleMerkleDistributor.dbg.json +0 -4
  267. package/build/artifacts/contracts/LiquidityMining/PendleMerkleDistributor.sol/PendleMerkleDistributor.json +0 -432
  268. package/build/artifacts/contracts/LiquidityMining/PendleMultiTokenMerkleDistributor.sol/PendleMultiTokenMerkleDistributor.dbg.json +0 -4
  269. package/build/artifacts/contracts/LiquidityMining/PendleMultiTokenMerkleDistributor.sol/PendleMultiTokenMerkleDistributor.json +0 -468
  270. package/build/artifacts/contracts/LiquidityMining/VotingController/PendleVotingControllerUpg.sol/PendleVotingControllerUpg.dbg.json +0 -4
  271. package/build/artifacts/contracts/LiquidityMining/VotingController/PendleVotingControllerUpg.sol/PendleVotingControllerUpg.json +0 -1204
  272. package/build/artifacts/contracts/LiquidityMining/VotingController/VotingControllerStorageUpg.sol/VotingControllerStorageUpg.dbg.json +0 -4
  273. package/build/artifacts/contracts/LiquidityMining/VotingController/VotingControllerStorageUpg.sol/VotingControllerStorageUpg.json +0 -681
  274. package/build/artifacts/contracts/LiquidityMining/VotingEscrow/VotingEscrowPendleMainchain.sol/VotingEscrowPendleMainchain.dbg.json +0 -4
  275. package/build/artifacts/contracts/LiquidityMining/VotingEscrow/VotingEscrowPendleMainchain.sol/VotingEscrowPendleMainchain.json +0 -776
  276. package/build/artifacts/contracts/LiquidityMining/VotingEscrow/VotingEscrowPendleSidechain.sol/VotingEscrowPendleSidechain.dbg.json +0 -4
  277. package/build/artifacts/contracts/LiquidityMining/VotingEscrow/VotingEscrowPendleSidechain.sol/VotingEscrowPendleSidechain.json +0 -390
  278. package/build/artifacts/contracts/LiquidityMining/VotingEscrow/VotingEscrowTokenBase.sol/VotingEscrowTokenBase.dbg.json +0 -4
  279. package/build/artifacts/contracts/LiquidityMining/VotingEscrow/VotingEscrowTokenBase.sol/VotingEscrowTokenBase.json +0 -143
  280. package/build/artifacts/contracts/LiquidityMining/libraries/VeBalanceLib.sol/VeBalanceLib.dbg.json +0 -4
  281. package/build/artifacts/contracts/LiquidityMining/libraries/VeBalanceLib.sol/VeBalanceLib.json +0 -10
  282. package/build/artifacts/contracts/LiquidityMining/libraries/VeHistoryLib.sol/CheckpointHelper.dbg.json +0 -4
  283. package/build/artifacts/contracts/LiquidityMining/libraries/VeHistoryLib.sol/CheckpointHelper.json +0 -10
  284. package/build/artifacts/contracts/LiquidityMining/libraries/VeHistoryLib.sol/Checkpoints.dbg.json +0 -4
  285. package/build/artifacts/contracts/LiquidityMining/libraries/VeHistoryLib.sol/Checkpoints.json +0 -10
  286. package/build/artifacts/contracts/LiquidityMining/libraries/WeekMath.sol/WeekMath.dbg.json +0 -4
  287. package/build/artifacts/contracts/LiquidityMining/libraries/WeekMath.sol/WeekMath.json +0 -10
  288. package/build/artifacts/contracts/core/Market/MarketMathCore.sol/MarketMathCore.dbg.json +0 -4
  289. package/build/artifacts/contracts/core/Market/MarketMathCore.sol/MarketMathCore.json +0 -10
  290. package/build/artifacts/contracts/core/Market/OracleLib.sol/OracleLib.dbg.json +0 -4
  291. package/build/artifacts/contracts/core/Market/OracleLib.sol/OracleLib.json +0 -100
  292. package/build/artifacts/contracts/core/Market/PendleGauge.sol/PendleGauge.dbg.json +0 -4
  293. package/build/artifacts/contracts/core/Market/PendleGauge.sol/PendleGauge.json +0 -128
  294. package/build/artifacts/contracts/core/Market/v3/PendleMarketFactoryV3.sol/PendleMarketFactoryV3.dbg.json +0 -4
  295. package/build/artifacts/contracts/core/Market/v3/PendleMarketFactoryV3.sol/PendleMarketFactoryV3.json +0 -610
  296. package/build/artifacts/contracts/core/Market/v3/PendleMarketV3.sol/PendleMarketV3.dbg.json +0 -4
  297. package/build/artifacts/contracts/core/Market/v3/PendleMarketV3.sol/PendleMarketV3.json +0 -1131
  298. package/build/artifacts/contracts/core/RewardManager/RewardManager.sol/RewardManager.dbg.json +0 -4
  299. package/build/artifacts/contracts/core/RewardManager/RewardManager.sol/RewardManager.json +0 -77
  300. package/build/artifacts/contracts/core/RewardManager/RewardManagerAbstract.sol/RewardManagerAbstract.dbg.json +0 -4
  301. package/build/artifacts/contracts/core/RewardManager/RewardManagerAbstract.sol/RewardManagerAbstract.json +0 -40
  302. package/build/artifacts/contracts/core/StandardizedYield/PYIndex.sol/PYIndexLib.dbg.json +0 -4
  303. package/build/artifacts/contracts/core/StandardizedYield/PYIndex.sol/PYIndexLib.json +0 -10
  304. package/build/artifacts/contracts/core/StandardizedYield/SYUtils.sol/SYUtils.dbg.json +0 -4
  305. package/build/artifacts/contracts/core/StandardizedYield/SYUtils.sol/SYUtils.json +0 -10
  306. package/build/artifacts/contracts/core/YieldContracts/InterestManagerYT.sol/InterestManagerYT.dbg.json +0 -4
  307. package/build/artifacts/contracts/core/YieldContracts/InterestManagerYT.sol/InterestManagerYT.json +0 -48
  308. package/build/artifacts/contracts/core/YieldContracts/PendlePrincipalToken.sol/PendlePrincipalToken.dbg.json +0 -4
  309. package/build/artifacts/contracts/core/YieldContracts/PendlePrincipalToken.sol/PendlePrincipalToken.json +0 -401
  310. package/build/artifacts/contracts/core/YieldContracts/PendleYieldContractFactory.sol/PendleYieldContractFactory.dbg.json +0 -4
  311. package/build/artifacts/contracts/core/YieldContracts/PendleYieldContractFactory.sol/PendleYieldContractFactory.json +0 -590
  312. package/build/artifacts/contracts/core/YieldContracts/PendleYieldToken.sol/PendleYieldToken.dbg.json +0 -4
  313. package/build/artifacts/contracts/core/YieldContracts/PendleYieldToken.sol/PendleYieldToken.json +0 -886
  314. package/build/artifacts/contracts/core/erc20/PendleERC20.sol/PendleERC20.dbg.json +0 -4
  315. package/build/artifacts/contracts/core/erc20/PendleERC20.sol/PendleERC20.json +0 -254
  316. package/build/artifacts/contracts/core/erc20/PendleERC20Permit.sol/PendleERC20Permit.dbg.json +0 -4
  317. package/build/artifacts/contracts/core/erc20/PendleERC20Permit.sol/PendleERC20Permit.json +0 -394
  318. package/build/artifacts/contracts/core/erc20/PendleERC20PermitUpg.sol/PendleERC20PermitUpg.dbg.json +0 -4
  319. package/build/artifacts/contracts/core/erc20/PendleERC20PermitUpg.sol/PendleERC20PermitUpg.json +0 -370
  320. package/build/artifacts/contracts/core/erc20/PendleERC20Upg.sol/PendleERC20Upg.dbg.json +0 -4
  321. package/build/artifacts/contracts/core/erc20/PendleERC20Upg.sol/PendleERC20Upg.json +0 -246
  322. package/build/artifacts/contracts/core/libraries/ArrayLib.sol/ArrayLib.dbg.json +0 -4
  323. package/build/artifacts/contracts/core/libraries/ArrayLib.sol/ArrayLib.json +0 -10
  324. package/build/artifacts/contracts/core/libraries/BaseSplitCodeFactory.sol/BaseSplitCodeFactory.dbg.json +0 -4
  325. package/build/artifacts/contracts/core/libraries/BaseSplitCodeFactory.sol/BaseSplitCodeFactory.json +0 -10
  326. package/build/artifacts/contracts/core/libraries/BaseSplitCodeFactory.sol/CodeDeployer.dbg.json +0 -4
  327. package/build/artifacts/contracts/core/libraries/BaseSplitCodeFactory.sol/CodeDeployer.json +0 -10
  328. package/build/artifacts/contracts/core/libraries/BoringOwnableUpgradeableV2.sol/BoringOwnableUpgradeableData.dbg.json +0 -4
  329. package/build/artifacts/contracts/core/libraries/BoringOwnableUpgradeableV2.sol/BoringOwnableUpgradeableData.json +0 -37
  330. package/build/artifacts/contracts/core/libraries/BoringOwnableUpgradeableV2.sol/BoringOwnableUpgradeableV2.dbg.json +0 -4
  331. package/build/artifacts/contracts/core/libraries/BoringOwnableUpgradeableV2.sol/BoringOwnableUpgradeableV2.json +0 -99
  332. package/build/artifacts/contracts/core/libraries/Errors.sol/Errors.dbg.json +0 -4
  333. package/build/artifacts/contracts/core/libraries/Errors.sol/Errors.json +0 -1436
  334. package/build/artifacts/contracts/core/libraries/ExpiryUtilsLib.sol/ExpiryUtils.dbg.json +0 -4
  335. package/build/artifacts/contracts/core/libraries/ExpiryUtilsLib.sol/ExpiryUtils.json +0 -10
  336. package/build/artifacts/contracts/core/libraries/MiniHelpers.sol/MiniHelpers.dbg.json +0 -4
  337. package/build/artifacts/contracts/core/libraries/MiniHelpers.sol/MiniHelpers.json +0 -10
  338. package/build/artifacts/contracts/core/libraries/StringLib.sol/StringLib.dbg.json +0 -4
  339. package/build/artifacts/contracts/core/libraries/StringLib.sol/StringLib.json +0 -10
  340. package/build/artifacts/contracts/core/libraries/TokenHelper.sol/TokenHelper.dbg.json +0 -4
  341. package/build/artifacts/contracts/core/libraries/TokenHelper.sol/TokenHelper.json +0 -10
  342. package/build/artifacts/contracts/core/libraries/math/LogExpMath.sol/LogExpMath.dbg.json +0 -4
  343. package/build/artifacts/contracts/core/libraries/math/LogExpMath.sol/LogExpMath.json +0 -10
  344. package/build/artifacts/contracts/core/libraries/math/PMath.sol/PMath.dbg.json +0 -4
  345. package/build/artifacts/contracts/core/libraries/math/PMath.sol/PMath.json +0 -10
  346. package/build/artifacts/contracts/deprecated/VeDistributor/PendleFeeDistributor.sol/PendleFeeDistributor.dbg.json +0 -4
  347. package/build/artifacts/contracts/deprecated/VeDistributor/PendleFeeDistributor.sol/PendleFeeDistributor.json +0 -598
  348. package/build/artifacts/contracts/deprecated/VeDistributor/PendleFeeDistributorV2.sol/PendleFeeDistributorV2.dbg.json +0 -4
  349. package/build/artifacts/contracts/deprecated/VeDistributor/PendleFeeDistributorV2.sol/PendleFeeDistributorV2.json +0 -498
  350. package/build/artifacts/contracts/interfaces/IAddressProvider.sol/IAddressProvider.dbg.json +0 -4
  351. package/build/artifacts/contracts/interfaces/IAddressProvider.sol/IAddressProvider.json +0 -48
  352. package/build/artifacts/contracts/interfaces/ILayerZeroEndpoint.sol/ILayerZeroEndpoint.dbg.json +0 -4
  353. package/build/artifacts/contracts/interfaces/ILayerZeroEndpoint.sol/ILayerZeroEndpoint.json +0 -119
  354. package/build/artifacts/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.dbg.json +0 -4
  355. package/build/artifacts/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.json +0 -39
  356. package/build/artifacts/contracts/interfaces/IOwnable.sol/IOwnable.dbg.json +0 -4
  357. package/build/artifacts/contracts/interfaces/IOwnable.sol/IOwnable.json +0 -34
  358. package/build/artifacts/contracts/interfaces/IPActionAddRemoveLiqV3.sol/IPActionAddRemoveLiqV3.dbg.json +0 -4
  359. package/build/artifacts/contracts/interfaces/IPActionAddRemoveLiqV3.sol/IPActionAddRemoveLiqV3.json +0 -3402
  360. package/build/artifacts/contracts/interfaces/IPActionCallbackV3.sol/IPActionCallbackV3.dbg.json +0 -4
  361. package/build/artifacts/contracts/interfaces/IPActionCallbackV3.sol/IPActionCallbackV3.json +0 -68
  362. package/build/artifacts/contracts/interfaces/IPActionInfoStatic.sol/IPActionInfoStatic.dbg.json +0 -4
  363. package/build/artifacts/contracts/interfaces/IPActionInfoStatic.sol/IPActionInfoStatic.json +0 -307
  364. package/build/artifacts/contracts/interfaces/IPActionMarketAuxStatic.sol/IPActionMarketAuxStatic.dbg.json +0 -4
  365. package/build/artifacts/contracts/interfaces/IPActionMarketAuxStatic.sol/IPActionMarketAuxStatic.json +0 -603
  366. package/build/artifacts/contracts/interfaces/IPActionMarketCoreStatic.sol/IPActionMarketCoreStatic.dbg.json +0 -4
  367. package/build/artifacts/contracts/interfaces/IPActionMarketCoreStatic.sol/IPActionMarketCoreStatic.json +0 -1281
  368. package/build/artifacts/contracts/interfaces/IPActionMintRedeemStatic.sol/IPActionMintRedeemStatic.dbg.json +0 -4
  369. package/build/artifacts/contracts/interfaces/IPActionMintRedeemStatic.sol/IPActionMintRedeemStatic.json +0 -242
  370. package/build/artifacts/contracts/interfaces/IPActionMiscV3.sol/IPActionMiscV3.dbg.json +0 -4
  371. package/build/artifacts/contracts/interfaces/IPActionMiscV3.sol/IPActionMiscV3.json +0 -2990
  372. package/build/artifacts/contracts/interfaces/IPActionSimple.sol/IPActionSimple.dbg.json +0 -4
  373. package/build/artifacts/contracts/interfaces/IPActionSimple.sol/IPActionSimple.json +0 -1825
  374. package/build/artifacts/contracts/interfaces/IPActionStorageStatic.sol/IPActionStorageStatic.dbg.json +0 -4
  375. package/build/artifacts/contracts/interfaces/IPActionStorageStatic.sol/IPActionStorageStatic.json +0 -1479
  376. package/build/artifacts/contracts/interfaces/IPActionStorageV4.sol/IPActionStorageV4.dbg.json +0 -4
  377. package/build/artifacts/contracts/interfaces/IPActionStorageV4.sol/IPActionStorageV4.json +0 -1451
  378. package/build/artifacts/contracts/interfaces/IPActionSwapPTV3.sol/IPActionSwapPTV3.dbg.json +0 -4
  379. package/build/artifacts/contracts/interfaces/IPActionSwapPTV3.sol/IPActionSwapPTV3.json +0 -2439
  380. package/build/artifacts/contracts/interfaces/IPActionSwapYTV3.sol/IPActionSwapYTV3.dbg.json +0 -4
  381. package/build/artifacts/contracts/interfaces/IPActionSwapYTV3.sol/IPActionSwapYTV3.json +0 -2439
  382. package/build/artifacts/contracts/interfaces/IPActionVePendleStatic.sol/IPActionVePendleStatic.dbg.json +0 -4
  383. package/build/artifacts/contracts/interfaces/IPActionVePendleStatic.sol/IPActionVePendleStatic.json +0 -40
  384. package/build/artifacts/contracts/interfaces/IPAllActionV3.sol/IPAllActionV3.dbg.json +0 -4
  385. package/build/artifacts/contracts/interfaces/IPAllActionV3.sol/IPAllActionV3.json +0 -7848
  386. package/build/artifacts/contracts/interfaces/IPAllEventsV3.sol/IPActionAddRemoveLiqV3Events.dbg.json +0 -4
  387. package/build/artifacts/contracts/interfaces/IPAllEventsV3.sol/IPActionAddRemoveLiqV3Events.json +0 -563
  388. package/build/artifacts/contracts/interfaces/IPAllEventsV3.sol/IPActionMiscV3Events.dbg.json +0 -4
  389. package/build/artifacts/contracts/interfaces/IPAllEventsV3.sol/IPActionMiscV3Events.json +0 -589
  390. package/build/artifacts/contracts/interfaces/IPAllEventsV3.sol/IPActionStorageEvents.dbg.json +0 -4
  391. package/build/artifacts/contracts/interfaces/IPAllEventsV3.sol/IPActionStorageEvents.json +0 -49
  392. package/build/artifacts/contracts/interfaces/IPAllEventsV3.sol/IPActionSwapPTV3Events.dbg.json +0 -4
  393. package/build/artifacts/contracts/interfaces/IPAllEventsV3.sol/IPActionSwapPTV3Events.json +0 -97
  394. package/build/artifacts/contracts/interfaces/IPAllEventsV3.sol/IPActionSwapYTV3Events.dbg.json +0 -4
  395. package/build/artifacts/contracts/interfaces/IPAllEventsV3.sol/IPActionSwapYTV3Events.json +0 -97
  396. package/build/artifacts/contracts/interfaces/IPAllEventsV3.sol/IPAllEventsV3.dbg.json +0 -4
  397. package/build/artifacts/contracts/interfaces/IPAllEventsV3.sol/IPAllEventsV3.json +0 -1351
  398. package/build/artifacts/contracts/interfaces/IPChainlinkOracle.sol/IPChainlinkOracle.dbg.json +0 -4
  399. package/build/artifacts/contracts/interfaces/IPChainlinkOracle.sol/IPChainlinkOracle.json +0 -122
  400. package/build/artifacts/contracts/interfaces/IPChainlinkOracleFactory.sol/IPChainlinkOracleFactory.dbg.json +0 -4
  401. package/build/artifacts/contracts/interfaces/IPChainlinkOracleFactory.sol/IPChainlinkOracleFactory.json +0 -91
  402. package/build/artifacts/contracts/interfaces/IPChainlinkOracleWithQuote.sol/IPChainlinkOracleWithQuote.dbg.json +0 -4
  403. package/build/artifacts/contracts/interfaces/IPChainlinkOracleWithQuote.sol/IPChainlinkOracleWithQuote.json +0 -262
  404. package/build/artifacts/contracts/interfaces/IPCommonPoolDeployHelperV2.sol/IPCommonPoolDeployHelperV2.dbg.json +0 -4
  405. package/build/artifacts/contracts/interfaces/IPCommonPoolDeployHelperV2.sol/IPCommonPoolDeployHelperV2.json +0 -426
  406. package/build/artifacts/contracts/interfaces/IPCommonSYFactory.sol/IPCommonSYFactory.dbg.json +0 -4
  407. package/build/artifacts/contracts/interfaces/IPCommonSYFactory.sol/IPCommonSYFactory.json +0 -74
  408. package/build/artifacts/contracts/interfaces/IPExchangeRateOracle.sol/IPExchangeRateOracle.dbg.json +0 -4
  409. package/build/artifacts/contracts/interfaces/IPExchangeRateOracle.sol/IPExchangeRateOracle.json +0 -24
  410. package/build/artifacts/contracts/interfaces/IPFeeDistributor.sol/IPFeeDistributor.dbg.json +0 -4
  411. package/build/artifacts/contracts/interfaces/IPFeeDistributor.sol/IPFeeDistributor.json +0 -123
  412. package/build/artifacts/contracts/interfaces/IPFeeDistributorV2.sol/IPFeeDistributorV2.dbg.json +0 -4
  413. package/build/artifacts/contracts/interfaces/IPFeeDistributorV2.sol/IPFeeDistributorV2.json +0 -169
  414. package/build/artifacts/contracts/interfaces/IPGauge.sol/IPGauge.dbg.json +0 -4
  415. package/build/artifacts/contracts/interfaces/IPGauge.sol/IPGauge.json +0 -62
  416. package/build/artifacts/contracts/interfaces/IPGaugeController.sol/IPGaugeController.dbg.json +0 -4
  417. package/build/artifacts/contracts/interfaces/IPGaugeController.sol/IPGaugeController.json +0 -160
  418. package/build/artifacts/contracts/interfaces/IPGaugeControllerMainchain.sol/IPGaugeControllerMainchain.dbg.json +0 -4
  419. package/build/artifacts/contracts/interfaces/IPGaugeControllerMainchain.sol/IPGaugeControllerMainchain.json +0 -183
  420. package/build/artifacts/contracts/interfaces/IPGovernanceProxy.sol/IPGovernanceProxy.dbg.json +0 -4
  421. package/build/artifacts/contracts/interfaces/IPGovernanceProxy.sol/IPGovernanceProxy.json +0 -137
  422. package/build/artifacts/contracts/interfaces/IPInterestManagerYT.sol/IPInterestManagerYT.dbg.json +0 -4
  423. package/build/artifacts/contracts/interfaces/IPInterestManagerYT.sol/IPInterestManagerYT.json +0 -48
  424. package/build/artifacts/contracts/interfaces/IPInterestManagerYTV2.sol/IPInterestManagerYTV2.dbg.json +0 -4
  425. package/build/artifacts/contracts/interfaces/IPInterestManagerYTV2.sol/IPInterestManagerYTV2.json +0 -40
  426. package/build/artifacts/contracts/interfaces/IPLPWrapperFactory.sol/IPLPWrapperFactory.dbg.json +0 -4
  427. package/build/artifacts/contracts/interfaces/IPLPWrapperFactory.sol/IPLPWrapperFactory.json +0 -56
  428. package/build/artifacts/contracts/interfaces/IPLimitRouter.sol/IPLimitOrderType.dbg.json +0 -4
  429. package/build/artifacts/contracts/interfaces/IPLimitRouter.sol/IPLimitOrderType.json +0 -10
  430. package/build/artifacts/contracts/interfaces/IPLimitRouter.sol/IPLimitRouter.dbg.json +0 -4
  431. package/build/artifacts/contracts/interfaces/IPLimitRouter.sol/IPLimitRouter.json +0 -736
  432. package/build/artifacts/contracts/interfaces/IPLimitRouter.sol/IPLimitRouterCallback.dbg.json +0 -4
  433. package/build/artifacts/contracts/interfaces/IPLimitRouter.sol/IPLimitRouterCallback.json +0 -45
  434. package/build/artifacts/contracts/interfaces/IPMarket.sol/IPMarket.dbg.json +0 -4
  435. package/build/artifacts/contracts/interfaces/IPMarket.sol/IPMarket.json +0 -820
  436. package/build/artifacts/contracts/interfaces/IPMarketFactory.sol/IPMarketFactory.dbg.json +0 -4
  437. package/build/artifacts/contracts/interfaces/IPMarketFactory.sol/IPMarketFactory.json +0 -153
  438. package/build/artifacts/contracts/interfaces/IPMarketFactoryV3.sol/IPMarketFactoryV3.dbg.json +0 -4
  439. package/build/artifacts/contracts/interfaces/IPMarketFactoryV3.sol/IPMarketFactoryV3.json +0 -202
  440. package/build/artifacts/contracts/interfaces/IPMarketSwapCallback.sol/IPMarketSwapCallback.dbg.json +0 -4
  441. package/build/artifacts/contracts/interfaces/IPMarketSwapCallback.sol/IPMarketSwapCallback.json +0 -34
  442. package/build/artifacts/contracts/interfaces/IPMarketV3.sol/IPMarketV3.dbg.json +0 -4
  443. package/build/artifacts/contracts/interfaces/IPMarketV3.sol/IPMarketV3.json +0 -833
  444. package/build/artifacts/contracts/interfaces/IPMerkleDistributor.sol/IPMerkleDistributor.dbg.json +0 -4
  445. package/build/artifacts/contracts/interfaces/IPMerkleDistributor.sol/IPMerkleDistributor.json +0 -150
  446. package/build/artifacts/contracts/interfaces/IPMiniDiamond.sol/IPMiniDiamond.dbg.json +0 -4
  447. package/build/artifacts/contracts/interfaces/IPMiniDiamond.sol/IPMiniDiamond.json +0 -55
  448. package/build/artifacts/contracts/interfaces/IPMsgReceiverApp.sol/IPMsgReceiverApp.dbg.json +0 -4
  449. package/build/artifacts/contracts/interfaces/IPMsgReceiverApp.sol/IPMsgReceiverApp.json +0 -24
  450. package/build/artifacts/contracts/interfaces/IPMsgSendEndpoint.sol/IPMsgSendEndpoint.dbg.json +0 -4
  451. package/build/artifacts/contracts/interfaces/IPMsgSendEndpoint.sol/IPMsgSendEndpoint.json +0 -73
  452. package/build/artifacts/contracts/interfaces/IPMultiTokenMerkleDistributor.sol/IPMultiTokenMerkleDistributor.dbg.json +0 -4
  453. package/build/artifacts/contracts/interfaces/IPMultiTokenMerkleDistributor.sol/IPMultiTokenMerkleDistributor.json +0 -251
  454. package/build/artifacts/contracts/interfaces/IPOffchainStorage.sol/IPOffchainStorage.dbg.json +0 -4
  455. package/build/artifacts/contracts/interfaces/IPOffchainStorage.sol/IPOffchainStorage.json +0 -67
  456. package/build/artifacts/contracts/interfaces/IPOracleForSy.sol/IPOracleForSy.dbg.json +0 -4
  457. package/build/artifacts/contracts/interfaces/IPOracleForSy.sol/IPOracleForSy.json +0 -24
  458. package/build/artifacts/contracts/interfaces/IPPYLpOracle.sol/IPPYLpOracle.dbg.json +0 -4
  459. package/build/artifacts/contracts/interfaces/IPPYLpOracle.sol/IPPYLpOracle.json +0 -215
  460. package/build/artifacts/contracts/interfaces/IPPausingInterface.sol/IPPausingInterface.dbg.json +0 -4
  461. package/build/artifacts/contracts/interfaces/IPPausingInterface.sol/IPPausingInterface.json +0 -38
  462. package/build/artifacts/contracts/interfaces/IPPoolDeployHelperV2.sol/IPPoolDeployHelperV2.dbg.json +0 -4
  463. package/build/artifacts/contracts/interfaces/IPPoolDeployHelperV2.sol/IPPoolDeployHelperV2.json +0 -162
  464. package/build/artifacts/contracts/interfaces/IPPriceFeed.sol/IPPriceFeed.dbg.json +0 -4
  465. package/build/artifacts/contracts/interfaces/IPPriceFeed.sol/IPPriceFeed.json +0 -24
  466. package/build/artifacts/contracts/interfaces/IPPrincipalToken.sol/IPPrincipalToken.dbg.json +0 -4
  467. package/build/artifacts/contracts/interfaces/IPPrincipalToken.sol/IPPrincipalToken.json +0 -347
  468. package/build/artifacts/contracts/interfaces/IPReflector.sol/IPReflector.dbg.json +0 -4
  469. package/build/artifacts/contracts/interfaces/IPReflector.sol/IPReflector.json +0 -30
  470. package/build/artifacts/contracts/interfaces/IPRouterStatic.sol/IPRouterStatic.dbg.json +0 -4
  471. package/build/artifacts/contracts/interfaces/IPRouterStatic.sol/IPRouterStatic.json +0 -3941
  472. package/build/artifacts/contracts/interfaces/IPTokenWithSupplyCap.sol/IPTokenWithSupplyCap.dbg.json +0 -4
  473. package/build/artifacts/contracts/interfaces/IPTokenWithSupplyCap.sol/IPTokenWithSupplyCap.json +0 -37
  474. package/build/artifacts/contracts/interfaces/IPVeToken.sol/IPVeToken.dbg.json +0 -4
  475. package/build/artifacts/contracts/interfaces/IPVeToken.sol/IPVeToken.json +0 -104
  476. package/build/artifacts/contracts/interfaces/IPVotingController.sol/IPVotingController.dbg.json +0 -4
  477. package/build/artifacts/contracts/interfaces/IPVotingController.sol/IPVotingController.json +0 -348
  478. package/build/artifacts/contracts/interfaces/IPVotingEscrowMainchain.sol/IPVotingEscrowMainchain.dbg.json +0 -4
  479. package/build/artifacts/contracts/interfaces/IPVotingEscrowMainchain.sol/IPVotingEscrowMainchain.json +0 -321
  480. package/build/artifacts/contracts/interfaces/IPYieldContractFactory.sol/IPYieldContractFactory.dbg.json +0 -4
  481. package/build/artifacts/contracts/interfaces/IPYieldContractFactory.sol/IPYieldContractFactory.json +0 -266
  482. package/build/artifacts/contracts/interfaces/IPYieldToken.sol/IPYieldToken.dbg.json +0 -4
  483. package/build/artifacts/contracts/interfaces/IPYieldToken.sol/IPYieldToken.json +0 -681
  484. package/build/artifacts/contracts/interfaces/IPYieldTokenV2.sol/IPYieldTokenV2.dbg.json +0 -4
  485. package/build/artifacts/contracts/interfaces/IPYieldTokenV2.sol/IPYieldTokenV2.json +0 -679
  486. package/build/artifacts/contracts/interfaces/IRedstonePriceFeed.sol/IRedstonePriceFeed.dbg.json +0 -4
  487. package/build/artifacts/contracts/interfaces/IRedstonePriceFeed.sol/IRedstonePriceFeed.json +0 -148
  488. package/build/artifacts/contracts/interfaces/IRewardManager.sol/IRewardManager.dbg.json +0 -4
  489. package/build/artifacts/contracts/interfaces/IRewardManager.sol/IRewardManager.json +0 -40
  490. package/build/artifacts/contracts/interfaces/IStandardizedYield.sol/IStandardizedYield.dbg.json +0 -4
  491. package/build/artifacts/contracts/interfaces/IStandardizedYield.sol/IStandardizedYield.json +0 -643
  492. package/build/artifacts/contracts/interfaces/IWETH.sol/IWETH.dbg.json +0 -4
  493. package/build/artifacts/contracts/interfaces/IWETH.sol/IWETH.json +0 -252
  494. package/build/artifacts/contracts/interfaces/IWstETH.sol/IWstETH.dbg.json +0 -4
  495. package/build/artifacts/contracts/interfaces/IWstETH.sol/IWstETH.json +0 -75
  496. package/build/artifacts/contracts/limit/LimitMathCore.sol/LimitMathCore.dbg.json +0 -4
  497. package/build/artifacts/contracts/limit/LimitMathCore.sol/LimitMathCore.json +0 -10
  498. package/build/artifacts/contracts/limit/LimitRouterBase.sol/LimitRouterBase.dbg.json +0 -4
  499. package/build/artifacts/contracts/limit/LimitRouterBase.sol/LimitRouterBase.json +0 -1059
  500. package/build/artifacts/contracts/limit/PendleLimitRouter.sol/PendleLimitRouter.dbg.json +0 -4
  501. package/build/artifacts/contracts/limit/PendleLimitRouter.sol/PendleLimitRouter.json +0 -1086
  502. package/build/artifacts/contracts/limit/helpers/NonceManager.sol/NonceManager.dbg.json +0 -4
  503. package/build/artifacts/contracts/limit/helpers/NonceManager.sol/NonceManager.json +0 -99
  504. package/build/artifacts/contracts/offchain-helpers/AddressProvider.sol/AddressProvider.dbg.json +0 -4
  505. package/build/artifacts/contracts/offchain-helpers/AddressProvider.sol/AddressProvider.json +0 -149
  506. package/build/artifacts/contracts/offchain-helpers/AutomateReady.sol/AutomateReady.dbg.json +0 -4
  507. package/build/artifacts/contracts/offchain-helpers/AutomateReady.sol/AutomateReady.json +0 -37
  508. package/build/artifacts/contracts/offchain-helpers/AutomateReady.sol/IAutomate.dbg.json +0 -4
  509. package/build/artifacts/contracts/offchain-helpers/AutomateReady.sol/IAutomate.json +0 -114
  510. package/build/artifacts/contracts/offchain-helpers/AutomateReady.sol/IOpsProxyFactory.dbg.json +0 -4
  511. package/build/artifacts/contracts/offchain-helpers/AutomateReady.sol/IOpsProxyFactory.json +0 -35
  512. package/build/artifacts/contracts/offchain-helpers/AutomateReady.sol/ITaskTreasuryUpgradable.dbg.json +0 -4
  513. package/build/artifacts/contracts/offchain-helpers/AutomateReady.sol/ITaskTreasuryUpgradable.json +0 -57
  514. package/build/artifacts/contracts/offchain-helpers/BalanceReader.sol/BalanceReader.dbg.json +0 -4
  515. package/build/artifacts/contracts/offchain-helpers/BalanceReader.sol/BalanceReader.json +0 -303
  516. package/build/artifacts/contracts/offchain-helpers/BaseSplitCodeFactoryContract.sol/BaseSplitCodeFactoryContract.dbg.json +0 -4
  517. package/build/artifacts/contracts/offchain-helpers/BaseSplitCodeFactoryContract.sol/BaseSplitCodeFactoryContract.json +0 -180
  518. package/build/artifacts/contracts/offchain-helpers/Broadcaster.sol/Broadcaster.dbg.json +0 -4
  519. package/build/artifacts/contracts/offchain-helpers/Broadcaster.sol/Broadcaster.json +0 -262
  520. package/build/artifacts/contracts/offchain-helpers/BytesLib.sol/BytesLib.dbg.json +0 -4
  521. package/build/artifacts/contracts/offchain-helpers/BytesLib.sol/BytesLib.json +0 -10
  522. package/build/artifacts/contracts/offchain-helpers/EmptyUUPS.sol/EmptyUUPS.dbg.json +0 -4
  523. package/build/artifacts/contracts/offchain-helpers/EmptyUUPS.sol/EmptyUUPS.json +0 -206
  524. package/build/artifacts/contracts/offchain-helpers/ExpiredLpPtRedeemer.sol/ExpiredLpPtRedeemer.dbg.json +0 -4
  525. package/build/artifacts/contracts/offchain-helpers/ExpiredLpPtRedeemer.sol/ExpiredLpPtRedeemer.json +0 -300
  526. package/build/artifacts/contracts/offchain-helpers/LegacyNFTHelper.sol/LegacyNFTHelper.dbg.json +0 -4
  527. package/build/artifacts/contracts/offchain-helpers/LegacyNFTHelper.sol/LegacyNFTHelper.json +0 -30
  528. package/build/artifacts/contracts/offchain-helpers/LegacyNFTHelper.sol/StarNFTV1.dbg.json +0 -4
  529. package/build/artifacts/contracts/offchain-helpers/LegacyNFTHelper.sol/StarNFTV1.json +0 -572
  530. package/build/artifacts/contracts/offchain-helpers/LimitBackendHelper.sol/LimitBackendHelper.dbg.json +0 -4
  531. package/build/artifacts/contracts/offchain-helpers/LimitBackendHelper.sol/LimitBackendHelper.json +0 -174
  532. package/build/artifacts/contracts/offchain-helpers/Multicall2.sol/Multicall2.dbg.json +0 -4
  533. package/build/artifacts/contracts/offchain-helpers/Multicall2.sol/Multicall2.json +0 -322
  534. package/build/artifacts/contracts/offchain-helpers/PendleExchangeRateOracle.sol/PendleExchangeRateOracle.dbg.json +0 -4
  535. package/build/artifacts/contracts/offchain-helpers/PendleExchangeRateOracle.sol/PendleExchangeRateOracle.json +0 -307
  536. package/build/artifacts/contracts/offchain-helpers/PendleGovernanceProxy.sol/PendleGovernanceProxy.dbg.json +0 -4
  537. package/build/artifacts/contracts/offchain-helpers/PendleGovernanceProxy.sol/PendleGovernanceProxy.json +0 -496
  538. package/build/artifacts/contracts/offchain-helpers/PendleLPWrapper.sol/PendleLPWrapper.dbg.json +0 -4
  539. package/build/artifacts/contracts/offchain-helpers/PendleLPWrapper.sol/PendleLPWrapper.json +0 -345
  540. package/build/artifacts/contracts/offchain-helpers/PendleLPWrapperFactory.sol/PendleLPWrapperFactory.dbg.json +0 -4
  541. package/build/artifacts/contracts/offchain-helpers/PendleLPWrapperFactory.sol/PendleLPWrapperFactory.json +0 -237
  542. package/build/artifacts/contracts/offchain-helpers/PendleMulticallOwnerV1.sol/PendleMulticallOwnerV1.dbg.json +0 -4
  543. package/build/artifacts/contracts/offchain-helpers/PendleMulticallOwnerV1.sol/PendleMulticallOwnerV1.json +0 -153
  544. package/build/artifacts/contracts/offchain-helpers/PendleMulticallV1.sol/PendleMulticallV1.dbg.json +0 -4
  545. package/build/artifacts/contracts/offchain-helpers/PendleMulticallV1.sol/PendleMulticallV1.json +0 -89
  546. package/build/artifacts/contracts/offchain-helpers/PendleMulticallV2.sol/PendleMulticallV2.dbg.json +0 -4
  547. package/build/artifacts/contracts/offchain-helpers/PendleMulticallV2.sol/PendleMulticallV2.json +0 -159
  548. package/build/artifacts/contracts/offchain-helpers/PendleOffchainStorage.sol/PendleOffchainStorage.dbg.json +0 -4
  549. package/build/artifacts/contracts/offchain-helpers/PendleOffchainStorage.sol/PendleOffchainStorage.json +0 -435
  550. package/build/artifacts/contracts/offchain-helpers/PendleWstETHPriceFeed.sol/PendleWstETHPriceFeed.dbg.json +0 -4
  551. package/build/artifacts/contracts/offchain-helpers/PendleWstETHPriceFeed.sol/PendleWstETHPriceFeed.json +0 -76
  552. package/build/artifacts/contracts/offchain-helpers/SimulateHelper.sol/SimulateHelper.dbg.json +0 -4
  553. package/build/artifacts/contracts/offchain-helpers/SimulateHelper.sol/SimulateHelper.json +0 -84
  554. package/build/artifacts/contracts/offchain-helpers/SupplyCapReader.sol/IPossibleSupplyCapInterface.dbg.json +0 -4
  555. package/build/artifacts/contracts/offchain-helpers/SupplyCapReader.sol/IPossibleSupplyCapInterface.json +0 -63
  556. package/build/artifacts/contracts/offchain-helpers/SupplyCapReader.sol/SupplyCapReader.dbg.json +0 -4
  557. package/build/artifacts/contracts/offchain-helpers/SupplyCapReader.sol/SupplyCapReader.json +0 -35
  558. package/build/artifacts/contracts/offchain-helpers/deploy/PendleCommonPoolDeployHelperV2.sol/PendleCommonPoolDeployHelperV2.dbg.json +0 -4
  559. package/build/artifacts/contracts/offchain-helpers/deploy/PendleCommonPoolDeployHelperV2.sol/PendleCommonPoolDeployHelperV2.json +0 -975
  560. package/build/artifacts/contracts/offchain-helpers/deploy/PendleCommonSYFactory.sol/PendleCommonSYFactory.dbg.json +0 -4
  561. package/build/artifacts/contracts/offchain-helpers/deploy/PendleCommonSYFactory.sol/PendleCommonSYFactory.json +0 -420
  562. package/build/artifacts/contracts/offchain-helpers/deploy/PendlePoolDeployHelper.sol/PendlePoolDeployHelper.dbg.json +0 -4
  563. package/build/artifacts/contracts/offchain-helpers/deploy/PendlePoolDeployHelper.sol/PendlePoolDeployHelper.json +0 -272
  564. package/build/artifacts/contracts/offchain-helpers/deploy/PendlePoolDeployHelperV2.sol/PendlePoolDeployHelperV2.dbg.json +0 -4
  565. package/build/artifacts/contracts/offchain-helpers/deploy/PendlePoolDeployHelperV2.sol/PendlePoolDeployHelperV2.json +0 -235
  566. package/build/artifacts/contracts/offchain-helpers/deploy/lib/MarketDeployLib.sol/MarketDeployLib.dbg.json +0 -4
  567. package/build/artifacts/contracts/offchain-helpers/deploy/lib/MarketDeployLib.sol/MarketDeployLib.json +0 -10
  568. package/build/artifacts/contracts/offchain-helpers/errors/SDKErrorsDirectory.sol/SDKErrorsDirectory.dbg.json +0 -4
  569. package/build/artifacts/contracts/offchain-helpers/errors/SDKErrorsDirectory.sol/SDKErrorsDirectory.json +0 -4030
  570. package/build/artifacts/contracts/offchain-helpers/router-static/PendleRouterStatic.sol/PendleRouterStatic.dbg.json +0 -4
  571. package/build/artifacts/contracts/offchain-helpers/router-static/PendleRouterStatic.sol/PendleRouterStatic.json +0 -35
  572. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionInfoStatic.sol/ActionInfoStatic.dbg.json +0 -4
  573. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionInfoStatic.sol/ActionInfoStatic.json +0 -307
  574. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionMarketAuxStatic.sol/ActionMarketAuxStatic.dbg.json +0 -4
  575. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionMarketAuxStatic.sol/ActionMarketAuxStatic.json +0 -723
  576. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionMarketCoreStatic.sol/ActionMarketCoreStatic.dbg.json +0 -4
  577. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionMarketCoreStatic.sol/ActionMarketCoreStatic.json +0 -1392
  578. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionMintRedeemStatic.sol/ActionMintRedeemStatic.dbg.json +0 -4
  579. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionMintRedeemStatic.sol/ActionMintRedeemStatic.json +0 -247
  580. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionStorageStatic.sol/ActionStorageStatic.dbg.json +0 -4
  581. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionStorageStatic.sol/ActionStorageStatic.json +0 -1523
  582. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionVePendleStatic.sol/ActionVePendleStatic.dbg.json +0 -4
  583. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionVePendleStatic.sol/ActionVePendleStatic.json +0 -93
  584. package/build/artifacts/contracts/offchain-helpers/router-static/base/MarketApproxLibV1.sol/MarketApproxPtInLibV1.dbg.json +0 -4
  585. package/build/artifacts/contracts/offchain-helpers/router-static/base/MarketApproxLibV1.sol/MarketApproxPtInLibV1.json +0 -10
  586. package/build/artifacts/contracts/offchain-helpers/router-static/base/MarketApproxLibV1.sol/MarketApproxPtOutLibV1.dbg.json +0 -4
  587. package/build/artifacts/contracts/offchain-helpers/router-static/base/MarketApproxLibV1.sol/MarketApproxPtOutLibV1.json +0 -10
  588. package/build/artifacts/contracts/offchain-helpers/router-static/base/StorageLayout.sol/StorageLayout.dbg.json +0 -4
  589. package/build/artifacts/contracts/offchain-helpers/router-static/base/StorageLayout.sol/StorageLayout.json +0 -10
  590. package/build/artifacts/contracts/oracles/PtYtLpOracle/PendleLpOracleLib.sol/PendleLpOracleLib.dbg.json +0 -4
  591. package/build/artifacts/contracts/oracles/PtYtLpOracle/PendleLpOracleLib.sol/PendleLpOracleLib.json +0 -10
  592. package/build/artifacts/contracts/oracles/PtYtLpOracle/PendlePYLpOracle.sol/PendlePYLpOracle.dbg.json +0 -4
  593. package/build/artifacts/contracts/oracles/PtYtLpOracle/PendlePYLpOracle.sol/PendlePYLpOracle.json +0 -427
  594. package/build/artifacts/contracts/oracles/PtYtLpOracle/PendlePYOracleLib.sol/PendlePYOracleLib.dbg.json +0 -4
  595. package/build/artifacts/contracts/oracles/PtYtLpOracle/PendlePYOracleLib.sol/PendlePYOracleLib.json +0 -10
  596. package/build/artifacts/contracts/oracles/PtYtLpOracle/chainlink/PendleChainlinkOracle.sol/PendleChainlinkOracle.dbg.json +0 -4
  597. package/build/artifacts/contracts/oracles/PtYtLpOracle/chainlink/PendleChainlinkOracle.sol/PendleChainlinkOracle.json +0 -274
  598. package/build/artifacts/contracts/oracles/PtYtLpOracle/chainlink/PendleChainlinkOracleFactory.sol/PendleChainlinkOracleFactory.dbg.json +0 -4
  599. package/build/artifacts/contracts/oracles/PtYtLpOracle/chainlink/PendleChainlinkOracleFactory.sol/PendleChainlinkOracleFactory.json +0 -343
  600. package/build/artifacts/contracts/oracles/PtYtLpOracle/chainlink/PendleChainlinkOracleWithQuote.sol/PendleChainlinkOracleWithQuote.dbg.json +0 -4
  601. package/build/artifacts/contracts/oracles/PtYtLpOracle/chainlink/PendleChainlinkOracleWithQuote.sol/PendleChainlinkOracleWithQuote.json +0 -305
  602. package/build/artifacts/contracts/oracles/PtYtLpOracle/samples/BoringLpSeller.sol/BoringLpSeller.dbg.json +0 -4
  603. package/build/artifacts/contracts/oracles/PtYtLpOracle/samples/BoringLpSeller.sol/BoringLpSeller.json +0 -10
  604. package/build/artifacts/contracts/oracles/PtYtLpOracle/samples/BoringPYUsdChainlinkAssetOracle.sol/BoringPYUsdChainlinkAssetOracle.dbg.json +0 -4
  605. package/build/artifacts/contracts/oracles/PtYtLpOracle/samples/BoringPYUsdChainlinkAssetOracle.sol/BoringPYUsdChainlinkAssetOracle.json +0 -183
  606. package/build/artifacts/contracts/oracles/PtYtLpOracle/samples/BoringPYUsdChainlinkSYOracle.sol/BoringPYUsdChainlinkSYOracle.dbg.json +0 -4
  607. package/build/artifacts/contracts/oracles/PtYtLpOracle/samples/BoringPYUsdChainlinkSYOracle.sol/BoringPYUsdChainlinkSYOracle.json +0 -183
  608. package/build/artifacts/contracts/oracles/PtYtLpOracle/samples/BoringPtSeller.sol/BoringPtSeller.dbg.json +0 -4
  609. package/build/artifacts/contracts/oracles/PtYtLpOracle/samples/BoringPtSeller.sol/BoringPtSeller.json +0 -10
  610. package/build/artifacts/contracts/oracles/internal/PendleBoringOneracle.sol/PendleBoringOneracle.dbg.json +0 -4
  611. package/build/artifacts/contracts/oracles/internal/PendleBoringOneracle.sol/PendleBoringOneracle.json +0 -24
  612. package/build/artifacts/contracts/oracles/internal/PendleBoringSolvBTCOneracle.sol/PendleBoringSolvBTCOneracle.dbg.json +0 -4
  613. package/build/artifacts/contracts/oracles/internal/PendleBoringSolvBTCOneracle.sol/PendleBoringSolvBTCOneracle.json +0 -24
  614. package/build/artifacts/contracts/oracles/internal/PendleRedStoneRateOracleAdapter.sol/PendleRedStoneRateOracleAdapter.dbg.json +0 -4
  615. package/build/artifacts/contracts/oracles/internal/PendleRedStoneRateOracleAdapter.sol/PendleRedStoneRateOracleAdapter.json +0 -79
  616. package/build/artifacts/contracts/oracles/internal/PendleSparkLinearDiscountOracle.sol/PTExpiry.dbg.json +0 -4
  617. package/build/artifacts/contracts/oracles/internal/PendleSparkLinearDiscountOracle.sol/PTExpiry.json +0 -24
  618. package/build/artifacts/contracts/oracles/internal/PendleSparkLinearDiscountOracle.sol/PendleSparkLinearDiscountOracle.dbg.json +0 -4
  619. package/build/artifacts/contracts/oracles/internal/PendleSparkLinearDiscountOracle.sol/PendleSparkLinearDiscountOracle.json +0 -131
  620. package/build/artifacts/contracts/oracles/internal/PendleSparkLinearDiscountOracleFactory.sol/PendleSparkLinearDiscountOracleFactory.dbg.json +0 -4
  621. package/build/artifacts/contracts/oracles/internal/PendleSparkLinearDiscountOracleFactory.sol/PendleSparkLinearDiscountOracleFactory.json +0 -84
  622. package/build/artifacts/contracts/router/ActionAddRemoveLiqV3.sol/ActionAddRemoveLiqV3.dbg.json +0 -4
  623. package/build/artifacts/contracts/router/ActionAddRemoveLiqV3.sol/ActionAddRemoveLiqV3.json +0 -3476
  624. package/build/artifacts/contracts/router/ActionCallbackV3.sol/ActionCallbackV3.dbg.json +0 -4
  625. package/build/artifacts/contracts/router/ActionCallbackV3.sol/ActionCallbackV3.json +0 -68
  626. package/build/artifacts/contracts/router/ActionMiscV3.sol/ActionMiscV3.dbg.json +0 -4
  627. package/build/artifacts/contracts/router/ActionMiscV3.sol/ActionMiscV3.json +0 -3006
  628. package/build/artifacts/contracts/router/ActionSimple.sol/ActionSimple.dbg.json +0 -4
  629. package/build/artifacts/contracts/router/ActionSimple.sol/ActionSimple.json +0 -1889
  630. package/build/artifacts/contracts/router/ActionStorageV4.sol/ActionStorageV4.dbg.json +0 -4
  631. package/build/artifacts/contracts/router/ActionStorageV4.sol/ActionStorageV4.json +0 -1451
  632. package/build/artifacts/contracts/router/ActionSwapPTV3.sol/ActionSwapPTV3.dbg.json +0 -4
  633. package/build/artifacts/contracts/router/ActionSwapPTV3.sol/ActionSwapPTV3.json +0 -2503
  634. package/build/artifacts/contracts/router/ActionSwapYTV3.sol/ActionSwapYTV3.dbg.json +0 -4
  635. package/build/artifacts/contracts/router/ActionSwapYTV3.sol/ActionSwapYTV3.json +0 -2503
  636. package/build/artifacts/contracts/router/PendleRouterV4.sol/PendleRouterV4.dbg.json +0 -4
  637. package/build/artifacts/contracts/router/PendleRouterV4.sol/PendleRouterV4.json +0 -35
  638. package/build/artifacts/contracts/router/Reflector.sol/Reflector.dbg.json +0 -4
  639. package/build/artifacts/contracts/router/Reflector.sol/Reflector.json +0 -34
  640. package/build/artifacts/contracts/router/RouterStorage.sol/RouterStorage.dbg.json +0 -4
  641. package/build/artifacts/contracts/router/RouterStorage.sol/RouterStorage.json +0 -10
  642. package/build/artifacts/contracts/router/base/ActionBase.sol/ActionBase.dbg.json +0 -4
  643. package/build/artifacts/contracts/router/base/ActionBase.sol/ActionBase.json +0 -10
  644. package/build/artifacts/contracts/router/base/ActionDelegateBase.sol/ActionDelegateBase.dbg.json +0 -4
  645. package/build/artifacts/contracts/router/base/ActionDelegateBase.sol/ActionDelegateBase.json +0 -10
  646. package/build/artifacts/contracts/router/base/CallbackHelper.sol/CallbackHelper.dbg.json +0 -4
  647. package/build/artifacts/contracts/router/base/CallbackHelper.sol/CallbackHelper.json +0 -10
  648. package/build/artifacts/contracts/router/math/ApproxStateLib.sol/ApproxStateLib.dbg.json +0 -4
  649. package/build/artifacts/contracts/router/math/ApproxStateLib.sol/ApproxStateLib.json +0 -10
  650. package/build/artifacts/contracts/router/math/MarketApproxEstimateLib.sol/MarketApproxEstimateLib.dbg.json +0 -4
  651. package/build/artifacts/contracts/router/math/MarketApproxEstimateLib.sol/MarketApproxEstimateLib.json +0 -10
  652. package/build/artifacts/contracts/router/math/MarketApproxLibOnchain.sol/MarketApproxPtInLibOnchain.dbg.json +0 -4
  653. package/build/artifacts/contracts/router/math/MarketApproxLibOnchain.sol/MarketApproxPtInLibOnchain.json +0 -10
  654. package/build/artifacts/contracts/router/math/MarketApproxLibOnchain.sol/MarketApproxPtOutLibOnchain.dbg.json +0 -4
  655. package/build/artifacts/contracts/router/math/MarketApproxLibOnchain.sol/MarketApproxPtOutLibOnchain.json +0 -10
  656. package/build/artifacts/contracts/router/math/MarketApproxLibV2.sol/MarketApproxPtInLibV2.dbg.json +0 -4
  657. package/build/artifacts/contracts/router/math/MarketApproxLibV2.sol/MarketApproxPtInLibV2.json +0 -10
  658. package/build/artifacts/contracts/router/math/MarketApproxLibV2.sol/MarketApproxPtOutLibV2.dbg.json +0 -4
  659. package/build/artifacts/contracts/router/math/MarketApproxLibV2.sol/MarketApproxPtOutLibV2.json +0 -10
  660. package/build/artifacts/contracts/router/swap-aggregator/IPSwapAggregator.sol/IPSwapAggregator.dbg.json +0 -4
  661. package/build/artifacts/contracts/router/swap-aggregator/IPSwapAggregator.sol/IPSwapAggregator.json +0 -81
  662. package/build/artifacts/contracts/router/swap-aggregator/OKXScaleHelper.sol/IOKXDexRouter.dbg.json +0 -4
  663. package/build/artifacts/contracts/router/swap-aggregator/OKXScaleHelper.sol/IOKXDexRouter.json +0 -407
  664. package/build/artifacts/contracts/router/swap-aggregator/OKXScaleHelper.sol/OKXScaleHelper.dbg.json +0 -4
  665. package/build/artifacts/contracts/router/swap-aggregator/OKXScaleHelper.sol/OKXScaleHelper.json +0 -10
  666. package/build/artifacts/contracts/router/swap-aggregator/ParaswapScaleHelper.sol/IAugustusV6.dbg.json +0 -4
  667. package/build/artifacts/contracts/router/swap-aggregator/ParaswapScaleHelper.sol/IAugustusV6.json +0 -577
  668. package/build/artifacts/contracts/router/swap-aggregator/ParaswapScaleHelper.sol/ParaswapScaleHelper.dbg.json +0 -4
  669. package/build/artifacts/contracts/router/swap-aggregator/ParaswapScaleHelper.sol/ParaswapScaleHelper.json +0 -10
  670. package/build/artifacts/contracts/router/swap-aggregator/PendleSwap.sol/IKyberScalingHelper.dbg.json +0 -4
  671. package/build/artifacts/contracts/router/swap-aggregator/PendleSwap.sol/IKyberScalingHelper.json +0 -40
  672. package/build/artifacts/contracts/router/swap-aggregator/PendleSwap.sol/IOdosRouterV2.dbg.json +0 -4
  673. package/build/artifacts/contracts/router/swap-aggregator/PendleSwap.sol/IOdosRouterV2.json +0 -82
  674. package/build/artifacts/contracts/router/swap-aggregator/PendleSwap.sol/PendleSwap.dbg.json +0 -4
  675. package/build/artifacts/contracts/router/swap-aggregator/PendleSwap.sol/PendleSwap.json +0 -280
  676. package/typechain-types/I1inchAggregationRouterV6.ts +0 -337
  677. package/typechain-types/IGenericSwapExactAmountIn.ts +0 -161
  678. package/typechain-types/IPendleCommonPoolDeployHelperV2.ts +0 -391
  679. package/typechain-types/MarketSwapNSeed.ts +0 -222
  680. package/typechain-types/PendleMarketFactory.ts +0 -906
  681. package/typechain-types/factories/I1inchAggregationRouterV6__factory.ts +0 -233
  682. package/typechain-types/factories/IGenericSwapExactAmountIn__factory.ts +0 -100
  683. package/typechain-types/factories/IPendleCommonPoolDeployHelperV2__factory.ts +0 -447
  684. package/typechain-types/factories/MarketSwapNSeed__factory.ts +0 -287
  685. package/typechain-types/factories/PendleMarketFactory__factory.ts +0 -748
  686. package/typechain-types/factories/PendleMarket__factory.ts +0 -1212
@@ -1,3941 +0,0 @@
1
- {
2
- "_format": "hh-sol-artifact-1",
3
- "contractName": "IPRouterStatic",
4
- "sourceName": "contracts/interfaces/IPRouterStatic.sol",
5
- "abi": [
6
- {
7
- "anonymous": false,
8
- "inputs": [
9
- {
10
- "indexed": true,
11
- "internalType": "address",
12
- "name": "caller",
13
- "type": "address"
14
- },
15
- {
16
- "indexed": true,
17
- "internalType": "address",
18
- "name": "market",
19
- "type": "address"
20
- },
21
- {
22
- "indexed": true,
23
- "internalType": "address",
24
- "name": "receiver",
25
- "type": "address"
26
- },
27
- {
28
- "indexed": false,
29
- "internalType": "uint256",
30
- "name": "netSyUsed",
31
- "type": "uint256"
32
- },
33
- {
34
- "indexed": false,
35
- "internalType": "uint256",
36
- "name": "netPtUsed",
37
- "type": "uint256"
38
- },
39
- {
40
- "indexed": false,
41
- "internalType": "uint256",
42
- "name": "netLpOut",
43
- "type": "uint256"
44
- }
45
- ],
46
- "name": "AddLiquidityDualSyAndPt",
47
- "type": "event"
48
- },
49
- {
50
- "anonymous": false,
51
- "inputs": [
52
- {
53
- "indexed": true,
54
- "internalType": "address",
55
- "name": "caller",
56
- "type": "address"
57
- },
58
- {
59
- "indexed": true,
60
- "internalType": "address",
61
- "name": "market",
62
- "type": "address"
63
- },
64
- {
65
- "indexed": true,
66
- "internalType": "address",
67
- "name": "tokenIn",
68
- "type": "address"
69
- },
70
- {
71
- "indexed": false,
72
- "internalType": "address",
73
- "name": "receiver",
74
- "type": "address"
75
- },
76
- {
77
- "indexed": false,
78
- "internalType": "uint256",
79
- "name": "netTokenUsed",
80
- "type": "uint256"
81
- },
82
- {
83
- "indexed": false,
84
- "internalType": "uint256",
85
- "name": "netPtUsed",
86
- "type": "uint256"
87
- },
88
- {
89
- "indexed": false,
90
- "internalType": "uint256",
91
- "name": "netLpOut",
92
- "type": "uint256"
93
- },
94
- {
95
- "indexed": false,
96
- "internalType": "uint256",
97
- "name": "netSyInterm",
98
- "type": "uint256"
99
- }
100
- ],
101
- "name": "AddLiquidityDualTokenAndPt",
102
- "type": "event"
103
- },
104
- {
105
- "anonymous": false,
106
- "inputs": [
107
- {
108
- "indexed": true,
109
- "internalType": "address",
110
- "name": "caller",
111
- "type": "address"
112
- },
113
- {
114
- "indexed": true,
115
- "internalType": "address",
116
- "name": "market",
117
- "type": "address"
118
- },
119
- {
120
- "indexed": true,
121
- "internalType": "address",
122
- "name": "receiver",
123
- "type": "address"
124
- },
125
- {
126
- "indexed": false,
127
- "internalType": "uint256",
128
- "name": "netPtIn",
129
- "type": "uint256"
130
- },
131
- {
132
- "indexed": false,
133
- "internalType": "uint256",
134
- "name": "netLpOut",
135
- "type": "uint256"
136
- }
137
- ],
138
- "name": "AddLiquiditySinglePt",
139
- "type": "event"
140
- },
141
- {
142
- "anonymous": false,
143
- "inputs": [
144
- {
145
- "indexed": true,
146
- "internalType": "address",
147
- "name": "caller",
148
- "type": "address"
149
- },
150
- {
151
- "indexed": true,
152
- "internalType": "address",
153
- "name": "market",
154
- "type": "address"
155
- },
156
- {
157
- "indexed": true,
158
- "internalType": "address",
159
- "name": "receiver",
160
- "type": "address"
161
- },
162
- {
163
- "indexed": false,
164
- "internalType": "uint256",
165
- "name": "netSyIn",
166
- "type": "uint256"
167
- },
168
- {
169
- "indexed": false,
170
- "internalType": "uint256",
171
- "name": "netLpOut",
172
- "type": "uint256"
173
- }
174
- ],
175
- "name": "AddLiquiditySingleSy",
176
- "type": "event"
177
- },
178
- {
179
- "anonymous": false,
180
- "inputs": [
181
- {
182
- "indexed": true,
183
- "internalType": "address",
184
- "name": "caller",
185
- "type": "address"
186
- },
187
- {
188
- "indexed": true,
189
- "internalType": "address",
190
- "name": "market",
191
- "type": "address"
192
- },
193
- {
194
- "indexed": true,
195
- "internalType": "address",
196
- "name": "receiver",
197
- "type": "address"
198
- },
199
- {
200
- "indexed": false,
201
- "internalType": "uint256",
202
- "name": "netSyIn",
203
- "type": "uint256"
204
- },
205
- {
206
- "indexed": false,
207
- "internalType": "uint256",
208
- "name": "netSyMintPy",
209
- "type": "uint256"
210
- },
211
- {
212
- "indexed": false,
213
- "internalType": "uint256",
214
- "name": "netLpOut",
215
- "type": "uint256"
216
- },
217
- {
218
- "indexed": false,
219
- "internalType": "uint256",
220
- "name": "netYtOut",
221
- "type": "uint256"
222
- }
223
- ],
224
- "name": "AddLiquiditySingleSyKeepYt",
225
- "type": "event"
226
- },
227
- {
228
- "anonymous": false,
229
- "inputs": [
230
- {
231
- "indexed": true,
232
- "internalType": "address",
233
- "name": "caller",
234
- "type": "address"
235
- },
236
- {
237
- "indexed": true,
238
- "internalType": "address",
239
- "name": "market",
240
- "type": "address"
241
- },
242
- {
243
- "indexed": true,
244
- "internalType": "address",
245
- "name": "token",
246
- "type": "address"
247
- },
248
- {
249
- "indexed": false,
250
- "internalType": "address",
251
- "name": "receiver",
252
- "type": "address"
253
- },
254
- {
255
- "indexed": false,
256
- "internalType": "uint256",
257
- "name": "netTokenIn",
258
- "type": "uint256"
259
- },
260
- {
261
- "indexed": false,
262
- "internalType": "uint256",
263
- "name": "netLpOut",
264
- "type": "uint256"
265
- },
266
- {
267
- "indexed": false,
268
- "internalType": "uint256",
269
- "name": "netSyInterm",
270
- "type": "uint256"
271
- }
272
- ],
273
- "name": "AddLiquiditySingleToken",
274
- "type": "event"
275
- },
276
- {
277
- "anonymous": false,
278
- "inputs": [
279
- {
280
- "indexed": true,
281
- "internalType": "address",
282
- "name": "caller",
283
- "type": "address"
284
- },
285
- {
286
- "indexed": true,
287
- "internalType": "address",
288
- "name": "market",
289
- "type": "address"
290
- },
291
- {
292
- "indexed": true,
293
- "internalType": "address",
294
- "name": "token",
295
- "type": "address"
296
- },
297
- {
298
- "indexed": false,
299
- "internalType": "address",
300
- "name": "receiver",
301
- "type": "address"
302
- },
303
- {
304
- "indexed": false,
305
- "internalType": "uint256",
306
- "name": "netTokenIn",
307
- "type": "uint256"
308
- },
309
- {
310
- "indexed": false,
311
- "internalType": "uint256",
312
- "name": "netLpOut",
313
- "type": "uint256"
314
- },
315
- {
316
- "indexed": false,
317
- "internalType": "uint256",
318
- "name": "netYtOut",
319
- "type": "uint256"
320
- },
321
- {
322
- "indexed": false,
323
- "internalType": "uint256",
324
- "name": "netSyMintPy",
325
- "type": "uint256"
326
- },
327
- {
328
- "indexed": false,
329
- "internalType": "uint256",
330
- "name": "netSyInterm",
331
- "type": "uint256"
332
- }
333
- ],
334
- "name": "AddLiquiditySingleTokenKeepYt",
335
- "type": "event"
336
- },
337
- {
338
- "anonymous": false,
339
- "inputs": [
340
- {
341
- "indexed": true,
342
- "internalType": "address",
343
- "name": "caller",
344
- "type": "address"
345
- },
346
- {
347
- "indexed": true,
348
- "internalType": "address",
349
- "name": "market",
350
- "type": "address"
351
- },
352
- {
353
- "indexed": true,
354
- "internalType": "address",
355
- "name": "receiver",
356
- "type": "address"
357
- },
358
- {
359
- "indexed": false,
360
- "internalType": "uint256",
361
- "name": "netLpIn",
362
- "type": "uint256"
363
- },
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
- ],
392
- "indexed": false,
393
- "internalType": "struct ExitPostExpReturnParams",
394
- "name": "params",
395
- "type": "tuple"
396
- }
397
- ],
398
- "name": "ExitPostExpToSy",
399
- "type": "event"
400
- },
401
- {
402
- "anonymous": false,
403
- "inputs": [
404
- {
405
- "indexed": true,
406
- "internalType": "address",
407
- "name": "caller",
408
- "type": "address"
409
- },
410
- {
411
- "indexed": true,
412
- "internalType": "address",
413
- "name": "market",
414
- "type": "address"
415
- },
416
- {
417
- "indexed": true,
418
- "internalType": "address",
419
- "name": "token",
420
- "type": "address"
421
- },
422
- {
423
- "indexed": false,
424
- "internalType": "address",
425
- "name": "receiver",
426
- "type": "address"
427
- },
428
- {
429
- "indexed": false,
430
- "internalType": "uint256",
431
- "name": "netLpIn",
432
- "type": "uint256"
433
- },
434
- {
435
- "indexed": false,
436
- "internalType": "uint256",
437
- "name": "totalTokenOut",
438
- "type": "uint256"
439
- },
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
- ],
468
- "indexed": false,
469
- "internalType": "struct ExitPostExpReturnParams",
470
- "name": "params",
471
- "type": "tuple"
472
- }
473
- ],
474
- "name": "ExitPostExpToToken",
475
- "type": "event"
476
- },
477
- {
478
- "anonymous": false,
479
- "inputs": [
480
- {
481
- "indexed": true,
482
- "internalType": "address",
483
- "name": "caller",
484
- "type": "address"
485
- },
486
- {
487
- "indexed": true,
488
- "internalType": "address",
489
- "name": "market",
490
- "type": "address"
491
- },
492
- {
493
- "indexed": true,
494
- "internalType": "address",
495
- "name": "receiver",
496
- "type": "address"
497
- },
498
- {
499
- "indexed": false,
500
- "internalType": "uint256",
501
- "name": "netLpIn",
502
- "type": "uint256"
503
- },
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
- ],
552
- "indexed": false,
553
- "internalType": "struct ExitPreExpReturnParams",
554
- "name": "params",
555
- "type": "tuple"
556
- }
557
- ],
558
- "name": "ExitPreExpToSy",
559
- "type": "event"
560
- },
561
- {
562
- "anonymous": false,
563
- "inputs": [
564
- {
565
- "indexed": true,
566
- "internalType": "address",
567
- "name": "caller",
568
- "type": "address"
569
- },
570
- {
571
- "indexed": true,
572
- "internalType": "address",
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",
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 ExitPreExpReturnParams",
650
- "name": "params",
651
- "type": "tuple"
652
- }
653
- ],
654
- "name": "ExitPreExpToToken",
655
- "type": "event"
656
- },
657
- {
658
- "anonymous": false,
659
- "inputs": [
660
- {
661
- "indexed": true,
662
- "internalType": "address",
663
- "name": "caller",
664
- "type": "address"
665
- },
666
- {
667
- "indexed": true,
668
- "internalType": "address",
669
- "name": "receiver",
670
- "type": "address"
671
- },
672
- {
673
- "indexed": true,
674
- "internalType": "address",
675
- "name": "YT",
676
- "type": "address"
677
- },
678
- {
679
- "indexed": false,
680
- "internalType": "uint256",
681
- "name": "netSyIn",
682
- "type": "uint256"
683
- },
684
- {
685
- "indexed": false,
686
- "internalType": "uint256",
687
- "name": "netPyOut",
688
- "type": "uint256"
689
- }
690
- ],
691
- "name": "MintPyFromSy",
692
- "type": "event"
693
- },
694
- {
695
- "anonymous": false,
696
- "inputs": [
697
- {
698
- "indexed": true,
699
- "internalType": "address",
700
- "name": "caller",
701
- "type": "address"
702
- },
703
- {
704
- "indexed": true,
705
- "internalType": "address",
706
- "name": "tokenIn",
707
- "type": "address"
708
- },
709
- {
710
- "indexed": true,
711
- "internalType": "address",
712
- "name": "YT",
713
- "type": "address"
714
- },
715
- {
716
- "indexed": false,
717
- "internalType": "address",
718
- "name": "receiver",
719
- "type": "address"
720
- },
721
- {
722
- "indexed": false,
723
- "internalType": "uint256",
724
- "name": "netTokenIn",
725
- "type": "uint256"
726
- },
727
- {
728
- "indexed": false,
729
- "internalType": "uint256",
730
- "name": "netPyOut",
731
- "type": "uint256"
732
- },
733
- {
734
- "indexed": false,
735
- "internalType": "uint256",
736
- "name": "netSyInterm",
737
- "type": "uint256"
738
- }
739
- ],
740
- "name": "MintPyFromToken",
741
- "type": "event"
742
- },
743
- {
744
- "anonymous": false,
745
- "inputs": [
746
- {
747
- "indexed": true,
748
- "internalType": "address",
749
- "name": "caller",
750
- "type": "address"
751
- },
752
- {
753
- "indexed": true,
754
- "internalType": "address",
755
- "name": "tokenIn",
756
- "type": "address"
757
- },
758
- {
759
- "indexed": true,
760
- "internalType": "address",
761
- "name": "SY",
762
- "type": "address"
763
- },
764
- {
765
- "indexed": false,
766
- "internalType": "address",
767
- "name": "receiver",
768
- "type": "address"
769
- },
770
- {
771
- "indexed": false,
772
- "internalType": "uint256",
773
- "name": "netTokenIn",
774
- "type": "uint256"
775
- },
776
- {
777
- "indexed": false,
778
- "internalType": "uint256",
779
- "name": "netSyOut",
780
- "type": "uint256"
781
- }
782
- ],
783
- "name": "MintSyFromToken",
784
- "type": "event"
785
- },
786
- {
787
- "anonymous": false,
788
- "inputs": [
789
- {
790
- "indexed": true,
791
- "internalType": "address",
792
- "name": "previousOwner",
793
- "type": "address"
794
- },
795
- {
796
- "indexed": true,
797
- "internalType": "address",
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",
812
- "type": "address"
813
- },
814
- {
815
- "indexed": true,
816
- "internalType": "address",
817
- "name": "receiver",
818
- "type": "address"
819
- },
820
- {
821
- "indexed": true,
822
- "internalType": "address",
823
- "name": "YT",
824
- "type": "address"
825
- },
826
- {
827
- "indexed": false,
828
- "internalType": "uint256",
829
- "name": "netPyIn",
830
- "type": "uint256"
831
- },
832
- {
833
- "indexed": false,
834
- "internalType": "uint256",
835
- "name": "netSyOut",
836
- "type": "uint256"
837
- }
838
- ],
839
- "name": "RedeemPyToSy",
840
- "type": "event"
841
- },
842
- {
843
- "anonymous": false,
844
- "inputs": [
845
- {
846
- "indexed": true,
847
- "internalType": "address",
848
- "name": "caller",
849
- "type": "address"
850
- },
851
- {
852
- "indexed": true,
853
- "internalType": "address",
854
- "name": "tokenOut",
855
- "type": "address"
856
- },
857
- {
858
- "indexed": true,
859
- "internalType": "address",
860
- "name": "YT",
861
- "type": "address"
862
- },
863
- {
864
- "indexed": false,
865
- "internalType": "address",
866
- "name": "receiver",
867
- "type": "address"
868
- },
869
- {
870
- "indexed": false,
871
- "internalType": "uint256",
872
- "name": "netPyIn",
873
- "type": "uint256"
874
- },
875
- {
876
- "indexed": false,
877
- "internalType": "uint256",
878
- "name": "netTokenOut",
879
- "type": "uint256"
880
- },
881
- {
882
- "indexed": false,
883
- "internalType": "uint256",
884
- "name": "netSyInterm",
885
- "type": "uint256"
886
- }
887
- ],
888
- "name": "RedeemPyToToken",
889
- "type": "event"
890
- },
891
- {
892
- "anonymous": false,
893
- "inputs": [
894
- {
895
- "indexed": true,
896
- "internalType": "address",
897
- "name": "caller",
898
- "type": "address"
899
- },
900
- {
901
- "indexed": true,
902
- "internalType": "address",
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",
1045
- "type": "address"
1046
- },
1047
- {
1048
- "indexed": true,
1049
- "internalType": "address",
1050
- "name": "receiver",
1051
- "type": "address"
1052
- },
1053
- {
1054
- "indexed": false,
1055
- "internalType": "uint256",
1056
- "name": "netLpToRemove",
1057
- "type": "uint256"
1058
- },
1059
- {
1060
- "indexed": false,
1061
- "internalType": "uint256",
1062
- "name": "netPtOut",
1063
- "type": "uint256"
1064
- }
1065
- ],
1066
- "name": "RemoveLiquiditySinglePt",
1067
- "type": "event"
1068
- },
1069
- {
1070
- "anonymous": false,
1071
- "inputs": [
1072
- {
1073
- "indexed": true,
1074
- "internalType": "address",
1075
- "name": "caller",
1076
- "type": "address"
1077
- },
1078
- {
1079
- "indexed": true,
1080
- "internalType": "address",
1081
- "name": "market",
1082
- "type": "address"
1083
- },
1084
- {
1085
- "indexed": true,
1086
- "internalType": "address",
1087
- "name": "receiver",
1088
- "type": "address"
1089
- },
1090
- {
1091
- "indexed": false,
1092
- "internalType": "uint256",
1093
- "name": "netLpToRemove",
1094
- "type": "uint256"
1095
- },
1096
- {
1097
- "indexed": false,
1098
- "internalType": "uint256",
1099
- "name": "netSyOut",
1100
- "type": "uint256"
1101
- }
1102
- ],
1103
- "name": "RemoveLiquiditySingleSy",
1104
- "type": "event"
1105
- },
1106
- {
1107
- "anonymous": false,
1108
- "inputs": [
1109
- {
1110
- "indexed": true,
1111
- "internalType": "address",
1112
- "name": "caller",
1113
- "type": "address"
1114
- },
1115
- {
1116
- "indexed": true,
1117
- "internalType": "address",
1118
- "name": "market",
1119
- "type": "address"
1120
- },
1121
- {
1122
- "indexed": true,
1123
- "internalType": "address",
1124
- "name": "token",
1125
- "type": "address"
1126
- },
1127
- {
1128
- "indexed": false,
1129
- "internalType": "address",
1130
- "name": "receiver",
1131
- "type": "address"
1132
- },
1133
- {
1134
- "indexed": false,
1135
- "internalType": "uint256",
1136
- "name": "netLpToRemove",
1137
- "type": "uint256"
1138
- },
1139
- {
1140
- "indexed": false,
1141
- "internalType": "uint256",
1142
- "name": "netTokenOut",
1143
- "type": "uint256"
1144
- },
1145
- {
1146
- "indexed": false,
1147
- "internalType": "uint256",
1148
- "name": "netSyInterm",
1149
- "type": "uint256"
1150
- }
1151
- ],
1152
- "name": "RemoveLiquiditySingleToken",
1153
- "type": "event"
1154
- },
1155
- {
1156
- "anonymous": false,
1157
- "inputs": [
1158
- {
1159
- "indexed": true,
1160
- "internalType": "bytes4",
1161
- "name": "selector",
1162
- "type": "bytes4"
1163
- },
1164
- {
1165
- "indexed": true,
1166
- "internalType": "address",
1167
- "name": "facet",
1168
- "type": "address"
1169
- }
1170
- ],
1171
- "name": "SelectorToFacetSet",
1172
- "type": "event"
1173
- },
1174
- {
1175
- "anonymous": false,
1176
- "inputs": [
1177
- {
1178
- "indexed": true,
1179
- "internalType": "address",
1180
- "name": "caller",
1181
- "type": "address"
1182
- },
1183
- {
1184
- "indexed": true,
1185
- "internalType": "address",
1186
- "name": "market",
1187
- "type": "address"
1188
- },
1189
- {
1190
- "indexed": true,
1191
- "internalType": "address",
1192
- "name": "receiver",
1193
- "type": "address"
1194
- },
1195
- {
1196
- "indexed": false,
1197
- "internalType": "int256",
1198
- "name": "netPtToAccount",
1199
- "type": "int256"
1200
- },
1201
- {
1202
- "indexed": false,
1203
- "internalType": "int256",
1204
- "name": "netSyToAccount",
1205
- "type": "int256"
1206
- }
1207
- ],
1208
- "name": "SwapPtAndSy",
1209
- "type": "event"
1210
- },
1211
- {
1212
- "anonymous": false,
1213
- "inputs": [
1214
- {
1215
- "indexed": true,
1216
- "internalType": "address",
1217
- "name": "caller",
1218
- "type": "address"
1219
- },
1220
- {
1221
- "indexed": true,
1222
- "internalType": "address",
1223
- "name": "market",
1224
- "type": "address"
1225
- },
1226
- {
1227
- "indexed": true,
1228
- "internalType": "address",
1229
- "name": "token",
1230
- "type": "address"
1231
- },
1232
- {
1233
- "indexed": false,
1234
- "internalType": "address",
1235
- "name": "receiver",
1236
- "type": "address"
1237
- },
1238
- {
1239
- "indexed": false,
1240
- "internalType": "int256",
1241
- "name": "netPtToAccount",
1242
- "type": "int256"
1243
- },
1244
- {
1245
- "indexed": false,
1246
- "internalType": "int256",
1247
- "name": "netTokenToAccount",
1248
- "type": "int256"
1249
- },
1250
- {
1251
- "indexed": false,
1252
- "internalType": "uint256",
1253
- "name": "netSyInterm",
1254
- "type": "uint256"
1255
- }
1256
- ],
1257
- "name": "SwapPtAndToken",
1258
- "type": "event"
1259
- },
1260
- {
1261
- "anonymous": false,
1262
- "inputs": [
1263
- {
1264
- "indexed": true,
1265
- "internalType": "address",
1266
- "name": "caller",
1267
- "type": "address"
1268
- },
1269
- {
1270
- "indexed": true,
1271
- "internalType": "address",
1272
- "name": "market",
1273
- "type": "address"
1274
- },
1275
- {
1276
- "indexed": true,
1277
- "internalType": "address",
1278
- "name": "receiver",
1279
- "type": "address"
1280
- },
1281
- {
1282
- "indexed": false,
1283
- "internalType": "int256",
1284
- "name": "netYtToAccount",
1285
- "type": "int256"
1286
- },
1287
- {
1288
- "indexed": false,
1289
- "internalType": "int256",
1290
- "name": "netSyToAccount",
1291
- "type": "int256"
1292
- }
1293
- ],
1294
- "name": "SwapYtAndSy",
1295
- "type": "event"
1296
- },
1297
- {
1298
- "anonymous": false,
1299
- "inputs": [
1300
- {
1301
- "indexed": true,
1302
- "internalType": "address",
1303
- "name": "caller",
1304
- "type": "address"
1305
- },
1306
- {
1307
- "indexed": true,
1308
- "internalType": "address",
1309
- "name": "market",
1310
- "type": "address"
1311
- },
1312
- {
1313
- "indexed": true,
1314
- "internalType": "address",
1315
- "name": "token",
1316
- "type": "address"
1317
- },
1318
- {
1319
- "indexed": false,
1320
- "internalType": "address",
1321
- "name": "receiver",
1322
- "type": "address"
1323
- },
1324
- {
1325
- "indexed": false,
1326
- "internalType": "int256",
1327
- "name": "netYtToAccount",
1328
- "type": "int256"
1329
- },
1330
- {
1331
- "indexed": false,
1332
- "internalType": "int256",
1333
- "name": "netTokenToAccount",
1334
- "type": "int256"
1335
- },
1336
- {
1337
- "indexed": false,
1338
- "internalType": "uint256",
1339
- "name": "netSyInterm",
1340
- "type": "uint256"
1341
- }
1342
- ],
1343
- "name": "SwapYtAndToken",
1344
- "type": "event"
1345
- },
1346
- {
1347
- "inputs": [
1348
- {
1349
- "internalType": "address",
1350
- "name": "market",
1351
- "type": "address"
1352
- },
1353
- {
1354
- "internalType": "uint256",
1355
- "name": "netSyDesired",
1356
- "type": "uint256"
1357
- },
1358
- {
1359
- "internalType": "uint256",
1360
- "name": "netPtDesired",
1361
- "type": "uint256"
1362
- }
1363
- ],
1364
- "name": "addLiquidityDualSyAndPtStatic",
1365
- "outputs": [
1366
- {
1367
- "internalType": "uint256",
1368
- "name": "netLpOut",
1369
- "type": "uint256"
1370
- },
1371
- {
1372
- "internalType": "uint256",
1373
- "name": "netSyUsed",
1374
- "type": "uint256"
1375
- },
1376
- {
1377
- "internalType": "uint256",
1378
- "name": "netPtUsed",
1379
- "type": "uint256"
1380
- }
1381
- ],
1382
- "stateMutability": "view",
1383
- "type": "function"
1384
- },
1385
- {
1386
- "inputs": [
1387
- {
1388
- "internalType": "address",
1389
- "name": "market",
1390
- "type": "address"
1391
- },
1392
- {
1393
- "internalType": "address",
1394
- "name": "tokenIn",
1395
- "type": "address"
1396
- },
1397
- {
1398
- "internalType": "uint256",
1399
- "name": "netTokenDesired",
1400
- "type": "uint256"
1401
- },
1402
- {
1403
- "internalType": "uint256",
1404
- "name": "netPtDesired",
1405
- "type": "uint256"
1406
- }
1407
- ],
1408
- "name": "addLiquidityDualTokenAndPtStatic",
1409
- "outputs": [
1410
- {
1411
- "internalType": "uint256",
1412
- "name": "netLpOut",
1413
- "type": "uint256"
1414
- },
1415
- {
1416
- "internalType": "uint256",
1417
- "name": "netTokenUsed",
1418
- "type": "uint256"
1419
- },
1420
- {
1421
- "internalType": "uint256",
1422
- "name": "netPtUsed",
1423
- "type": "uint256"
1424
- },
1425
- {
1426
- "internalType": "uint256",
1427
- "name": "netSyUsed",
1428
- "type": "uint256"
1429
- },
1430
- {
1431
- "internalType": "uint256",
1432
- "name": "netSyDesired",
1433
- "type": "uint256"
1434
- }
1435
- ],
1436
- "stateMutability": "view",
1437
- "type": "function"
1438
- },
1439
- {
1440
- "inputs": [
1441
- {
1442
- "internalType": "address",
1443
- "name": "market",
1444
- "type": "address"
1445
- },
1446
- {
1447
- "internalType": "uint256",
1448
- "name": "netPtIn",
1449
- "type": "uint256"
1450
- }
1451
- ],
1452
- "name": "addLiquiditySinglePtStatic",
1453
- "outputs": [
1454
- {
1455
- "internalType": "uint256",
1456
- "name": "netLpOut",
1457
- "type": "uint256"
1458
- },
1459
- {
1460
- "internalType": "uint256",
1461
- "name": "netPtToSwap",
1462
- "type": "uint256"
1463
- },
1464
- {
1465
- "internalType": "uint256",
1466
- "name": "netSyFee",
1467
- "type": "uint256"
1468
- },
1469
- {
1470
- "internalType": "uint256",
1471
- "name": "priceImpact",
1472
- "type": "uint256"
1473
- },
1474
- {
1475
- "internalType": "uint256",
1476
- "name": "exchangeRateAfter",
1477
- "type": "uint256"
1478
- },
1479
- {
1480
- "internalType": "uint256",
1481
- "name": "netSyFromSwap",
1482
- "type": "uint256"
1483
- }
1484
- ],
1485
- "stateMutability": "view",
1486
- "type": "function"
1487
- },
1488
- {
1489
- "inputs": [
1490
- {
1491
- "internalType": "address",
1492
- "name": "market",
1493
- "type": "address"
1494
- },
1495
- {
1496
- "internalType": "uint256",
1497
- "name": "netSyIn",
1498
- "type": "uint256"
1499
- }
1500
- ],
1501
- "name": "addLiquiditySingleSyKeepYtStatic",
1502
- "outputs": [
1503
- {
1504
- "internalType": "uint256",
1505
- "name": "netLpOut",
1506
- "type": "uint256"
1507
- },
1508
- {
1509
- "internalType": "uint256",
1510
- "name": "netYtOut",
1511
- "type": "uint256"
1512
- },
1513
- {
1514
- "internalType": "uint256",
1515
- "name": "netSyToPY",
1516
- "type": "uint256"
1517
- }
1518
- ],
1519
- "stateMutability": "view",
1520
- "type": "function"
1521
- },
1522
- {
1523
- "inputs": [
1524
- {
1525
- "internalType": "address",
1526
- "name": "market",
1527
- "type": "address"
1528
- },
1529
- {
1530
- "internalType": "uint256",
1531
- "name": "netSyIn",
1532
- "type": "uint256"
1533
- }
1534
- ],
1535
- "name": "addLiquiditySingleSyStatic",
1536
- "outputs": [
1537
- {
1538
- "internalType": "uint256",
1539
- "name": "netLpOut",
1540
- "type": "uint256"
1541
- },
1542
- {
1543
- "internalType": "uint256",
1544
- "name": "netPtFromSwap",
1545
- "type": "uint256"
1546
- },
1547
- {
1548
- "internalType": "uint256",
1549
- "name": "netSyFee",
1550
- "type": "uint256"
1551
- },
1552
- {
1553
- "internalType": "uint256",
1554
- "name": "priceImpact",
1555
- "type": "uint256"
1556
- },
1557
- {
1558
- "internalType": "uint256",
1559
- "name": "exchangeRateAfter",
1560
- "type": "uint256"
1561
- },
1562
- {
1563
- "internalType": "uint256",
1564
- "name": "netSyToSwap",
1565
- "type": "uint256"
1566
- }
1567
- ],
1568
- "stateMutability": "view",
1569
- "type": "function"
1570
- },
1571
- {
1572
- "inputs": [
1573
- {
1574
- "internalType": "address",
1575
- "name": "market",
1576
- "type": "address"
1577
- },
1578
- {
1579
- "internalType": "address",
1580
- "name": "tokenIn",
1581
- "type": "address"
1582
- },
1583
- {
1584
- "internalType": "uint256",
1585
- "name": "netTokenIn",
1586
- "type": "uint256"
1587
- }
1588
- ],
1589
- "name": "addLiquiditySingleTokenKeepYtStatic",
1590
- "outputs": [
1591
- {
1592
- "internalType": "uint256",
1593
- "name": "netLpOut",
1594
- "type": "uint256"
1595
- },
1596
- {
1597
- "internalType": "uint256",
1598
- "name": "netYtOut",
1599
- "type": "uint256"
1600
- },
1601
- {
1602
- "internalType": "uint256",
1603
- "name": "netSyMinted",
1604
- "type": "uint256"
1605
- },
1606
- {
1607
- "internalType": "uint256",
1608
- "name": "netSyToPY",
1609
- "type": "uint256"
1610
- }
1611
- ],
1612
- "stateMutability": "view",
1613
- "type": "function"
1614
- },
1615
- {
1616
- "inputs": [
1617
- {
1618
- "internalType": "address",
1619
- "name": "market",
1620
- "type": "address"
1621
- },
1622
- {
1623
- "internalType": "address",
1624
- "name": "tokenIn",
1625
- "type": "address"
1626
- },
1627
- {
1628
- "internalType": "uint256",
1629
- "name": "netTokenIn",
1630
- "type": "uint256"
1631
- }
1632
- ],
1633
- "name": "addLiquiditySingleTokenStatic",
1634
- "outputs": [
1635
- {
1636
- "internalType": "uint256",
1637
- "name": "netLpOut",
1638
- "type": "uint256"
1639
- },
1640
- {
1641
- "internalType": "uint256",
1642
- "name": "netPtFromSwap",
1643
- "type": "uint256"
1644
- },
1645
- {
1646
- "internalType": "uint256",
1647
- "name": "netSyFee",
1648
- "type": "uint256"
1649
- },
1650
- {
1651
- "internalType": "uint256",
1652
- "name": "priceImpact",
1653
- "type": "uint256"
1654
- },
1655
- {
1656
- "internalType": "uint256",
1657
- "name": "exchangeRateAfter",
1658
- "type": "uint256"
1659
- },
1660
- {
1661
- "internalType": "uint256",
1662
- "name": "netSyMinted",
1663
- "type": "uint256"
1664
- },
1665
- {
1666
- "internalType": "uint256",
1667
- "name": "netSyToSwap",
1668
- "type": "uint256"
1669
- }
1670
- ],
1671
- "stateMutability": "view",
1672
- "type": "function"
1673
- },
1674
- {
1675
- "inputs": [
1676
- {
1677
- "internalType": "address",
1678
- "name": "market",
1679
- "type": "address"
1680
- },
1681
- {
1682
- "internalType": "int256",
1683
- "name": "netPtOut",
1684
- "type": "int256"
1685
- }
1686
- ],
1687
- "name": "calcPriceImpactPY",
1688
- "outputs": [
1689
- {
1690
- "internalType": "uint256",
1691
- "name": "",
1692
- "type": "uint256"
1693
- }
1694
- ],
1695
- "stateMutability": "view",
1696
- "type": "function"
1697
- },
1698
- {
1699
- "inputs": [
1700
- {
1701
- "internalType": "address",
1702
- "name": "market",
1703
- "type": "address"
1704
- },
1705
- {
1706
- "internalType": "int256",
1707
- "name": "netPtOut",
1708
- "type": "int256"
1709
- }
1710
- ],
1711
- "name": "calcPriceImpactPt",
1712
- "outputs": [
1713
- {
1714
- "internalType": "uint256",
1715
- "name": "",
1716
- "type": "uint256"
1717
- }
1718
- ],
1719
- "stateMutability": "view",
1720
- "type": "function"
1721
- },
1722
- {
1723
- "inputs": [
1724
- {
1725
- "internalType": "address",
1726
- "name": "market",
1727
- "type": "address"
1728
- },
1729
- {
1730
- "internalType": "int256",
1731
- "name": "netPtOut",
1732
- "type": "int256"
1733
- }
1734
- ],
1735
- "name": "calcPriceImpactYt",
1736
- "outputs": [
1737
- {
1738
- "internalType": "uint256",
1739
- "name": "",
1740
- "type": "uint256"
1741
- }
1742
- ],
1743
- "stateMutability": "view",
1744
- "type": "function"
1745
- },
1746
- {
1747
- "inputs": [],
1748
- "name": "claimOwnership",
1749
- "outputs": [],
1750
- "stateMutability": "nonpayable",
1751
- "type": "function"
1752
- },
1753
- {
1754
- "inputs": [
1755
- {
1756
- "internalType": "bytes4",
1757
- "name": "selector",
1758
- "type": "bytes4"
1759
- }
1760
- ],
1761
- "name": "facetAddress",
1762
- "outputs": [
1763
- {
1764
- "internalType": "address",
1765
- "name": "",
1766
- "type": "address"
1767
- }
1768
- ],
1769
- "stateMutability": "view",
1770
- "type": "function"
1771
- },
1772
- {
1773
- "inputs": [
1774
- {
1775
- "internalType": "address",
1776
- "name": "SY",
1777
- "type": "address"
1778
- },
1779
- {
1780
- "internalType": "address",
1781
- "name": "tokenIn",
1782
- "type": "address"
1783
- },
1784
- {
1785
- "internalType": "uint256",
1786
- "name": "netSyOut",
1787
- "type": "uint256"
1788
- }
1789
- ],
1790
- "name": "getAmountTokenToMintSy",
1791
- "outputs": [
1792
- {
1793
- "internalType": "uint256",
1794
- "name": "netTokenIn",
1795
- "type": "uint256"
1796
- }
1797
- ],
1798
- "stateMutability": "view",
1799
- "type": "function"
1800
- },
1801
- {
1802
- "inputs": [],
1803
- "name": "getDefaultApproxParams",
1804
- "outputs": [
1805
- {
1806
- "components": [
1807
- {
1808
- "internalType": "uint256",
1809
- "name": "guessMin",
1810
- "type": "uint256"
1811
- },
1812
- {
1813
- "internalType": "uint256",
1814
- "name": "guessMax",
1815
- "type": "uint256"
1816
- },
1817
- {
1818
- "internalType": "uint256",
1819
- "name": "guessOffchain",
1820
- "type": "uint256"
1821
- },
1822
- {
1823
- "internalType": "uint256",
1824
- "name": "maxIteration",
1825
- "type": "uint256"
1826
- },
1827
- {
1828
- "internalType": "uint256",
1829
- "name": "eps",
1830
- "type": "uint256"
1831
- }
1832
- ],
1833
- "internalType": "struct ApproxParams",
1834
- "name": "",
1835
- "type": "tuple"
1836
- }
1837
- ],
1838
- "stateMutability": "view",
1839
- "type": "function"
1840
- },
1841
- {
1842
- "inputs": [
1843
- {
1844
- "internalType": "address",
1845
- "name": "market",
1846
- "type": "address"
1847
- }
1848
- ],
1849
- "name": "getLpToAssetRate",
1850
- "outputs": [
1851
- {
1852
- "internalType": "uint256",
1853
- "name": "",
1854
- "type": "uint256"
1855
- }
1856
- ],
1857
- "stateMutability": "view",
1858
- "type": "function"
1859
- },
1860
- {
1861
- "inputs": [
1862
- {
1863
- "internalType": "address",
1864
- "name": "market",
1865
- "type": "address"
1866
- }
1867
- ],
1868
- "name": "getLpToSyRate",
1869
- "outputs": [
1870
- {
1871
- "internalType": "uint256",
1872
- "name": "",
1873
- "type": "uint256"
1874
- }
1875
- ],
1876
- "stateMutability": "view",
1877
- "type": "function"
1878
- },
1879
- {
1880
- "inputs": [
1881
- {
1882
- "internalType": "address",
1883
- "name": "market",
1884
- "type": "address"
1885
- }
1886
- ],
1887
- "name": "getMarketState",
1888
- "outputs": [
1889
- {
1890
- "internalType": "address",
1891
- "name": "pt",
1892
- "type": "address"
1893
- },
1894
- {
1895
- "internalType": "address",
1896
- "name": "yt",
1897
- "type": "address"
1898
- },
1899
- {
1900
- "internalType": "address",
1901
- "name": "sy",
1902
- "type": "address"
1903
- },
1904
- {
1905
- "internalType": "int256",
1906
- "name": "impliedYield",
1907
- "type": "int256"
1908
- },
1909
- {
1910
- "internalType": "uint256",
1911
- "name": "marketExchangeRateExcludeFee",
1912
- "type": "uint256"
1913
- },
1914
- {
1915
- "components": [
1916
- {
1917
- "internalType": "int256",
1918
- "name": "totalPt",
1919
- "type": "int256"
1920
- },
1921
- {
1922
- "internalType": "int256",
1923
- "name": "totalSy",
1924
- "type": "int256"
1925
- },
1926
- {
1927
- "internalType": "int256",
1928
- "name": "totalLp",
1929
- "type": "int256"
1930
- },
1931
- {
1932
- "internalType": "address",
1933
- "name": "treasury",
1934
- "type": "address"
1935
- },
1936
- {
1937
- "internalType": "int256",
1938
- "name": "scalarRoot",
1939
- "type": "int256"
1940
- },
1941
- {
1942
- "internalType": "uint256",
1943
- "name": "expiry",
1944
- "type": "uint256"
1945
- },
1946
- {
1947
- "internalType": "uint256",
1948
- "name": "lnFeeRateRoot",
1949
- "type": "uint256"
1950
- },
1951
- {
1952
- "internalType": "uint256",
1953
- "name": "reserveFeePercent",
1954
- "type": "uint256"
1955
- },
1956
- {
1957
- "internalType": "uint256",
1958
- "name": "lastLnImpliedRate",
1959
- "type": "uint256"
1960
- }
1961
- ],
1962
- "internalType": "struct MarketState",
1963
- "name": "state",
1964
- "type": "tuple"
1965
- }
1966
- ],
1967
- "stateMutability": "view",
1968
- "type": "function"
1969
- },
1970
- {
1971
- "inputs": [],
1972
- "name": "getOwnerAndPendingOwner",
1973
- "outputs": [
1974
- {
1975
- "internalType": "address",
1976
- "name": "_owner",
1977
- "type": "address"
1978
- },
1979
- {
1980
- "internalType": "address",
1981
- "name": "_pendingOwner",
1982
- "type": "address"
1983
- }
1984
- ],
1985
- "stateMutability": "view",
1986
- "type": "function"
1987
- },
1988
- {
1989
- "inputs": [
1990
- {
1991
- "internalType": "address",
1992
- "name": "py",
1993
- "type": "address"
1994
- }
1995
- ],
1996
- "name": "getPY",
1997
- "outputs": [
1998
- {
1999
- "internalType": "address",
2000
- "name": "pt",
2001
- "type": "address"
2002
- },
2003
- {
2004
- "internalType": "address",
2005
- "name": "yt",
2006
- "type": "address"
2007
- }
2008
- ],
2009
- "stateMutability": "view",
2010
- "type": "function"
2011
- },
2012
- {
2013
- "inputs": [
2014
- {
2015
- "internalType": "address",
2016
- "name": "market",
2017
- "type": "address"
2018
- }
2019
- ],
2020
- "name": "getPtToAssetRate",
2021
- "outputs": [
2022
- {
2023
- "internalType": "uint256",
2024
- "name": "",
2025
- "type": "uint256"
2026
- }
2027
- ],
2028
- "stateMutability": "view",
2029
- "type": "function"
2030
- },
2031
- {
2032
- "inputs": [
2033
- {
2034
- "internalType": "address",
2035
- "name": "market",
2036
- "type": "address"
2037
- }
2038
- ],
2039
- "name": "getPtToSyRate",
2040
- "outputs": [
2041
- {
2042
- "internalType": "uint256",
2043
- "name": "",
2044
- "type": "uint256"
2045
- }
2046
- ],
2047
- "stateMutability": "view",
2048
- "type": "function"
2049
- },
2050
- {
2051
- "inputs": [
2052
- {
2053
- "internalType": "address",
2054
- "name": "token",
2055
- "type": "address"
2056
- }
2057
- ],
2058
- "name": "getTokensInOut",
2059
- "outputs": [
2060
- {
2061
- "internalType": "address[]",
2062
- "name": "tokensIn",
2063
- "type": "address[]"
2064
- },
2065
- {
2066
- "internalType": "address[]",
2067
- "name": "tokensOut",
2068
- "type": "address[]"
2069
- }
2070
- ],
2071
- "stateMutability": "view",
2072
- "type": "function"
2073
- },
2074
- {
2075
- "inputs": [
2076
- {
2077
- "internalType": "address",
2078
- "name": "market",
2079
- "type": "address"
2080
- },
2081
- {
2082
- "components": [
2083
- {
2084
- "internalType": "int256",
2085
- "name": "totalPt",
2086
- "type": "int256"
2087
- },
2088
- {
2089
- "internalType": "int256",
2090
- "name": "totalSy",
2091
- "type": "int256"
2092
- },
2093
- {
2094
- "internalType": "int256",
2095
- "name": "totalLp",
2096
- "type": "int256"
2097
- },
2098
- {
2099
- "internalType": "address",
2100
- "name": "treasury",
2101
- "type": "address"
2102
- },
2103
- {
2104
- "internalType": "int256",
2105
- "name": "scalarRoot",
2106
- "type": "int256"
2107
- },
2108
- {
2109
- "internalType": "uint256",
2110
- "name": "expiry",
2111
- "type": "uint256"
2112
- },
2113
- {
2114
- "internalType": "uint256",
2115
- "name": "lnFeeRateRoot",
2116
- "type": "uint256"
2117
- },
2118
- {
2119
- "internalType": "uint256",
2120
- "name": "reserveFeePercent",
2121
- "type": "uint256"
2122
- },
2123
- {
2124
- "internalType": "uint256",
2125
- "name": "lastLnImpliedRate",
2126
- "type": "uint256"
2127
- }
2128
- ],
2129
- "internalType": "struct MarketState",
2130
- "name": "state",
2131
- "type": "tuple"
2132
- }
2133
- ],
2134
- "name": "getTradeExchangeRateExcludeFee",
2135
- "outputs": [
2136
- {
2137
- "internalType": "uint256",
2138
- "name": "",
2139
- "type": "uint256"
2140
- }
2141
- ],
2142
- "stateMutability": "view",
2143
- "type": "function"
2144
- },
2145
- {
2146
- "inputs": [
2147
- {
2148
- "internalType": "address",
2149
- "name": "market",
2150
- "type": "address"
2151
- },
2152
- {
2153
- "internalType": "int256",
2154
- "name": "netPtOut",
2155
- "type": "int256"
2156
- }
2157
- ],
2158
- "name": "getTradeExchangeRateIncludeFee",
2159
- "outputs": [
2160
- {
2161
- "internalType": "uint256",
2162
- "name": "",
2163
- "type": "uint256"
2164
- }
2165
- ],
2166
- "stateMutability": "view",
2167
- "type": "function"
2168
- },
2169
- {
2170
- "inputs": [
2171
- {
2172
- "internalType": "address",
2173
- "name": "market",
2174
- "type": "address"
2175
- },
2176
- {
2177
- "internalType": "address",
2178
- "name": "user",
2179
- "type": "address"
2180
- }
2181
- ],
2182
- "name": "getUserMarketInfo",
2183
- "outputs": [
2184
- {
2185
- "components": [
2186
- {
2187
- "components": [
2188
- {
2189
- "internalType": "address",
2190
- "name": "token",
2191
- "type": "address"
2192
- },
2193
- {
2194
- "internalType": "uint256",
2195
- "name": "amount",
2196
- "type": "uint256"
2197
- }
2198
- ],
2199
- "internalType": "struct IPActionInfoStatic.TokenAmount",
2200
- "name": "lpBalance",
2201
- "type": "tuple"
2202
- },
2203
- {
2204
- "components": [
2205
- {
2206
- "internalType": "address",
2207
- "name": "token",
2208
- "type": "address"
2209
- },
2210
- {
2211
- "internalType": "uint256",
2212
- "name": "amount",
2213
- "type": "uint256"
2214
- }
2215
- ],
2216
- "internalType": "struct IPActionInfoStatic.TokenAmount",
2217
- "name": "ptBalance",
2218
- "type": "tuple"
2219
- },
2220
- {
2221
- "components": [
2222
- {
2223
- "internalType": "address",
2224
- "name": "token",
2225
- "type": "address"
2226
- },
2227
- {
2228
- "internalType": "uint256",
2229
- "name": "amount",
2230
- "type": "uint256"
2231
- }
2232
- ],
2233
- "internalType": "struct IPActionInfoStatic.TokenAmount",
2234
- "name": "syBalance",
2235
- "type": "tuple"
2236
- },
2237
- {
2238
- "components": [
2239
- {
2240
- "internalType": "address",
2241
- "name": "token",
2242
- "type": "address"
2243
- },
2244
- {
2245
- "internalType": "uint256",
2246
- "name": "amount",
2247
- "type": "uint256"
2248
- }
2249
- ],
2250
- "internalType": "struct IPActionInfoStatic.TokenAmount[]",
2251
- "name": "unclaimedRewards",
2252
- "type": "tuple[]"
2253
- }
2254
- ],
2255
- "internalType": "struct IPActionInfoStatic.UserMarketInfo",
2256
- "name": "res",
2257
- "type": "tuple"
2258
- }
2259
- ],
2260
- "stateMutability": "nonpayable",
2261
- "type": "function"
2262
- },
2263
- {
2264
- "inputs": [
2265
- {
2266
- "internalType": "address",
2267
- "name": "py",
2268
- "type": "address"
2269
- },
2270
- {
2271
- "internalType": "address",
2272
- "name": "user",
2273
- "type": "address"
2274
- }
2275
- ],
2276
- "name": "getUserPYInfo",
2277
- "outputs": [
2278
- {
2279
- "components": [
2280
- {
2281
- "components": [
2282
- {
2283
- "internalType": "address",
2284
- "name": "token",
2285
- "type": "address"
2286
- },
2287
- {
2288
- "internalType": "uint256",
2289
- "name": "amount",
2290
- "type": "uint256"
2291
- }
2292
- ],
2293
- "internalType": "struct IPActionInfoStatic.TokenAmount",
2294
- "name": "ptBalance",
2295
- "type": "tuple"
2296
- },
2297
- {
2298
- "components": [
2299
- {
2300
- "internalType": "address",
2301
- "name": "token",
2302
- "type": "address"
2303
- },
2304
- {
2305
- "internalType": "uint256",
2306
- "name": "amount",
2307
- "type": "uint256"
2308
- }
2309
- ],
2310
- "internalType": "struct IPActionInfoStatic.TokenAmount",
2311
- "name": "ytBalance",
2312
- "type": "tuple"
2313
- },
2314
- {
2315
- "components": [
2316
- {
2317
- "internalType": "address",
2318
- "name": "token",
2319
- "type": "address"
2320
- },
2321
- {
2322
- "internalType": "uint256",
2323
- "name": "amount",
2324
- "type": "uint256"
2325
- }
2326
- ],
2327
- "internalType": "struct IPActionInfoStatic.TokenAmount",
2328
- "name": "unclaimedInterest",
2329
- "type": "tuple"
2330
- },
2331
- {
2332
- "components": [
2333
- {
2334
- "internalType": "address",
2335
- "name": "token",
2336
- "type": "address"
2337
- },
2338
- {
2339
- "internalType": "uint256",
2340
- "name": "amount",
2341
- "type": "uint256"
2342
- }
2343
- ],
2344
- "internalType": "struct IPActionInfoStatic.TokenAmount[]",
2345
- "name": "unclaimedRewards",
2346
- "type": "tuple[]"
2347
- }
2348
- ],
2349
- "internalType": "struct IPActionInfoStatic.UserPYInfo",
2350
- "name": "res",
2351
- "type": "tuple"
2352
- }
2353
- ],
2354
- "stateMutability": "nonpayable",
2355
- "type": "function"
2356
- },
2357
- {
2358
- "inputs": [
2359
- {
2360
- "internalType": "address",
2361
- "name": "sy",
2362
- "type": "address"
2363
- },
2364
- {
2365
- "internalType": "address",
2366
- "name": "user",
2367
- "type": "address"
2368
- }
2369
- ],
2370
- "name": "getUserSYInfo",
2371
- "outputs": [
2372
- {
2373
- "components": [
2374
- {
2375
- "components": [
2376
- {
2377
- "internalType": "address",
2378
- "name": "token",
2379
- "type": "address"
2380
- },
2381
- {
2382
- "internalType": "uint256",
2383
- "name": "amount",
2384
- "type": "uint256"
2385
- }
2386
- ],
2387
- "internalType": "struct IPActionInfoStatic.TokenAmount",
2388
- "name": "syBalance",
2389
- "type": "tuple"
2390
- },
2391
- {
2392
- "components": [
2393
- {
2394
- "internalType": "address",
2395
- "name": "token",
2396
- "type": "address"
2397
- },
2398
- {
2399
- "internalType": "uint256",
2400
- "name": "amount",
2401
- "type": "uint256"
2402
- }
2403
- ],
2404
- "internalType": "struct IPActionInfoStatic.TokenAmount[]",
2405
- "name": "unclaimedRewards",
2406
- "type": "tuple[]"
2407
- }
2408
- ],
2409
- "internalType": "struct IPActionInfoStatic.UserSYInfo",
2410
- "name": "res",
2411
- "type": "tuple"
2412
- }
2413
- ],
2414
- "stateMutability": "nonpayable",
2415
- "type": "function"
2416
- },
2417
- {
2418
- "inputs": [
2419
- {
2420
- "internalType": "address",
2421
- "name": "market",
2422
- "type": "address"
2423
- }
2424
- ],
2425
- "name": "getYieldTokenAndPtRate",
2426
- "outputs": [
2427
- {
2428
- "internalType": "address",
2429
- "name": "yieldToken",
2430
- "type": "address"
2431
- },
2432
- {
2433
- "internalType": "uint256",
2434
- "name": "netPtOut",
2435
- "type": "uint256"
2436
- },
2437
- {
2438
- "internalType": "uint256",
2439
- "name": "netYieldTokenOut",
2440
- "type": "uint256"
2441
- }
2442
- ],
2443
- "stateMutability": "view",
2444
- "type": "function"
2445
- },
2446
- {
2447
- "inputs": [
2448
- {
2449
- "internalType": "address",
2450
- "name": "market",
2451
- "type": "address"
2452
- }
2453
- ],
2454
- "name": "getYieldTokenAndYtRate",
2455
- "outputs": [
2456
- {
2457
- "internalType": "address",
2458
- "name": "yieldToken",
2459
- "type": "address"
2460
- },
2461
- {
2462
- "internalType": "uint256",
2463
- "name": "netYtOut",
2464
- "type": "uint256"
2465
- },
2466
- {
2467
- "internalType": "uint256",
2468
- "name": "netYieldTokenOut",
2469
- "type": "uint256"
2470
- }
2471
- ],
2472
- "stateMutability": "view",
2473
- "type": "function"
2474
- },
2475
- {
2476
- "inputs": [
2477
- {
2478
- "internalType": "address",
2479
- "name": "market",
2480
- "type": "address"
2481
- }
2482
- ],
2483
- "name": "getYtToAssetRate",
2484
- "outputs": [
2485
- {
2486
- "internalType": "uint256",
2487
- "name": "",
2488
- "type": "uint256"
2489
- }
2490
- ],
2491
- "stateMutability": "view",
2492
- "type": "function"
2493
- },
2494
- {
2495
- "inputs": [
2496
- {
2497
- "internalType": "address",
2498
- "name": "market",
2499
- "type": "address"
2500
- }
2501
- ],
2502
- "name": "getYtToSyRate",
2503
- "outputs": [
2504
- {
2505
- "internalType": "uint256",
2506
- "name": "",
2507
- "type": "uint256"
2508
- }
2509
- ],
2510
- "stateMutability": "view",
2511
- "type": "function"
2512
- },
2513
- {
2514
- "inputs": [
2515
- {
2516
- "internalType": "address",
2517
- "name": "user",
2518
- "type": "address"
2519
- },
2520
- {
2521
- "internalType": "uint128",
2522
- "name": "additionalAmountToLock",
2523
- "type": "uint128"
2524
- },
2525
- {
2526
- "internalType": "uint128",
2527
- "name": "newExpiry",
2528
- "type": "uint128"
2529
- }
2530
- ],
2531
- "name": "increaseLockPositionStatic",
2532
- "outputs": [
2533
- {
2534
- "internalType": "uint128",
2535
- "name": "newVeBalance",
2536
- "type": "uint128"
2537
- }
2538
- ],
2539
- "stateMutability": "view",
2540
- "type": "function"
2541
- },
2542
- {
2543
- "inputs": [
2544
- {
2545
- "internalType": "address",
2546
- "name": "YT",
2547
- "type": "address"
2548
- },
2549
- {
2550
- "internalType": "uint256",
2551
- "name": "netSyToMint",
2552
- "type": "uint256"
2553
- }
2554
- ],
2555
- "name": "mintPyFromSyStatic",
2556
- "outputs": [
2557
- {
2558
- "internalType": "uint256",
2559
- "name": "netPYOut",
2560
- "type": "uint256"
2561
- }
2562
- ],
2563
- "stateMutability": "view",
2564
- "type": "function"
2565
- },
2566
- {
2567
- "inputs": [
2568
- {
2569
- "internalType": "address",
2570
- "name": "YT",
2571
- "type": "address"
2572
- },
2573
- {
2574
- "internalType": "address",
2575
- "name": "tokenIn",
2576
- "type": "address"
2577
- },
2578
- {
2579
- "internalType": "uint256",
2580
- "name": "netTokenIn",
2581
- "type": "uint256"
2582
- }
2583
- ],
2584
- "name": "mintPyFromTokenStatic",
2585
- "outputs": [
2586
- {
2587
- "internalType": "uint256",
2588
- "name": "netPyOut",
2589
- "type": "uint256"
2590
- }
2591
- ],
2592
- "stateMutability": "view",
2593
- "type": "function"
2594
- },
2595
- {
2596
- "inputs": [
2597
- {
2598
- "internalType": "address",
2599
- "name": "SY",
2600
- "type": "address"
2601
- },
2602
- {
2603
- "internalType": "address",
2604
- "name": "tokenIn",
2605
- "type": "address"
2606
- },
2607
- {
2608
- "internalType": "uint256",
2609
- "name": "netTokenIn",
2610
- "type": "uint256"
2611
- }
2612
- ],
2613
- "name": "mintSyFromTokenStatic",
2614
- "outputs": [
2615
- {
2616
- "internalType": "uint256",
2617
- "name": "netSyOut",
2618
- "type": "uint256"
2619
- }
2620
- ],
2621
- "stateMutability": "view",
2622
- "type": "function"
2623
- },
2624
- {
2625
- "inputs": [
2626
- {
2627
- "internalType": "address",
2628
- "name": "market",
2629
- "type": "address"
2630
- }
2631
- ],
2632
- "name": "pyIndexCurrentViewMarket",
2633
- "outputs": [
2634
- {
2635
- "internalType": "uint256",
2636
- "name": "",
2637
- "type": "uint256"
2638
- }
2639
- ],
2640
- "stateMutability": "view",
2641
- "type": "function"
2642
- },
2643
- {
2644
- "inputs": [
2645
- {
2646
- "internalType": "address",
2647
- "name": "yt",
2648
- "type": "address"
2649
- }
2650
- ],
2651
- "name": "pyIndexCurrentViewYt",
2652
- "outputs": [
2653
- {
2654
- "internalType": "uint256",
2655
- "name": "",
2656
- "type": "uint256"
2657
- }
2658
- ],
2659
- "stateMutability": "view",
2660
- "type": "function"
2661
- },
2662
- {
2663
- "inputs": [
2664
- {
2665
- "internalType": "address",
2666
- "name": "market",
2667
- "type": "address"
2668
- }
2669
- ],
2670
- "name": "readMarketState",
2671
- "outputs": [
2672
- {
2673
- "components": [
2674
- {
2675
- "internalType": "int256",
2676
- "name": "totalPt",
2677
- "type": "int256"
2678
- },
2679
- {
2680
- "internalType": "int256",
2681
- "name": "totalSy",
2682
- "type": "int256"
2683
- },
2684
- {
2685
- "internalType": "int256",
2686
- "name": "totalLp",
2687
- "type": "int256"
2688
- },
2689
- {
2690
- "internalType": "address",
2691
- "name": "treasury",
2692
- "type": "address"
2693
- },
2694
- {
2695
- "internalType": "int256",
2696
- "name": "scalarRoot",
2697
- "type": "int256"
2698
- },
2699
- {
2700
- "internalType": "uint256",
2701
- "name": "expiry",
2702
- "type": "uint256"
2703
- },
2704
- {
2705
- "internalType": "uint256",
2706
- "name": "lnFeeRateRoot",
2707
- "type": "uint256"
2708
- },
2709
- {
2710
- "internalType": "uint256",
2711
- "name": "reserveFeePercent",
2712
- "type": "uint256"
2713
- },
2714
- {
2715
- "internalType": "uint256",
2716
- "name": "lastLnImpliedRate",
2717
- "type": "uint256"
2718
- }
2719
- ],
2720
- "internalType": "struct MarketState",
2721
- "name": "",
2722
- "type": "tuple"
2723
- }
2724
- ],
2725
- "stateMutability": "view",
2726
- "type": "function"
2727
- },
2728
- {
2729
- "inputs": [
2730
- {
2731
- "internalType": "address",
2732
- "name": "YT",
2733
- "type": "address"
2734
- },
2735
- {
2736
- "internalType": "uint256",
2737
- "name": "netPYToRedeem",
2738
- "type": "uint256"
2739
- }
2740
- ],
2741
- "name": "redeemPyToSyStatic",
2742
- "outputs": [
2743
- {
2744
- "internalType": "uint256",
2745
- "name": "netSyOut",
2746
- "type": "uint256"
2747
- }
2748
- ],
2749
- "stateMutability": "view",
2750
- "type": "function"
2751
- },
2752
- {
2753
- "inputs": [
2754
- {
2755
- "internalType": "address",
2756
- "name": "YT",
2757
- "type": "address"
2758
- },
2759
- {
2760
- "internalType": "uint256",
2761
- "name": "netPYToRedeem",
2762
- "type": "uint256"
2763
- },
2764
- {
2765
- "internalType": "address",
2766
- "name": "tokenOut",
2767
- "type": "address"
2768
- }
2769
- ],
2770
- "name": "redeemPyToTokenStatic",
2771
- "outputs": [
2772
- {
2773
- "internalType": "uint256",
2774
- "name": "netTokenOut",
2775
- "type": "uint256"
2776
- }
2777
- ],
2778
- "stateMutability": "view",
2779
- "type": "function"
2780
- },
2781
- {
2782
- "inputs": [
2783
- {
2784
- "internalType": "address",
2785
- "name": "SY",
2786
- "type": "address"
2787
- },
2788
- {
2789
- "internalType": "address",
2790
- "name": "tokenOut",
2791
- "type": "address"
2792
- },
2793
- {
2794
- "internalType": "uint256",
2795
- "name": "netSyIn",
2796
- "type": "uint256"
2797
- }
2798
- ],
2799
- "name": "redeemSyToTokenStatic",
2800
- "outputs": [
2801
- {
2802
- "internalType": "uint256",
2803
- "name": "netTokenOut",
2804
- "type": "uint256"
2805
- }
2806
- ],
2807
- "stateMutability": "view",
2808
- "type": "function"
2809
- },
2810
- {
2811
- "inputs": [
2812
- {
2813
- "internalType": "address",
2814
- "name": "market",
2815
- "type": "address"
2816
- },
2817
- {
2818
- "internalType": "uint256",
2819
- "name": "netLpToRemove",
2820
- "type": "uint256"
2821
- }
2822
- ],
2823
- "name": "removeLiquidityDualSyAndPtStatic",
2824
- "outputs": [
2825
- {
2826
- "internalType": "uint256",
2827
- "name": "netSyOut",
2828
- "type": "uint256"
2829
- },
2830
- {
2831
- "internalType": "uint256",
2832
- "name": "netPtOut",
2833
- "type": "uint256"
2834
- }
2835
- ],
2836
- "stateMutability": "view",
2837
- "type": "function"
2838
- },
2839
- {
2840
- "inputs": [
2841
- {
2842
- "internalType": "address",
2843
- "name": "market",
2844
- "type": "address"
2845
- },
2846
- {
2847
- "internalType": "uint256",
2848
- "name": "netLpToRemove",
2849
- "type": "uint256"
2850
- },
2851
- {
2852
- "internalType": "address",
2853
- "name": "tokenOut",
2854
- "type": "address"
2855
- }
2856
- ],
2857
- "name": "removeLiquidityDualTokenAndPtStatic",
2858
- "outputs": [
2859
- {
2860
- "internalType": "uint256",
2861
- "name": "netTokenOut",
2862
- "type": "uint256"
2863
- },
2864
- {
2865
- "internalType": "uint256",
2866
- "name": "netPtOut",
2867
- "type": "uint256"
2868
- },
2869
- {
2870
- "internalType": "uint256",
2871
- "name": "netSyToRedeem",
2872
- "type": "uint256"
2873
- }
2874
- ],
2875
- "stateMutability": "view",
2876
- "type": "function"
2877
- },
2878
- {
2879
- "inputs": [
2880
- {
2881
- "internalType": "address",
2882
- "name": "market",
2883
- "type": "address"
2884
- },
2885
- {
2886
- "internalType": "uint256",
2887
- "name": "netLpToRemove",
2888
- "type": "uint256"
2889
- }
2890
- ],
2891
- "name": "removeLiquiditySinglePtStatic",
2892
- "outputs": [
2893
- {
2894
- "internalType": "uint256",
2895
- "name": "netPtOut",
2896
- "type": "uint256"
2897
- },
2898
- {
2899
- "internalType": "uint256",
2900
- "name": "netPtFromSwap",
2901
- "type": "uint256"
2902
- },
2903
- {
2904
- "internalType": "uint256",
2905
- "name": "netSyFee",
2906
- "type": "uint256"
2907
- },
2908
- {
2909
- "internalType": "uint256",
2910
- "name": "priceImpact",
2911
- "type": "uint256"
2912
- },
2913
- {
2914
- "internalType": "uint256",
2915
- "name": "exchangeRateAfter",
2916
- "type": "uint256"
2917
- },
2918
- {
2919
- "internalType": "uint256",
2920
- "name": "netSyFromBurn",
2921
- "type": "uint256"
2922
- },
2923
- {
2924
- "internalType": "uint256",
2925
- "name": "netPtFromBurn",
2926
- "type": "uint256"
2927
- }
2928
- ],
2929
- "stateMutability": "view",
2930
- "type": "function"
2931
- },
2932
- {
2933
- "inputs": [
2934
- {
2935
- "internalType": "address",
2936
- "name": "market",
2937
- "type": "address"
2938
- },
2939
- {
2940
- "internalType": "uint256",
2941
- "name": "netLpToRemove",
2942
- "type": "uint256"
2943
- }
2944
- ],
2945
- "name": "removeLiquiditySingleSyStatic",
2946
- "outputs": [
2947
- {
2948
- "internalType": "uint256",
2949
- "name": "netSyOut",
2950
- "type": "uint256"
2951
- },
2952
- {
2953
- "internalType": "uint256",
2954
- "name": "netSyFee",
2955
- "type": "uint256"
2956
- },
2957
- {
2958
- "internalType": "uint256",
2959
- "name": "priceImpact",
2960
- "type": "uint256"
2961
- },
2962
- {
2963
- "internalType": "uint256",
2964
- "name": "exchangeRateAfter",
2965
- "type": "uint256"
2966
- },
2967
- {
2968
- "internalType": "uint256",
2969
- "name": "netSyFromBurn",
2970
- "type": "uint256"
2971
- },
2972
- {
2973
- "internalType": "uint256",
2974
- "name": "netPtFromBurn",
2975
- "type": "uint256"
2976
- },
2977
- {
2978
- "internalType": "uint256",
2979
- "name": "netSyFromSwap",
2980
- "type": "uint256"
2981
- }
2982
- ],
2983
- "stateMutability": "view",
2984
- "type": "function"
2985
- },
2986
- {
2987
- "inputs": [
2988
- {
2989
- "internalType": "address",
2990
- "name": "market",
2991
- "type": "address"
2992
- },
2993
- {
2994
- "internalType": "uint256",
2995
- "name": "netLpToRemove",
2996
- "type": "uint256"
2997
- },
2998
- {
2999
- "internalType": "address",
3000
- "name": "tokenOut",
3001
- "type": "address"
3002
- }
3003
- ],
3004
- "name": "removeLiquiditySingleTokenStatic",
3005
- "outputs": [
3006
- {
3007
- "internalType": "uint256",
3008
- "name": "netTokenOut",
3009
- "type": "uint256"
3010
- },
3011
- {
3012
- "internalType": "uint256",
3013
- "name": "netSyFee",
3014
- "type": "uint256"
3015
- },
3016
- {
3017
- "internalType": "uint256",
3018
- "name": "priceImpact",
3019
- "type": "uint256"
3020
- },
3021
- {
3022
- "internalType": "uint256",
3023
- "name": "exchangeRateAfter",
3024
- "type": "uint256"
3025
- },
3026
- {
3027
- "internalType": "uint256",
3028
- "name": "netSyOut",
3029
- "type": "uint256"
3030
- },
3031
- {
3032
- "internalType": "uint256",
3033
- "name": "netSyFromBurn",
3034
- "type": "uint256"
3035
- },
3036
- {
3037
- "internalType": "uint256",
3038
- "name": "netPtFromBurn",
3039
- "type": "uint256"
3040
- },
3041
- {
3042
- "internalType": "uint256",
3043
- "name": "netSyFromSwap",
3044
- "type": "uint256"
3045
- }
3046
- ],
3047
- "stateMutability": "view",
3048
- "type": "function"
3049
- },
3050
- {
3051
- "inputs": [
3052
- {
3053
- "components": [
3054
- {
3055
- "internalType": "uint256",
3056
- "name": "guessMin",
3057
- "type": "uint256"
3058
- },
3059
- {
3060
- "internalType": "uint256",
3061
- "name": "guessMax",
3062
- "type": "uint256"
3063
- },
3064
- {
3065
- "internalType": "uint256",
3066
- "name": "guessOffchain",
3067
- "type": "uint256"
3068
- },
3069
- {
3070
- "internalType": "uint256",
3071
- "name": "maxIteration",
3072
- "type": "uint256"
3073
- },
3074
- {
3075
- "internalType": "uint256",
3076
- "name": "eps",
3077
- "type": "uint256"
3078
- }
3079
- ],
3080
- "internalType": "struct ApproxParams",
3081
- "name": "params",
3082
- "type": "tuple"
3083
- }
3084
- ],
3085
- "name": "setDefaultApproxParams",
3086
- "outputs": [],
3087
- "stateMutability": "nonpayable",
3088
- "type": "function"
3089
- },
3090
- {
3091
- "inputs": [
3092
- {
3093
- "components": [
3094
- {
3095
- "internalType": "address",
3096
- "name": "facet",
3097
- "type": "address"
3098
- },
3099
- {
3100
- "internalType": "bytes4[]",
3101
- "name": "selectors",
3102
- "type": "bytes4[]"
3103
- }
3104
- ],
3105
- "internalType": "struct IPMiniDiamond.SelectorsToFacet[]",
3106
- "name": "arr",
3107
- "type": "tuple[]"
3108
- }
3109
- ],
3110
- "name": "setFacetForSelectors",
3111
- "outputs": [],
3112
- "stateMutability": "nonpayable",
3113
- "type": "function"
3114
- },
3115
- {
3116
- "inputs": [
3117
- {
3118
- "internalType": "address",
3119
- "name": "market",
3120
- "type": "address"
3121
- },
3122
- {
3123
- "internalType": "uint256",
3124
- "name": "exactPtIn",
3125
- "type": "uint256"
3126
- }
3127
- ],
3128
- "name": "swapExactPtForSyStatic",
3129
- "outputs": [
3130
- {
3131
- "internalType": "uint256",
3132
- "name": "netSyOut",
3133
- "type": "uint256"
3134
- },
3135
- {
3136
- "internalType": "uint256",
3137
- "name": "netSyFee",
3138
- "type": "uint256"
3139
- },
3140
- {
3141
- "internalType": "uint256",
3142
- "name": "priceImpact",
3143
- "type": "uint256"
3144
- },
3145
- {
3146
- "internalType": "uint256",
3147
- "name": "exchangeRateAfter",
3148
- "type": "uint256"
3149
- }
3150
- ],
3151
- "stateMutability": "view",
3152
- "type": "function"
3153
- },
3154
- {
3155
- "inputs": [
3156
- {
3157
- "internalType": "address",
3158
- "name": "market",
3159
- "type": "address"
3160
- },
3161
- {
3162
- "internalType": "uint256",
3163
- "name": "exactPtIn",
3164
- "type": "uint256"
3165
- },
3166
- {
3167
- "internalType": "address",
3168
- "name": "tokenOut",
3169
- "type": "address"
3170
- }
3171
- ],
3172
- "name": "swapExactPtForTokenStatic",
3173
- "outputs": [
3174
- {
3175
- "internalType": "uint256",
3176
- "name": "netTokenOut",
3177
- "type": "uint256"
3178
- },
3179
- {
3180
- "internalType": "uint256",
3181
- "name": "netSyToRedeem",
3182
- "type": "uint256"
3183
- },
3184
- {
3185
- "internalType": "uint256",
3186
- "name": "netSyFee",
3187
- "type": "uint256"
3188
- },
3189
- {
3190
- "internalType": "uint256",
3191
- "name": "priceImpact",
3192
- "type": "uint256"
3193
- },
3194
- {
3195
- "internalType": "uint256",
3196
- "name": "exchangeRateAfter",
3197
- "type": "uint256"
3198
- }
3199
- ],
3200
- "stateMutability": "view",
3201
- "type": "function"
3202
- },
3203
- {
3204
- "inputs": [
3205
- {
3206
- "internalType": "address",
3207
- "name": "market",
3208
- "type": "address"
3209
- },
3210
- {
3211
- "internalType": "uint256",
3212
- "name": "exactPtIn",
3213
- "type": "uint256"
3214
- }
3215
- ],
3216
- "name": "swapExactPtForYtStatic",
3217
- "outputs": [
3218
- {
3219
- "internalType": "uint256",
3220
- "name": "netYtOut",
3221
- "type": "uint256"
3222
- },
3223
- {
3224
- "internalType": "uint256",
3225
- "name": "totalPtToSwap",
3226
- "type": "uint256"
3227
- },
3228
- {
3229
- "internalType": "uint256",
3230
- "name": "netSyFee",
3231
- "type": "uint256"
3232
- },
3233
- {
3234
- "internalType": "uint256",
3235
- "name": "priceImpact",
3236
- "type": "uint256"
3237
- },
3238
- {
3239
- "internalType": "uint256",
3240
- "name": "exchangeRateAfter",
3241
- "type": "uint256"
3242
- }
3243
- ],
3244
- "stateMutability": "view",
3245
- "type": "function"
3246
- },
3247
- {
3248
- "inputs": [
3249
- {
3250
- "internalType": "address",
3251
- "name": "market",
3252
- "type": "address"
3253
- },
3254
- {
3255
- "internalType": "uint256",
3256
- "name": "exactSyIn",
3257
- "type": "uint256"
3258
- }
3259
- ],
3260
- "name": "swapExactSyForPtStatic",
3261
- "outputs": [
3262
- {
3263
- "internalType": "uint256",
3264
- "name": "netPtOut",
3265
- "type": "uint256"
3266
- },
3267
- {
3268
- "internalType": "uint256",
3269
- "name": "netSyFee",
3270
- "type": "uint256"
3271
- },
3272
- {
3273
- "internalType": "uint256",
3274
- "name": "priceImpact",
3275
- "type": "uint256"
3276
- },
3277
- {
3278
- "internalType": "uint256",
3279
- "name": "exchangeRateAfter",
3280
- "type": "uint256"
3281
- }
3282
- ],
3283
- "stateMutability": "view",
3284
- "type": "function"
3285
- },
3286
- {
3287
- "inputs": [
3288
- {
3289
- "internalType": "address",
3290
- "name": "market",
3291
- "type": "address"
3292
- },
3293
- {
3294
- "internalType": "uint256",
3295
- "name": "exactSyIn",
3296
- "type": "uint256"
3297
- },
3298
- {
3299
- "internalType": "uint256",
3300
- "name": "slippage",
3301
- "type": "uint256"
3302
- }
3303
- ],
3304
- "name": "swapExactSyForPtStaticAndGenerateApproxParams",
3305
- "outputs": [
3306
- {
3307
- "internalType": "uint256",
3308
- "name": "netPtOut",
3309
- "type": "uint256"
3310
- },
3311
- {
3312
- "internalType": "uint256",
3313
- "name": "netSyFee",
3314
- "type": "uint256"
3315
- },
3316
- {
3317
- "internalType": "uint256",
3318
- "name": "priceImpact",
3319
- "type": "uint256"
3320
- },
3321
- {
3322
- "internalType": "uint256",
3323
- "name": "exchangeRateAfter",
3324
- "type": "uint256"
3325
- },
3326
- {
3327
- "components": [
3328
- {
3329
- "internalType": "uint256",
3330
- "name": "guessMin",
3331
- "type": "uint256"
3332
- },
3333
- {
3334
- "internalType": "uint256",
3335
- "name": "guessMax",
3336
- "type": "uint256"
3337
- },
3338
- {
3339
- "internalType": "uint256",
3340
- "name": "guessOffchain",
3341
- "type": "uint256"
3342
- },
3343
- {
3344
- "internalType": "uint256",
3345
- "name": "maxIteration",
3346
- "type": "uint256"
3347
- },
3348
- {
3349
- "internalType": "uint256",
3350
- "name": "eps",
3351
- "type": "uint256"
3352
- }
3353
- ],
3354
- "internalType": "struct ApproxParams",
3355
- "name": "approxParams",
3356
- "type": "tuple"
3357
- }
3358
- ],
3359
- "stateMutability": "view",
3360
- "type": "function"
3361
- },
3362
- {
3363
- "inputs": [
3364
- {
3365
- "internalType": "address",
3366
- "name": "market",
3367
- "type": "address"
3368
- },
3369
- {
3370
- "internalType": "uint256",
3371
- "name": "exactSyIn",
3372
- "type": "uint256"
3373
- }
3374
- ],
3375
- "name": "swapExactSyForYtStatic",
3376
- "outputs": [
3377
- {
3378
- "internalType": "uint256",
3379
- "name": "netYtOut",
3380
- "type": "uint256"
3381
- },
3382
- {
3383
- "internalType": "uint256",
3384
- "name": "netSyFee",
3385
- "type": "uint256"
3386
- },
3387
- {
3388
- "internalType": "uint256",
3389
- "name": "priceImpact",
3390
- "type": "uint256"
3391
- },
3392
- {
3393
- "internalType": "uint256",
3394
- "name": "exchangeRateAfter",
3395
- "type": "uint256"
3396
- }
3397
- ],
3398
- "stateMutability": "view",
3399
- "type": "function"
3400
- },
3401
- {
3402
- "inputs": [
3403
- {
3404
- "internalType": "address",
3405
- "name": "market",
3406
- "type": "address"
3407
- },
3408
- {
3409
- "internalType": "address",
3410
- "name": "tokenIn",
3411
- "type": "address"
3412
- },
3413
- {
3414
- "internalType": "uint256",
3415
- "name": "amountTokenIn",
3416
- "type": "uint256"
3417
- }
3418
- ],
3419
- "name": "swapExactTokenForPtStatic",
3420
- "outputs": [
3421
- {
3422
- "internalType": "uint256",
3423
- "name": "netPtOut",
3424
- "type": "uint256"
3425
- },
3426
- {
3427
- "internalType": "uint256",
3428
- "name": "netSyMinted",
3429
- "type": "uint256"
3430
- },
3431
- {
3432
- "internalType": "uint256",
3433
- "name": "netSyFee",
3434
- "type": "uint256"
3435
- },
3436
- {
3437
- "internalType": "uint256",
3438
- "name": "priceImpact",
3439
- "type": "uint256"
3440
- },
3441
- {
3442
- "internalType": "uint256",
3443
- "name": "exchangeRateAfter",
3444
- "type": "uint256"
3445
- }
3446
- ],
3447
- "stateMutability": "view",
3448
- "type": "function"
3449
- },
3450
- {
3451
- "inputs": [
3452
- {
3453
- "internalType": "address",
3454
- "name": "market",
3455
- "type": "address"
3456
- },
3457
- {
3458
- "internalType": "address",
3459
- "name": "tokenIn",
3460
- "type": "address"
3461
- },
3462
- {
3463
- "internalType": "uint256",
3464
- "name": "amountTokenIn",
3465
- "type": "uint256"
3466
- },
3467
- {
3468
- "internalType": "uint256",
3469
- "name": "slippage",
3470
- "type": "uint256"
3471
- }
3472
- ],
3473
- "name": "swapExactTokenForPtStaticAndGenerateApproxParams",
3474
- "outputs": [
3475
- {
3476
- "internalType": "uint256",
3477
- "name": "netPtOut",
3478
- "type": "uint256"
3479
- },
3480
- {
3481
- "internalType": "uint256",
3482
- "name": "netSyMinted",
3483
- "type": "uint256"
3484
- },
3485
- {
3486
- "internalType": "uint256",
3487
- "name": "netSyFee",
3488
- "type": "uint256"
3489
- },
3490
- {
3491
- "internalType": "uint256",
3492
- "name": "priceImpact",
3493
- "type": "uint256"
3494
- },
3495
- {
3496
- "internalType": "uint256",
3497
- "name": "exchangeRateAfter",
3498
- "type": "uint256"
3499
- },
3500
- {
3501
- "components": [
3502
- {
3503
- "internalType": "uint256",
3504
- "name": "guessMin",
3505
- "type": "uint256"
3506
- },
3507
- {
3508
- "internalType": "uint256",
3509
- "name": "guessMax",
3510
- "type": "uint256"
3511
- },
3512
- {
3513
- "internalType": "uint256",
3514
- "name": "guessOffchain",
3515
- "type": "uint256"
3516
- },
3517
- {
3518
- "internalType": "uint256",
3519
- "name": "maxIteration",
3520
- "type": "uint256"
3521
- },
3522
- {
3523
- "internalType": "uint256",
3524
- "name": "eps",
3525
- "type": "uint256"
3526
- }
3527
- ],
3528
- "internalType": "struct ApproxParams",
3529
- "name": "approxParams",
3530
- "type": "tuple"
3531
- }
3532
- ],
3533
- "stateMutability": "view",
3534
- "type": "function"
3535
- },
3536
- {
3537
- "inputs": [
3538
- {
3539
- "internalType": "address",
3540
- "name": "market",
3541
- "type": "address"
3542
- },
3543
- {
3544
- "internalType": "address",
3545
- "name": "tokenIn",
3546
- "type": "address"
3547
- },
3548
- {
3549
- "internalType": "uint256",
3550
- "name": "amountTokenIn",
3551
- "type": "uint256"
3552
- }
3553
- ],
3554
- "name": "swapExactTokenForYtStatic",
3555
- "outputs": [
3556
- {
3557
- "internalType": "uint256",
3558
- "name": "netYtOut",
3559
- "type": "uint256"
3560
- },
3561
- {
3562
- "internalType": "uint256",
3563
- "name": "netSyMinted",
3564
- "type": "uint256"
3565
- },
3566
- {
3567
- "internalType": "uint256",
3568
- "name": "netSyFee",
3569
- "type": "uint256"
3570
- },
3571
- {
3572
- "internalType": "uint256",
3573
- "name": "priceImpact",
3574
- "type": "uint256"
3575
- },
3576
- {
3577
- "internalType": "uint256",
3578
- "name": "exchangeRateAfter",
3579
- "type": "uint256"
3580
- }
3581
- ],
3582
- "stateMutability": "view",
3583
- "type": "function"
3584
- },
3585
- {
3586
- "inputs": [
3587
- {
3588
- "internalType": "address",
3589
- "name": "market",
3590
- "type": "address"
3591
- },
3592
- {
3593
- "internalType": "uint256",
3594
- "name": "exactYtIn",
3595
- "type": "uint256"
3596
- }
3597
- ],
3598
- "name": "swapExactYtForPtStatic",
3599
- "outputs": [
3600
- {
3601
- "internalType": "uint256",
3602
- "name": "netPtOut",
3603
- "type": "uint256"
3604
- },
3605
- {
3606
- "internalType": "uint256",
3607
- "name": "totalPtSwapped",
3608
- "type": "uint256"
3609
- },
3610
- {
3611
- "internalType": "uint256",
3612
- "name": "netSyFee",
3613
- "type": "uint256"
3614
- },
3615
- {
3616
- "internalType": "uint256",
3617
- "name": "priceImpact",
3618
- "type": "uint256"
3619
- },
3620
- {
3621
- "internalType": "uint256",
3622
- "name": "exchangeRateAfter",
3623
- "type": "uint256"
3624
- }
3625
- ],
3626
- "stateMutability": "view",
3627
- "type": "function"
3628
- },
3629
- {
3630
- "inputs": [
3631
- {
3632
- "internalType": "address",
3633
- "name": "market",
3634
- "type": "address"
3635
- },
3636
- {
3637
- "internalType": "uint256",
3638
- "name": "exactYtIn",
3639
- "type": "uint256"
3640
- }
3641
- ],
3642
- "name": "swapExactYtForSyStatic",
3643
- "outputs": [
3644
- {
3645
- "internalType": "uint256",
3646
- "name": "netSyOut",
3647
- "type": "uint256"
3648
- },
3649
- {
3650
- "internalType": "uint256",
3651
- "name": "netSyFee",
3652
- "type": "uint256"
3653
- },
3654
- {
3655
- "internalType": "uint256",
3656
- "name": "priceImpact",
3657
- "type": "uint256"
3658
- },
3659
- {
3660
- "internalType": "uint256",
3661
- "name": "exchangeRateAfter",
3662
- "type": "uint256"
3663
- },
3664
- {
3665
- "internalType": "uint256",
3666
- "name": "netSyOwedInt",
3667
- "type": "uint256"
3668
- },
3669
- {
3670
- "internalType": "uint256",
3671
- "name": "netPYToRepaySyOwedInt",
3672
- "type": "uint256"
3673
- },
3674
- {
3675
- "internalType": "uint256",
3676
- "name": "netPYToRedeemSyOutInt",
3677
- "type": "uint256"
3678
- }
3679
- ],
3680
- "stateMutability": "view",
3681
- "type": "function"
3682
- },
3683
- {
3684
- "inputs": [
3685
- {
3686
- "internalType": "address",
3687
- "name": "market",
3688
- "type": "address"
3689
- },
3690
- {
3691
- "internalType": "uint256",
3692
- "name": "exactYtIn",
3693
- "type": "uint256"
3694
- },
3695
- {
3696
- "internalType": "address",
3697
- "name": "tokenOut",
3698
- "type": "address"
3699
- }
3700
- ],
3701
- "name": "swapExactYtForTokenStatic",
3702
- "outputs": [
3703
- {
3704
- "internalType": "uint256",
3705
- "name": "netTokenOut",
3706
- "type": "uint256"
3707
- },
3708
- {
3709
- "internalType": "uint256",
3710
- "name": "netSyFee",
3711
- "type": "uint256"
3712
- },
3713
- {
3714
- "internalType": "uint256",
3715
- "name": "priceImpact",
3716
- "type": "uint256"
3717
- },
3718
- {
3719
- "internalType": "uint256",
3720
- "name": "exchangeRateAfter",
3721
- "type": "uint256"
3722
- },
3723
- {
3724
- "internalType": "uint256",
3725
- "name": "netSyOut",
3726
- "type": "uint256"
3727
- },
3728
- {
3729
- "internalType": "uint256",
3730
- "name": "netSyOwedInt",
3731
- "type": "uint256"
3732
- },
3733
- {
3734
- "internalType": "uint256",
3735
- "name": "netPYToRepaySyOwedInt",
3736
- "type": "uint256"
3737
- },
3738
- {
3739
- "internalType": "uint256",
3740
- "name": "netPYToRedeemSyOutInt",
3741
- "type": "uint256"
3742
- }
3743
- ],
3744
- "stateMutability": "view",
3745
- "type": "function"
3746
- },
3747
- {
3748
- "inputs": [
3749
- {
3750
- "internalType": "address",
3751
- "name": "market",
3752
- "type": "address"
3753
- },
3754
- {
3755
- "internalType": "uint256",
3756
- "name": "exactSyOut",
3757
- "type": "uint256"
3758
- }
3759
- ],
3760
- "name": "swapPtForExactSyStatic",
3761
- "outputs": [
3762
- {
3763
- "internalType": "uint256",
3764
- "name": "netPtIn",
3765
- "type": "uint256"
3766
- },
3767
- {
3768
- "internalType": "uint256",
3769
- "name": "netSyFee",
3770
- "type": "uint256"
3771
- },
3772
- {
3773
- "internalType": "uint256",
3774
- "name": "priceImpact",
3775
- "type": "uint256"
3776
- },
3777
- {
3778
- "internalType": "uint256",
3779
- "name": "exchangeRateAfter",
3780
- "type": "uint256"
3781
- }
3782
- ],
3783
- "stateMutability": "view",
3784
- "type": "function"
3785
- },
3786
- {
3787
- "inputs": [
3788
- {
3789
- "internalType": "address",
3790
- "name": "market",
3791
- "type": "address"
3792
- },
3793
- {
3794
- "internalType": "uint256",
3795
- "name": "exactPtOut",
3796
- "type": "uint256"
3797
- }
3798
- ],
3799
- "name": "swapSyForExactPtStatic",
3800
- "outputs": [
3801
- {
3802
- "internalType": "uint256",
3803
- "name": "netSyIn",
3804
- "type": "uint256"
3805
- },
3806
- {
3807
- "internalType": "uint256",
3808
- "name": "netSyFee",
3809
- "type": "uint256"
3810
- },
3811
- {
3812
- "internalType": "uint256",
3813
- "name": "priceImpact",
3814
- "type": "uint256"
3815
- },
3816
- {
3817
- "internalType": "uint256",
3818
- "name": "exchangeRateAfter",
3819
- "type": "uint256"
3820
- }
3821
- ],
3822
- "stateMutability": "view",
3823
- "type": "function"
3824
- },
3825
- {
3826
- "inputs": [
3827
- {
3828
- "internalType": "address",
3829
- "name": "market",
3830
- "type": "address"
3831
- },
3832
- {
3833
- "internalType": "uint256",
3834
- "name": "exactYtOut",
3835
- "type": "uint256"
3836
- }
3837
- ],
3838
- "name": "swapSyForExactYtStatic",
3839
- "outputs": [
3840
- {
3841
- "internalType": "uint256",
3842
- "name": "netSyIn",
3843
- "type": "uint256"
3844
- },
3845
- {
3846
- "internalType": "uint256",
3847
- "name": "netSyFee",
3848
- "type": "uint256"
3849
- },
3850
- {
3851
- "internalType": "uint256",
3852
- "name": "priceImpact",
3853
- "type": "uint256"
3854
- },
3855
- {
3856
- "internalType": "uint256",
3857
- "name": "exchangeRateAfter",
3858
- "type": "uint256"
3859
- },
3860
- {
3861
- "internalType": "uint256",
3862
- "name": "netSyReceivedInt",
3863
- "type": "uint256"
3864
- },
3865
- {
3866
- "internalType": "uint256",
3867
- "name": "totalSyNeedInt",
3868
- "type": "uint256"
3869
- }
3870
- ],
3871
- "stateMutability": "view",
3872
- "type": "function"
3873
- },
3874
- {
3875
- "inputs": [
3876
- {
3877
- "internalType": "address",
3878
- "name": "market",
3879
- "type": "address"
3880
- },
3881
- {
3882
- "internalType": "uint256",
3883
- "name": "exactSyOut",
3884
- "type": "uint256"
3885
- }
3886
- ],
3887
- "name": "swapYtForExactSyStatic",
3888
- "outputs": [
3889
- {
3890
- "internalType": "uint256",
3891
- "name": "netYtIn",
3892
- "type": "uint256"
3893
- },
3894
- {
3895
- "internalType": "uint256",
3896
- "name": "netSyFee",
3897
- "type": "uint256"
3898
- },
3899
- {
3900
- "internalType": "uint256",
3901
- "name": "priceImpact",
3902
- "type": "uint256"
3903
- },
3904
- {
3905
- "internalType": "uint256",
3906
- "name": "exchangeRateAfter",
3907
- "type": "uint256"
3908
- }
3909
- ],
3910
- "stateMutability": "view",
3911
- "type": "function"
3912
- },
3913
- {
3914
- "inputs": [
3915
- {
3916
- "internalType": "address",
3917
- "name": "newOwner",
3918
- "type": "address"
3919
- },
3920
- {
3921
- "internalType": "bool",
3922
- "name": "direct",
3923
- "type": "bool"
3924
- },
3925
- {
3926
- "internalType": "bool",
3927
- "name": "renounce",
3928
- "type": "bool"
3929
- }
3930
- ],
3931
- "name": "transferOwnership",
3932
- "outputs": [],
3933
- "stateMutability": "nonpayable",
3934
- "type": "function"
3935
- }
3936
- ],
3937
- "bytecode": "0x",
3938
- "deployedBytecode": "0x",
3939
- "linkReferences": {},
3940
- "deployedLinkReferences": {}
3941
- }