@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,4030 +0,0 @@
1
- {
2
- "_format": "hh-sol-artifact-1",
3
- "contractName": "SDKErrorsDirectory",
4
- "sourceName": "contracts/offchain-helpers/errors/SDKErrorsDirectory.sol",
5
- "abi": [
6
- {
7
- "inputs": [],
8
- "name": "ADDRESS_NULL",
9
- "type": "error"
10
- },
11
- {
12
- "inputs": [],
13
- "name": "AERC20_ALREADY_REGISTERED",
14
- "type": "error"
15
- },
16
- {
17
- "inputs": [],
18
- "name": "AERC20_NOT_REGISTERED",
19
- "type": "error"
20
- },
21
- {
22
- "inputs": [],
23
- "name": "AMOUNT_IN_NOT_EQUAL_OR_LOWER_THAN_BALANCE",
24
- "type": "error"
25
- },
26
- {
27
- "inputs": [],
28
- "name": "AMOUNT_NULL",
29
- "type": "error"
30
- },
31
- {
32
- "inputs": [],
33
- "name": "ARRAY_LENGTH_MISMATCH",
34
- "type": "error"
35
- },
36
- {
37
- "inputs": [],
38
- "name": "ASSETS_RECEIVED_OUT_OF_SLIPPAGE",
39
- "type": "error"
40
- },
41
- {
42
- "inputs": [],
43
- "name": "AboveInflationLimit",
44
- "type": "error"
45
- },
46
- {
47
- "inputs": [],
48
- "name": "AboveMax",
49
- "type": "error"
50
- },
51
- {
52
- "inputs": [],
53
- "name": "AccessControlBadConfirmation",
54
- "type": "error"
55
- },
56
- {
57
- "inputs": [
58
- {
59
- "internalType": "address",
60
- "name": "account",
61
- "type": "address"
62
- },
63
- {
64
- "internalType": "bytes32",
65
- "name": "neededRole",
66
- "type": "bytes32"
67
- }
68
- ],
69
- "name": "AccessControlUnauthorizedAccount",
70
- "type": "error"
71
- },
72
- {
73
- "inputs": [
74
- {
75
- "internalType": "uint32",
76
- "name": "duration",
77
- "type": "uint32"
78
- }
79
- ],
80
- "name": "AdditionalWaitRequired",
81
- "type": "error"
82
- },
83
- {
84
- "inputs": [
85
- {
86
- "internalType": "address",
87
- "name": "target",
88
- "type": "address"
89
- }
90
- ],
91
- "name": "AddressEmptyCode",
92
- "type": "error"
93
- },
94
- {
95
- "inputs": [
96
- {
97
- "internalType": "address",
98
- "name": "account",
99
- "type": "address"
100
- }
101
- ],
102
- "name": "AddressInsufficientBalance",
103
- "type": "error"
104
- },
105
- {
106
- "inputs": [],
107
- "name": "AddressZero",
108
- "type": "error"
109
- },
110
- {
111
- "inputs": [],
112
- "name": "AlreadyAdded",
113
- "type": "error"
114
- },
115
- {
116
- "inputs": [
117
- {
118
- "internalType": "uint256",
119
- "name": "approxGuessMin",
120
- "type": "uint256"
121
- },
122
- {
123
- "internalType": "uint256",
124
- "name": "approxGuessMax",
125
- "type": "uint256"
126
- },
127
- {
128
- "internalType": "uint256",
129
- "name": "minGuessMin",
130
- "type": "uint256"
131
- },
132
- {
133
- "internalType": "uint256",
134
- "name": "maxGuessMax",
135
- "type": "uint256"
136
- }
137
- ],
138
- "name": "ApproxBinarySearchInputInvalid",
139
- "type": "error"
140
- },
141
- {
142
- "inputs": [],
143
- "name": "ApproxDstExecutionGasNotSet",
144
- "type": "error"
145
- },
146
- {
147
- "inputs": [],
148
- "name": "ApproxFail",
149
- "type": "error"
150
- },
151
- {
152
- "inputs": [
153
- {
154
- "internalType": "uint256",
155
- "name": "guessMin",
156
- "type": "uint256"
157
- },
158
- {
159
- "internalType": "uint256",
160
- "name": "guessMax",
161
- "type": "uint256"
162
- },
163
- {
164
- "internalType": "uint256",
165
- "name": "eps",
166
- "type": "uint256"
167
- }
168
- ],
169
- "name": "ApproxParamsInvalid",
170
- "type": "error"
171
- },
172
- {
173
- "inputs": [],
174
- "name": "ApxETHNotEnoughBuffer",
175
- "type": "error"
176
- },
177
- {
178
- "inputs": [],
179
- "name": "ArrayEmpty",
180
- "type": "error"
181
- },
182
- {
183
- "inputs": [],
184
- "name": "ArrayLengthMismatch",
185
- "type": "error"
186
- },
187
- {
188
- "inputs": [],
189
- "name": "ArrayOutOfBounds",
190
- "type": "error"
191
- },
192
- {
193
- "inputs": [],
194
- "name": "AstherusYieldProxyActivitiesOnGoing",
195
- "type": "error"
196
- },
197
- {
198
- "inputs": [
199
- {
200
- "internalType": "uint256",
201
- "name": "epoch",
202
- "type": "uint256"
203
- },
204
- {
205
- "internalType": "uint256",
206
- "name": "startTime",
207
- "type": "uint256"
208
- }
209
- ],
210
- "name": "BDInvalidEpoch",
211
- "type": "error"
212
- },
213
- {
214
- "inputs": [],
215
- "name": "BLACKLISTED_ROUTE_ID",
216
- "type": "error"
217
- },
218
- {
219
- "inputs": [],
220
- "name": "BLACKLISTED_SELECTOR",
221
- "type": "error"
222
- },
223
- {
224
- "inputs": [],
225
- "name": "BLOCK_CHAIN_ID_OUT_OF_BOUNDS",
226
- "type": "error"
227
- },
228
- {
229
- "inputs": [],
230
- "name": "BRIDGE_TOKENS_PENDING",
231
- "type": "error"
232
- },
233
- {
234
- "inputs": [],
235
- "name": "BelowMin",
236
- "type": "error"
237
- },
238
- {
239
- "inputs": [
240
- {
241
- "internalType": "uint256",
242
- "name": "actualRate",
243
- "type": "uint256"
244
- },
245
- {
246
- "internalType": "uint256",
247
- "name": "currentRate",
248
- "type": "uint256"
249
- },
250
- {
251
- "internalType": "uint256",
252
- "name": "eps",
253
- "type": "uint256"
254
- }
255
- ],
256
- "name": "BulkBadRateSyToToken",
257
- "type": "error"
258
- },
259
- {
260
- "inputs": [
261
- {
262
- "internalType": "uint256",
263
- "name": "actualRate",
264
- "type": "uint256"
265
- },
266
- {
267
- "internalType": "uint256",
268
- "name": "currentRate",
269
- "type": "uint256"
270
- },
271
- {
272
- "internalType": "uint256",
273
- "name": "eps",
274
- "type": "uint256"
275
- }
276
- ],
277
- "name": "BulkBadRateTokenToSy",
278
- "type": "error"
279
- },
280
- {
281
- "inputs": [
282
- {
283
- "internalType": "uint256",
284
- "name": "actualSyOut",
285
- "type": "uint256"
286
- },
287
- {
288
- "internalType": "uint256",
289
- "name": "requiredSyOut",
290
- "type": "uint256"
291
- }
292
- ],
293
- "name": "BulkInSufficientSyOut",
294
- "type": "error"
295
- },
296
- {
297
- "inputs": [
298
- {
299
- "internalType": "uint256",
300
- "name": "actualTokenOut",
301
- "type": "uint256"
302
- },
303
- {
304
- "internalType": "uint256",
305
- "name": "requiredTokenOut",
306
- "type": "uint256"
307
- }
308
- ],
309
- "name": "BulkInSufficientTokenOut",
310
- "type": "error"
311
- },
312
- {
313
- "inputs": [
314
- {
315
- "internalType": "uint256",
316
- "name": "currentAmount",
317
- "type": "uint256"
318
- },
319
- {
320
- "internalType": "uint256",
321
- "name": "requiredAmount",
322
- "type": "uint256"
323
- }
324
- ],
325
- "name": "BulkInsufficientSyForTrade",
326
- "type": "error"
327
- },
328
- {
329
- "inputs": [
330
- {
331
- "internalType": "uint256",
332
- "name": "actualBalance",
333
- "type": "uint256"
334
- },
335
- {
336
- "internalType": "uint256",
337
- "name": "requiredBalance",
338
- "type": "uint256"
339
- }
340
- ],
341
- "name": "BulkInsufficientSyReceived",
342
- "type": "error"
343
- },
344
- {
345
- "inputs": [
346
- {
347
- "internalType": "uint256",
348
- "name": "currentAmount",
349
- "type": "uint256"
350
- },
351
- {
352
- "internalType": "uint256",
353
- "name": "requiredAmount",
354
- "type": "uint256"
355
- }
356
- ],
357
- "name": "BulkInsufficientTokenForTrade",
358
- "type": "error"
359
- },
360
- {
361
- "inputs": [],
362
- "name": "BulkNotAdmin",
363
- "type": "error"
364
- },
365
- {
366
- "inputs": [],
367
- "name": "BulkNotMaintainer",
368
- "type": "error"
369
- },
370
- {
371
- "inputs": [
372
- {
373
- "internalType": "address",
374
- "name": "token",
375
- "type": "address"
376
- },
377
- {
378
- "internalType": "address",
379
- "name": "SY",
380
- "type": "address"
381
- },
382
- {
383
- "internalType": "address",
384
- "name": "bulk",
385
- "type": "address"
386
- }
387
- ],
388
- "name": "BulkSellerAlreadyExisted",
389
- "type": "error"
390
- },
391
- {
392
- "inputs": [
393
- {
394
- "internalType": "address",
395
- "name": "token",
396
- "type": "address"
397
- },
398
- {
399
- "internalType": "address",
400
- "name": "SY",
401
- "type": "address"
402
- }
403
- ],
404
- "name": "BulkSellerInvalidToken",
405
- "type": "error"
406
- },
407
- {
408
- "inputs": [],
409
- "name": "BytesZero",
410
- "type": "error"
411
- },
412
- {
413
- "inputs": [],
414
- "name": "CALLER_NOT_ENDPOINT",
415
- "type": "error"
416
- },
417
- {
418
- "inputs": [],
419
- "name": "CALLER_NOT_MAILBOX",
420
- "type": "error"
421
- },
422
- {
423
- "inputs": [],
424
- "name": "CALLER_NOT_RELAYER",
425
- "type": "error"
426
- },
427
- {
428
- "inputs": [],
429
- "name": "CANNOT_DECODE_FINAL_SWAP_OUTPUT_TOKEN",
430
- "type": "error"
431
- },
432
- {
433
- "inputs": [],
434
- "name": "CANNOT_FORWARD_4646_TOKEN",
435
- "type": "error"
436
- },
437
- {
438
- "inputs": [],
439
- "name": "CANNOT_REVOKE_LAST_ADMIN",
440
- "type": "error"
441
- },
442
- {
443
- "inputs": [],
444
- "name": "CANNOT_REVOKE_NON_BROADCASTABLE_ROLES",
445
- "type": "error"
446
- },
447
- {
448
- "inputs": [],
449
- "name": "CANNOT_UPDATE_WITHDRAW_TX_DATA",
450
- "type": "error"
451
- },
452
- {
453
- "inputs": [],
454
- "name": "CHAINLINK_INCOMPLETE_ROUND",
455
- "type": "error"
456
- },
457
- {
458
- "inputs": [],
459
- "name": "CHAINLINK_MALFUNCTION",
460
- "type": "error"
461
- },
462
- {
463
- "inputs": [],
464
- "name": "CHAINLINK_UNSUPPORTED_DECIMAL",
465
- "type": "error"
466
- },
467
- {
468
- "inputs": [
469
- {
470
- "internalType": "bool",
471
- "name": "success",
472
- "type": "bool"
473
- },
474
- {
475
- "internalType": "bytes",
476
- "name": "res",
477
- "type": "bytes"
478
- }
479
- ],
480
- "name": "CallThenRevertError",
481
- "type": "error"
482
- },
483
- {
484
- "inputs": [
485
- {
486
- "internalType": "uint256",
487
- "name": "chainId",
488
- "type": "uint256"
489
- }
490
- ],
491
- "name": "ChainNotSupported",
492
- "type": "error"
493
- },
494
- {
495
- "inputs": [],
496
- "name": "CollOverLimit",
497
- "type": "error"
498
- },
499
- {
500
- "inputs": [],
501
- "name": "CooldownNotComplete",
502
- "type": "error"
503
- },
504
- {
505
- "inputs": [],
506
- "name": "DECREASED_ALLOWANCE_BELOW_ZERO",
507
- "type": "error"
508
- },
509
- {
510
- "inputs": [],
511
- "name": "DELAY_NOT_SET",
512
- "type": "error"
513
- },
514
- {
515
- "inputs": [],
516
- "name": "DIFFERENT_PAYLOAD_UPDATE_AMOUNTS_LENGTH",
517
- "type": "error"
518
- },
519
- {
520
- "inputs": [],
521
- "name": "DIFFERENT_PAYLOAD_UPDATE_TX_DATA_LENGTH",
522
- "type": "error"
523
- },
524
- {
525
- "inputs": [],
526
- "name": "DIFFERENT_TOKENS",
527
- "type": "error"
528
- },
529
- {
530
- "inputs": [],
531
- "name": "DIRECT_DEPOSIT_SWAP_FAILED",
532
- "type": "error"
533
- },
534
- {
535
- "inputs": [],
536
- "name": "DIRECT_WITHDRAW_INVALID_LIQ_REQUEST",
537
- "type": "error"
538
- },
539
- {
540
- "inputs": [],
541
- "name": "DISABLED",
542
- "type": "error"
543
- },
544
- {
545
- "inputs": [],
546
- "name": "DISPUTE_TIME_ELAPSED",
547
- "type": "error"
548
- },
549
- {
550
- "inputs": [],
551
- "name": "DST_SWAP_ALREADY_PROCESSED",
552
- "type": "error"
553
- },
554
- {
555
- "inputs": [],
556
- "name": "DUPLICATE_FINAL_SUPERFORM_IDS",
557
- "type": "error"
558
- },
559
- {
560
- "inputs": [],
561
- "name": "DUPLICATE_INDEX",
562
- "type": "error"
563
- },
564
- {
565
- "inputs": [],
566
- "name": "DUPLICATE_PAYLOAD",
567
- "type": "error"
568
- },
569
- {
570
- "inputs": [],
571
- "name": "DUPLICATE_SUPERFORM_IDS_REBALANCE_FROM",
572
- "type": "error"
573
- },
574
- {
575
- "inputs": [],
576
- "name": "DYNAMIC_URI_FROZEN",
577
- "type": "error"
578
- },
579
- {
580
- "inputs": [],
581
- "name": "Deadline",
582
- "type": "error"
583
- },
584
- {
585
- "inputs": [],
586
- "name": "DuplicateAddress",
587
- "type": "error"
588
- },
589
- {
590
- "inputs": [],
591
- "name": "DuplicateFeed",
592
- "type": "error"
593
- },
594
- {
595
- "inputs": [],
596
- "name": "ECDSAInvalidSignature",
597
- "type": "error"
598
- },
599
- {
600
- "inputs": [
601
- {
602
- "internalType": "uint256",
603
- "name": "length",
604
- "type": "uint256"
605
- }
606
- ],
607
- "name": "ECDSAInvalidSignatureLength",
608
- "type": "error"
609
- },
610
- {
611
- "inputs": [
612
- {
613
- "internalType": "bytes32",
614
- "name": "s",
615
- "type": "bytes32"
616
- }
617
- ],
618
- "name": "ECDSAInvalidSignatureS",
619
- "type": "error"
620
- },
621
- {
622
- "inputs": [],
623
- "name": "EMERGENCY_WITHDRAW_NOT_QUEUED",
624
- "type": "error"
625
- },
626
- {
627
- "inputs": [],
628
- "name": "EMERGENCY_WITHDRAW_PROCESSED_ALREADY",
629
- "type": "error"
630
- },
631
- {
632
- "inputs": [],
633
- "name": "EMPTY_AMOUNTS_REBALANCE_FROM",
634
- "type": "error"
635
- },
636
- {
637
- "inputs": [],
638
- "name": "EMPTY_FINAL_SUPERFORM_IDS",
639
- "type": "error"
640
- },
641
- {
642
- "inputs": [
643
- {
644
- "internalType": "address",
645
- "name": "sender",
646
- "type": "address"
647
- },
648
- {
649
- "internalType": "uint256",
650
- "name": "balance",
651
- "type": "uint256"
652
- },
653
- {
654
- "internalType": "uint256",
655
- "name": "needed",
656
- "type": "uint256"
657
- },
658
- {
659
- "internalType": "uint256",
660
- "name": "tokenId",
661
- "type": "uint256"
662
- }
663
- ],
664
- "name": "ERC1155InsufficientBalance",
665
- "type": "error"
666
- },
667
- {
668
- "inputs": [
669
- {
670
- "internalType": "address",
671
- "name": "approver",
672
- "type": "address"
673
- }
674
- ],
675
- "name": "ERC1155InvalidApprover",
676
- "type": "error"
677
- },
678
- {
679
- "inputs": [
680
- {
681
- "internalType": "uint256",
682
- "name": "idsLength",
683
- "type": "uint256"
684
- },
685
- {
686
- "internalType": "uint256",
687
- "name": "valuesLength",
688
- "type": "uint256"
689
- }
690
- ],
691
- "name": "ERC1155InvalidArrayLength",
692
- "type": "error"
693
- },
694
- {
695
- "inputs": [
696
- {
697
- "internalType": "address",
698
- "name": "operator",
699
- "type": "address"
700
- }
701
- ],
702
- "name": "ERC1155InvalidOperator",
703
- "type": "error"
704
- },
705
- {
706
- "inputs": [
707
- {
708
- "internalType": "address",
709
- "name": "receiver",
710
- "type": "address"
711
- }
712
- ],
713
- "name": "ERC1155InvalidReceiver",
714
- "type": "error"
715
- },
716
- {
717
- "inputs": [
718
- {
719
- "internalType": "address",
720
- "name": "sender",
721
- "type": "address"
722
- }
723
- ],
724
- "name": "ERC1155InvalidSender",
725
- "type": "error"
726
- },
727
- {
728
- "inputs": [
729
- {
730
- "internalType": "address",
731
- "name": "operator",
732
- "type": "address"
733
- },
734
- {
735
- "internalType": "address",
736
- "name": "owner",
737
- "type": "address"
738
- }
739
- ],
740
- "name": "ERC1155MissingApprovalForAll",
741
- "type": "error"
742
- },
743
- {
744
- "inputs": [],
745
- "name": "ERC165_UNSUPPORTED",
746
- "type": "error"
747
- },
748
- {
749
- "inputs": [
750
- {
751
- "internalType": "address",
752
- "name": "admin",
753
- "type": "address"
754
- }
755
- ],
756
- "name": "ERC1967InvalidAdmin",
757
- "type": "error"
758
- },
759
- {
760
- "inputs": [
761
- {
762
- "internalType": "address",
763
- "name": "beacon",
764
- "type": "address"
765
- }
766
- ],
767
- "name": "ERC1967InvalidBeacon",
768
- "type": "error"
769
- },
770
- {
771
- "inputs": [
772
- {
773
- "internalType": "address",
774
- "name": "implementation",
775
- "type": "address"
776
- }
777
- ],
778
- "name": "ERC1967InvalidImplementation",
779
- "type": "error"
780
- },
781
- {
782
- "inputs": [],
783
- "name": "ERC1967NonPayable",
784
- "type": "error"
785
- },
786
- {
787
- "inputs": [
788
- {
789
- "internalType": "address",
790
- "name": "",
791
- "type": "address"
792
- },
793
- {
794
- "internalType": "uint256",
795
- "name": "",
796
- "type": "uint256"
797
- },
798
- {
799
- "internalType": "uint256",
800
- "name": "",
801
- "type": "uint256"
802
- }
803
- ],
804
- "name": "ERC20InsufficientAllowance",
805
- "type": "error"
806
- },
807
- {
808
- "inputs": [
809
- {
810
- "internalType": "address",
811
- "name": "",
812
- "type": "address"
813
- },
814
- {
815
- "internalType": "uint256",
816
- "name": "",
817
- "type": "uint256"
818
- },
819
- {
820
- "internalType": "uint256",
821
- "name": "",
822
- "type": "uint256"
823
- }
824
- ],
825
- "name": "ERC20InsufficientBalance",
826
- "type": "error"
827
- },
828
- {
829
- "inputs": [
830
- {
831
- "internalType": "address",
832
- "name": "approver",
833
- "type": "address"
834
- }
835
- ],
836
- "name": "ERC20InvalidApprover",
837
- "type": "error"
838
- },
839
- {
840
- "inputs": [
841
- {
842
- "internalType": "address",
843
- "name": "receiver",
844
- "type": "address"
845
- }
846
- ],
847
- "name": "ERC20InvalidReceiver",
848
- "type": "error"
849
- },
850
- {
851
- "inputs": [
852
- {
853
- "internalType": "address",
854
- "name": "sender",
855
- "type": "address"
856
- }
857
- ],
858
- "name": "ERC20InvalidSender",
859
- "type": "error"
860
- },
861
- {
862
- "inputs": [
863
- {
864
- "internalType": "address",
865
- "name": "spender",
866
- "type": "address"
867
- }
868
- ],
869
- "name": "ERC20InvalidSpender",
870
- "type": "error"
871
- },
872
- {
873
- "inputs": [
874
- {
875
- "internalType": "uint256",
876
- "name": "deadline",
877
- "type": "uint256"
878
- }
879
- ],
880
- "name": "ERC2612ExpiredSignature",
881
- "type": "error"
882
- },
883
- {
884
- "inputs": [
885
- {
886
- "internalType": "address",
887
- "name": "signer",
888
- "type": "address"
889
- },
890
- {
891
- "internalType": "address",
892
- "name": "owner",
893
- "type": "address"
894
- }
895
- ],
896
- "name": "ERC2612InvalidSigner",
897
- "type": "error"
898
- },
899
- {
900
- "inputs": [],
901
- "name": "ERC4626ExceededMaxDeposit",
902
- "type": "error"
903
- },
904
- {
905
- "inputs": [],
906
- "name": "ERC4626ExceededMaxMint",
907
- "type": "error"
908
- },
909
- {
910
- "inputs": [],
911
- "name": "ERC4626ExceededMaxRedeem",
912
- "type": "error"
913
- },
914
- {
915
- "inputs": [],
916
- "name": "ERC4626ExceededMaxWithdraw",
917
- "type": "error"
918
- },
919
- {
920
- "inputs": [
921
- {
922
- "internalType": "address",
923
- "name": "sender",
924
- "type": "address"
925
- },
926
- {
927
- "internalType": "uint256",
928
- "name": "tokenId",
929
- "type": "uint256"
930
- },
931
- {
932
- "internalType": "address",
933
- "name": "owner",
934
- "type": "address"
935
- }
936
- ],
937
- "name": "ERC721IncorrectOwner",
938
- "type": "error"
939
- },
940
- {
941
- "inputs": [
942
- {
943
- "internalType": "address",
944
- "name": "operator",
945
- "type": "address"
946
- },
947
- {
948
- "internalType": "uint256",
949
- "name": "tokenId",
950
- "type": "uint256"
951
- }
952
- ],
953
- "name": "ERC721InsufficientApproval",
954
- "type": "error"
955
- },
956
- {
957
- "inputs": [
958
- {
959
- "internalType": "address",
960
- "name": "approver",
961
- "type": "address"
962
- }
963
- ],
964
- "name": "ERC721InvalidApprover",
965
- "type": "error"
966
- },
967
- {
968
- "inputs": [
969
- {
970
- "internalType": "address",
971
- "name": "operator",
972
- "type": "address"
973
- }
974
- ],
975
- "name": "ERC721InvalidOperator",
976
- "type": "error"
977
- },
978
- {
979
- "inputs": [
980
- {
981
- "internalType": "address",
982
- "name": "owner",
983
- "type": "address"
984
- }
985
- ],
986
- "name": "ERC721InvalidOwner",
987
- "type": "error"
988
- },
989
- {
990
- "inputs": [
991
- {
992
- "internalType": "address",
993
- "name": "receiver",
994
- "type": "address"
995
- }
996
- ],
997
- "name": "ERC721InvalidReceiver",
998
- "type": "error"
999
- },
1000
- {
1001
- "inputs": [
1002
- {
1003
- "internalType": "address",
1004
- "name": "sender",
1005
- "type": "address"
1006
- }
1007
- ],
1008
- "name": "ERC721InvalidSender",
1009
- "type": "error"
1010
- },
1011
- {
1012
- "inputs": [
1013
- {
1014
- "internalType": "uint256",
1015
- "name": "tokenId",
1016
- "type": "uint256"
1017
- }
1018
- ],
1019
- "name": "ERC721NonexistentToken",
1020
- "type": "error"
1021
- },
1022
- {
1023
- "inputs": [],
1024
- "name": "EmergencyEnabled",
1025
- "type": "error"
1026
- },
1027
- {
1028
- "inputs": [],
1029
- "name": "EndOfEpoch",
1030
- "type": "error"
1031
- },
1032
- {
1033
- "inputs": [],
1034
- "name": "EnforcedPause",
1035
- "type": "error"
1036
- },
1037
- {
1038
- "inputs": [],
1039
- "name": "ErrorNotEnoughAllowance",
1040
- "type": "error"
1041
- },
1042
- {
1043
- "inputs": [
1044
- {
1045
- "internalType": "bytes",
1046
- "name": "data",
1047
- "type": "bytes"
1048
- }
1049
- ],
1050
- "name": "ExecutionFailed",
1051
- "type": "error"
1052
- },
1053
- {
1054
- "inputs": [],
1055
- "name": "ExpectedPause",
1056
- "type": "error"
1057
- },
1058
- {
1059
- "inputs": [],
1060
- "name": "Expired",
1061
- "type": "error"
1062
- },
1063
- {
1064
- "inputs": [
1065
- {
1066
- "internalType": "uint256",
1067
- "name": "expiry",
1068
- "type": "uint256"
1069
- }
1070
- ],
1071
- "name": "ExpiryInThePast",
1072
- "type": "error"
1073
- },
1074
- {
1075
- "inputs": [],
1076
- "name": "FAILED_DST_SWAP_ALREADY_UPDATED",
1077
- "type": "error"
1078
- },
1079
- {
1080
- "inputs": [
1081
- {
1082
- "internalType": "address",
1083
- "name": "token",
1084
- "type": "address"
1085
- }
1086
- ],
1087
- "name": "FAILED_TO_EXECUTE_TXDATA",
1088
- "type": "error"
1089
- },
1090
- {
1091
- "inputs": [],
1092
- "name": "FAILED_TO_SEND_NATIVE",
1093
- "type": "error"
1094
- },
1095
- {
1096
- "inputs": [],
1097
- "name": "FDEpochLengthMismatch",
1098
- "type": "error"
1099
- },
1100
- {
1101
- "inputs": [
1102
- {
1103
- "internalType": "uint256",
1104
- "name": "lastFunded",
1105
- "type": "uint256"
1106
- },
1107
- {
1108
- "internalType": "uint256",
1109
- "name": "currentWTime",
1110
- "type": "uint256"
1111
- }
1112
- ],
1113
- "name": "FDFutureFunding",
1114
- "type": "error"
1115
- },
1116
- {
1117
- "inputs": [
1118
- {
1119
- "internalType": "uint256",
1120
- "name": "oldFinishedEpoch",
1121
- "type": "uint256"
1122
- },
1123
- {
1124
- "internalType": "uint256",
1125
- "name": "newFinishedEpoch",
1126
- "type": "uint256"
1127
- }
1128
- ],
1129
- "name": "FDInvalidNewFinishedEpoch",
1130
- "type": "error"
1131
- },
1132
- {
1133
- "inputs": [
1134
- {
1135
- "internalType": "address",
1136
- "name": "pool",
1137
- "type": "address"
1138
- }
1139
- ],
1140
- "name": "FDInvalidPool",
1141
- "type": "error"
1142
- },
1143
- {
1144
- "inputs": [
1145
- {
1146
- "internalType": "uint256",
1147
- "name": "startEpoch",
1148
- "type": "uint256"
1149
- }
1150
- ],
1151
- "name": "FDInvalidStartEpoch",
1152
- "type": "error"
1153
- },
1154
- {
1155
- "inputs": [
1156
- {
1157
- "internalType": "uint256",
1158
- "name": "lastFunded",
1159
- "type": "uint256"
1160
- },
1161
- {
1162
- "internalType": "uint256",
1163
- "name": "wTime",
1164
- "type": "uint256"
1165
- }
1166
- ],
1167
- "name": "FDInvalidWTimeFund",
1168
- "type": "error"
1169
- },
1170
- {
1171
- "inputs": [
1172
- {
1173
- "internalType": "address",
1174
- "name": "pool",
1175
- "type": "address"
1176
- }
1177
- ],
1178
- "name": "FDPoolAlreadyExists",
1179
- "type": "error"
1180
- },
1181
- {
1182
- "inputs": [
1183
- {
1184
- "internalType": "uint256",
1185
- "name": "actualTotalAmount",
1186
- "type": "uint256"
1187
- },
1188
- {
1189
- "internalType": "uint256",
1190
- "name": "expectedTotalAmount",
1191
- "type": "uint256"
1192
- }
1193
- ],
1194
- "name": "FDTotalAmountFundedNotMatch",
1195
- "type": "error"
1196
- },
1197
- {
1198
- "inputs": [],
1199
- "name": "FORM_DOES_NOT_EXIST",
1200
- "type": "error"
1201
- },
1202
- {
1203
- "inputs": [],
1204
- "name": "FORM_IMPLEMENTATION_ALREADY_EXISTS",
1205
- "type": "error"
1206
- },
1207
- {
1208
- "inputs": [],
1209
- "name": "FORM_IMPLEMENTATION_ID_ALREADY_EXISTS",
1210
- "type": "error"
1211
- },
1212
- {
1213
- "inputs": [],
1214
- "name": "FORM_INTERFACE_UNSUPPORTED",
1215
- "type": "error"
1216
- },
1217
- {
1218
- "inputs": [],
1219
- "name": "FailToAdd",
1220
- "type": "error"
1221
- },
1222
- {
1223
- "inputs": [],
1224
- "name": "FailToRemove",
1225
- "type": "error"
1226
- },
1227
- {
1228
- "inputs": [],
1229
- "name": "FailedCall",
1230
- "type": "error"
1231
- },
1232
- {
1233
- "inputs": [],
1234
- "name": "FailedDeployment",
1235
- "type": "error"
1236
- },
1237
- {
1238
- "inputs": [],
1239
- "name": "FailedInnerCall",
1240
- "type": "error"
1241
- },
1242
- {
1243
- "inputs": [],
1244
- "name": "FailedToSendEther",
1245
- "type": "error"
1246
- },
1247
- {
1248
- "inputs": [],
1249
- "name": "FarmNotFound",
1250
- "type": "error"
1251
- },
1252
- {
1253
- "inputs": [
1254
- {
1255
- "internalType": "uint256",
1256
- "name": "errCode",
1257
- "type": "uint256"
1258
- }
1259
- ],
1260
- "name": "FluxLendingError",
1261
- "type": "error"
1262
- },
1263
- {
1264
- "inputs": [],
1265
- "name": "Forbidden",
1266
- "type": "error"
1267
- },
1268
- {
1269
- "inputs": [
1270
- {
1271
- "internalType": "address",
1272
- "name": "caller",
1273
- "type": "address"
1274
- }
1275
- ],
1276
- "name": "GCNotPendleMarket",
1277
- "type": "error"
1278
- },
1279
- {
1280
- "inputs": [
1281
- {
1282
- "internalType": "address",
1283
- "name": "caller",
1284
- "type": "address"
1285
- }
1286
- ],
1287
- "name": "GCNotVotingController",
1288
- "type": "error"
1289
- },
1290
- {
1291
- "inputs": [],
1292
- "name": "GnsPriceCallFailed",
1293
- "type": "error"
1294
- },
1295
- {
1296
- "inputs": [],
1297
- "name": "GnsTokenPriceZero",
1298
- "type": "error"
1299
- },
1300
- {
1301
- "inputs": [],
1302
- "name": "ID_NOT_MINTED_YET",
1303
- "type": "error"
1304
- },
1305
- {
1306
- "inputs": [],
1307
- "name": "INDEX_OUT_OF_BOUNDS",
1308
- "type": "error"
1309
- },
1310
- {
1311
- "inputs": [],
1312
- "name": "INSUFFICIENT_ALLOWANCE_FOR_DEPOSIT",
1313
- "type": "error"
1314
- },
1315
- {
1316
- "inputs": [],
1317
- "name": "INSUFFICIENT_BALANCE",
1318
- "type": "error"
1319
- },
1320
- {
1321
- "inputs": [],
1322
- "name": "INSUFFICIENT_NATIVE_AMOUNT",
1323
- "type": "error"
1324
- },
1325
- {
1326
- "inputs": [],
1327
- "name": "INSUFFICIENT_QUORUM",
1328
- "type": "error"
1329
- },
1330
- {
1331
- "inputs": [],
1332
- "name": "INVALID_ACTION",
1333
- "type": "error"
1334
- },
1335
- {
1336
- "inputs": [],
1337
- "name": "INVALID_BRIDGE_ID",
1338
- "type": "error"
1339
- },
1340
- {
1341
- "inputs": [],
1342
- "name": "INVALID_BROADCAST_FEE",
1343
- "type": "error"
1344
- },
1345
- {
1346
- "inputs": [],
1347
- "name": "INVALID_BROADCAST_FINALITY",
1348
- "type": "error"
1349
- },
1350
- {
1351
- "inputs": [],
1352
- "name": "INVALID_BROADCAST_PAYLOAD",
1353
- "type": "error"
1354
- },
1355
- {
1356
- "inputs": [],
1357
- "name": "INVALID_CHAIN_ID",
1358
- "type": "error"
1359
- },
1360
- {
1361
- "inputs": [],
1362
- "name": "INVALID_DEPOSIT_LIQ_DST_CHAIN_ID",
1363
- "type": "error"
1364
- },
1365
- {
1366
- "inputs": [],
1367
- "name": "INVALID_DEPOSIT_SELECTOR",
1368
- "type": "error"
1369
- },
1370
- {
1371
- "inputs": [],
1372
- "name": "INVALID_DEPOSIT_TOKEN",
1373
- "type": "error"
1374
- },
1375
- {
1376
- "inputs": [],
1377
- "name": "INVALID_DST_SWAPPER_FAILED_SWAP",
1378
- "type": "error"
1379
- },
1380
- {
1381
- "inputs": [],
1382
- "name": "INVALID_DST_SWAPPER_FAILED_SWAP_NO_NATIVE_BALANCE",
1383
- "type": "error"
1384
- },
1385
- {
1386
- "inputs": [],
1387
- "name": "INVALID_DST_SWAPPER_FAILED_SWAP_NO_TOKEN_BALANCE",
1388
- "type": "error"
1389
- },
1390
- {
1391
- "inputs": [],
1392
- "name": "INVALID_DST_SWAP_AMOUNT",
1393
- "type": "error"
1394
- },
1395
- {
1396
- "inputs": [],
1397
- "name": "INVALID_FEE",
1398
- "type": "error"
1399
- },
1400
- {
1401
- "inputs": [],
1402
- "name": "INVALID_FORM_ID",
1403
- "type": "error"
1404
- },
1405
- {
1406
- "inputs": [],
1407
- "name": "INVALID_FORM_REGISTRY_ID",
1408
- "type": "error"
1409
- },
1410
- {
1411
- "inputs": [],
1412
- "name": "INVALID_GLOBAL_SLIPPAGE",
1413
- "type": "error"
1414
- },
1415
- {
1416
- "inputs": [],
1417
- "name": "INVALID_INDEX",
1418
- "type": "error"
1419
- },
1420
- {
1421
- "inputs": [],
1422
- "name": "INVALID_INTERIM_TOKEN",
1423
- "type": "error"
1424
- },
1425
- {
1426
- "inputs": [],
1427
- "name": "INVALID_INTERNAL_CALL",
1428
- "type": "error"
1429
- },
1430
- {
1431
- "inputs": [],
1432
- "name": "INVALID_MESSAGE_TYPE",
1433
- "type": "error"
1434
- },
1435
- {
1436
- "inputs": [],
1437
- "name": "INVALID_NATIVE_TOKEN_PRICE",
1438
- "type": "error"
1439
- },
1440
- {
1441
- "inputs": [],
1442
- "name": "INVALID_PAYLOAD",
1443
- "type": "error"
1444
- },
1445
- {
1446
- "inputs": [],
1447
- "name": "INVALID_PAYLOAD_HASH",
1448
- "type": "error"
1449
- },
1450
- {
1451
- "inputs": [],
1452
- "name": "INVALID_PAYLOAD_ID",
1453
- "type": "error"
1454
- },
1455
- {
1456
- "inputs": [],
1457
- "name": "INVALID_PAYLOAD_STATUS",
1458
- "type": "error"
1459
- },
1460
- {
1461
- "inputs": [],
1462
- "name": "INVALID_PAYLOAD_TYPE",
1463
- "type": "error"
1464
- },
1465
- {
1466
- "inputs": [],
1467
- "name": "INVALID_PAYLOAD_UPDATE_REQUEST",
1468
- "type": "error"
1469
- },
1470
- {
1471
- "inputs": [],
1472
- "name": "INVALID_PROOF_BRIDGE_ID",
1473
- "type": "error"
1474
- },
1475
- {
1476
- "inputs": [],
1477
- "name": "INVALID_PROOF_BRIDGE_IDS",
1478
- "type": "error"
1479
- },
1480
- {
1481
- "inputs": [],
1482
- "name": "INVALID_REBALANCE_FROM_SELECTOR",
1483
- "type": "error"
1484
- },
1485
- {
1486
- "inputs": [],
1487
- "name": "INVALID_REBALANCE_SELECTOR",
1488
- "type": "error"
1489
- },
1490
- {
1491
- "inputs": [],
1492
- "name": "INVALID_REGISTRY_ID",
1493
- "type": "error"
1494
- },
1495
- {
1496
- "inputs": [],
1497
- "name": "INVALID_RESCUE_DATA",
1498
- "type": "error"
1499
- },
1500
- {
1501
- "inputs": [],
1502
- "name": "INVALID_RETRY_FEE",
1503
- "type": "error"
1504
- },
1505
- {
1506
- "inputs": [
1507
- {
1508
- "internalType": "uint256",
1509
- "name": "superformId",
1510
- "type": "uint256"
1511
- }
1512
- ],
1513
- "name": "INVALID_SP_FULL_REBALANCE",
1514
- "type": "error"
1515
- },
1516
- {
1517
- "inputs": [],
1518
- "name": "INVALID_SRC_SENDER",
1519
- "type": "error"
1520
- },
1521
- {
1522
- "inputs": [],
1523
- "name": "INVALID_SUPERFORMS_DATA",
1524
- "type": "error"
1525
- },
1526
- {
1527
- "inputs": [],
1528
- "name": "INVALID_SUPERFORM_ID_REBALANCE_FROM",
1529
- "type": "error"
1530
- },
1531
- {
1532
- "inputs": [],
1533
- "name": "INVALID_SWAP_OUTPUT",
1534
- "type": "error"
1535
- },
1536
- {
1537
- "inputs": [],
1538
- "name": "INVALID_TIMELOCK_DELAY",
1539
- "type": "error"
1540
- },
1541
- {
1542
- "inputs": [],
1543
- "name": "INVALID_TXDATA_CHAIN_ID",
1544
- "type": "error"
1545
- },
1546
- {
1547
- "inputs": [],
1548
- "name": "INVALID_TXDATA_NO_DESTINATIONCALL_ALLOWED",
1549
- "type": "error"
1550
- },
1551
- {
1552
- "inputs": [],
1553
- "name": "INVALID_TXDATA_RECEIVER",
1554
- "type": "error"
1555
- },
1556
- {
1557
- "inputs": [],
1558
- "name": "INVALID_TXDATA_TOKEN",
1559
- "type": "error"
1560
- },
1561
- {
1562
- "inputs": [],
1563
- "name": "INVALID_UPDATE_FINAL_TOKEN",
1564
- "type": "error"
1565
- },
1566
- {
1567
- "inputs": [],
1568
- "name": "INVALID_WEIGHTS",
1569
- "type": "error"
1570
- },
1571
- {
1572
- "inputs": [],
1573
- "name": "IXERC20_NotHighEnoughLimits",
1574
- "type": "error"
1575
- },
1576
- {
1577
- "inputs": [
1578
- {
1579
- "internalType": "uint16",
1580
- "name": "cardinalityRequired",
1581
- "type": "uint16"
1582
- }
1583
- ],
1584
- "name": "IncreaseCardinalityRequired",
1585
- "type": "error"
1586
- },
1587
- {
1588
- "inputs": [],
1589
- "name": "InsufficientAmount",
1590
- "type": "error"
1591
- },
1592
- {
1593
- "inputs": [],
1594
- "name": "InsufficientBalance",
1595
- "type": "error"
1596
- },
1597
- {
1598
- "inputs": [
1599
- {
1600
- "internalType": "uint256",
1601
- "name": "currentFee",
1602
- "type": "uint256"
1603
- },
1604
- {
1605
- "internalType": "uint256",
1606
- "name": "requiredFee",
1607
- "type": "uint256"
1608
- }
1609
- ],
1610
- "name": "InsufficientFeeToSendMsg",
1611
- "type": "error"
1612
- },
1613
- {
1614
- "inputs": [],
1615
- "name": "InsufficientLpAmount",
1616
- "type": "error"
1617
- },
1618
- {
1619
- "inputs": [
1620
- {
1621
- "internalType": "address",
1622
- "name": "account",
1623
- "type": "address"
1624
- },
1625
- {
1626
- "internalType": "uint256",
1627
- "name": "currentNonce",
1628
- "type": "uint256"
1629
- }
1630
- ],
1631
- "name": "InvalidAccountNonce",
1632
- "type": "error"
1633
- },
1634
- {
1635
- "inputs": [],
1636
- "name": "InvalidAddress",
1637
- "type": "error"
1638
- },
1639
- {
1640
- "inputs": [],
1641
- "name": "InvalidAmountToDeposit",
1642
- "type": "error"
1643
- },
1644
- {
1645
- "inputs": [],
1646
- "name": "InvalidBaseDecimals",
1647
- "type": "error"
1648
- },
1649
- {
1650
- "inputs": [
1651
- {
1652
- "internalType": "uint256",
1653
- "name": "blockCycleNumerator",
1654
- "type": "uint256"
1655
- }
1656
- ],
1657
- "name": "InvalidBlockRate",
1658
- "type": "error"
1659
- },
1660
- {
1661
- "inputs": [],
1662
- "name": "InvalidConfiguration",
1663
- "type": "error"
1664
- },
1665
- {
1666
- "inputs": [],
1667
- "name": "InvalidDataArray",
1668
- "type": "error"
1669
- },
1670
- {
1671
- "inputs": [],
1672
- "name": "InvalidDelay",
1673
- "type": "error"
1674
- },
1675
- {
1676
- "inputs": [],
1677
- "name": "InvalidDelegate",
1678
- "type": "error"
1679
- },
1680
- {
1681
- "inputs": [],
1682
- "name": "InvalidDepositAmount",
1683
- "type": "error"
1684
- },
1685
- {
1686
- "inputs": [],
1687
- "name": "InvalidEndpointCall",
1688
- "type": "error"
1689
- },
1690
- {
1691
- "inputs": [],
1692
- "name": "InvalidFarm",
1693
- "type": "error"
1694
- },
1695
- {
1696
- "inputs": [],
1697
- "name": "InvalidFeed",
1698
- "type": "error"
1699
- },
1700
- {
1701
- "inputs": [],
1702
- "name": "InvalidInitialization",
1703
- "type": "error"
1704
- },
1705
- {
1706
- "inputs": [],
1707
- "name": "InvalidInput",
1708
- "type": "error"
1709
- },
1710
- {
1711
- "inputs": [],
1712
- "name": "InvalidLength",
1713
- "type": "error"
1714
- },
1715
- {
1716
- "inputs": [],
1717
- "name": "InvalidLocalDecimals",
1718
- "type": "error"
1719
- },
1720
- {
1721
- "inputs": [],
1722
- "name": "InvalidMaxConfWidthLowerBound",
1723
- "type": "error"
1724
- },
1725
- {
1726
- "inputs": [],
1727
- "name": "InvalidMaxStaleness",
1728
- "type": "error"
1729
- },
1730
- {
1731
- "inputs": [],
1732
- "name": "InvalidMaxStalenessUpperBound",
1733
- "type": "error"
1734
- },
1735
- {
1736
- "inputs": [],
1737
- "name": "InvalidMerkleProof",
1738
- "type": "error"
1739
- },
1740
- {
1741
- "inputs": [
1742
- {
1743
- "components": [
1744
- {
1745
- "internalType": "uint128",
1746
- "name": "rate",
1747
- "type": "uint128"
1748
- },
1749
- {
1750
- "internalType": "uint64",
1751
- "name": "dataBlock",
1752
- "type": "uint64"
1753
- },
1754
- {
1755
- "internalType": "uint32",
1756
- "name": "dataTimestamp",
1757
- "type": "uint32"
1758
- },
1759
- {
1760
- "internalType": "uint32",
1761
- "name": "updatedAt",
1762
- "type": "uint32"
1763
- }
1764
- ],
1765
- "internalType": "struct SDKErrorsDirectory.ExchangeRateData",
1766
- "name": "data",
1767
- "type": "tuple"
1768
- }
1769
- ],
1770
- "name": "InvalidMetadata",
1771
- "type": "error"
1772
- },
1773
- {
1774
- "inputs": [
1775
- {
1776
- "internalType": "uint256",
1777
- "name": "tokenId",
1778
- "type": "uint256"
1779
- }
1780
- ],
1781
- "name": "InvalidNft",
1782
- "type": "error"
1783
- },
1784
- {
1785
- "inputs": [],
1786
- "name": "InvalidPrice",
1787
- "type": "error"
1788
- },
1789
- {
1790
- "inputs": [],
1791
- "name": "InvalidPriceExponent",
1792
- "type": "error"
1793
- },
1794
- {
1795
- "inputs": [],
1796
- "name": "InvalidRange",
1797
- "type": "error"
1798
- },
1799
- {
1800
- "inputs": [],
1801
- "name": "InvalidRetryData",
1802
- "type": "error"
1803
- },
1804
- {
1805
- "inputs": [],
1806
- "name": "InvalidReward",
1807
- "type": "error"
1808
- },
1809
- {
1810
- "inputs": [],
1811
- "name": "InvalidRoundId",
1812
- "type": "error"
1813
- },
1814
- {
1815
- "inputs": [],
1816
- "name": "InvalidSPLength",
1817
- "type": "error"
1818
- },
1819
- {
1820
- "inputs": [],
1821
- "name": "InvalidShortString",
1822
- "type": "error"
1823
- },
1824
- {
1825
- "inputs": [],
1826
- "name": "InvalidState",
1827
- "type": "error"
1828
- },
1829
- {
1830
- "inputs": [],
1831
- "name": "InvalidTime",
1832
- "type": "error"
1833
- },
1834
- {
1835
- "inputs": [],
1836
- "name": "InvalidTimestamp",
1837
- "type": "error"
1838
- },
1839
- {
1840
- "inputs": [],
1841
- "name": "InvalidToken",
1842
- "type": "error"
1843
- },
1844
- {
1845
- "inputs": [
1846
- {
1847
- "internalType": "uint256",
1848
- "name": "tokenId",
1849
- "type": "uint256"
1850
- },
1851
- {
1852
- "internalType": "uint256",
1853
- "name": "positionId",
1854
- "type": "uint256"
1855
- }
1856
- ],
1857
- "name": "InvalidTokenId",
1858
- "type": "error"
1859
- },
1860
- {
1861
- "inputs": [],
1862
- "name": "InvalidTotalSupply",
1863
- "type": "error"
1864
- },
1865
- {
1866
- "inputs": [],
1867
- "name": "InvalidTotalWeight",
1868
- "type": "error"
1869
- },
1870
- {
1871
- "inputs": [
1872
- {
1873
- "internalType": "uint256",
1874
- "name": "wTime",
1875
- "type": "uint256"
1876
- }
1877
- ],
1878
- "name": "InvalidWTime",
1879
- "type": "error"
1880
- },
1881
- {
1882
- "inputs": [],
1883
- "name": "InvalidWithdrawalFee",
1884
- "type": "error"
1885
- },
1886
- {
1887
- "inputs": [
1888
- {
1889
- "internalType": "uint256",
1890
- "name": "assetLimit",
1891
- "type": "uint256"
1892
- },
1893
- {
1894
- "internalType": "uint256",
1895
- "name": "totalAsset",
1896
- "type": "uint256"
1897
- },
1898
- {
1899
- "internalType": "uint256",
1900
- "name": "amountAssetToDeposit",
1901
- "type": "uint256"
1902
- }
1903
- ],
1904
- "name": "KarakVaultAssetLimitExceeded",
1905
- "type": "error"
1906
- },
1907
- {
1908
- "inputs": [],
1909
- "name": "LENGTH_MISMATCH",
1910
- "type": "error"
1911
- },
1912
- {
1913
- "inputs": [],
1914
- "name": "LOCKED",
1915
- "type": "error"
1916
- },
1917
- {
1918
- "inputs": [],
1919
- "name": "LimitOverflow",
1920
- "type": "error"
1921
- },
1922
- {
1923
- "inputs": [],
1924
- "name": "LiquidityNotMatch",
1925
- "type": "error"
1926
- },
1927
- {
1928
- "inputs": [
1929
- {
1930
- "internalType": "uint256",
1931
- "name": "remainingStake",
1932
- "type": "uint256"
1933
- },
1934
- {
1935
- "internalType": "uint256",
1936
- "name": "amountStaking",
1937
- "type": "uint256"
1938
- }
1939
- ],
1940
- "name": "LombardStakeLimitExceed",
1941
- "type": "error"
1942
- },
1943
- {
1944
- "inputs": [],
1945
- "name": "LzTokenUnavailable",
1946
- "type": "error"
1947
- },
1948
- {
1949
- "inputs": [
1950
- {
1951
- "internalType": "address",
1952
- "name": "addr",
1953
- "type": "address"
1954
- }
1955
- ],
1956
- "name": "MFNotPendleMarket",
1957
- "type": "error"
1958
- },
1959
- {
1960
- "inputs": [],
1961
- "name": "MSG_VALUE_NOT_ZERO",
1962
- "type": "error"
1963
- },
1964
- {
1965
- "inputs": [
1966
- {
1967
- "internalType": "int256",
1968
- "name": "exchangeRate",
1969
- "type": "int256"
1970
- }
1971
- ],
1972
- "name": "MarketExchangeRateBelowOne",
1973
- "type": "error"
1974
- },
1975
- {
1976
- "inputs": [],
1977
- "name": "MarketExpired",
1978
- "type": "error"
1979
- },
1980
- {
1981
- "inputs": [],
1982
- "name": "MarketFactoryExpiredPt",
1983
- "type": "error"
1984
- },
1985
- {
1986
- "inputs": [
1987
- {
1988
- "internalType": "int256",
1989
- "name": "initialAnchor",
1990
- "type": "int256"
1991
- },
1992
- {
1993
- "internalType": "int256",
1994
- "name": "minInitialAnchor",
1995
- "type": "int256"
1996
- }
1997
- ],
1998
- "name": "MarketFactoryInitialAnchorTooLow",
1999
- "type": "error"
2000
- },
2001
- {
2002
- "inputs": [],
2003
- "name": "MarketFactoryInvalidPt",
2004
- "type": "error"
2005
- },
2006
- {
2007
- "inputs": [
2008
- {
2009
- "internalType": "uint80",
2010
- "name": "lnFeeRateRoot",
2011
- "type": "uint80"
2012
- },
2013
- {
2014
- "internalType": "uint256",
2015
- "name": "maxLnFeeRateRoot",
2016
- "type": "uint256"
2017
- }
2018
- ],
2019
- "name": "MarketFactoryLnFeeRateRootTooHigh",
2020
- "type": "error"
2021
- },
2022
- {
2023
- "inputs": [],
2024
- "name": "MarketFactoryMarketExists",
2025
- "type": "error"
2026
- },
2027
- {
2028
- "inputs": [
2029
- {
2030
- "internalType": "uint80",
2031
- "name": "overriddenFee",
2032
- "type": "uint80"
2033
- },
2034
- {
2035
- "internalType": "uint256",
2036
- "name": "marketLnFeeRateRoot",
2037
- "type": "uint256"
2038
- }
2039
- ],
2040
- "name": "MarketFactoryOverriddenFeeTooHigh",
2041
- "type": "error"
2042
- },
2043
- {
2044
- "inputs": [
2045
- {
2046
- "internalType": "uint8",
2047
- "name": "reserveFeePercent",
2048
- "type": "uint8"
2049
- },
2050
- {
2051
- "internalType": "uint8",
2052
- "name": "maxReserveFeePercent",
2053
- "type": "uint8"
2054
- }
2055
- ],
2056
- "name": "MarketFactoryReserveFeePercentTooHigh",
2057
- "type": "error"
2058
- },
2059
- {
2060
- "inputs": [],
2061
- "name": "MarketFactoryZeroTreasury",
2062
- "type": "error"
2063
- },
2064
- {
2065
- "inputs": [
2066
- {
2067
- "internalType": "int256",
2068
- "name": "currentAmount",
2069
- "type": "int256"
2070
- },
2071
- {
2072
- "internalType": "int256",
2073
- "name": "requiredAmount",
2074
- "type": "int256"
2075
- }
2076
- ],
2077
- "name": "MarketInsufficientPtForTrade",
2078
- "type": "error"
2079
- },
2080
- {
2081
- "inputs": [
2082
- {
2083
- "internalType": "uint256",
2084
- "name": "actualBalance",
2085
- "type": "uint256"
2086
- },
2087
- {
2088
- "internalType": "uint256",
2089
- "name": "requiredBalance",
2090
- "type": "uint256"
2091
- }
2092
- ],
2093
- "name": "MarketInsufficientPtReceived",
2094
- "type": "error"
2095
- },
2096
- {
2097
- "inputs": [
2098
- {
2099
- "internalType": "uint256",
2100
- "name": "actualBalance",
2101
- "type": "uint256"
2102
- },
2103
- {
2104
- "internalType": "uint256",
2105
- "name": "requiredBalance",
2106
- "type": "uint256"
2107
- }
2108
- ],
2109
- "name": "MarketInsufficientSyReceived",
2110
- "type": "error"
2111
- },
2112
- {
2113
- "inputs": [],
2114
- "name": "MarketProportionMustNotEqualOne",
2115
- "type": "error"
2116
- },
2117
- {
2118
- "inputs": [
2119
- {
2120
- "internalType": "int256",
2121
- "name": "proportion",
2122
- "type": "int256"
2123
- },
2124
- {
2125
- "internalType": "int256",
2126
- "name": "maxProportion",
2127
- "type": "int256"
2128
- }
2129
- ],
2130
- "name": "MarketProportionTooHigh",
2131
- "type": "error"
2132
- },
2133
- {
2134
- "inputs": [
2135
- {
2136
- "internalType": "int256",
2137
- "name": "rateScalar",
2138
- "type": "int256"
2139
- }
2140
- ],
2141
- "name": "MarketRateScalarBelowZero",
2142
- "type": "error"
2143
- },
2144
- {
2145
- "inputs": [
2146
- {
2147
- "internalType": "int256",
2148
- "name": "scalarRoot",
2149
- "type": "int256"
2150
- }
2151
- ],
2152
- "name": "MarketScalarRootBelowZero",
2153
- "type": "error"
2154
- },
2155
- {
2156
- "inputs": [],
2157
- "name": "MarketZeroAmountsInput",
2158
- "type": "error"
2159
- },
2160
- {
2161
- "inputs": [],
2162
- "name": "MarketZeroAmountsOutput",
2163
- "type": "error"
2164
- },
2165
- {
2166
- "inputs": [],
2167
- "name": "MarketZeroLnImpliedRate",
2168
- "type": "error"
2169
- },
2170
- {
2171
- "inputs": [
2172
- {
2173
- "internalType": "int256",
2174
- "name": "totalPt",
2175
- "type": "int256"
2176
- },
2177
- {
2178
- "internalType": "int256",
2179
- "name": "totalAsset",
2180
- "type": "int256"
2181
- }
2182
- ],
2183
- "name": "MarketZeroTotalPtOrTotalAsset",
2184
- "type": "error"
2185
- },
2186
- {
2187
- "inputs": [],
2188
- "name": "MathOverflowedMulDiv",
2189
- "type": "error"
2190
- },
2191
- {
2192
- "inputs": [],
2193
- "name": "MaxDailyPnl",
2194
- "type": "error"
2195
- },
2196
- {
2197
- "inputs": [
2198
- {
2199
- "internalType": "uint256",
2200
- "name": "amountTaoToWrap",
2201
- "type": "uint256"
2202
- },
2203
- {
2204
- "internalType": "uint256",
2205
- "name": "maxTaoForWrap",
2206
- "type": "uint256"
2207
- }
2208
- ],
2209
- "name": "MaxStTAOSupplyExceeded",
2210
- "type": "error"
2211
- },
2212
- {
2213
- "inputs": [],
2214
- "name": "MellowVaultHasInvalidAssets",
2215
- "type": "error"
2216
- },
2217
- {
2218
- "inputs": [
2219
- {
2220
- "internalType": "uint256",
2221
- "name": "amountToRedeem",
2222
- "type": "uint256"
2223
- },
2224
- {
2225
- "internalType": "uint256",
2226
- "name": "minimumRedeemAmount",
2227
- "type": "uint256"
2228
- }
2229
- ],
2230
- "name": "MinimumRedeemAmountNotReached",
2231
- "type": "error"
2232
- },
2233
- {
2234
- "inputs": [
2235
- {
2236
- "internalType": "uint256",
2237
- "name": "amountToStake",
2238
- "type": "uint256"
2239
- },
2240
- {
2241
- "internalType": "uint256",
2242
- "name": "minimumStakeAmount",
2243
- "type": "uint256"
2244
- }
2245
- ],
2246
- "name": "MinimumStakeAmountNotReached",
2247
- "type": "error"
2248
- },
2249
- {
2250
- "inputs": [
2251
- {
2252
- "internalType": "address",
2253
- "name": "",
2254
- "type": "address"
2255
- }
2256
- ],
2257
- "name": "MissingPrecompile",
2258
- "type": "error"
2259
- },
2260
- {
2261
- "inputs": [
2262
- {
2263
- "internalType": "uint256",
2264
- "name": "errorCode",
2265
- "type": "uint256"
2266
- }
2267
- ],
2268
- "name": "MoonwellMintError",
2269
- "type": "error"
2270
- },
2271
- {
2272
- "inputs": [
2273
- {
2274
- "internalType": "uint256",
2275
- "name": "errorCode",
2276
- "type": "uint256"
2277
- }
2278
- ],
2279
- "name": "MoonwellRedeemError",
2280
- "type": "error"
2281
- },
2282
- {
2283
- "inputs": [
2284
- {
2285
- "internalType": "address",
2286
- "name": "sender",
2287
- "type": "address"
2288
- }
2289
- ],
2290
- "name": "MsgNotFromReceiveEndpoint",
2291
- "type": "error"
2292
- },
2293
- {
2294
- "inputs": [
2295
- {
2296
- "internalType": "uint16",
2297
- "name": "srcChainId",
2298
- "type": "uint16"
2299
- },
2300
- {
2301
- "internalType": "bytes",
2302
- "name": "path",
2303
- "type": "bytes"
2304
- }
2305
- ],
2306
- "name": "MsgNotFromSendEndpoint",
2307
- "type": "error"
2308
- },
2309
- {
2310
- "inputs": [],
2311
- "name": "NEGATIVE_SLIPPAGE",
2312
- "type": "error"
2313
- },
2314
- {
2315
- "inputs": [],
2316
- "name": "NOT_ALLOWED_BROADCASTER",
2317
- "type": "error"
2318
- },
2319
- {
2320
- "inputs": [],
2321
- "name": "NOT_AMB_IMPLEMENTATION",
2322
- "type": "error"
2323
- },
2324
- {
2325
- "inputs": [],
2326
- "name": "NOT_BLACKLISTED_ROUTE_ID",
2327
- "type": "error"
2328
- },
2329
- {
2330
- "inputs": [],
2331
- "name": "NOT_BLACKLISTED_SELECTOR",
2332
- "type": "error"
2333
- },
2334
- {
2335
- "inputs": [],
2336
- "name": "NOT_BROADCAST_AMB_IMPLEMENTATION",
2337
- "type": "error"
2338
- },
2339
- {
2340
- "inputs": [],
2341
- "name": "NOT_BROADCAST_REGISTRY",
2342
- "type": "error"
2343
- },
2344
- {
2345
- "inputs": [],
2346
- "name": "NOT_CORE_STATE_REGISTRY",
2347
- "type": "error"
2348
- },
2349
- {
2350
- "inputs": [],
2351
- "name": "NOT_EMERGENCY_ADMIN",
2352
- "type": "error"
2353
- },
2354
- {
2355
- "inputs": [],
2356
- "name": "NOT_EMERGENCY_QUEUE",
2357
- "type": "error"
2358
- },
2359
- {
2360
- "inputs": [],
2361
- "name": "NOT_IMPLEMENTED",
2362
- "type": "error"
2363
- },
2364
- {
2365
- "inputs": [],
2366
- "name": "NOT_MINTER",
2367
- "type": "error"
2368
- },
2369
- {
2370
- "inputs": [],
2371
- "name": "NOT_MINTER_STATE_REGISTRY_ROLE",
2372
- "type": "error"
2373
- },
2374
- {
2375
- "inputs": [],
2376
- "name": "NOT_PAYMASTER",
2377
- "type": "error"
2378
- },
2379
- {
2380
- "inputs": [],
2381
- "name": "NOT_PAYMENT_ADMIN",
2382
- "type": "error"
2383
- },
2384
- {
2385
- "inputs": [],
2386
- "name": "NOT_PENDING_MANAGEMENT",
2387
- "type": "error"
2388
- },
2389
- {
2390
- "inputs": [
2391
- {
2392
- "internalType": "bytes32",
2393
- "name": "role",
2394
- "type": "bytes32"
2395
- }
2396
- ],
2397
- "name": "NOT_PRIVILEGED_CALLER",
2398
- "type": "error"
2399
- },
2400
- {
2401
- "inputs": [],
2402
- "name": "NOT_PROTOCOL_ADMIN",
2403
- "type": "error"
2404
- },
2405
- {
2406
- "inputs": [],
2407
- "name": "NOT_STATE_REGISTRY",
2408
- "type": "error"
2409
- },
2410
- {
2411
- "inputs": [],
2412
- "name": "NOT_SUPERFORM",
2413
- "type": "error"
2414
- },
2415
- {
2416
- "inputs": [],
2417
- "name": "NOT_SUPERFORM_FACTORY",
2418
- "type": "error"
2419
- },
2420
- {
2421
- "inputs": [],
2422
- "name": "NOT_SUPERFORM_ROUTER",
2423
- "type": "error"
2424
- },
2425
- {
2426
- "inputs": [],
2427
- "name": "NOT_SUPER_REGISTRY",
2428
- "type": "error"
2429
- },
2430
- {
2431
- "inputs": [],
2432
- "name": "NOT_SUPER_VAULTS_STRATEGIST",
2433
- "type": "error"
2434
- },
2435
- {
2436
- "inputs": [],
2437
- "name": "NOT_TIMELOCK_STATE_REGISTRY",
2438
- "type": "error"
2439
- },
2440
- {
2441
- "inputs": [],
2442
- "name": "NOT_TIMELOCK_SUPERFORM",
2443
- "type": "error"
2444
- },
2445
- {
2446
- "inputs": [],
2447
- "name": "NOT_VALID_DISPUTER",
2448
- "type": "error"
2449
- },
2450
- {
2451
- "inputs": [],
2452
- "name": "NOT_VAULT_MANAGER",
2453
- "type": "error"
2454
- },
2455
- {
2456
- "inputs": [],
2457
- "name": "NO_TXDATA_PRESENT",
2458
- "type": "error"
2459
- },
2460
- {
2461
- "inputs": [],
2462
- "name": "NO_VALID_KYC_TOKEN",
2463
- "type": "error"
2464
- },
2465
- {
2466
- "inputs": [],
2467
- "name": "NoActiveDiscount",
2468
- "type": "error"
2469
- },
2470
- {
2471
- "inputs": [],
2472
- "name": "NoDiscount",
2473
- "type": "error"
2474
- },
2475
- {
2476
- "inputs": [
2477
- {
2478
- "internalType": "uint32",
2479
- "name": "eid",
2480
- "type": "uint32"
2481
- }
2482
- ],
2483
- "name": "NoPeer",
2484
- "type": "error"
2485
- },
2486
- {
2487
- "inputs": [],
2488
- "name": "NonZeroValue",
2489
- "type": "error"
2490
- },
2491
- {
2492
- "inputs": [],
2493
- "name": "NotAllowed",
2494
- "type": "error"
2495
- },
2496
- {
2497
- "inputs": [],
2498
- "name": "NotEnoughAssets",
2499
- "type": "error"
2500
- },
2501
- {
2502
- "inputs": [],
2503
- "name": "NotEnoughLiquidity",
2504
- "type": "error"
2505
- },
2506
- {
2507
- "inputs": [
2508
- {
2509
- "internalType": "uint256",
2510
- "name": "msgValue",
2511
- "type": "uint256"
2512
- }
2513
- ],
2514
- "name": "NotEnoughNative",
2515
- "type": "error"
2516
- },
2517
- {
2518
- "inputs": [
2519
- {
2520
- "internalType": "uint16",
2521
- "name": "srcChainId",
2522
- "type": "uint16"
2523
- },
2524
- {
2525
- "internalType": "bytes",
2526
- "name": "path",
2527
- "type": "bytes"
2528
- }
2529
- ],
2530
- "name": "NotFromTrustedRemote",
2531
- "type": "error"
2532
- },
2533
- {
2534
- "inputs": [],
2535
- "name": "NotInitializing",
2536
- "type": "error"
2537
- },
2538
- {
2539
- "inputs": [],
2540
- "name": "NotOwner",
2541
- "type": "error"
2542
- },
2543
- {
2544
- "inputs": [],
2545
- "name": "NotUnderCollateralized",
2546
- "type": "error"
2547
- },
2548
- {
2549
- "inputs": [],
2550
- "name": "NotUnlocked",
2551
- "type": "error"
2552
- },
2553
- {
2554
- "inputs": [],
2555
- "name": "OnlyLayerZeroEndpoint",
2556
- "type": "error"
2557
- },
2558
- {
2559
- "inputs": [],
2560
- "name": "OnlyManager",
2561
- "type": "error"
2562
- },
2563
- {
2564
- "inputs": [
2565
- {
2566
- "internalType": "uint32",
2567
- "name": "eid",
2568
- "type": "uint32"
2569
- },
2570
- {
2571
- "internalType": "bytes32",
2572
- "name": "sender",
2573
- "type": "bytes32"
2574
- }
2575
- ],
2576
- "name": "OnlyPeer",
2577
- "type": "error"
2578
- },
2579
- {
2580
- "inputs": [],
2581
- "name": "OnlyPnlFeed",
2582
- "type": "error"
2583
- },
2584
- {
2585
- "inputs": [],
2586
- "name": "OnlyTradingPnlHandler",
2587
- "type": "error"
2588
- },
2589
- {
2590
- "inputs": [],
2591
- "name": "OnlyWhitelisted",
2592
- "type": "error"
2593
- },
2594
- {
2595
- "inputs": [],
2596
- "name": "OnlyYCFactory",
2597
- "type": "error"
2598
- },
2599
- {
2600
- "inputs": [],
2601
- "name": "OnlyYT",
2602
- "type": "error"
2603
- },
2604
- {
2605
- "inputs": [],
2606
- "name": "OperationNotAllowed",
2607
- "type": "error"
2608
- },
2609
- {
2610
- "inputs": [],
2611
- "name": "OracleAlreadyExists",
2612
- "type": "error"
2613
- },
2614
- {
2615
- "inputs": [
2616
- {
2617
- "internalType": "uint32",
2618
- "name": "cardinalityRequired",
2619
- "type": "uint32"
2620
- }
2621
- ],
2622
- "name": "OracleIncreaseCardinalityRequired",
2623
- "type": "error"
2624
- },
2625
- {
2626
- "inputs": [
2627
- {
2628
- "internalType": "bool",
2629
- "name": "increaseCardinalityRequired",
2630
- "type": "bool"
2631
- },
2632
- {
2633
- "internalType": "bool",
2634
- "name": "oldestObservationSatisfied",
2635
- "type": "bool"
2636
- }
2637
- ],
2638
- "name": "OracleNotReady",
2639
- "type": "error"
2640
- },
2641
- {
2642
- "inputs": [],
2643
- "name": "OracleOldestObservationNotSatisfied",
2644
- "type": "error"
2645
- },
2646
- {
2647
- "inputs": [
2648
- {
2649
- "internalType": "uint32",
2650
- "name": "target",
2651
- "type": "uint32"
2652
- },
2653
- {
2654
- "internalType": "uint32",
2655
- "name": "oldest",
2656
- "type": "uint32"
2657
- }
2658
- ],
2659
- "name": "OracleTargetTooOld",
2660
- "type": "error"
2661
- },
2662
- {
2663
- "inputs": [],
2664
- "name": "OracleUninitialized",
2665
- "type": "error"
2666
- },
2667
- {
2668
- "inputs": [],
2669
- "name": "OracleZeroCardinality",
2670
- "type": "error"
2671
- },
2672
- {
2673
- "inputs": [
2674
- {
2675
- "internalType": "address",
2676
- "name": "owner",
2677
- "type": "address"
2678
- }
2679
- ],
2680
- "name": "OwnableInvalidOwner",
2681
- "type": "error"
2682
- },
2683
- {
2684
- "inputs": [
2685
- {
2686
- "internalType": "address",
2687
- "name": "account",
2688
- "type": "address"
2689
- }
2690
- ],
2691
- "name": "OwnableUnauthorizedAccount",
2692
- "type": "error"
2693
- },
2694
- {
2695
- "inputs": [],
2696
- "name": "PAUSED",
2697
- "type": "error"
2698
- },
2699
- {
2700
- "inputs": [],
2701
- "name": "PAYLOAD_ALREADY_PROCESSED",
2702
- "type": "error"
2703
- },
2704
- {
2705
- "inputs": [],
2706
- "name": "PAYLOAD_ALREADY_UPDATED",
2707
- "type": "error"
2708
- },
2709
- {
2710
- "inputs": [],
2711
- "name": "PAYLOAD_NOT_UPDATED",
2712
- "type": "error"
2713
- },
2714
- {
2715
- "inputs": [
2716
- {
2717
- "internalType": "address",
2718
- "name": "rewardToken",
2719
- "type": "address"
2720
- },
2721
- {
2722
- "internalType": "uint256",
2723
- "name": "amount",
2724
- "type": "uint256"
2725
- }
2726
- ],
2727
- "name": "PendingRewardNonZero",
2728
- "type": "error"
2729
- },
2730
- {
2731
- "inputs": [],
2732
- "name": "PendingWithdrawal",
2733
- "type": "error"
2734
- },
2735
- {
2736
- "inputs": [],
2737
- "name": "PhaseSettled",
2738
- "type": "error"
2739
- },
2740
- {
2741
- "inputs": [],
2742
- "name": "PoolIdDoesNotExit",
2743
- "type": "error"
2744
- },
2745
- {
2746
- "inputs": [],
2747
- "name": "PositionNotEligible",
2748
- "type": "error"
2749
- },
2750
- {
2751
- "inputs": [],
2752
- "name": "PriceZero",
2753
- "type": "error"
2754
- },
2755
- {
2756
- "inputs": [],
2757
- "name": "REBALANCE_FROM_ID_NOT_FOUND_IN_FINAL_IDS",
2758
- "type": "error"
2759
- },
2760
- {
2761
- "inputs": [],
2762
- "name": "REBALANCE_MULTI_POSITIONS_DIFFERENT_AMOUNTS",
2763
- "type": "error"
2764
- },
2765
- {
2766
- "inputs": [],
2767
- "name": "REBALANCE_MULTI_POSITIONS_DIFFERENT_CHAIN",
2768
- "type": "error"
2769
- },
2770
- {
2771
- "inputs": [],
2772
- "name": "REBALANCE_MULTI_POSITIONS_DIFFERENT_TOKEN",
2773
- "type": "error"
2774
- },
2775
- {
2776
- "inputs": [],
2777
- "name": "REBALANCE_MULTI_POSITIONS_UNEXPECTED_RECEIVER_ADDRESS",
2778
- "type": "error"
2779
- },
2780
- {
2781
- "inputs": [],
2782
- "name": "REBALANCE_SINGLE_POSITIONS_DIFFERENT_AMOUNT",
2783
- "type": "error"
2784
- },
2785
- {
2786
- "inputs": [],
2787
- "name": "REBALANCE_SINGLE_POSITIONS_DIFFERENT_CHAIN",
2788
- "type": "error"
2789
- },
2790
- {
2791
- "inputs": [],
2792
- "name": "REBALANCE_SINGLE_POSITIONS_DIFFERENT_TOKEN",
2793
- "type": "error"
2794
- },
2795
- {
2796
- "inputs": [],
2797
- "name": "REBALANCE_SINGLE_POSITIONS_UNEXPECTED_RECEIVER_ADDRESS",
2798
- "type": "error"
2799
- },
2800
- {
2801
- "inputs": [],
2802
- "name": "REBALANCE_XCHAIN_INVALID_RECEIVER_ADDRESS",
2803
- "type": "error"
2804
- },
2805
- {
2806
- "inputs": [],
2807
- "name": "RECEIVER_ADDRESS_NOT_SET",
2808
- "type": "error"
2809
- },
2810
- {
2811
- "inputs": [],
2812
- "name": "REFUND_CHAIN_ID_NOT_SET",
2813
- "type": "error"
2814
- },
2815
- {
2816
- "inputs": [],
2817
- "name": "RELAYER_NOT_SET",
2818
- "type": "error"
2819
- },
2820
- {
2821
- "inputs": [],
2822
- "name": "RESCUE_ALREADY_PROPOSED",
2823
- "type": "error"
2824
- },
2825
- {
2826
- "inputs": [],
2827
- "name": "RESCUE_LOCKED",
2828
- "type": "error"
2829
- },
2830
- {
2831
- "inputs": [],
2832
- "name": "ROLE_NOT_ASSIGNED",
2833
- "type": "error"
2834
- },
2835
- {
2836
- "inputs": [],
2837
- "name": "RangeNotFound",
2838
- "type": "error"
2839
- },
2840
- {
2841
- "inputs": [],
2842
- "name": "RangeNotMatch",
2843
- "type": "error"
2844
- },
2845
- {
2846
- "inputs": [
2847
- {
2848
- "internalType": "uint256",
2849
- "name": "oldRate",
2850
- "type": "uint256"
2851
- },
2852
- {
2853
- "internalType": "uint256",
2854
- "name": "newRate",
2855
- "type": "uint256"
2856
- },
2857
- {
2858
- "internalType": "enum SDKErrorsDirectory.RateRejectReason",
2859
- "name": "reason",
2860
- "type": "uint8"
2861
- }
2862
- ],
2863
- "name": "RateRejected",
2864
- "type": "error"
2865
- },
2866
- {
2867
- "inputs": [],
2868
- "name": "ReentrancyGuardReentrantCall",
2869
- "type": "error"
2870
- },
2871
- {
2872
- "inputs": [],
2873
- "name": "ReturnAmountIsNotEnough",
2874
- "type": "error"
2875
- },
2876
- {
2877
- "inputs": [
2878
- {
2879
- "internalType": "address",
2880
- "name": "caller",
2881
- "type": "address"
2882
- }
2883
- ],
2884
- "name": "RouterCallbackNotPendleMarket",
2885
- "type": "error"
2886
- },
2887
- {
2888
- "inputs": [
2889
- {
2890
- "internalType": "uint256",
2891
- "name": "actualPtIn",
2892
- "type": "uint256"
2893
- },
2894
- {
2895
- "internalType": "uint256",
2896
- "name": "limitPtIn",
2897
- "type": "uint256"
2898
- }
2899
- ],
2900
- "name": "RouterExceededLimitPtIn",
2901
- "type": "error"
2902
- },
2903
- {
2904
- "inputs": [
2905
- {
2906
- "internalType": "uint256",
2907
- "name": "actualSyIn",
2908
- "type": "uint256"
2909
- },
2910
- {
2911
- "internalType": "uint256",
2912
- "name": "limitSyIn",
2913
- "type": "uint256"
2914
- }
2915
- ],
2916
- "name": "RouterExceededLimitSyIn",
2917
- "type": "error"
2918
- },
2919
- {
2920
- "inputs": [
2921
- {
2922
- "internalType": "uint256",
2923
- "name": "actualYtIn",
2924
- "type": "uint256"
2925
- },
2926
- {
2927
- "internalType": "uint256",
2928
- "name": "limitYtIn",
2929
- "type": "uint256"
2930
- }
2931
- ],
2932
- "name": "RouterExceededLimitYtIn",
2933
- "type": "error"
2934
- },
2935
- {
2936
- "inputs": [
2937
- {
2938
- "internalType": "uint256",
2939
- "name": "actualLpOut",
2940
- "type": "uint256"
2941
- },
2942
- {
2943
- "internalType": "uint256",
2944
- "name": "requiredLpOut",
2945
- "type": "uint256"
2946
- }
2947
- ],
2948
- "name": "RouterInsufficientLpOut",
2949
- "type": "error"
2950
- },
2951
- {
2952
- "inputs": [
2953
- {
2954
- "internalType": "uint256",
2955
- "name": "actualPYOut",
2956
- "type": "uint256"
2957
- },
2958
- {
2959
- "internalType": "uint256",
2960
- "name": "requiredPYOut",
2961
- "type": "uint256"
2962
- }
2963
- ],
2964
- "name": "RouterInsufficientPYOut",
2965
- "type": "error"
2966
- },
2967
- {
2968
- "inputs": [
2969
- {
2970
- "internalType": "uint256",
2971
- "name": "actualPtOut",
2972
- "type": "uint256"
2973
- },
2974
- {
2975
- "internalType": "uint256",
2976
- "name": "requiredPtOut",
2977
- "type": "uint256"
2978
- }
2979
- ],
2980
- "name": "RouterInsufficientPtOut",
2981
- "type": "error"
2982
- },
2983
- {
2984
- "inputs": [
2985
- {
2986
- "internalType": "uint256",
2987
- "name": "actualPtRepay",
2988
- "type": "uint256"
2989
- },
2990
- {
2991
- "internalType": "uint256",
2992
- "name": "requiredPtRepay",
2993
- "type": "uint256"
2994
- }
2995
- ],
2996
- "name": "RouterInsufficientPtRepay",
2997
- "type": "error"
2998
- },
2999
- {
3000
- "inputs": [
3001
- {
3002
- "internalType": "uint256",
3003
- "name": "actualSyOut",
3004
- "type": "uint256"
3005
- },
3006
- {
3007
- "internalType": "uint256",
3008
- "name": "requiredSyOut",
3009
- "type": "uint256"
3010
- }
3011
- ],
3012
- "name": "RouterInsufficientSyOut",
3013
- "type": "error"
3014
- },
3015
- {
3016
- "inputs": [
3017
- {
3018
- "internalType": "uint256",
3019
- "name": "actualSyRepay",
3020
- "type": "uint256"
3021
- },
3022
- {
3023
- "internalType": "uint256",
3024
- "name": "requiredSyRepay",
3025
- "type": "uint256"
3026
- }
3027
- ],
3028
- "name": "RouterInsufficientSyRepay",
3029
- "type": "error"
3030
- },
3031
- {
3032
- "inputs": [
3033
- {
3034
- "internalType": "uint256",
3035
- "name": "actualTokenOut",
3036
- "type": "uint256"
3037
- },
3038
- {
3039
- "internalType": "uint256",
3040
- "name": "requiredTokenOut",
3041
- "type": "uint256"
3042
- }
3043
- ],
3044
- "name": "RouterInsufficientTokenOut",
3045
- "type": "error"
3046
- },
3047
- {
3048
- "inputs": [
3049
- {
3050
- "internalType": "uint256",
3051
- "name": "actualYtOut",
3052
- "type": "uint256"
3053
- },
3054
- {
3055
- "internalType": "uint256",
3056
- "name": "requiredYtOut",
3057
- "type": "uint256"
3058
- }
3059
- ],
3060
- "name": "RouterInsufficientYtOut",
3061
- "type": "error"
3062
- },
3063
- {
3064
- "inputs": [
3065
- {
3066
- "internalType": "bytes4",
3067
- "name": "selector",
3068
- "type": "bytes4"
3069
- }
3070
- ],
3071
- "name": "RouterInvalidAction",
3072
- "type": "error"
3073
- },
3074
- {
3075
- "inputs": [
3076
- {
3077
- "internalType": "address",
3078
- "name": "facet",
3079
- "type": "address"
3080
- }
3081
- ],
3082
- "name": "RouterInvalidFacet",
3083
- "type": "error"
3084
- },
3085
- {
3086
- "inputs": [],
3087
- "name": "RouterKyberSwapDataZero",
3088
- "type": "error"
3089
- },
3090
- {
3091
- "inputs": [
3092
- {
3093
- "internalType": "uint256",
3094
- "name": "netSyDesired",
3095
- "type": "uint256"
3096
- },
3097
- {
3098
- "internalType": "uint256",
3099
- "name": "netSyUsed",
3100
- "type": "uint256"
3101
- }
3102
- ],
3103
- "name": "RouterNotAllSyUsed",
3104
- "type": "error"
3105
- },
3106
- {
3107
- "inputs": [],
3108
- "name": "RouterTimeRangeZero",
3109
- "type": "error"
3110
- },
3111
- {
3112
- "inputs": [
3113
- {
3114
- "internalType": "address",
3115
- "name": "tokenIn",
3116
- "type": "address"
3117
- },
3118
- {
3119
- "internalType": "uint256",
3120
- "name": "amountExpected",
3121
- "type": "uint256"
3122
- },
3123
- {
3124
- "internalType": "uint256",
3125
- "name": "amountActual",
3126
- "type": "uint256"
3127
- }
3128
- ],
3129
- "name": "SAInsufficientTokenIn",
3130
- "type": "error"
3131
- },
3132
- {
3133
- "inputs": [],
3134
- "name": "SLIPPAGE_OUT_OF_BOUNDS",
3135
- "type": "error"
3136
- },
3137
- {
3138
- "inputs": [],
3139
- "name": "SRC_SENDER_MISMATCH",
3140
- "type": "error"
3141
- },
3142
- {
3143
- "inputs": [],
3144
- "name": "SRC_TX_TYPE_MISMATCH",
3145
- "type": "error"
3146
- },
3147
- {
3148
- "inputs": [
3149
- {
3150
- "internalType": "uint256",
3151
- "name": "superformId",
3152
- "type": "uint256"
3153
- }
3154
- ],
3155
- "name": "SUPERFORM_DOES_NOT_EXIST",
3156
- "type": "error"
3157
- },
3158
- {
3159
- "inputs": [],
3160
- "name": "SUPERFORM_DOES_NOT_SUPPORT_ASSET",
3161
- "type": "error"
3162
- },
3163
- {
3164
- "inputs": [],
3165
- "name": "SUPERFORM_ID_NONEXISTENT",
3166
- "type": "error"
3167
- },
3168
- {
3169
- "inputs": [],
3170
- "name": "SUPERFORM_NOT_WHITELISTED",
3171
- "type": "error"
3172
- },
3173
- {
3174
- "inputs": [
3175
- {
3176
- "internalType": "uint256",
3177
- "name": "amountDeposited",
3178
- "type": "uint256"
3179
- }
3180
- ],
3181
- "name": "SYApeDepositAmountTooSmall",
3182
- "type": "error"
3183
- },
3184
- {
3185
- "inputs": [],
3186
- "name": "SYBalancerInvalidPid",
3187
- "type": "error"
3188
- },
3189
- {
3190
- "inputs": [],
3191
- "name": "SYBalancerReentrancy",
3192
- "type": "error"
3193
- },
3194
- {
3195
- "inputs": [],
3196
- "name": "SYCurve3crvPoolNotFound",
3197
- "type": "error"
3198
- },
3199
- {
3200
- "inputs": [],
3201
- "name": "SYCurveInvalidPid",
3202
- "type": "error"
3203
- },
3204
- {
3205
- "inputs": [
3206
- {
3207
- "internalType": "uint256",
3208
- "name": "actualSharesOut",
3209
- "type": "uint256"
3210
- },
3211
- {
3212
- "internalType": "uint256",
3213
- "name": "requiredSharesOut",
3214
- "type": "uint256"
3215
- }
3216
- ],
3217
- "name": "SYInsufficientSharesOut",
3218
- "type": "error"
3219
- },
3220
- {
3221
- "inputs": [
3222
- {
3223
- "internalType": "uint256",
3224
- "name": "actualTokenOut",
3225
- "type": "uint256"
3226
- },
3227
- {
3228
- "internalType": "uint256",
3229
- "name": "requiredTokenOut",
3230
- "type": "uint256"
3231
- }
3232
- ],
3233
- "name": "SYInsufficientTokenOut",
3234
- "type": "error"
3235
- },
3236
- {
3237
- "inputs": [
3238
- {
3239
- "internalType": "address",
3240
- "name": "token",
3241
- "type": "address"
3242
- }
3243
- ],
3244
- "name": "SYInvalidRewardToken",
3245
- "type": "error"
3246
- },
3247
- {
3248
- "inputs": [
3249
- {
3250
- "internalType": "address",
3251
- "name": "token",
3252
- "type": "address"
3253
- }
3254
- ],
3255
- "name": "SYInvalidTokenIn",
3256
- "type": "error"
3257
- },
3258
- {
3259
- "inputs": [
3260
- {
3261
- "internalType": "address",
3262
- "name": "token",
3263
- "type": "address"
3264
- }
3265
- ],
3266
- "name": "SYInvalidTokenOut",
3267
- "type": "error"
3268
- },
3269
- {
3270
- "inputs": [
3271
- {
3272
- "internalType": "uint256",
3273
- "name": "borrowRate",
3274
- "type": "uint256"
3275
- },
3276
- {
3277
- "internalType": "uint256",
3278
- "name": "borrowRateMax",
3279
- "type": "uint256"
3280
- }
3281
- ],
3282
- "name": "SYQiTokenBorrowRateTooHigh",
3283
- "type": "error"
3284
- },
3285
- {
3286
- "inputs": [
3287
- {
3288
- "internalType": "uint256",
3289
- "name": "errCode",
3290
- "type": "uint256"
3291
- }
3292
- ],
3293
- "name": "SYQiTokenMintFailed",
3294
- "type": "error"
3295
- },
3296
- {
3297
- "inputs": [
3298
- {
3299
- "internalType": "uint256",
3300
- "name": "errCode",
3301
- "type": "uint256"
3302
- }
3303
- ],
3304
- "name": "SYQiTokenRedeemFailed",
3305
- "type": "error"
3306
- },
3307
- {
3308
- "inputs": [
3309
- {
3310
- "internalType": "uint256",
3311
- "name": "rewardAccruedType0",
3312
- "type": "uint256"
3313
- },
3314
- {
3315
- "internalType": "uint256",
3316
- "name": "rewardAccruedType1",
3317
- "type": "uint256"
3318
- }
3319
- ],
3320
- "name": "SYQiTokenRedeemRewardsFailed",
3321
- "type": "error"
3322
- },
3323
- {
3324
- "inputs": [
3325
- {
3326
- "internalType": "uint256",
3327
- "name": "amountLpDesired",
3328
- "type": "uint256"
3329
- },
3330
- {
3331
- "internalType": "uint256",
3332
- "name": "amountLpRedeemable",
3333
- "type": "uint256"
3334
- }
3335
- ],
3336
- "name": "SYStargateRedeemCapExceeded",
3337
- "type": "error"
3338
- },
3339
- {
3340
- "inputs": [],
3341
- "name": "SYZeroDeposit",
3342
- "type": "error"
3343
- },
3344
- {
3345
- "inputs": [],
3346
- "name": "SYZeroRedeem",
3347
- "type": "error"
3348
- },
3349
- {
3350
- "inputs": [
3351
- {
3352
- "internalType": "uint8",
3353
- "name": "bits",
3354
- "type": "uint8"
3355
- },
3356
- {
3357
- "internalType": "int256",
3358
- "name": "value",
3359
- "type": "int256"
3360
- }
3361
- ],
3362
- "name": "SafeCastOverflowedIntDowncast",
3363
- "type": "error"
3364
- },
3365
- {
3366
- "inputs": [
3367
- {
3368
- "internalType": "int256",
3369
- "name": "value",
3370
- "type": "int256"
3371
- }
3372
- ],
3373
- "name": "SafeCastOverflowedIntToUint",
3374
- "type": "error"
3375
- },
3376
- {
3377
- "inputs": [
3378
- {
3379
- "internalType": "uint8",
3380
- "name": "bits",
3381
- "type": "uint8"
3382
- },
3383
- {
3384
- "internalType": "uint256",
3385
- "name": "value",
3386
- "type": "uint256"
3387
- }
3388
- ],
3389
- "name": "SafeCastOverflowedUintDowncast",
3390
- "type": "error"
3391
- },
3392
- {
3393
- "inputs": [
3394
- {
3395
- "internalType": "uint256",
3396
- "name": "value",
3397
- "type": "uint256"
3398
- }
3399
- ],
3400
- "name": "SafeCastOverflowedUintToInt",
3401
- "type": "error"
3402
- },
3403
- {
3404
- "inputs": [
3405
- {
3406
- "internalType": "address",
3407
- "name": "spender",
3408
- "type": "address"
3409
- },
3410
- {
3411
- "internalType": "uint256",
3412
- "name": "currentAllowance",
3413
- "type": "uint256"
3414
- },
3415
- {
3416
- "internalType": "uint256",
3417
- "name": "requestedDecrease",
3418
- "type": "uint256"
3419
- }
3420
- ],
3421
- "name": "SafeERC20FailedDecreaseAllowance",
3422
- "type": "error"
3423
- },
3424
- {
3425
- "inputs": [
3426
- {
3427
- "internalType": "address",
3428
- "name": "token",
3429
- "type": "address"
3430
- }
3431
- ],
3432
- "name": "SafeERC20FailedOperation",
3433
- "type": "error"
3434
- },
3435
- {
3436
- "inputs": [],
3437
- "name": "SameIncentiveController",
3438
- "type": "error"
3439
- },
3440
- {
3441
- "inputs": [],
3442
- "name": "SenderNotSolventAfterTransfer",
3443
- "type": "error"
3444
- },
3445
- {
3446
- "inputs": [],
3447
- "name": "ShareTransferNotAllowed",
3448
- "type": "error"
3449
- },
3450
- {
3451
- "inputs": [
3452
- {
3453
- "internalType": "bool",
3454
- "name": "success",
3455
- "type": "bool"
3456
- },
3457
- {
3458
- "internalType": "bytes",
3459
- "name": "res",
3460
- "type": "bytes"
3461
- }
3462
- ],
3463
- "name": "SimulationResults",
3464
- "type": "error"
3465
- },
3466
- {
3467
- "inputs": [
3468
- {
3469
- "internalType": "uint256",
3470
- "name": "amountLD",
3471
- "type": "uint256"
3472
- },
3473
- {
3474
- "internalType": "uint256",
3475
- "name": "minAmountLD",
3476
- "type": "uint256"
3477
- }
3478
- ],
3479
- "name": "SlippageExceeded",
3480
- "type": "error"
3481
- },
3482
- {
3483
- "inputs": [
3484
- {
3485
- "internalType": "uint256",
3486
- "name": "amountToDeposit",
3487
- "type": "uint256"
3488
- },
3489
- {
3490
- "internalType": "uint256",
3491
- "name": "maxDeposit",
3492
- "type": "uint256"
3493
- }
3494
- ],
3495
- "name": "StaderMaxDepositExceed",
3496
- "type": "error"
3497
- },
3498
- {
3499
- "inputs": [
3500
- {
3501
- "internalType": "uint256",
3502
- "name": "amountToDeposit",
3503
- "type": "uint256"
3504
- },
3505
- {
3506
- "internalType": "uint256",
3507
- "name": "minDeposit",
3508
- "type": "uint256"
3509
- }
3510
- ],
3511
- "name": "StaderMinDepositUnreached",
3512
- "type": "error"
3513
- },
3514
- {
3515
- "inputs": [],
3516
- "name": "StakeNotFound",
3517
- "type": "error"
3518
- },
3519
- {
3520
- "inputs": [
3521
- {
3522
- "internalType": "string",
3523
- "name": "str",
3524
- "type": "string"
3525
- }
3526
- ],
3527
- "name": "StringTooLong",
3528
- "type": "error"
3529
- },
3530
- {
3531
- "inputs": [
3532
- {
3533
- "internalType": "uint256",
3534
- "name": "value",
3535
- "type": "uint256"
3536
- },
3537
- {
3538
- "internalType": "uint256",
3539
- "name": "length",
3540
- "type": "uint256"
3541
- }
3542
- ],
3543
- "name": "StringsInsufficientHexLength",
3544
- "type": "error"
3545
- },
3546
- {
3547
- "inputs": [
3548
- {
3549
- "internalType": "uint256",
3550
- "name": "totalSupply",
3551
- "type": "uint256"
3552
- },
3553
- {
3554
- "internalType": "uint256",
3555
- "name": "supplyCap",
3556
- "type": "uint256"
3557
- }
3558
- ],
3559
- "name": "SupplyCapExceeded",
3560
- "type": "error"
3561
- },
3562
- {
3563
- "inputs": [
3564
- {
3565
- "internalType": "address",
3566
- "name": "token",
3567
- "type": "address"
3568
- }
3569
- ],
3570
- "name": "TOKEN_NOT_ALLOWED",
3571
- "type": "error"
3572
- },
3573
- {
3574
- "inputs": [],
3575
- "name": "TOLERANCE_EXCEEDED",
3576
- "type": "error"
3577
- },
3578
- {
3579
- "inputs": [],
3580
- "name": "TRANSFER_TO_ADDRESS_ZERO",
3581
- "type": "error"
3582
- },
3583
- {
3584
- "inputs": [],
3585
- "name": "TX_HISTORY_NOT_FOUND",
3586
- "type": "error"
3587
- },
3588
- {
3589
- "inputs": [],
3590
- "name": "TellerWithMultiAssetSupport__AssetNotSupported",
3591
- "type": "error"
3592
- },
3593
- {
3594
- "inputs": [],
3595
- "name": "TooAheadPrice",
3596
- "type": "error"
3597
- },
3598
- {
3599
- "inputs": [],
3600
- "name": "TooStalePrice",
3601
- "type": "error"
3602
- },
3603
- {
3604
- "inputs": [],
3605
- "name": "TransferFailed",
3606
- "type": "error"
3607
- },
3608
- {
3609
- "inputs": [
3610
- {
3611
- "internalType": "uint32",
3612
- "name": "duration",
3613
- "type": "uint32"
3614
- },
3615
- {
3616
- "internalType": "uint32",
3617
- "name": "cardinalityRequired",
3618
- "type": "uint32"
3619
- }
3620
- ],
3621
- "name": "TwapDurationTooLarge",
3622
- "type": "error"
3623
- },
3624
- {
3625
- "inputs": [],
3626
- "name": "UUPSUnauthorizedCallContext",
3627
- "type": "error"
3628
- },
3629
- {
3630
- "inputs": [
3631
- {
3632
- "internalType": "bytes32",
3633
- "name": "slot",
3634
- "type": "bytes32"
3635
- }
3636
- ],
3637
- "name": "UUPSUnsupportedProxiableUUID",
3638
- "type": "error"
3639
- },
3640
- {
3641
- "inputs": [
3642
- {
3643
- "internalType": "uint256",
3644
- "name": "amountBondToRedeem",
3645
- "type": "uint256"
3646
- },
3647
- {
3648
- "internalType": "uint256",
3649
- "name": "unstakeCapacity",
3650
- "type": "uint256"
3651
- }
3652
- ],
3653
- "name": "UnstakeCapacityTooLow",
3654
- "type": "error"
3655
- },
3656
- {
3657
- "inputs": [],
3658
- "name": "UnsupportedOperation",
3659
- "type": "error"
3660
- },
3661
- {
3662
- "inputs": [],
3663
- "name": "UnsupportedOperationInSafeMode",
3664
- "type": "error"
3665
- },
3666
- {
3667
- "inputs": [
3668
- {
3669
- "internalType": "uint256",
3670
- "name": "aggregatorType",
3671
- "type": "uint256"
3672
- },
3673
- {
3674
- "internalType": "bytes4",
3675
- "name": "selector",
3676
- "type": "bytes4"
3677
- }
3678
- ],
3679
- "name": "UnsupportedSelector",
3680
- "type": "error"
3681
- },
3682
- {
3683
- "inputs": [],
3684
- "name": "VAULT_FORM_IMPLEMENTATION_COMBINATION_EXISTS",
3685
- "type": "error"
3686
- },
3687
- {
3688
- "inputs": [],
3689
- "name": "VAULT_IMPLEMENTATION_FAILED",
3690
- "type": "error"
3691
- },
3692
- {
3693
- "inputs": [
3694
- {
3695
- "internalType": "uint256",
3696
- "name": "wTime",
3697
- "type": "uint256"
3698
- }
3699
- ],
3700
- "name": "VCEpochNotFinalized",
3701
- "type": "error"
3702
- },
3703
- {
3704
- "inputs": [
3705
- {
3706
- "internalType": "uint256",
3707
- "name": "totalWeight",
3708
- "type": "uint256"
3709
- },
3710
- {
3711
- "internalType": "uint256",
3712
- "name": "maxWeight",
3713
- "type": "uint256"
3714
- }
3715
- ],
3716
- "name": "VCExceededMaxWeight",
3717
- "type": "error"
3718
- },
3719
- {
3720
- "inputs": [
3721
- {
3722
- "internalType": "address",
3723
- "name": "pool",
3724
- "type": "address"
3725
- }
3726
- ],
3727
- "name": "VCInactivePool",
3728
- "type": "error"
3729
- },
3730
- {
3731
- "inputs": [
3732
- {
3733
- "internalType": "address",
3734
- "name": "pool",
3735
- "type": "address"
3736
- }
3737
- ],
3738
- "name": "VCPoolAlreadyActive",
3739
- "type": "error"
3740
- },
3741
- {
3742
- "inputs": [
3743
- {
3744
- "internalType": "address",
3745
- "name": "pool",
3746
- "type": "address"
3747
- }
3748
- ],
3749
- "name": "VCPoolAlreadyAddAndRemoved",
3750
- "type": "error"
3751
- },
3752
- {
3753
- "inputs": [
3754
- {
3755
- "internalType": "address",
3756
- "name": "user",
3757
- "type": "address"
3758
- }
3759
- ],
3760
- "name": "VCZeroVePendle",
3761
- "type": "error"
3762
- },
3763
- {
3764
- "inputs": [],
3765
- "name": "VEExceededMaxLockTime",
3766
- "type": "error"
3767
- },
3768
- {
3769
- "inputs": [],
3770
- "name": "VEInsufficientLockTime",
3771
- "type": "error"
3772
- },
3773
- {
3774
- "inputs": [
3775
- {
3776
- "internalType": "uint256",
3777
- "name": "newExpiry",
3778
- "type": "uint256"
3779
- }
3780
- ],
3781
- "name": "VEInvalidNewExpiry",
3782
- "type": "error"
3783
- },
3784
- {
3785
- "inputs": [],
3786
- "name": "VENotAllowedReduceExpiry",
3787
- "type": "error"
3788
- },
3789
- {
3790
- "inputs": [],
3791
- "name": "VEPositionNotExpired",
3792
- "type": "error"
3793
- },
3794
- {
3795
- "inputs": [
3796
- {
3797
- "internalType": "uint256",
3798
- "name": "msgTime",
3799
- "type": "uint256"
3800
- }
3801
- ],
3802
- "name": "VEReceiveOldSupply",
3803
- "type": "error"
3804
- },
3805
- {
3806
- "inputs": [],
3807
- "name": "VEZeroAmountLocked",
3808
- "type": "error"
3809
- },
3810
- {
3811
- "inputs": [],
3812
- "name": "VEZeroPosition",
3813
- "type": "error"
3814
- },
3815
- {
3816
- "inputs": [
3817
- {
3818
- "internalType": "uint128",
3819
- "name": "bias",
3820
- "type": "uint128"
3821
- },
3822
- {
3823
- "internalType": "uint128",
3824
- "name": "slope",
3825
- "type": "uint128"
3826
- }
3827
- ],
3828
- "name": "VEZeroSlope",
3829
- "type": "error"
3830
- },
3831
- {
3832
- "inputs": [],
3833
- "name": "ValueZero",
3834
- "type": "error"
3835
- },
3836
- {
3837
- "inputs": [
3838
- {
3839
- "internalType": "uint256",
3840
- "name": "errorCode",
3841
- "type": "uint256"
3842
- }
3843
- ],
3844
- "name": "VenusError",
3845
- "type": "error"
3846
- },
3847
- {
3848
- "inputs": [],
3849
- "name": "WITHDRAW_TOKEN_NOT_UPDATED",
3850
- "type": "error"
3851
- },
3852
- {
3853
- "inputs": [],
3854
- "name": "WITHDRAW_TX_DATA_NOT_UPDATED",
3855
- "type": "error"
3856
- },
3857
- {
3858
- "inputs": [],
3859
- "name": "WITHDRAW_ZERO_COLLATERAL",
3860
- "type": "error"
3861
- },
3862
- {
3863
- "inputs": [],
3864
- "name": "WOMBAT_COV_RATIO_LIMIT_EXCEEDED",
3865
- "type": "error"
3866
- },
3867
- {
3868
- "inputs": [],
3869
- "name": "WrongValue",
3870
- "type": "error"
3871
- },
3872
- {
3873
- "inputs": [],
3874
- "name": "WrongValues",
3875
- "type": "error"
3876
- },
3877
- {
3878
- "inputs": [],
3879
- "name": "XCHAIN_WITHDRAW_INVALID_LIQ_REQUEST",
3880
- "type": "error"
3881
- },
3882
- {
3883
- "inputs": [],
3884
- "name": "YCExpired",
3885
- "type": "error"
3886
- },
3887
- {
3888
- "inputs": [
3889
- {
3890
- "internalType": "uint256",
3891
- "name": "interestFeeRate",
3892
- "type": "uint256"
3893
- },
3894
- {
3895
- "internalType": "uint256",
3896
- "name": "maxInterestFeeRate",
3897
- "type": "uint256"
3898
- }
3899
- ],
3900
- "name": "YCFactoryInterestFeeRateTooHigh",
3901
- "type": "error"
3902
- },
3903
- {
3904
- "inputs": [],
3905
- "name": "YCFactoryInvalidExpiry",
3906
- "type": "error"
3907
- },
3908
- {
3909
- "inputs": [
3910
- {
3911
- "internalType": "uint256",
3912
- "name": "newRewardFeeRate",
3913
- "type": "uint256"
3914
- },
3915
- {
3916
- "internalType": "uint256",
3917
- "name": "maxRewardFeeRate",
3918
- "type": "uint256"
3919
- }
3920
- ],
3921
- "name": "YCFactoryRewardFeeRateTooHigh",
3922
- "type": "error"
3923
- },
3924
- {
3925
- "inputs": [],
3926
- "name": "YCFactoryYieldContractExisted",
3927
- "type": "error"
3928
- },
3929
- {
3930
- "inputs": [],
3931
- "name": "YCFactoryZeroExpiryDivisor",
3932
- "type": "error"
3933
- },
3934
- {
3935
- "inputs": [],
3936
- "name": "YCFactoryZeroTreasury",
3937
- "type": "error"
3938
- },
3939
- {
3940
- "inputs": [],
3941
- "name": "YCNoFloatingSy",
3942
- "type": "error"
3943
- },
3944
- {
3945
- "inputs": [],
3946
- "name": "YCNotExpired",
3947
- "type": "error"
3948
- },
3949
- {
3950
- "inputs": [],
3951
- "name": "YCNothingToRedeem",
3952
- "type": "error"
3953
- },
3954
- {
3955
- "inputs": [],
3956
- "name": "YCPostExpiryDataNotSet",
3957
- "type": "error"
3958
- },
3959
- {
3960
- "inputs": [
3961
- {
3962
- "internalType": "uint256",
3963
- "name": "actualSy",
3964
- "type": "uint256"
3965
- },
3966
- {
3967
- "internalType": "uint256",
3968
- "name": "requiredSy",
3969
- "type": "uint256"
3970
- }
3971
- ],
3972
- "name": "YieldContractInsufficientSy",
3973
- "type": "error"
3974
- },
3975
- {
3976
- "inputs": [],
3977
- "name": "ZERO_ADDRESS",
3978
- "type": "error"
3979
- },
3980
- {
3981
- "inputs": [],
3982
- "name": "ZERO_AMB_ID_LENGTH",
3983
- "type": "error"
3984
- },
3985
- {
3986
- "inputs": [],
3987
- "name": "ZERO_AMOUNT",
3988
- "type": "error"
3989
- },
3990
- {
3991
- "inputs": [],
3992
- "name": "ZERO_FINAL_TOKEN",
3993
- "type": "error"
3994
- },
3995
- {
3996
- "inputs": [],
3997
- "name": "ZERO_ID",
3998
- "type": "error"
3999
- },
4000
- {
4001
- "inputs": [],
4002
- "name": "ZERO_INPUT_VALUE",
4003
- "type": "error"
4004
- },
4005
- {
4006
- "inputs": [],
4007
- "name": "ZERO_PAYLOAD_HASH",
4008
- "type": "error"
4009
- },
4010
- {
4011
- "inputs": [],
4012
- "name": "ZERO_SUPERFORMS",
4013
- "type": "error"
4014
- },
4015
- {
4016
- "inputs": [],
4017
- "name": "ZeroAddress",
4018
- "type": "error"
4019
- },
4020
- {
4021
- "inputs": [],
4022
- "name": "ZeroWeight",
4023
- "type": "error"
4024
- }
4025
- ],
4026
- "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212200b52e63bd77aeb80805a940dd9a97ec1fb7b0e4f63af5eea90f99af9c610d60964736f6c63430008170033",
4027
- "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212200b52e63bd77aeb80805a940dd9a97ec1fb7b0e4f63af5eea90f99af9c610d60964736f6c63430008170033",
4028
- "linkReferences": {},
4029
- "deployedLinkReferences": {}
4030
- }