@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
@@ -0,0 +1,1918 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import { Contract, Signer, utils } from "ethers";
6
+ import { Provider } from "@ethersproject/providers";
7
+ import type {
8
+ ILayerZeroEndpointV2,
9
+ ILayerZeroEndpointV2Interface,
10
+ } from "../ILayerZeroEndpointV2";
11
+
12
+ const _abi = [
13
+ {
14
+ anonymous: false,
15
+ inputs: [
16
+ {
17
+ indexed: false,
18
+ internalType: "address",
19
+ name: "from",
20
+ type: "address",
21
+ },
22
+ {
23
+ indexed: false,
24
+ internalType: "address",
25
+ name: "to",
26
+ type: "address",
27
+ },
28
+ {
29
+ indexed: false,
30
+ internalType: "bytes32",
31
+ name: "guid",
32
+ type: "bytes32",
33
+ },
34
+ {
35
+ indexed: false,
36
+ internalType: "uint16",
37
+ name: "index",
38
+ type: "uint16",
39
+ },
40
+ ],
41
+ name: "ComposeDelivered",
42
+ type: "event",
43
+ },
44
+ {
45
+ anonymous: false,
46
+ inputs: [
47
+ {
48
+ indexed: false,
49
+ internalType: "address",
50
+ name: "from",
51
+ type: "address",
52
+ },
53
+ {
54
+ indexed: false,
55
+ internalType: "address",
56
+ name: "to",
57
+ type: "address",
58
+ },
59
+ {
60
+ indexed: false,
61
+ internalType: "bytes32",
62
+ name: "guid",
63
+ type: "bytes32",
64
+ },
65
+ {
66
+ indexed: false,
67
+ internalType: "uint16",
68
+ name: "index",
69
+ type: "uint16",
70
+ },
71
+ {
72
+ indexed: false,
73
+ internalType: "bytes",
74
+ name: "message",
75
+ type: "bytes",
76
+ },
77
+ ],
78
+ name: "ComposeSent",
79
+ type: "event",
80
+ },
81
+ {
82
+ anonymous: false,
83
+ inputs: [
84
+ {
85
+ indexed: false,
86
+ internalType: "uint32",
87
+ name: "eid",
88
+ type: "uint32",
89
+ },
90
+ {
91
+ indexed: false,
92
+ internalType: "address",
93
+ name: "newLib",
94
+ type: "address",
95
+ },
96
+ ],
97
+ name: "DefaultReceiveLibrarySet",
98
+ type: "event",
99
+ },
100
+ {
101
+ anonymous: false,
102
+ inputs: [
103
+ {
104
+ indexed: false,
105
+ internalType: "uint32",
106
+ name: "eid",
107
+ type: "uint32",
108
+ },
109
+ {
110
+ indexed: false,
111
+ internalType: "address",
112
+ name: "oldLib",
113
+ type: "address",
114
+ },
115
+ {
116
+ indexed: false,
117
+ internalType: "uint256",
118
+ name: "expiry",
119
+ type: "uint256",
120
+ },
121
+ ],
122
+ name: "DefaultReceiveLibraryTimeoutSet",
123
+ type: "event",
124
+ },
125
+ {
126
+ anonymous: false,
127
+ inputs: [
128
+ {
129
+ indexed: false,
130
+ internalType: "uint32",
131
+ name: "eid",
132
+ type: "uint32",
133
+ },
134
+ {
135
+ indexed: false,
136
+ internalType: "address",
137
+ name: "newLib",
138
+ type: "address",
139
+ },
140
+ ],
141
+ name: "DefaultSendLibrarySet",
142
+ type: "event",
143
+ },
144
+ {
145
+ anonymous: false,
146
+ inputs: [
147
+ {
148
+ indexed: false,
149
+ internalType: "address",
150
+ name: "sender",
151
+ type: "address",
152
+ },
153
+ {
154
+ indexed: false,
155
+ internalType: "address",
156
+ name: "delegate",
157
+ type: "address",
158
+ },
159
+ ],
160
+ name: "DelegateSet",
161
+ type: "event",
162
+ },
163
+ {
164
+ anonymous: false,
165
+ inputs: [
166
+ {
167
+ indexed: false,
168
+ internalType: "uint32",
169
+ name: "srcEid",
170
+ type: "uint32",
171
+ },
172
+ {
173
+ indexed: false,
174
+ internalType: "bytes32",
175
+ name: "sender",
176
+ type: "bytes32",
177
+ },
178
+ {
179
+ indexed: false,
180
+ internalType: "address",
181
+ name: "receiver",
182
+ type: "address",
183
+ },
184
+ {
185
+ indexed: false,
186
+ internalType: "uint64",
187
+ name: "nonce",
188
+ type: "uint64",
189
+ },
190
+ ],
191
+ name: "InboundNonceSkipped",
192
+ type: "event",
193
+ },
194
+ {
195
+ anonymous: false,
196
+ inputs: [
197
+ {
198
+ indexed: false,
199
+ internalType: "address",
200
+ name: "newLib",
201
+ type: "address",
202
+ },
203
+ ],
204
+ name: "LibraryRegistered",
205
+ type: "event",
206
+ },
207
+ {
208
+ anonymous: false,
209
+ inputs: [
210
+ {
211
+ indexed: true,
212
+ internalType: "address",
213
+ name: "from",
214
+ type: "address",
215
+ },
216
+ {
217
+ indexed: true,
218
+ internalType: "address",
219
+ name: "to",
220
+ type: "address",
221
+ },
222
+ {
223
+ indexed: true,
224
+ internalType: "address",
225
+ name: "executor",
226
+ type: "address",
227
+ },
228
+ {
229
+ indexed: false,
230
+ internalType: "bytes32",
231
+ name: "guid",
232
+ type: "bytes32",
233
+ },
234
+ {
235
+ indexed: false,
236
+ internalType: "uint16",
237
+ name: "index",
238
+ type: "uint16",
239
+ },
240
+ {
241
+ indexed: false,
242
+ internalType: "uint256",
243
+ name: "gas",
244
+ type: "uint256",
245
+ },
246
+ {
247
+ indexed: false,
248
+ internalType: "uint256",
249
+ name: "value",
250
+ type: "uint256",
251
+ },
252
+ {
253
+ indexed: false,
254
+ internalType: "bytes",
255
+ name: "message",
256
+ type: "bytes",
257
+ },
258
+ {
259
+ indexed: false,
260
+ internalType: "bytes",
261
+ name: "extraData",
262
+ type: "bytes",
263
+ },
264
+ {
265
+ indexed: false,
266
+ internalType: "bytes",
267
+ name: "reason",
268
+ type: "bytes",
269
+ },
270
+ ],
271
+ name: "LzComposeAlert",
272
+ type: "event",
273
+ },
274
+ {
275
+ anonymous: false,
276
+ inputs: [
277
+ {
278
+ indexed: true,
279
+ internalType: "address",
280
+ name: "receiver",
281
+ type: "address",
282
+ },
283
+ {
284
+ indexed: true,
285
+ internalType: "address",
286
+ name: "executor",
287
+ type: "address",
288
+ },
289
+ {
290
+ components: [
291
+ {
292
+ internalType: "uint32",
293
+ name: "srcEid",
294
+ type: "uint32",
295
+ },
296
+ {
297
+ internalType: "bytes32",
298
+ name: "sender",
299
+ type: "bytes32",
300
+ },
301
+ {
302
+ internalType: "uint64",
303
+ name: "nonce",
304
+ type: "uint64",
305
+ },
306
+ ],
307
+ indexed: false,
308
+ internalType: "struct Origin",
309
+ name: "origin",
310
+ type: "tuple",
311
+ },
312
+ {
313
+ indexed: false,
314
+ internalType: "bytes32",
315
+ name: "guid",
316
+ type: "bytes32",
317
+ },
318
+ {
319
+ indexed: false,
320
+ internalType: "uint256",
321
+ name: "gas",
322
+ type: "uint256",
323
+ },
324
+ {
325
+ indexed: false,
326
+ internalType: "uint256",
327
+ name: "value",
328
+ type: "uint256",
329
+ },
330
+ {
331
+ indexed: false,
332
+ internalType: "bytes",
333
+ name: "message",
334
+ type: "bytes",
335
+ },
336
+ {
337
+ indexed: false,
338
+ internalType: "bytes",
339
+ name: "extraData",
340
+ type: "bytes",
341
+ },
342
+ {
343
+ indexed: false,
344
+ internalType: "bytes",
345
+ name: "reason",
346
+ type: "bytes",
347
+ },
348
+ ],
349
+ name: "LzReceiveAlert",
350
+ type: "event",
351
+ },
352
+ {
353
+ anonymous: false,
354
+ inputs: [
355
+ {
356
+ indexed: false,
357
+ internalType: "address",
358
+ name: "token",
359
+ type: "address",
360
+ },
361
+ ],
362
+ name: "LzTokenSet",
363
+ type: "event",
364
+ },
365
+ {
366
+ anonymous: false,
367
+ inputs: [
368
+ {
369
+ indexed: false,
370
+ internalType: "uint32",
371
+ name: "srcEid",
372
+ type: "uint32",
373
+ },
374
+ {
375
+ indexed: false,
376
+ internalType: "bytes32",
377
+ name: "sender",
378
+ type: "bytes32",
379
+ },
380
+ {
381
+ indexed: false,
382
+ internalType: "address",
383
+ name: "receiver",
384
+ type: "address",
385
+ },
386
+ {
387
+ indexed: false,
388
+ internalType: "uint64",
389
+ name: "nonce",
390
+ type: "uint64",
391
+ },
392
+ {
393
+ indexed: false,
394
+ internalType: "bytes32",
395
+ name: "payloadHash",
396
+ type: "bytes32",
397
+ },
398
+ ],
399
+ name: "PacketBurnt",
400
+ type: "event",
401
+ },
402
+ {
403
+ anonymous: false,
404
+ inputs: [
405
+ {
406
+ components: [
407
+ {
408
+ internalType: "uint32",
409
+ name: "srcEid",
410
+ type: "uint32",
411
+ },
412
+ {
413
+ internalType: "bytes32",
414
+ name: "sender",
415
+ type: "bytes32",
416
+ },
417
+ {
418
+ internalType: "uint64",
419
+ name: "nonce",
420
+ type: "uint64",
421
+ },
422
+ ],
423
+ indexed: false,
424
+ internalType: "struct Origin",
425
+ name: "origin",
426
+ type: "tuple",
427
+ },
428
+ {
429
+ indexed: false,
430
+ internalType: "address",
431
+ name: "receiver",
432
+ type: "address",
433
+ },
434
+ ],
435
+ name: "PacketDelivered",
436
+ type: "event",
437
+ },
438
+ {
439
+ anonymous: false,
440
+ inputs: [
441
+ {
442
+ indexed: false,
443
+ internalType: "uint32",
444
+ name: "srcEid",
445
+ type: "uint32",
446
+ },
447
+ {
448
+ indexed: false,
449
+ internalType: "bytes32",
450
+ name: "sender",
451
+ type: "bytes32",
452
+ },
453
+ {
454
+ indexed: false,
455
+ internalType: "address",
456
+ name: "receiver",
457
+ type: "address",
458
+ },
459
+ {
460
+ indexed: false,
461
+ internalType: "uint64",
462
+ name: "nonce",
463
+ type: "uint64",
464
+ },
465
+ {
466
+ indexed: false,
467
+ internalType: "bytes32",
468
+ name: "payloadHash",
469
+ type: "bytes32",
470
+ },
471
+ ],
472
+ name: "PacketNilified",
473
+ type: "event",
474
+ },
475
+ {
476
+ anonymous: false,
477
+ inputs: [
478
+ {
479
+ indexed: false,
480
+ internalType: "bytes",
481
+ name: "encodedPayload",
482
+ type: "bytes",
483
+ },
484
+ {
485
+ indexed: false,
486
+ internalType: "bytes",
487
+ name: "options",
488
+ type: "bytes",
489
+ },
490
+ {
491
+ indexed: false,
492
+ internalType: "address",
493
+ name: "sendLibrary",
494
+ type: "address",
495
+ },
496
+ ],
497
+ name: "PacketSent",
498
+ type: "event",
499
+ },
500
+ {
501
+ anonymous: false,
502
+ inputs: [
503
+ {
504
+ components: [
505
+ {
506
+ internalType: "uint32",
507
+ name: "srcEid",
508
+ type: "uint32",
509
+ },
510
+ {
511
+ internalType: "bytes32",
512
+ name: "sender",
513
+ type: "bytes32",
514
+ },
515
+ {
516
+ internalType: "uint64",
517
+ name: "nonce",
518
+ type: "uint64",
519
+ },
520
+ ],
521
+ indexed: false,
522
+ internalType: "struct Origin",
523
+ name: "origin",
524
+ type: "tuple",
525
+ },
526
+ {
527
+ indexed: false,
528
+ internalType: "address",
529
+ name: "receiver",
530
+ type: "address",
531
+ },
532
+ {
533
+ indexed: false,
534
+ internalType: "bytes32",
535
+ name: "payloadHash",
536
+ type: "bytes32",
537
+ },
538
+ ],
539
+ name: "PacketVerified",
540
+ type: "event",
541
+ },
542
+ {
543
+ anonymous: false,
544
+ inputs: [
545
+ {
546
+ indexed: false,
547
+ internalType: "address",
548
+ name: "receiver",
549
+ type: "address",
550
+ },
551
+ {
552
+ indexed: false,
553
+ internalType: "uint32",
554
+ name: "eid",
555
+ type: "uint32",
556
+ },
557
+ {
558
+ indexed: false,
559
+ internalType: "address",
560
+ name: "newLib",
561
+ type: "address",
562
+ },
563
+ ],
564
+ name: "ReceiveLibrarySet",
565
+ type: "event",
566
+ },
567
+ {
568
+ anonymous: false,
569
+ inputs: [
570
+ {
571
+ indexed: false,
572
+ internalType: "address",
573
+ name: "receiver",
574
+ type: "address",
575
+ },
576
+ {
577
+ indexed: false,
578
+ internalType: "uint32",
579
+ name: "eid",
580
+ type: "uint32",
581
+ },
582
+ {
583
+ indexed: false,
584
+ internalType: "address",
585
+ name: "oldLib",
586
+ type: "address",
587
+ },
588
+ {
589
+ indexed: false,
590
+ internalType: "uint256",
591
+ name: "timeout",
592
+ type: "uint256",
593
+ },
594
+ ],
595
+ name: "ReceiveLibraryTimeoutSet",
596
+ type: "event",
597
+ },
598
+ {
599
+ anonymous: false,
600
+ inputs: [
601
+ {
602
+ indexed: false,
603
+ internalType: "address",
604
+ name: "sender",
605
+ type: "address",
606
+ },
607
+ {
608
+ indexed: false,
609
+ internalType: "uint32",
610
+ name: "eid",
611
+ type: "uint32",
612
+ },
613
+ {
614
+ indexed: false,
615
+ internalType: "address",
616
+ name: "newLib",
617
+ type: "address",
618
+ },
619
+ ],
620
+ name: "SendLibrarySet",
621
+ type: "event",
622
+ },
623
+ {
624
+ inputs: [
625
+ {
626
+ internalType: "address",
627
+ name: "_oapp",
628
+ type: "address",
629
+ },
630
+ {
631
+ internalType: "uint32",
632
+ name: "_srcEid",
633
+ type: "uint32",
634
+ },
635
+ {
636
+ internalType: "bytes32",
637
+ name: "_sender",
638
+ type: "bytes32",
639
+ },
640
+ {
641
+ internalType: "uint64",
642
+ name: "_nonce",
643
+ type: "uint64",
644
+ },
645
+ {
646
+ internalType: "bytes32",
647
+ name: "_payloadHash",
648
+ type: "bytes32",
649
+ },
650
+ ],
651
+ name: "burn",
652
+ outputs: [],
653
+ stateMutability: "nonpayable",
654
+ type: "function",
655
+ },
656
+ {
657
+ inputs: [
658
+ {
659
+ internalType: "address",
660
+ name: "_oapp",
661
+ type: "address",
662
+ },
663
+ {
664
+ components: [
665
+ {
666
+ internalType: "uint32",
667
+ name: "srcEid",
668
+ type: "uint32",
669
+ },
670
+ {
671
+ internalType: "bytes32",
672
+ name: "sender",
673
+ type: "bytes32",
674
+ },
675
+ {
676
+ internalType: "uint64",
677
+ name: "nonce",
678
+ type: "uint64",
679
+ },
680
+ ],
681
+ internalType: "struct Origin",
682
+ name: "_origin",
683
+ type: "tuple",
684
+ },
685
+ {
686
+ internalType: "bytes32",
687
+ name: "_guid",
688
+ type: "bytes32",
689
+ },
690
+ {
691
+ internalType: "bytes",
692
+ name: "_message",
693
+ type: "bytes",
694
+ },
695
+ ],
696
+ name: "clear",
697
+ outputs: [],
698
+ stateMutability: "nonpayable",
699
+ type: "function",
700
+ },
701
+ {
702
+ inputs: [
703
+ {
704
+ internalType: "address",
705
+ name: "_from",
706
+ type: "address",
707
+ },
708
+ {
709
+ internalType: "address",
710
+ name: "_to",
711
+ type: "address",
712
+ },
713
+ {
714
+ internalType: "bytes32",
715
+ name: "_guid",
716
+ type: "bytes32",
717
+ },
718
+ {
719
+ internalType: "uint16",
720
+ name: "_index",
721
+ type: "uint16",
722
+ },
723
+ ],
724
+ name: "composeQueue",
725
+ outputs: [
726
+ {
727
+ internalType: "bytes32",
728
+ name: "messageHash",
729
+ type: "bytes32",
730
+ },
731
+ ],
732
+ stateMutability: "view",
733
+ type: "function",
734
+ },
735
+ {
736
+ inputs: [
737
+ {
738
+ internalType: "uint32",
739
+ name: "_eid",
740
+ type: "uint32",
741
+ },
742
+ ],
743
+ name: "defaultReceiveLibrary",
744
+ outputs: [
745
+ {
746
+ internalType: "address",
747
+ name: "",
748
+ type: "address",
749
+ },
750
+ ],
751
+ stateMutability: "view",
752
+ type: "function",
753
+ },
754
+ {
755
+ inputs: [
756
+ {
757
+ internalType: "uint32",
758
+ name: "_eid",
759
+ type: "uint32",
760
+ },
761
+ ],
762
+ name: "defaultReceiveLibraryTimeout",
763
+ outputs: [
764
+ {
765
+ internalType: "address",
766
+ name: "lib",
767
+ type: "address",
768
+ },
769
+ {
770
+ internalType: "uint256",
771
+ name: "expiry",
772
+ type: "uint256",
773
+ },
774
+ ],
775
+ stateMutability: "view",
776
+ type: "function",
777
+ },
778
+ {
779
+ inputs: [
780
+ {
781
+ internalType: "uint32",
782
+ name: "_eid",
783
+ type: "uint32",
784
+ },
785
+ ],
786
+ name: "defaultSendLibrary",
787
+ outputs: [
788
+ {
789
+ internalType: "address",
790
+ name: "",
791
+ type: "address",
792
+ },
793
+ ],
794
+ stateMutability: "view",
795
+ type: "function",
796
+ },
797
+ {
798
+ inputs: [],
799
+ name: "eid",
800
+ outputs: [
801
+ {
802
+ internalType: "uint32",
803
+ name: "",
804
+ type: "uint32",
805
+ },
806
+ ],
807
+ stateMutability: "view",
808
+ type: "function",
809
+ },
810
+ {
811
+ inputs: [
812
+ {
813
+ internalType: "address",
814
+ name: "_oapp",
815
+ type: "address",
816
+ },
817
+ {
818
+ internalType: "address",
819
+ name: "_lib",
820
+ type: "address",
821
+ },
822
+ {
823
+ internalType: "uint32",
824
+ name: "_eid",
825
+ type: "uint32",
826
+ },
827
+ {
828
+ internalType: "uint32",
829
+ name: "_configType",
830
+ type: "uint32",
831
+ },
832
+ ],
833
+ name: "getConfig",
834
+ outputs: [
835
+ {
836
+ internalType: "bytes",
837
+ name: "config",
838
+ type: "bytes",
839
+ },
840
+ ],
841
+ stateMutability: "view",
842
+ type: "function",
843
+ },
844
+ {
845
+ inputs: [
846
+ {
847
+ internalType: "address",
848
+ name: "_receiver",
849
+ type: "address",
850
+ },
851
+ {
852
+ internalType: "uint32",
853
+ name: "_eid",
854
+ type: "uint32",
855
+ },
856
+ ],
857
+ name: "getReceiveLibrary",
858
+ outputs: [
859
+ {
860
+ internalType: "address",
861
+ name: "lib",
862
+ type: "address",
863
+ },
864
+ {
865
+ internalType: "bool",
866
+ name: "isDefault",
867
+ type: "bool",
868
+ },
869
+ ],
870
+ stateMutability: "view",
871
+ type: "function",
872
+ },
873
+ {
874
+ inputs: [],
875
+ name: "getRegisteredLibraries",
876
+ outputs: [
877
+ {
878
+ internalType: "address[]",
879
+ name: "",
880
+ type: "address[]",
881
+ },
882
+ ],
883
+ stateMutability: "view",
884
+ type: "function",
885
+ },
886
+ {
887
+ inputs: [],
888
+ name: "getSendContext",
889
+ outputs: [
890
+ {
891
+ internalType: "uint32",
892
+ name: "dstEid",
893
+ type: "uint32",
894
+ },
895
+ {
896
+ internalType: "address",
897
+ name: "sender",
898
+ type: "address",
899
+ },
900
+ ],
901
+ stateMutability: "view",
902
+ type: "function",
903
+ },
904
+ {
905
+ inputs: [
906
+ {
907
+ internalType: "address",
908
+ name: "_sender",
909
+ type: "address",
910
+ },
911
+ {
912
+ internalType: "uint32",
913
+ name: "_eid",
914
+ type: "uint32",
915
+ },
916
+ ],
917
+ name: "getSendLibrary",
918
+ outputs: [
919
+ {
920
+ internalType: "address",
921
+ name: "lib",
922
+ type: "address",
923
+ },
924
+ ],
925
+ stateMutability: "view",
926
+ type: "function",
927
+ },
928
+ {
929
+ inputs: [
930
+ {
931
+ internalType: "address",
932
+ name: "_receiver",
933
+ type: "address",
934
+ },
935
+ {
936
+ internalType: "uint32",
937
+ name: "_srcEid",
938
+ type: "uint32",
939
+ },
940
+ {
941
+ internalType: "bytes32",
942
+ name: "_sender",
943
+ type: "bytes32",
944
+ },
945
+ ],
946
+ name: "inboundNonce",
947
+ outputs: [
948
+ {
949
+ internalType: "uint64",
950
+ name: "",
951
+ type: "uint64",
952
+ },
953
+ ],
954
+ stateMutability: "view",
955
+ type: "function",
956
+ },
957
+ {
958
+ inputs: [
959
+ {
960
+ internalType: "address",
961
+ name: "_receiver",
962
+ type: "address",
963
+ },
964
+ {
965
+ internalType: "uint32",
966
+ name: "_srcEid",
967
+ type: "uint32",
968
+ },
969
+ {
970
+ internalType: "bytes32",
971
+ name: "_sender",
972
+ type: "bytes32",
973
+ },
974
+ {
975
+ internalType: "uint64",
976
+ name: "_nonce",
977
+ type: "uint64",
978
+ },
979
+ ],
980
+ name: "inboundPayloadHash",
981
+ outputs: [
982
+ {
983
+ internalType: "bytes32",
984
+ name: "",
985
+ type: "bytes32",
986
+ },
987
+ ],
988
+ stateMutability: "view",
989
+ type: "function",
990
+ },
991
+ {
992
+ inputs: [
993
+ {
994
+ components: [
995
+ {
996
+ internalType: "uint32",
997
+ name: "srcEid",
998
+ type: "uint32",
999
+ },
1000
+ {
1001
+ internalType: "bytes32",
1002
+ name: "sender",
1003
+ type: "bytes32",
1004
+ },
1005
+ {
1006
+ internalType: "uint64",
1007
+ name: "nonce",
1008
+ type: "uint64",
1009
+ },
1010
+ ],
1011
+ internalType: "struct Origin",
1012
+ name: "_origin",
1013
+ type: "tuple",
1014
+ },
1015
+ {
1016
+ internalType: "address",
1017
+ name: "_receiver",
1018
+ type: "address",
1019
+ },
1020
+ ],
1021
+ name: "initializable",
1022
+ outputs: [
1023
+ {
1024
+ internalType: "bool",
1025
+ name: "",
1026
+ type: "bool",
1027
+ },
1028
+ ],
1029
+ stateMutability: "view",
1030
+ type: "function",
1031
+ },
1032
+ {
1033
+ inputs: [
1034
+ {
1035
+ internalType: "address",
1036
+ name: "_sender",
1037
+ type: "address",
1038
+ },
1039
+ {
1040
+ internalType: "uint32",
1041
+ name: "_eid",
1042
+ type: "uint32",
1043
+ },
1044
+ ],
1045
+ name: "isDefaultSendLibrary",
1046
+ outputs: [
1047
+ {
1048
+ internalType: "bool",
1049
+ name: "",
1050
+ type: "bool",
1051
+ },
1052
+ ],
1053
+ stateMutability: "view",
1054
+ type: "function",
1055
+ },
1056
+ {
1057
+ inputs: [
1058
+ {
1059
+ internalType: "address",
1060
+ name: "_lib",
1061
+ type: "address",
1062
+ },
1063
+ ],
1064
+ name: "isRegisteredLibrary",
1065
+ outputs: [
1066
+ {
1067
+ internalType: "bool",
1068
+ name: "",
1069
+ type: "bool",
1070
+ },
1071
+ ],
1072
+ stateMutability: "view",
1073
+ type: "function",
1074
+ },
1075
+ {
1076
+ inputs: [],
1077
+ name: "isSendingMessage",
1078
+ outputs: [
1079
+ {
1080
+ internalType: "bool",
1081
+ name: "",
1082
+ type: "bool",
1083
+ },
1084
+ ],
1085
+ stateMutability: "view",
1086
+ type: "function",
1087
+ },
1088
+ {
1089
+ inputs: [
1090
+ {
1091
+ internalType: "uint32",
1092
+ name: "_eid",
1093
+ type: "uint32",
1094
+ },
1095
+ ],
1096
+ name: "isSupportedEid",
1097
+ outputs: [
1098
+ {
1099
+ internalType: "bool",
1100
+ name: "",
1101
+ type: "bool",
1102
+ },
1103
+ ],
1104
+ stateMutability: "view",
1105
+ type: "function",
1106
+ },
1107
+ {
1108
+ inputs: [
1109
+ {
1110
+ internalType: "address",
1111
+ name: "_receiver",
1112
+ type: "address",
1113
+ },
1114
+ {
1115
+ internalType: "uint32",
1116
+ name: "_eid",
1117
+ type: "uint32",
1118
+ },
1119
+ {
1120
+ internalType: "address",
1121
+ name: "_lib",
1122
+ type: "address",
1123
+ },
1124
+ ],
1125
+ name: "isValidReceiveLibrary",
1126
+ outputs: [
1127
+ {
1128
+ internalType: "bool",
1129
+ name: "",
1130
+ type: "bool",
1131
+ },
1132
+ ],
1133
+ stateMutability: "view",
1134
+ type: "function",
1135
+ },
1136
+ {
1137
+ inputs: [
1138
+ {
1139
+ internalType: "address",
1140
+ name: "_receiver",
1141
+ type: "address",
1142
+ },
1143
+ {
1144
+ internalType: "uint32",
1145
+ name: "_srcEid",
1146
+ type: "uint32",
1147
+ },
1148
+ {
1149
+ internalType: "bytes32",
1150
+ name: "_sender",
1151
+ type: "bytes32",
1152
+ },
1153
+ ],
1154
+ name: "lazyInboundNonce",
1155
+ outputs: [
1156
+ {
1157
+ internalType: "uint64",
1158
+ name: "",
1159
+ type: "uint64",
1160
+ },
1161
+ ],
1162
+ stateMutability: "view",
1163
+ type: "function",
1164
+ },
1165
+ {
1166
+ inputs: [
1167
+ {
1168
+ internalType: "address",
1169
+ name: "_from",
1170
+ type: "address",
1171
+ },
1172
+ {
1173
+ internalType: "address",
1174
+ name: "_to",
1175
+ type: "address",
1176
+ },
1177
+ {
1178
+ internalType: "bytes32",
1179
+ name: "_guid",
1180
+ type: "bytes32",
1181
+ },
1182
+ {
1183
+ internalType: "uint16",
1184
+ name: "_index",
1185
+ type: "uint16",
1186
+ },
1187
+ {
1188
+ internalType: "bytes",
1189
+ name: "_message",
1190
+ type: "bytes",
1191
+ },
1192
+ {
1193
+ internalType: "bytes",
1194
+ name: "_extraData",
1195
+ type: "bytes",
1196
+ },
1197
+ ],
1198
+ name: "lzCompose",
1199
+ outputs: [],
1200
+ stateMutability: "payable",
1201
+ type: "function",
1202
+ },
1203
+ {
1204
+ inputs: [
1205
+ {
1206
+ components: [
1207
+ {
1208
+ internalType: "uint32",
1209
+ name: "srcEid",
1210
+ type: "uint32",
1211
+ },
1212
+ {
1213
+ internalType: "bytes32",
1214
+ name: "sender",
1215
+ type: "bytes32",
1216
+ },
1217
+ {
1218
+ internalType: "uint64",
1219
+ name: "nonce",
1220
+ type: "uint64",
1221
+ },
1222
+ ],
1223
+ internalType: "struct Origin",
1224
+ name: "_origin",
1225
+ type: "tuple",
1226
+ },
1227
+ {
1228
+ internalType: "address",
1229
+ name: "_receiver",
1230
+ type: "address",
1231
+ },
1232
+ {
1233
+ internalType: "bytes32",
1234
+ name: "_guid",
1235
+ type: "bytes32",
1236
+ },
1237
+ {
1238
+ internalType: "bytes",
1239
+ name: "_message",
1240
+ type: "bytes",
1241
+ },
1242
+ {
1243
+ internalType: "bytes",
1244
+ name: "_extraData",
1245
+ type: "bytes",
1246
+ },
1247
+ ],
1248
+ name: "lzReceive",
1249
+ outputs: [],
1250
+ stateMutability: "payable",
1251
+ type: "function",
1252
+ },
1253
+ {
1254
+ inputs: [],
1255
+ name: "lzToken",
1256
+ outputs: [
1257
+ {
1258
+ internalType: "address",
1259
+ name: "",
1260
+ type: "address",
1261
+ },
1262
+ ],
1263
+ stateMutability: "view",
1264
+ type: "function",
1265
+ },
1266
+ {
1267
+ inputs: [],
1268
+ name: "nativeToken",
1269
+ outputs: [
1270
+ {
1271
+ internalType: "address",
1272
+ name: "",
1273
+ type: "address",
1274
+ },
1275
+ ],
1276
+ stateMutability: "view",
1277
+ type: "function",
1278
+ },
1279
+ {
1280
+ inputs: [
1281
+ {
1282
+ internalType: "address",
1283
+ name: "_sender",
1284
+ type: "address",
1285
+ },
1286
+ {
1287
+ internalType: "uint32",
1288
+ name: "_dstEid",
1289
+ type: "uint32",
1290
+ },
1291
+ {
1292
+ internalType: "bytes32",
1293
+ name: "_receiver",
1294
+ type: "bytes32",
1295
+ },
1296
+ ],
1297
+ name: "nextGuid",
1298
+ outputs: [
1299
+ {
1300
+ internalType: "bytes32",
1301
+ name: "",
1302
+ type: "bytes32",
1303
+ },
1304
+ ],
1305
+ stateMutability: "view",
1306
+ type: "function",
1307
+ },
1308
+ {
1309
+ inputs: [
1310
+ {
1311
+ internalType: "address",
1312
+ name: "_oapp",
1313
+ type: "address",
1314
+ },
1315
+ {
1316
+ internalType: "uint32",
1317
+ name: "_srcEid",
1318
+ type: "uint32",
1319
+ },
1320
+ {
1321
+ internalType: "bytes32",
1322
+ name: "_sender",
1323
+ type: "bytes32",
1324
+ },
1325
+ {
1326
+ internalType: "uint64",
1327
+ name: "_nonce",
1328
+ type: "uint64",
1329
+ },
1330
+ {
1331
+ internalType: "bytes32",
1332
+ name: "_payloadHash",
1333
+ type: "bytes32",
1334
+ },
1335
+ ],
1336
+ name: "nilify",
1337
+ outputs: [],
1338
+ stateMutability: "nonpayable",
1339
+ type: "function",
1340
+ },
1341
+ {
1342
+ inputs: [
1343
+ {
1344
+ internalType: "address",
1345
+ name: "_sender",
1346
+ type: "address",
1347
+ },
1348
+ {
1349
+ internalType: "uint32",
1350
+ name: "_dstEid",
1351
+ type: "uint32",
1352
+ },
1353
+ {
1354
+ internalType: "bytes32",
1355
+ name: "_receiver",
1356
+ type: "bytes32",
1357
+ },
1358
+ ],
1359
+ name: "outboundNonce",
1360
+ outputs: [
1361
+ {
1362
+ internalType: "uint64",
1363
+ name: "",
1364
+ type: "uint64",
1365
+ },
1366
+ ],
1367
+ stateMutability: "view",
1368
+ type: "function",
1369
+ },
1370
+ {
1371
+ inputs: [
1372
+ {
1373
+ components: [
1374
+ {
1375
+ internalType: "uint32",
1376
+ name: "dstEid",
1377
+ type: "uint32",
1378
+ },
1379
+ {
1380
+ internalType: "bytes32",
1381
+ name: "receiver",
1382
+ type: "bytes32",
1383
+ },
1384
+ {
1385
+ internalType: "bytes",
1386
+ name: "message",
1387
+ type: "bytes",
1388
+ },
1389
+ {
1390
+ internalType: "bytes",
1391
+ name: "options",
1392
+ type: "bytes",
1393
+ },
1394
+ {
1395
+ internalType: "bool",
1396
+ name: "payInLzToken",
1397
+ type: "bool",
1398
+ },
1399
+ ],
1400
+ internalType: "struct MessagingParams",
1401
+ name: "_params",
1402
+ type: "tuple",
1403
+ },
1404
+ {
1405
+ internalType: "address",
1406
+ name: "_sender",
1407
+ type: "address",
1408
+ },
1409
+ ],
1410
+ name: "quote",
1411
+ outputs: [
1412
+ {
1413
+ components: [
1414
+ {
1415
+ internalType: "uint256",
1416
+ name: "nativeFee",
1417
+ type: "uint256",
1418
+ },
1419
+ {
1420
+ internalType: "uint256",
1421
+ name: "lzTokenFee",
1422
+ type: "uint256",
1423
+ },
1424
+ ],
1425
+ internalType: "struct MessagingFee",
1426
+ name: "",
1427
+ type: "tuple",
1428
+ },
1429
+ ],
1430
+ stateMutability: "view",
1431
+ type: "function",
1432
+ },
1433
+ {
1434
+ inputs: [
1435
+ {
1436
+ internalType: "address",
1437
+ name: "_receiver",
1438
+ type: "address",
1439
+ },
1440
+ {
1441
+ internalType: "uint32",
1442
+ name: "_eid",
1443
+ type: "uint32",
1444
+ },
1445
+ ],
1446
+ name: "receiveLibraryTimeout",
1447
+ outputs: [
1448
+ {
1449
+ internalType: "address",
1450
+ name: "lib",
1451
+ type: "address",
1452
+ },
1453
+ {
1454
+ internalType: "uint256",
1455
+ name: "expiry",
1456
+ type: "uint256",
1457
+ },
1458
+ ],
1459
+ stateMutability: "view",
1460
+ type: "function",
1461
+ },
1462
+ {
1463
+ inputs: [
1464
+ {
1465
+ internalType: "address",
1466
+ name: "_lib",
1467
+ type: "address",
1468
+ },
1469
+ ],
1470
+ name: "registerLibrary",
1471
+ outputs: [],
1472
+ stateMutability: "nonpayable",
1473
+ type: "function",
1474
+ },
1475
+ {
1476
+ inputs: [
1477
+ {
1478
+ components: [
1479
+ {
1480
+ internalType: "uint32",
1481
+ name: "dstEid",
1482
+ type: "uint32",
1483
+ },
1484
+ {
1485
+ internalType: "bytes32",
1486
+ name: "receiver",
1487
+ type: "bytes32",
1488
+ },
1489
+ {
1490
+ internalType: "bytes",
1491
+ name: "message",
1492
+ type: "bytes",
1493
+ },
1494
+ {
1495
+ internalType: "bytes",
1496
+ name: "options",
1497
+ type: "bytes",
1498
+ },
1499
+ {
1500
+ internalType: "bool",
1501
+ name: "payInLzToken",
1502
+ type: "bool",
1503
+ },
1504
+ ],
1505
+ internalType: "struct MessagingParams",
1506
+ name: "_params",
1507
+ type: "tuple",
1508
+ },
1509
+ {
1510
+ internalType: "address",
1511
+ name: "_refundAddress",
1512
+ type: "address",
1513
+ },
1514
+ ],
1515
+ name: "send",
1516
+ outputs: [
1517
+ {
1518
+ components: [
1519
+ {
1520
+ internalType: "bytes32",
1521
+ name: "guid",
1522
+ type: "bytes32",
1523
+ },
1524
+ {
1525
+ internalType: "uint64",
1526
+ name: "nonce",
1527
+ type: "uint64",
1528
+ },
1529
+ {
1530
+ components: [
1531
+ {
1532
+ internalType: "uint256",
1533
+ name: "nativeFee",
1534
+ type: "uint256",
1535
+ },
1536
+ {
1537
+ internalType: "uint256",
1538
+ name: "lzTokenFee",
1539
+ type: "uint256",
1540
+ },
1541
+ ],
1542
+ internalType: "struct MessagingFee",
1543
+ name: "fee",
1544
+ type: "tuple",
1545
+ },
1546
+ ],
1547
+ internalType: "struct MessagingReceipt",
1548
+ name: "",
1549
+ type: "tuple",
1550
+ },
1551
+ ],
1552
+ stateMutability: "payable",
1553
+ type: "function",
1554
+ },
1555
+ {
1556
+ inputs: [
1557
+ {
1558
+ internalType: "address",
1559
+ name: "_to",
1560
+ type: "address",
1561
+ },
1562
+ {
1563
+ internalType: "bytes32",
1564
+ name: "_guid",
1565
+ type: "bytes32",
1566
+ },
1567
+ {
1568
+ internalType: "uint16",
1569
+ name: "_index",
1570
+ type: "uint16",
1571
+ },
1572
+ {
1573
+ internalType: "bytes",
1574
+ name: "_message",
1575
+ type: "bytes",
1576
+ },
1577
+ ],
1578
+ name: "sendCompose",
1579
+ outputs: [],
1580
+ stateMutability: "nonpayable",
1581
+ type: "function",
1582
+ },
1583
+ {
1584
+ inputs: [
1585
+ {
1586
+ internalType: "address",
1587
+ name: "_oapp",
1588
+ type: "address",
1589
+ },
1590
+ {
1591
+ internalType: "address",
1592
+ name: "_lib",
1593
+ type: "address",
1594
+ },
1595
+ {
1596
+ components: [
1597
+ {
1598
+ internalType: "uint32",
1599
+ name: "eid",
1600
+ type: "uint32",
1601
+ },
1602
+ {
1603
+ internalType: "uint32",
1604
+ name: "configType",
1605
+ type: "uint32",
1606
+ },
1607
+ {
1608
+ internalType: "bytes",
1609
+ name: "config",
1610
+ type: "bytes",
1611
+ },
1612
+ ],
1613
+ internalType: "struct SetConfigParam[]",
1614
+ name: "_params",
1615
+ type: "tuple[]",
1616
+ },
1617
+ ],
1618
+ name: "setConfig",
1619
+ outputs: [],
1620
+ stateMutability: "nonpayable",
1621
+ type: "function",
1622
+ },
1623
+ {
1624
+ inputs: [
1625
+ {
1626
+ internalType: "uint32",
1627
+ name: "_eid",
1628
+ type: "uint32",
1629
+ },
1630
+ {
1631
+ internalType: "address",
1632
+ name: "_newLib",
1633
+ type: "address",
1634
+ },
1635
+ {
1636
+ internalType: "uint256",
1637
+ name: "_gracePeriod",
1638
+ type: "uint256",
1639
+ },
1640
+ ],
1641
+ name: "setDefaultReceiveLibrary",
1642
+ outputs: [],
1643
+ stateMutability: "nonpayable",
1644
+ type: "function",
1645
+ },
1646
+ {
1647
+ inputs: [
1648
+ {
1649
+ internalType: "uint32",
1650
+ name: "_eid",
1651
+ type: "uint32",
1652
+ },
1653
+ {
1654
+ internalType: "address",
1655
+ name: "_lib",
1656
+ type: "address",
1657
+ },
1658
+ {
1659
+ internalType: "uint256",
1660
+ name: "_expiry",
1661
+ type: "uint256",
1662
+ },
1663
+ ],
1664
+ name: "setDefaultReceiveLibraryTimeout",
1665
+ outputs: [],
1666
+ stateMutability: "nonpayable",
1667
+ type: "function",
1668
+ },
1669
+ {
1670
+ inputs: [
1671
+ {
1672
+ internalType: "uint32",
1673
+ name: "_eid",
1674
+ type: "uint32",
1675
+ },
1676
+ {
1677
+ internalType: "address",
1678
+ name: "_newLib",
1679
+ type: "address",
1680
+ },
1681
+ ],
1682
+ name: "setDefaultSendLibrary",
1683
+ outputs: [],
1684
+ stateMutability: "nonpayable",
1685
+ type: "function",
1686
+ },
1687
+ {
1688
+ inputs: [
1689
+ {
1690
+ internalType: "address",
1691
+ name: "_delegate",
1692
+ type: "address",
1693
+ },
1694
+ ],
1695
+ name: "setDelegate",
1696
+ outputs: [],
1697
+ stateMutability: "nonpayable",
1698
+ type: "function",
1699
+ },
1700
+ {
1701
+ inputs: [
1702
+ {
1703
+ internalType: "address",
1704
+ name: "_lzToken",
1705
+ type: "address",
1706
+ },
1707
+ ],
1708
+ name: "setLzToken",
1709
+ outputs: [],
1710
+ stateMutability: "nonpayable",
1711
+ type: "function",
1712
+ },
1713
+ {
1714
+ inputs: [
1715
+ {
1716
+ internalType: "address",
1717
+ name: "_oapp",
1718
+ type: "address",
1719
+ },
1720
+ {
1721
+ internalType: "uint32",
1722
+ name: "_eid",
1723
+ type: "uint32",
1724
+ },
1725
+ {
1726
+ internalType: "address",
1727
+ name: "_newLib",
1728
+ type: "address",
1729
+ },
1730
+ {
1731
+ internalType: "uint256",
1732
+ name: "_gracePeriod",
1733
+ type: "uint256",
1734
+ },
1735
+ ],
1736
+ name: "setReceiveLibrary",
1737
+ outputs: [],
1738
+ stateMutability: "nonpayable",
1739
+ type: "function",
1740
+ },
1741
+ {
1742
+ inputs: [
1743
+ {
1744
+ internalType: "address",
1745
+ name: "_oapp",
1746
+ type: "address",
1747
+ },
1748
+ {
1749
+ internalType: "uint32",
1750
+ name: "_eid",
1751
+ type: "uint32",
1752
+ },
1753
+ {
1754
+ internalType: "address",
1755
+ name: "_lib",
1756
+ type: "address",
1757
+ },
1758
+ {
1759
+ internalType: "uint256",
1760
+ name: "_expiry",
1761
+ type: "uint256",
1762
+ },
1763
+ ],
1764
+ name: "setReceiveLibraryTimeout",
1765
+ outputs: [],
1766
+ stateMutability: "nonpayable",
1767
+ type: "function",
1768
+ },
1769
+ {
1770
+ inputs: [
1771
+ {
1772
+ internalType: "address",
1773
+ name: "_oapp",
1774
+ type: "address",
1775
+ },
1776
+ {
1777
+ internalType: "uint32",
1778
+ name: "_eid",
1779
+ type: "uint32",
1780
+ },
1781
+ {
1782
+ internalType: "address",
1783
+ name: "_newLib",
1784
+ type: "address",
1785
+ },
1786
+ ],
1787
+ name: "setSendLibrary",
1788
+ outputs: [],
1789
+ stateMutability: "nonpayable",
1790
+ type: "function",
1791
+ },
1792
+ {
1793
+ inputs: [
1794
+ {
1795
+ internalType: "address",
1796
+ name: "_oapp",
1797
+ type: "address",
1798
+ },
1799
+ {
1800
+ internalType: "uint32",
1801
+ name: "_srcEid",
1802
+ type: "uint32",
1803
+ },
1804
+ {
1805
+ internalType: "bytes32",
1806
+ name: "_sender",
1807
+ type: "bytes32",
1808
+ },
1809
+ {
1810
+ internalType: "uint64",
1811
+ name: "_nonce",
1812
+ type: "uint64",
1813
+ },
1814
+ ],
1815
+ name: "skip",
1816
+ outputs: [],
1817
+ stateMutability: "nonpayable",
1818
+ type: "function",
1819
+ },
1820
+ {
1821
+ inputs: [
1822
+ {
1823
+ components: [
1824
+ {
1825
+ internalType: "uint32",
1826
+ name: "srcEid",
1827
+ type: "uint32",
1828
+ },
1829
+ {
1830
+ internalType: "bytes32",
1831
+ name: "sender",
1832
+ type: "bytes32",
1833
+ },
1834
+ {
1835
+ internalType: "uint64",
1836
+ name: "nonce",
1837
+ type: "uint64",
1838
+ },
1839
+ ],
1840
+ internalType: "struct Origin",
1841
+ name: "_origin",
1842
+ type: "tuple",
1843
+ },
1844
+ {
1845
+ internalType: "address",
1846
+ name: "_receiver",
1847
+ type: "address",
1848
+ },
1849
+ ],
1850
+ name: "verifiable",
1851
+ outputs: [
1852
+ {
1853
+ internalType: "bool",
1854
+ name: "",
1855
+ type: "bool",
1856
+ },
1857
+ ],
1858
+ stateMutability: "view",
1859
+ type: "function",
1860
+ },
1861
+ {
1862
+ inputs: [
1863
+ {
1864
+ components: [
1865
+ {
1866
+ internalType: "uint32",
1867
+ name: "srcEid",
1868
+ type: "uint32",
1869
+ },
1870
+ {
1871
+ internalType: "bytes32",
1872
+ name: "sender",
1873
+ type: "bytes32",
1874
+ },
1875
+ {
1876
+ internalType: "uint64",
1877
+ name: "nonce",
1878
+ type: "uint64",
1879
+ },
1880
+ ],
1881
+ internalType: "struct Origin",
1882
+ name: "_origin",
1883
+ type: "tuple",
1884
+ },
1885
+ {
1886
+ internalType: "address",
1887
+ name: "_receiver",
1888
+ type: "address",
1889
+ },
1890
+ {
1891
+ internalType: "bytes32",
1892
+ name: "_payloadHash",
1893
+ type: "bytes32",
1894
+ },
1895
+ ],
1896
+ name: "verify",
1897
+ outputs: [],
1898
+ stateMutability: "nonpayable",
1899
+ type: "function",
1900
+ },
1901
+ ];
1902
+
1903
+ export class ILayerZeroEndpointV2__factory {
1904
+ static readonly abi = _abi;
1905
+ static createInterface(): ILayerZeroEndpointV2Interface {
1906
+ return new utils.Interface(_abi) as ILayerZeroEndpointV2Interface;
1907
+ }
1908
+ static connect(
1909
+ address: string,
1910
+ signerOrProvider: Signer | Provider
1911
+ ): ILayerZeroEndpointV2 {
1912
+ return new Contract(
1913
+ address,
1914
+ _abi,
1915
+ signerOrProvider
1916
+ ) as ILayerZeroEndpointV2;
1917
+ }
1918
+ }