@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,1334 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
+ import { Provider, TransactionRequest } from "@ethersproject/providers";
6
+ import type {
7
+ OFTAdapterImpl,
8
+ OFTAdapterImplInterface,
9
+ } from "../OFTAdapterImpl";
10
+
11
+ const _abi = [
12
+ {
13
+ inputs: [
14
+ {
15
+ internalType: "address",
16
+ name: "_token",
17
+ type: "address",
18
+ },
19
+ {
20
+ internalType: "address",
21
+ name: "_endpoint",
22
+ type: "address",
23
+ },
24
+ {
25
+ internalType: "address",
26
+ name: "_delegate",
27
+ type: "address",
28
+ },
29
+ ],
30
+ stateMutability: "nonpayable",
31
+ type: "constructor",
32
+ },
33
+ {
34
+ inputs: [],
35
+ name: "InvalidDelegate",
36
+ type: "error",
37
+ },
38
+ {
39
+ inputs: [],
40
+ name: "InvalidEndpointCall",
41
+ type: "error",
42
+ },
43
+ {
44
+ inputs: [],
45
+ name: "InvalidLocalDecimals",
46
+ type: "error",
47
+ },
48
+ {
49
+ inputs: [
50
+ {
51
+ internalType: "bytes",
52
+ name: "options",
53
+ type: "bytes",
54
+ },
55
+ ],
56
+ name: "InvalidOptions",
57
+ type: "error",
58
+ },
59
+ {
60
+ inputs: [],
61
+ name: "LzTokenUnavailable",
62
+ type: "error",
63
+ },
64
+ {
65
+ inputs: [
66
+ {
67
+ internalType: "uint32",
68
+ name: "eid",
69
+ type: "uint32",
70
+ },
71
+ ],
72
+ name: "NoPeer",
73
+ type: "error",
74
+ },
75
+ {
76
+ inputs: [
77
+ {
78
+ internalType: "uint256",
79
+ name: "msgValue",
80
+ type: "uint256",
81
+ },
82
+ ],
83
+ name: "NotEnoughNative",
84
+ type: "error",
85
+ },
86
+ {
87
+ inputs: [
88
+ {
89
+ internalType: "address",
90
+ name: "addr",
91
+ type: "address",
92
+ },
93
+ ],
94
+ name: "OnlyEndpoint",
95
+ type: "error",
96
+ },
97
+ {
98
+ inputs: [
99
+ {
100
+ internalType: "uint32",
101
+ name: "eid",
102
+ type: "uint32",
103
+ },
104
+ {
105
+ internalType: "bytes32",
106
+ name: "sender",
107
+ type: "bytes32",
108
+ },
109
+ ],
110
+ name: "OnlyPeer",
111
+ type: "error",
112
+ },
113
+ {
114
+ inputs: [],
115
+ name: "OnlySelf",
116
+ type: "error",
117
+ },
118
+ {
119
+ inputs: [
120
+ {
121
+ internalType: "bytes",
122
+ name: "result",
123
+ type: "bytes",
124
+ },
125
+ ],
126
+ name: "SimulationResult",
127
+ type: "error",
128
+ },
129
+ {
130
+ inputs: [
131
+ {
132
+ internalType: "uint256",
133
+ name: "amountLD",
134
+ type: "uint256",
135
+ },
136
+ {
137
+ internalType: "uint256",
138
+ name: "minAmountLD",
139
+ type: "uint256",
140
+ },
141
+ ],
142
+ name: "SlippageExceeded",
143
+ type: "error",
144
+ },
145
+ {
146
+ anonymous: false,
147
+ inputs: [
148
+ {
149
+ components: [
150
+ {
151
+ internalType: "uint32",
152
+ name: "eid",
153
+ type: "uint32",
154
+ },
155
+ {
156
+ internalType: "uint16",
157
+ name: "msgType",
158
+ type: "uint16",
159
+ },
160
+ {
161
+ internalType: "bytes",
162
+ name: "options",
163
+ type: "bytes",
164
+ },
165
+ ],
166
+ indexed: false,
167
+ internalType: "struct EnforcedOptionParam[]",
168
+ name: "_enforcedOptions",
169
+ type: "tuple[]",
170
+ },
171
+ ],
172
+ name: "EnforcedOptionSet",
173
+ type: "event",
174
+ },
175
+ {
176
+ anonymous: false,
177
+ inputs: [
178
+ {
179
+ indexed: false,
180
+ internalType: "address",
181
+ name: "inspector",
182
+ type: "address",
183
+ },
184
+ ],
185
+ name: "MsgInspectorSet",
186
+ type: "event",
187
+ },
188
+ {
189
+ anonymous: false,
190
+ inputs: [
191
+ {
192
+ indexed: true,
193
+ internalType: "bytes32",
194
+ name: "guid",
195
+ type: "bytes32",
196
+ },
197
+ {
198
+ indexed: false,
199
+ internalType: "uint32",
200
+ name: "srcEid",
201
+ type: "uint32",
202
+ },
203
+ {
204
+ indexed: true,
205
+ internalType: "address",
206
+ name: "toAddress",
207
+ type: "address",
208
+ },
209
+ {
210
+ indexed: false,
211
+ internalType: "uint256",
212
+ name: "amountReceivedLD",
213
+ type: "uint256",
214
+ },
215
+ ],
216
+ name: "OFTReceived",
217
+ type: "event",
218
+ },
219
+ {
220
+ anonymous: false,
221
+ inputs: [
222
+ {
223
+ indexed: true,
224
+ internalType: "bytes32",
225
+ name: "guid",
226
+ type: "bytes32",
227
+ },
228
+ {
229
+ indexed: false,
230
+ internalType: "uint32",
231
+ name: "dstEid",
232
+ type: "uint32",
233
+ },
234
+ {
235
+ indexed: true,
236
+ internalType: "address",
237
+ name: "fromAddress",
238
+ type: "address",
239
+ },
240
+ {
241
+ indexed: false,
242
+ internalType: "uint256",
243
+ name: "amountSentLD",
244
+ type: "uint256",
245
+ },
246
+ {
247
+ indexed: false,
248
+ internalType: "uint256",
249
+ name: "amountReceivedLD",
250
+ type: "uint256",
251
+ },
252
+ ],
253
+ name: "OFTSent",
254
+ type: "event",
255
+ },
256
+ {
257
+ anonymous: false,
258
+ inputs: [
259
+ {
260
+ indexed: true,
261
+ internalType: "address",
262
+ name: "previousOwner",
263
+ type: "address",
264
+ },
265
+ {
266
+ indexed: true,
267
+ internalType: "address",
268
+ name: "newOwner",
269
+ type: "address",
270
+ },
271
+ ],
272
+ name: "OwnershipTransferred",
273
+ type: "event",
274
+ },
275
+ {
276
+ anonymous: false,
277
+ inputs: [
278
+ {
279
+ indexed: false,
280
+ internalType: "uint32",
281
+ name: "eid",
282
+ type: "uint32",
283
+ },
284
+ {
285
+ indexed: false,
286
+ internalType: "bytes32",
287
+ name: "peer",
288
+ type: "bytes32",
289
+ },
290
+ ],
291
+ name: "PeerSet",
292
+ type: "event",
293
+ },
294
+ {
295
+ anonymous: false,
296
+ inputs: [
297
+ {
298
+ indexed: false,
299
+ internalType: "address",
300
+ name: "preCrimeAddress",
301
+ type: "address",
302
+ },
303
+ ],
304
+ name: "PreCrimeSet",
305
+ type: "event",
306
+ },
307
+ {
308
+ inputs: [],
309
+ name: "SEND",
310
+ outputs: [
311
+ {
312
+ internalType: "uint16",
313
+ name: "",
314
+ type: "uint16",
315
+ },
316
+ ],
317
+ stateMutability: "view",
318
+ type: "function",
319
+ },
320
+ {
321
+ inputs: [],
322
+ name: "SEND_AND_CALL",
323
+ outputs: [
324
+ {
325
+ internalType: "uint16",
326
+ name: "",
327
+ type: "uint16",
328
+ },
329
+ ],
330
+ stateMutability: "view",
331
+ type: "function",
332
+ },
333
+ {
334
+ inputs: [
335
+ {
336
+ components: [
337
+ {
338
+ internalType: "uint32",
339
+ name: "srcEid",
340
+ type: "uint32",
341
+ },
342
+ {
343
+ internalType: "bytes32",
344
+ name: "sender",
345
+ type: "bytes32",
346
+ },
347
+ {
348
+ internalType: "uint64",
349
+ name: "nonce",
350
+ type: "uint64",
351
+ },
352
+ ],
353
+ internalType: "struct Origin",
354
+ name: "origin",
355
+ type: "tuple",
356
+ },
357
+ ],
358
+ name: "allowInitializePath",
359
+ outputs: [
360
+ {
361
+ internalType: "bool",
362
+ name: "",
363
+ type: "bool",
364
+ },
365
+ ],
366
+ stateMutability: "view",
367
+ type: "function",
368
+ },
369
+ {
370
+ inputs: [],
371
+ name: "approvalRequired",
372
+ outputs: [
373
+ {
374
+ internalType: "bool",
375
+ name: "",
376
+ type: "bool",
377
+ },
378
+ ],
379
+ stateMutability: "pure",
380
+ type: "function",
381
+ },
382
+ {
383
+ inputs: [
384
+ {
385
+ internalType: "uint32",
386
+ name: "_eid",
387
+ type: "uint32",
388
+ },
389
+ {
390
+ internalType: "uint16",
391
+ name: "_msgType",
392
+ type: "uint16",
393
+ },
394
+ {
395
+ internalType: "bytes",
396
+ name: "_extraOptions",
397
+ type: "bytes",
398
+ },
399
+ ],
400
+ name: "combineOptions",
401
+ outputs: [
402
+ {
403
+ internalType: "bytes",
404
+ name: "",
405
+ type: "bytes",
406
+ },
407
+ ],
408
+ stateMutability: "view",
409
+ type: "function",
410
+ },
411
+ {
412
+ inputs: [],
413
+ name: "decimalConversionRate",
414
+ outputs: [
415
+ {
416
+ internalType: "uint256",
417
+ name: "",
418
+ type: "uint256",
419
+ },
420
+ ],
421
+ stateMutability: "view",
422
+ type: "function",
423
+ },
424
+ {
425
+ inputs: [],
426
+ name: "endpoint",
427
+ outputs: [
428
+ {
429
+ internalType: "contract ILayerZeroEndpointV2",
430
+ name: "",
431
+ type: "address",
432
+ },
433
+ ],
434
+ stateMutability: "view",
435
+ type: "function",
436
+ },
437
+ {
438
+ inputs: [
439
+ {
440
+ internalType: "uint32",
441
+ name: "eid",
442
+ type: "uint32",
443
+ },
444
+ {
445
+ internalType: "uint16",
446
+ name: "msgType",
447
+ type: "uint16",
448
+ },
449
+ ],
450
+ name: "enforcedOptions",
451
+ outputs: [
452
+ {
453
+ internalType: "bytes",
454
+ name: "enforcedOption",
455
+ type: "bytes",
456
+ },
457
+ ],
458
+ stateMutability: "view",
459
+ type: "function",
460
+ },
461
+ {
462
+ inputs: [
463
+ {
464
+ components: [
465
+ {
466
+ internalType: "uint32",
467
+ name: "srcEid",
468
+ type: "uint32",
469
+ },
470
+ {
471
+ internalType: "bytes32",
472
+ name: "sender",
473
+ type: "bytes32",
474
+ },
475
+ {
476
+ internalType: "uint64",
477
+ name: "nonce",
478
+ type: "uint64",
479
+ },
480
+ ],
481
+ internalType: "struct Origin",
482
+ name: "",
483
+ type: "tuple",
484
+ },
485
+ {
486
+ internalType: "bytes",
487
+ name: "",
488
+ type: "bytes",
489
+ },
490
+ {
491
+ internalType: "address",
492
+ name: "_sender",
493
+ type: "address",
494
+ },
495
+ ],
496
+ name: "isComposeMsgSender",
497
+ outputs: [
498
+ {
499
+ internalType: "bool",
500
+ name: "",
501
+ type: "bool",
502
+ },
503
+ ],
504
+ stateMutability: "view",
505
+ type: "function",
506
+ },
507
+ {
508
+ inputs: [
509
+ {
510
+ internalType: "uint32",
511
+ name: "_eid",
512
+ type: "uint32",
513
+ },
514
+ {
515
+ internalType: "bytes32",
516
+ name: "_peer",
517
+ type: "bytes32",
518
+ },
519
+ ],
520
+ name: "isPeer",
521
+ outputs: [
522
+ {
523
+ internalType: "bool",
524
+ name: "",
525
+ type: "bool",
526
+ },
527
+ ],
528
+ stateMutability: "view",
529
+ type: "function",
530
+ },
531
+ {
532
+ inputs: [
533
+ {
534
+ components: [
535
+ {
536
+ internalType: "uint32",
537
+ name: "srcEid",
538
+ type: "uint32",
539
+ },
540
+ {
541
+ internalType: "bytes32",
542
+ name: "sender",
543
+ type: "bytes32",
544
+ },
545
+ {
546
+ internalType: "uint64",
547
+ name: "nonce",
548
+ type: "uint64",
549
+ },
550
+ ],
551
+ internalType: "struct Origin",
552
+ name: "_origin",
553
+ type: "tuple",
554
+ },
555
+ {
556
+ internalType: "bytes32",
557
+ name: "_guid",
558
+ type: "bytes32",
559
+ },
560
+ {
561
+ internalType: "bytes",
562
+ name: "_message",
563
+ type: "bytes",
564
+ },
565
+ {
566
+ internalType: "address",
567
+ name: "_executor",
568
+ type: "address",
569
+ },
570
+ {
571
+ internalType: "bytes",
572
+ name: "_extraData",
573
+ type: "bytes",
574
+ },
575
+ ],
576
+ name: "lzReceive",
577
+ outputs: [],
578
+ stateMutability: "payable",
579
+ type: "function",
580
+ },
581
+ {
582
+ inputs: [
583
+ {
584
+ components: [
585
+ {
586
+ components: [
587
+ {
588
+ internalType: "uint32",
589
+ name: "srcEid",
590
+ type: "uint32",
591
+ },
592
+ {
593
+ internalType: "bytes32",
594
+ name: "sender",
595
+ type: "bytes32",
596
+ },
597
+ {
598
+ internalType: "uint64",
599
+ name: "nonce",
600
+ type: "uint64",
601
+ },
602
+ ],
603
+ internalType: "struct Origin",
604
+ name: "origin",
605
+ type: "tuple",
606
+ },
607
+ {
608
+ internalType: "uint32",
609
+ name: "dstEid",
610
+ type: "uint32",
611
+ },
612
+ {
613
+ internalType: "address",
614
+ name: "receiver",
615
+ type: "address",
616
+ },
617
+ {
618
+ internalType: "bytes32",
619
+ name: "guid",
620
+ type: "bytes32",
621
+ },
622
+ {
623
+ internalType: "uint256",
624
+ name: "value",
625
+ type: "uint256",
626
+ },
627
+ {
628
+ internalType: "address",
629
+ name: "executor",
630
+ type: "address",
631
+ },
632
+ {
633
+ internalType: "bytes",
634
+ name: "message",
635
+ type: "bytes",
636
+ },
637
+ {
638
+ internalType: "bytes",
639
+ name: "extraData",
640
+ type: "bytes",
641
+ },
642
+ ],
643
+ internalType: "struct InboundPacket[]",
644
+ name: "_packets",
645
+ type: "tuple[]",
646
+ },
647
+ ],
648
+ name: "lzReceiveAndRevert",
649
+ outputs: [],
650
+ stateMutability: "payable",
651
+ type: "function",
652
+ },
653
+ {
654
+ inputs: [
655
+ {
656
+ components: [
657
+ {
658
+ internalType: "uint32",
659
+ name: "srcEid",
660
+ type: "uint32",
661
+ },
662
+ {
663
+ internalType: "bytes32",
664
+ name: "sender",
665
+ type: "bytes32",
666
+ },
667
+ {
668
+ internalType: "uint64",
669
+ name: "nonce",
670
+ type: "uint64",
671
+ },
672
+ ],
673
+ internalType: "struct Origin",
674
+ name: "_origin",
675
+ type: "tuple",
676
+ },
677
+ {
678
+ internalType: "bytes32",
679
+ name: "_guid",
680
+ type: "bytes32",
681
+ },
682
+ {
683
+ internalType: "bytes",
684
+ name: "_message",
685
+ type: "bytes",
686
+ },
687
+ {
688
+ internalType: "address",
689
+ name: "_executor",
690
+ type: "address",
691
+ },
692
+ {
693
+ internalType: "bytes",
694
+ name: "_extraData",
695
+ type: "bytes",
696
+ },
697
+ ],
698
+ name: "lzReceiveSimulate",
699
+ outputs: [],
700
+ stateMutability: "payable",
701
+ type: "function",
702
+ },
703
+ {
704
+ inputs: [],
705
+ name: "msgInspector",
706
+ outputs: [
707
+ {
708
+ internalType: "address",
709
+ name: "",
710
+ type: "address",
711
+ },
712
+ ],
713
+ stateMutability: "view",
714
+ type: "function",
715
+ },
716
+ {
717
+ inputs: [
718
+ {
719
+ internalType: "uint32",
720
+ name: "",
721
+ type: "uint32",
722
+ },
723
+ {
724
+ internalType: "bytes32",
725
+ name: "",
726
+ type: "bytes32",
727
+ },
728
+ ],
729
+ name: "nextNonce",
730
+ outputs: [
731
+ {
732
+ internalType: "uint64",
733
+ name: "nonce",
734
+ type: "uint64",
735
+ },
736
+ ],
737
+ stateMutability: "view",
738
+ type: "function",
739
+ },
740
+ {
741
+ inputs: [],
742
+ name: "oApp",
743
+ outputs: [
744
+ {
745
+ internalType: "address",
746
+ name: "",
747
+ type: "address",
748
+ },
749
+ ],
750
+ stateMutability: "view",
751
+ type: "function",
752
+ },
753
+ {
754
+ inputs: [],
755
+ name: "oAppVersion",
756
+ outputs: [
757
+ {
758
+ internalType: "uint64",
759
+ name: "senderVersion",
760
+ type: "uint64",
761
+ },
762
+ {
763
+ internalType: "uint64",
764
+ name: "receiverVersion",
765
+ type: "uint64",
766
+ },
767
+ ],
768
+ stateMutability: "pure",
769
+ type: "function",
770
+ },
771
+ {
772
+ inputs: [],
773
+ name: "oftVersion",
774
+ outputs: [
775
+ {
776
+ internalType: "bytes4",
777
+ name: "interfaceId",
778
+ type: "bytes4",
779
+ },
780
+ {
781
+ internalType: "uint64",
782
+ name: "version",
783
+ type: "uint64",
784
+ },
785
+ ],
786
+ stateMutability: "pure",
787
+ type: "function",
788
+ },
789
+ {
790
+ inputs: [],
791
+ name: "owner",
792
+ outputs: [
793
+ {
794
+ internalType: "address",
795
+ name: "",
796
+ type: "address",
797
+ },
798
+ ],
799
+ stateMutability: "view",
800
+ type: "function",
801
+ },
802
+ {
803
+ inputs: [
804
+ {
805
+ internalType: "uint32",
806
+ name: "eid",
807
+ type: "uint32",
808
+ },
809
+ ],
810
+ name: "peers",
811
+ outputs: [
812
+ {
813
+ internalType: "bytes32",
814
+ name: "peer",
815
+ type: "bytes32",
816
+ },
817
+ ],
818
+ stateMutability: "view",
819
+ type: "function",
820
+ },
821
+ {
822
+ inputs: [],
823
+ name: "preCrime",
824
+ outputs: [
825
+ {
826
+ internalType: "address",
827
+ name: "",
828
+ type: "address",
829
+ },
830
+ ],
831
+ stateMutability: "view",
832
+ type: "function",
833
+ },
834
+ {
835
+ inputs: [
836
+ {
837
+ components: [
838
+ {
839
+ internalType: "uint32",
840
+ name: "dstEid",
841
+ type: "uint32",
842
+ },
843
+ {
844
+ internalType: "bytes32",
845
+ name: "to",
846
+ type: "bytes32",
847
+ },
848
+ {
849
+ internalType: "uint256",
850
+ name: "amountLD",
851
+ type: "uint256",
852
+ },
853
+ {
854
+ internalType: "uint256",
855
+ name: "minAmountLD",
856
+ type: "uint256",
857
+ },
858
+ {
859
+ internalType: "bytes",
860
+ name: "extraOptions",
861
+ type: "bytes",
862
+ },
863
+ {
864
+ internalType: "bytes",
865
+ name: "composeMsg",
866
+ type: "bytes",
867
+ },
868
+ {
869
+ internalType: "bytes",
870
+ name: "oftCmd",
871
+ type: "bytes",
872
+ },
873
+ ],
874
+ internalType: "struct SendParam",
875
+ name: "_sendParam",
876
+ type: "tuple",
877
+ },
878
+ ],
879
+ name: "quoteOFT",
880
+ outputs: [
881
+ {
882
+ components: [
883
+ {
884
+ internalType: "uint256",
885
+ name: "minAmountLD",
886
+ type: "uint256",
887
+ },
888
+ {
889
+ internalType: "uint256",
890
+ name: "maxAmountLD",
891
+ type: "uint256",
892
+ },
893
+ ],
894
+ internalType: "struct OFTLimit",
895
+ name: "oftLimit",
896
+ type: "tuple",
897
+ },
898
+ {
899
+ components: [
900
+ {
901
+ internalType: "int256",
902
+ name: "feeAmountLD",
903
+ type: "int256",
904
+ },
905
+ {
906
+ internalType: "string",
907
+ name: "description",
908
+ type: "string",
909
+ },
910
+ ],
911
+ internalType: "struct OFTFeeDetail[]",
912
+ name: "oftFeeDetails",
913
+ type: "tuple[]",
914
+ },
915
+ {
916
+ components: [
917
+ {
918
+ internalType: "uint256",
919
+ name: "amountSentLD",
920
+ type: "uint256",
921
+ },
922
+ {
923
+ internalType: "uint256",
924
+ name: "amountReceivedLD",
925
+ type: "uint256",
926
+ },
927
+ ],
928
+ internalType: "struct OFTReceipt",
929
+ name: "oftReceipt",
930
+ type: "tuple",
931
+ },
932
+ ],
933
+ stateMutability: "view",
934
+ type: "function",
935
+ },
936
+ {
937
+ inputs: [
938
+ {
939
+ components: [
940
+ {
941
+ internalType: "uint32",
942
+ name: "dstEid",
943
+ type: "uint32",
944
+ },
945
+ {
946
+ internalType: "bytes32",
947
+ name: "to",
948
+ type: "bytes32",
949
+ },
950
+ {
951
+ internalType: "uint256",
952
+ name: "amountLD",
953
+ type: "uint256",
954
+ },
955
+ {
956
+ internalType: "uint256",
957
+ name: "minAmountLD",
958
+ type: "uint256",
959
+ },
960
+ {
961
+ internalType: "bytes",
962
+ name: "extraOptions",
963
+ type: "bytes",
964
+ },
965
+ {
966
+ internalType: "bytes",
967
+ name: "composeMsg",
968
+ type: "bytes",
969
+ },
970
+ {
971
+ internalType: "bytes",
972
+ name: "oftCmd",
973
+ type: "bytes",
974
+ },
975
+ ],
976
+ internalType: "struct SendParam",
977
+ name: "_sendParam",
978
+ type: "tuple",
979
+ },
980
+ {
981
+ internalType: "bool",
982
+ name: "_payInLzToken",
983
+ type: "bool",
984
+ },
985
+ ],
986
+ name: "quoteSend",
987
+ outputs: [
988
+ {
989
+ components: [
990
+ {
991
+ internalType: "uint256",
992
+ name: "nativeFee",
993
+ type: "uint256",
994
+ },
995
+ {
996
+ internalType: "uint256",
997
+ name: "lzTokenFee",
998
+ type: "uint256",
999
+ },
1000
+ ],
1001
+ internalType: "struct MessagingFee",
1002
+ name: "msgFee",
1003
+ type: "tuple",
1004
+ },
1005
+ ],
1006
+ stateMutability: "view",
1007
+ type: "function",
1008
+ },
1009
+ {
1010
+ inputs: [],
1011
+ name: "renounceOwnership",
1012
+ outputs: [],
1013
+ stateMutability: "nonpayable",
1014
+ type: "function",
1015
+ },
1016
+ {
1017
+ inputs: [
1018
+ {
1019
+ components: [
1020
+ {
1021
+ internalType: "uint32",
1022
+ name: "dstEid",
1023
+ type: "uint32",
1024
+ },
1025
+ {
1026
+ internalType: "bytes32",
1027
+ name: "to",
1028
+ type: "bytes32",
1029
+ },
1030
+ {
1031
+ internalType: "uint256",
1032
+ name: "amountLD",
1033
+ type: "uint256",
1034
+ },
1035
+ {
1036
+ internalType: "uint256",
1037
+ name: "minAmountLD",
1038
+ type: "uint256",
1039
+ },
1040
+ {
1041
+ internalType: "bytes",
1042
+ name: "extraOptions",
1043
+ type: "bytes",
1044
+ },
1045
+ {
1046
+ internalType: "bytes",
1047
+ name: "composeMsg",
1048
+ type: "bytes",
1049
+ },
1050
+ {
1051
+ internalType: "bytes",
1052
+ name: "oftCmd",
1053
+ type: "bytes",
1054
+ },
1055
+ ],
1056
+ internalType: "struct SendParam",
1057
+ name: "_sendParam",
1058
+ type: "tuple",
1059
+ },
1060
+ {
1061
+ components: [
1062
+ {
1063
+ internalType: "uint256",
1064
+ name: "nativeFee",
1065
+ type: "uint256",
1066
+ },
1067
+ {
1068
+ internalType: "uint256",
1069
+ name: "lzTokenFee",
1070
+ type: "uint256",
1071
+ },
1072
+ ],
1073
+ internalType: "struct MessagingFee",
1074
+ name: "_fee",
1075
+ type: "tuple",
1076
+ },
1077
+ {
1078
+ internalType: "address",
1079
+ name: "_refundAddress",
1080
+ type: "address",
1081
+ },
1082
+ ],
1083
+ name: "send",
1084
+ outputs: [
1085
+ {
1086
+ components: [
1087
+ {
1088
+ internalType: "bytes32",
1089
+ name: "guid",
1090
+ type: "bytes32",
1091
+ },
1092
+ {
1093
+ internalType: "uint64",
1094
+ name: "nonce",
1095
+ type: "uint64",
1096
+ },
1097
+ {
1098
+ components: [
1099
+ {
1100
+ internalType: "uint256",
1101
+ name: "nativeFee",
1102
+ type: "uint256",
1103
+ },
1104
+ {
1105
+ internalType: "uint256",
1106
+ name: "lzTokenFee",
1107
+ type: "uint256",
1108
+ },
1109
+ ],
1110
+ internalType: "struct MessagingFee",
1111
+ name: "fee",
1112
+ type: "tuple",
1113
+ },
1114
+ ],
1115
+ internalType: "struct MessagingReceipt",
1116
+ name: "msgReceipt",
1117
+ type: "tuple",
1118
+ },
1119
+ {
1120
+ components: [
1121
+ {
1122
+ internalType: "uint256",
1123
+ name: "amountSentLD",
1124
+ type: "uint256",
1125
+ },
1126
+ {
1127
+ internalType: "uint256",
1128
+ name: "amountReceivedLD",
1129
+ type: "uint256",
1130
+ },
1131
+ ],
1132
+ internalType: "struct OFTReceipt",
1133
+ name: "oftReceipt",
1134
+ type: "tuple",
1135
+ },
1136
+ ],
1137
+ stateMutability: "payable",
1138
+ type: "function",
1139
+ },
1140
+ {
1141
+ inputs: [
1142
+ {
1143
+ internalType: "address",
1144
+ name: "_delegate",
1145
+ type: "address",
1146
+ },
1147
+ ],
1148
+ name: "setDelegate",
1149
+ outputs: [],
1150
+ stateMutability: "nonpayable",
1151
+ type: "function",
1152
+ },
1153
+ {
1154
+ inputs: [
1155
+ {
1156
+ components: [
1157
+ {
1158
+ internalType: "uint32",
1159
+ name: "eid",
1160
+ type: "uint32",
1161
+ },
1162
+ {
1163
+ internalType: "uint16",
1164
+ name: "msgType",
1165
+ type: "uint16",
1166
+ },
1167
+ {
1168
+ internalType: "bytes",
1169
+ name: "options",
1170
+ type: "bytes",
1171
+ },
1172
+ ],
1173
+ internalType: "struct EnforcedOptionParam[]",
1174
+ name: "_enforcedOptions",
1175
+ type: "tuple[]",
1176
+ },
1177
+ ],
1178
+ name: "setEnforcedOptions",
1179
+ outputs: [],
1180
+ stateMutability: "nonpayable",
1181
+ type: "function",
1182
+ },
1183
+ {
1184
+ inputs: [
1185
+ {
1186
+ internalType: "address",
1187
+ name: "_msgInspector",
1188
+ type: "address",
1189
+ },
1190
+ ],
1191
+ name: "setMsgInspector",
1192
+ outputs: [],
1193
+ stateMutability: "nonpayable",
1194
+ type: "function",
1195
+ },
1196
+ {
1197
+ inputs: [
1198
+ {
1199
+ internalType: "uint32",
1200
+ name: "_eid",
1201
+ type: "uint32",
1202
+ },
1203
+ {
1204
+ internalType: "bytes32",
1205
+ name: "_peer",
1206
+ type: "bytes32",
1207
+ },
1208
+ ],
1209
+ name: "setPeer",
1210
+ outputs: [],
1211
+ stateMutability: "nonpayable",
1212
+ type: "function",
1213
+ },
1214
+ {
1215
+ inputs: [
1216
+ {
1217
+ internalType: "address",
1218
+ name: "_preCrime",
1219
+ type: "address",
1220
+ },
1221
+ ],
1222
+ name: "setPreCrime",
1223
+ outputs: [],
1224
+ stateMutability: "nonpayable",
1225
+ type: "function",
1226
+ },
1227
+ {
1228
+ inputs: [],
1229
+ name: "sharedDecimals",
1230
+ outputs: [
1231
+ {
1232
+ internalType: "uint8",
1233
+ name: "",
1234
+ type: "uint8",
1235
+ },
1236
+ ],
1237
+ stateMutability: "view",
1238
+ type: "function",
1239
+ },
1240
+ {
1241
+ inputs: [],
1242
+ name: "token",
1243
+ outputs: [
1244
+ {
1245
+ internalType: "address",
1246
+ name: "",
1247
+ type: "address",
1248
+ },
1249
+ ],
1250
+ stateMutability: "view",
1251
+ type: "function",
1252
+ },
1253
+ {
1254
+ inputs: [
1255
+ {
1256
+ internalType: "address",
1257
+ name: "newOwner",
1258
+ type: "address",
1259
+ },
1260
+ ],
1261
+ name: "transferOwnership",
1262
+ outputs: [],
1263
+ stateMutability: "nonpayable",
1264
+ type: "function",
1265
+ },
1266
+ ];
1267
+
1268
+ const _bytecode =
1269
+ "0x60e06040523480156200001157600080fd5b50604051620030b1380380620030b1833981016040819052620000349162000223565b828282826001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000076573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200009c91906200026d565b828281818181620000ad33620001b1565b6001600160a01b038083166080528116620000db57604051632d618d8160e21b815260040160405180910390fd5b60805160405163ca5eb5e160e01b81526001600160a01b0383811660048301529091169063ca5eb5e190602401600060405180830381600087803b1580156200012357600080fd5b505af115801562000138573d6000803e3d6000fd5b5050505050505050620001506200020160201b60201c565b60ff168360ff16101562000177576040516301e9714b60e41b815260040160405180910390fd5b62000184600684620002af565b6200019190600a620003ce565b60a0525050506001600160a01b0390921660c05250620003df9350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600690565b80516001600160a01b03811681146200021e57600080fd5b919050565b6000806000606084860312156200023957600080fd5b620002448462000206565b9250620002546020850162000206565b9150620002646040850162000206565b90509250925092565b6000602082840312156200028057600080fd5b815160ff811681146200029257600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60ff8281168282160390811115620002cb57620002cb62000299565b92915050565b600181815b8085111562000312578160001904821115620002f657620002f662000299565b808516156200030457918102915b93841c9390800290620002d6565b509250929050565b6000826200032b57506001620002cb565b816200033a57506000620002cb565b81600181146200035357600281146200035e576200037e565b6001915050620002cb565b60ff84111562000372576200037262000299565b50506001821b620002cb565b5060208310610133831016604e8410600b8410161715620003a3575081810a620002cb565b620003af8383620002d1565b8060001904821115620003c657620003c662000299565b029392505050565b60006200029260ff8416836200031a565b60805160a05160c051612c4e62000463600039600081816105ce015281816116db015261184d015260008181610447015281816116220152818161169e015261178e0152600081816103520152818161079001528181610d8c01528181611034015281816112e1015281816118b101528181611a5b0152611b140152612c4e6000f3fe60806040526004361061017e5760003560e01c80630d35b41514610183578063111ecdad146101bb57806313137d65146101e8578063134d4f25146101fd578063156a0d0f1461022557806317442b701461024c5780631f5e13341461026e5780633400288b146102835780633b6f743b146102a357806352ae2879146102d05780635535d461146102e35780635a0dfe4d146103105780635e280f11146103405780636fc1b31e14610374578063715018a6146103945780637d25a05e146103a957806382413eac146103e4578063857749b0146104045780638da5cb5b14610420578063963efcaa146104355780639f68b96414610477578063b731ea0a1461048b578063b98bd070146104ab578063bb0b6a53146104cb578063bc70b354146104f8578063bd815db014610518578063c7c7f5b31461052b578063ca5eb5e11461054c578063d045a0dc1461056c578063d42438851461057f578063f2fde38b1461059f578063fc0c546a146105bf578063ff7bd03d146105f2575b600080fd5b34801561018f57600080fd5b506101a361019e366004611d77565b610612565b6040516101b293929190611e0a565b60405180910390f35b3480156101c757600080fd5b506004546101db906001600160a01b031681565b6040516101b29190611e98565b6101fb6101f6366004611f1b565b61078e565b005b34801561020957600080fd5b50610212600281565b60405161ffff90911681526020016101b2565b34801561023157600080fd5b506040805162b9270b60e21b815260016020820152016101b2565b34801561025857600080fd5b50604080516001815260026020820152016101b2565b34801561027a57600080fd5b50610212600181565b34801561028f57600080fd5b506101fb61029e366004611fd3565b610846565b3480156102af57600080fd5b506102c36102be36600461200b565b61085c565b6040516101b2919061205c565b3480156102dc57600080fd5b50306101db565b3480156102ef57600080fd5b506103036102fe36600461207c565b6108b9565b6040516101b291906120af565b34801561031c57600080fd5b5061033061032b366004611fd3565b61095e565b60405190151581526020016101b2565b34801561034c57600080fd5b506101db7f000000000000000000000000000000000000000000000000000000000000000081565b34801561038057600080fd5b506101fb61038f3660046120c2565b61097a565b3480156103a057600080fd5b506101fb6109d8565b3480156103b557600080fd5b506103cc6103c4366004611fd3565b600092915050565b6040516001600160401b0390911681526020016101b2565b3480156103f057600080fd5b506103306103ff3660046120df565b6109ec565b34801561041057600080fd5b50604051600681526020016101b2565b34801561042c57600080fd5b506101db610a01565b34801561044157600080fd5b506104697f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020016101b2565b34801561048357600080fd5b506001610330565b34801561049757600080fd5b506002546101db906001600160a01b031681565b3480156104b757600080fd5b506101fb6104c6366004612189565b610a10565b3480156104d757600080fd5b506104696104e63660046121ca565b60016020526000908152604090205481565b34801561050457600080fd5b506103036105133660046121e5565b610a2a565b6101fb610526366004612189565b610bd2565b61053e610539366004612245565b610d45565b6040516101b29291906122b2565b34801561055857600080fd5b506101fb6105673660046120c2565b610d6d565b6101fb61057a366004611f1b565b610df6565b34801561058b57600080fd5b506101fb61059a3660046120c2565b610e25565b3480156105ab57600080fd5b506101fb6105ba3660046120c2565b610e78565b3480156105cb57600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006101db565b3480156105fe57600080fd5b5061033061060d3660046122ee565b610ef1565b60408051808201909152600080825260208201526060610630611d21565b600080306001600160a01b031663fc0c546a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610671573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610695919061230a565b6001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f69190612327565b6040805180820182528481526020808201849052825160008082529181019093529097509192509061074b565b6040805180820190915260008152606060208201528152602001906001900390816107235790505b509350600080610770604089013560608a013561076b60208c018c6121ca565b610f27565b60408051808201909152918252602082015296989597505050505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146107e257336040516391ac5e4f60e01b81526004016107d99190611e98565b60405180910390fd5b602087018035906107fc906107f7908a6121ca565b610f63565b1461082e5761080e60208801886121ca565b876020013560405163309afaf360e21b81526004016107d9929190612356565b61083d87878787878787610f9f565b50505050505050565b61084e6110ff565b610858828261115e565b5050565b610864611d21565b60006108806040850135606086013561076b60208801886121ca565b91505060008061089086846111b4565b90925090506108ad6108a560208801886121ca565b8383886112d7565b93505050505b92915050565b6003602090815260009283526040808420909152908252902080546108dd9061236c565b80601f01602080910402602001604051908101604052809291908181526020018280546109099061236c565b80156109565780601f1061092b57610100808354040283529160200191610956565b820191906000526020600020905b81548152906001019060200180831161093957829003601f168201915b505050505081565b63ffffffff919091166000908152600160205260409020541490565b6109826110ff565b600480546001600160a01b0319166001600160a01b0383161790556040517ff0be4f1e87349231d80c36b33f9e8639658eeaf474014dee15a3e6a4d4414197906109cd908390611e98565b60405180910390a150565b6109e06110ff565b6109ea60006113ac565b565b6001600160a01b03811630145b949350505050565b6000546001600160a01b031690565b610a186110ff565b610858610a258284612441565b6113fc565b63ffffffff8416600090815260036020908152604080832061ffff87168452909152812080546060929190610a5e9061236c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8a9061236c565b8015610ad75780601f10610aac57610100808354040283529160200191610ad7565b820191906000526020600020905b815481529060010190602001808311610aba57829003601f168201915b505050505090508051600003610b275783838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509294506109f99350505050565b6000839003610b375790506109f9565b60028310610bb557610b7e84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061150392505050565b80610b8c8460028188612556565b604051602001610b9e93929190612580565b6040516020818303038152906040529150506109f9565b8383604051639a6d49cd60e01b81526004016107d99291906125d1565b60005b81811015610cc45736838383818110610bf057610bf06125e5565b9050602002810190610c0291906125fb565b9050610c1e610c1460208301836121ca565b602083013561095e565b610c285750610cbc565b3063d045a0dc60c08301358360a0810135610c4761010083018361261c565b610c58610100890160e08a016120c2565b610c666101208a018a61261c565b6040518963ffffffff1660e01b8152600401610c889796959493929190612677565b6000604051808303818588803b158015610ca157600080fd5b505af1158015610cb5573d6000803e3d6000fd5b5050505050505b600101610bd5565b50336001600160a01b0316638e9e70996040518163ffffffff1660e01b8152600401600060405180830381865afa158015610d03573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d2b91908101906126fd565b604051638351eea760e01b81526004016107d991906120af565b610d4d611d3b565b610d55611d21565b610d6085858561152f565b915091505b935093915050565b610d756110ff565b60405163ca5eb5e160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063ca5eb5e190610dc1908490600401611e98565b600060405180830381600087803b158015610ddb57600080fd5b505af1158015610def573d6000803e3d6000fd5b5050505050565b333014610e165760405163029a949d60e31b815260040160405180910390fd5b61083d8787878787878761082e565b610e2d6110ff565b600280546001600160a01b0319166001600160a01b0383161790556040517fd48d879cef83a1c0bdda516f27b13ddb1b3f8bbac1c9e1511bb2a659c2427760906109cd908390611e98565b610e806110ff565b6001600160a01b038116610ee55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d9565b610eee816113ac565b50565b6000602082018035906001908390610f0990866121ca565b63ffffffff1681526020810191909152604001600020541492915050565b600080610f338561161e565b915081905083811015610d65576040516371c4efed60e01b815260048101829052602481018590526044016107d9565b63ffffffff8116600090815260016020526040812054806108b35760405163f6ff4fb760e01b815263ffffffff841660048201526024016107d9565b6000610fb1610fae8787611655565b90565b90506000610fdd82610fcb610fc68a8a611674565b611697565b610fd860208d018d6121ca565b6116cc565b905060288611156110a457600061101a610ffd60608c0160408d0161276a565b61100a60208d018d6121ca565b846110158c8c61170a565b611755565b604051633e5ac80960e11b81529091506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690637cb59012906110709086908d906000908790600401612787565b600060405180830381600087803b15801561108a57600080fd5b505af115801561109e573d6000803e3d6000fd5b50505050505b6001600160a01b038216887fefed6d3500546b29533b128a29e3a94d70788727f0507505ac12eaf2e578fd9c6110dd60208d018d6121ca565b846040516110ec929190612356565b60405180910390a3505050505050505050565b33611108610a01565b6001600160a01b0316146109ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d9565b63ffffffff821660009081526001602052604090819020829055517f238399d427b947898edb290f5ff0f9109849b1c3ba196a42e35f00c50a54b98b906111a89084908490612356565b60405180910390a15050565b606080600061121185602001356111ca86611787565b6111d760a089018961261c565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506117b392505050565b9093509050600081611224576001611227565b60025b905061124761123960208801886121ca565b8261051360808a018a61261c565b6004549093506001600160a01b031680156112cd5760405163043a78eb60e01b81526001600160a01b0382169063043a78eb9061128a90889088906004016127c2565b602060405180830381865afa1580156112a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cb91906127e7565b505b5050509250929050565b6112df611d21565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ddc28c586040518060a001604052808863ffffffff16815260200161132e89610f63565b8152602001878152602001868152602001851515815250306040518363ffffffff1660e01b8152600401611363929190612804565b6040805180830381865afa15801561137f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a391906128ad565b95945050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b81518110156114d35761142e82828151811061141d5761141d6125e5565b602002602001015160400151611503565b818181518110611440576114406125e5565b60200260200101516040015160036000848481518110611462576114626125e5565b60200260200101516000015163ffffffff1663ffffffff168152602001908152602001600020600084848151811061149c5761149c6125e5565b60200260200101516020015161ffff1661ffff16815260200190815260200160002090816114ca9190612919565b506001016113ff565b507fbe4864a8e820971c0247f5992e2da559595f7bf076a21cb5928d443d2a13b674816040516109cd91906129d8565b600281015161ffff81166003146108585781604051639a6d49cd60e01b81526004016107d991906120af565b611537611d3b565b61153f611d21565b60008061156233604089013560608a013561155d60208c018c6121ca565b61182d565b9150915060008061157389846111b4565b909250905061159f61158860208b018b6121ca565b8383611599368d90038d018d612a63565b8b61187e565b60408051808201909152858152602080820186905282519298509096503391907f85496b760a4b7f8d66384b9df21b381f5d1b1e79f229a47aaf4c232edc2fe59a906115ed908d018d6121ca565b6040805163ffffffff909216825260208201899052810187905260600160405180910390a350505050935093915050565b60007f000000000000000000000000000000000000000000000000000000000000000061164b8184612a95565b6108b39190612ab7565b60006116646020828486612556565b61166d91612adc565b9392505050565b6000611684602860208486612556565b61168d91612afa565b60c01c9392505050565b60006108b37f00000000000000000000000000000000000000000000000000000000000000006001600160401b038416612ab7565b60006117026001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168585611989565b509092915050565b60606117198260288186612556565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929695505050505050565b60608484848460405160200161176e9493929190612b2a565b6040516020818303038152906040529050949350505050565b60006108b37f000000000000000000000000000000000000000000000000000000000000000083612a95565b80516060901515806117fc5784846040516020016117e892919091825260c01b6001600160c01b031916602082015260280190565b604051602081830303815290604052611823565b848433856040516020016118139493929190612b7c565b6040516020818303038152906040525b9150935093915050565b60008061183b858585610f27565b90925090506118756001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168730856119f1565b94509492505050565b611886611d3b565b60006118958460000151611a2f565b6020850151909150156118af576118af8460200151611a57565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316632637a450826040518060a001604052808b63ffffffff1681526020016118ff8c610f63565b81526020018a815260200189815260200160008960200151111515815250866040518463ffffffff1660e01b815260040161193b929190612804565b60806040518083038185885af1158015611959573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061197e9190612bbc565b979650505050505050565b6040516001600160a01b0383166024820152604481018290526119ec90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611b39565b505050565b6040516001600160a01b0380851660248301528316604482015260648101829052611a299085906323b872dd60e01b906084016119b5565b50505050565b6000813414611a53576040516304fb820960e51b81523460048201526024016107d9565b5090565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e4fe1d946040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ab7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611adb919061230a565b90506001600160a01b038116611b04576040516329b99a9560e11b815260040160405180910390fd5b6108586001600160a01b038216337f0000000000000000000000000000000000000000000000000000000000000000856119f1565b6000611b8e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c0e9092919063ffffffff16565b9050805160001480611baf575080806020019051810190611baf91906127e7565b6119ec5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016107d9565b60606109f9848460008585600080866001600160a01b03168587604051611c359190612c06565b60006040518083038185875af1925050503d8060008114611c72576040519150601f19603f3d011682016040523d82523d6000602084013e611c77565b606091505b509150915061197e8783838760608315611cf2578251600003611ceb576001600160a01b0385163b611ceb5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107d9565b50816109f9565b6109f98383815115611d075781518083602001fd5b8060405162461bcd60e51b81526004016107d991906120af565b604051806040016040528060008152602001600081525090565b6040805160608101825260008082526020820152908101611d5a611d21565b905290565b600060e08284031215611d7157600080fd5b50919050565b600060208284031215611d8957600080fd5b81356001600160401b03811115611d9f57600080fd5b6109f984828501611d5f565b80518252602090810151910152565b60005b83811015611dd5578181015183820152602001611dbd565b50506000910152565b60008151808452611df6816020860160208601611dba565b601f01601f19169290920160200192915050565b600060a08201611e1a8387611dab565b604060a0604085015281865180845260c08601915060c08160051b8701019350602080890160005b83811015611e815788870360bf19018552815180518852830151838801879052611e6e87890182611dde565b9750509382019390820190600101611e42565b505050505050809150506109f96060830184611dab565b6001600160a01b0391909116815260200190565b600060608284031215611d7157600080fd5b60008083601f840112611ed057600080fd5b5081356001600160401b03811115611ee757600080fd5b602083019150836020828501011115611eff57600080fd5b9250929050565b6001600160a01b0381168114610eee57600080fd5b600080600080600080600060e0888a031215611f3657600080fd5b611f408989611eac565b96506060880135955060808801356001600160401b0380821115611f6357600080fd5b611f6f8b838c01611ebe565b909750955060a08a01359150611f8482611f06565b90935060c08901359080821115611f9a57600080fd5b50611fa78a828b01611ebe565b989b979a50959850939692959293505050565b803563ffffffff81168114611fce57600080fd5b919050565b60008060408385031215611fe657600080fd5b611fef83611fba565b946020939093013593505050565b8015158114610eee57600080fd5b6000806040838503121561201e57600080fd5b82356001600160401b0381111561203457600080fd5b61204085828601611d5f565b925050602083013561205181611ffd565b809150509250929050565b604081016108b38284611dab565b803561ffff81168114611fce57600080fd5b6000806040838503121561208f57600080fd5b61209883611fba565b91506120a66020840161206a565b90509250929050565b60208152600061166d6020830184611dde565b6000602082840312156120d457600080fd5b813561166d81611f06565b60008060008060a085870312156120f557600080fd5b6120ff8686611eac565b935060608501356001600160401b0381111561211a57600080fd5b61212687828801611ebe565b909450925050608085013561213a81611f06565b939692955090935050565b60008083601f84011261215757600080fd5b5081356001600160401b0381111561216e57600080fd5b6020830191508360208260051b8501011115611eff57600080fd5b6000806020838503121561219c57600080fd5b82356001600160401b038111156121b257600080fd5b6121be85828601612145565b90969095509350505050565b6000602082840312156121dc57600080fd5b61166d82611fba565b600080600080606085870312156121fb57600080fd5b61220485611fba565b93506122126020860161206a565b925060408501356001600160401b0381111561222d57600080fd5b61223987828801611ebe565b95989497509550505050565b6000806000838503608081121561225b57600080fd5b84356001600160401b0381111561227157600080fd5b61227d87828801611d5f565b9450506040601f198201121561229257600080fd5b5060208401915060608401356122a781611f06565b809150509250925092565b825181526020808401516001600160401b03169082015260408084015160c08301916122e090840182611dab565b5061166d6080830184611dab565b60006060828403121561230057600080fd5b61166d8383611eac565b60006020828403121561231c57600080fd5b815161166d81611f06565b60006020828403121561233957600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b63ffffffff929092168252602082015260400190565b600181811c9082168061238057607f821691505b602082108103611d7157634e487b7160e01b600052602260045260246000fd5b604051606081016001600160401b03811182821017156123c2576123c2612340565b60405290565b604080519081016001600160401b03811182821017156123c2576123c2612340565b604051601f8201601f191681016001600160401b038111828210171561241257612412612340565b604052919050565b60006001600160401b0382111561243357612433612340565b50601f01601f191660200190565b60006001600160401b038084111561245b5761245b612340565b8360051b602061246c8183016123ea565b86815291850191818101903684111561248457600080fd5b865b8481101561254a5780358681111561249e5760008081fd5b880160603682900312156124b25760008081fd5b6124ba6123a0565b6124c382611fba565b81526124d086830161206a565b86820152604080830135898111156124e85760008081fd5b929092019136601f8401126124fd5760008081fd5b823561251061250b8261241a565b6123ea565b81815236898387010111156125255760008081fd5b818986018a830137600091810189019190915290820152845250918301918301612486565b50979650505050505050565b6000808585111561256657600080fd5b8386111561257357600080fd5b5050820193919092039150565b60008451612592818460208901611dba565b8201838582376000930192835250909392505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6020815260006109f96020830184866125a8565b634e487b7160e01b600052603260045260246000fd5b6000823561013e1983360301811261261257600080fd5b9190910192915050565b6000808335601e1984360301811261263357600080fd5b8301803591506001600160401b0382111561264d57600080fd5b602001915036819003821315611eff57600080fd5b6001600160401b0381168114610eee57600080fd5b63ffffffff61268589611fba565b16815260208801356020820152600060408901356126a281612662565b6001600160401b031660408301526060820188905260e0608083018190526126cd90830187896125a8565b6001600160a01b03861660a084015282810360c08401526126ef8185876125a8565b9a9950505050505050505050565b60006020828403121561270f57600080fd5b81516001600160401b0381111561272557600080fd5b8201601f8101841361273657600080fd5b805161274461250b8261241a565b81815285602083850101111561275957600080fd5b6113a3826020830160208601611dba565b60006020828403121561277c57600080fd5b813561166d81612662565b60018060a01b038516815283602082015261ffff831660408201526080606082015260006127b86080830184611dde565b9695505050505050565b6040815260006127d56040830185611dde565b82810360208401526113a38185611dde565b6000602082840312156127f957600080fd5b815161166d81611ffd565b6040815263ffffffff8351166040820152602083015160608201526000604084015160a0608084015261283a60e0840182611dde565b90506060850151603f198483030160a08501526128578282611dde565b60809690960151151560c08501525050506001600160a01b039190911660209091015290565b60006040828403121561288f57600080fd5b6128976123c8565b9050815181526020820151602082015292915050565b6000604082840312156128bf57600080fd5b61166d838361287d565b601f8211156119ec576000816000526020600020601f850160051c810160208610156128f25750805b601f850160051c820191505b81811015612911578281556001016128fe565b505050505050565b81516001600160401b0381111561293257612932612340565b61294681612940845461236c565b846128c9565b602080601f83116001811461297b57600084156129635750858301515b600019600386901b1c1916600185901b178555612911565b600085815260208120601f198616915b828110156129aa5788860151825594840194600190910190840161298b565b50858210156129c85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208083018184528085518083526040925060408601915060408160051b87010184880160005b83811015612a5557888303603f190185528151805163ffffffff1684528781015161ffff16888501528601516060878501819052612a4181860183611dde565b968901969450505090860190600101612a01565b509098975050505050505050565b600060408284031215612a7557600080fd5b612a7d6123c8565b82358152602083013560208201528091505092915050565b600082612ab257634e487b7160e01b600052601260045260246000fd5b500490565b80820281158282048414176108b357634e487b7160e01b600052601160045260246000fd5b803560208310156108b357600019602084900360031b1b1692915050565b6001600160c01b03198135818116916008851015612b225780818660080360031b1b83161692505b505092915050565b60c085901b6001600160c01b031916815260e084901b6001600160e01b0319166008820152600c81018390528151600090612b6c81602c850160208701611dba565b91909101602c0195945050505050565b84815260018060c01b03198460c01b16602082015282602882015260008251612bac816048850160208701611dba565b9190910160480195945050505050565b600060808284031215612bce57600080fd5b612bd66123a0565b825181526020830151612be881612662565b6020820152612bfa846040850161287d565b60408201529392505050565b60008251612612818460208701611dba56fea264697066735822122077b209a3d35ca0afc6930ffea5ce398ff954b030179b0a7154449738ba7f236164736f6c63430008170033";
1270
+
1271
+ type OFTAdapterImplConstructorParams =
1272
+ | [signer?: Signer]
1273
+ | ConstructorParameters<typeof ContractFactory>;
1274
+
1275
+ const isSuperArgs = (
1276
+ xs: OFTAdapterImplConstructorParams
1277
+ ): xs is ConstructorParameters<typeof ContractFactory> => xs.length > 1;
1278
+
1279
+ export class OFTAdapterImpl__factory extends ContractFactory {
1280
+ constructor(...args: OFTAdapterImplConstructorParams) {
1281
+ if (isSuperArgs(args)) {
1282
+ super(...args);
1283
+ } else {
1284
+ super(_abi, _bytecode, args[0]);
1285
+ }
1286
+ this.contractName = "OFTAdapterImpl";
1287
+ }
1288
+
1289
+ deploy(
1290
+ _token: string,
1291
+ _endpoint: string,
1292
+ _delegate: string,
1293
+ overrides?: Overrides & { from?: string | Promise<string> }
1294
+ ): Promise<OFTAdapterImpl> {
1295
+ return super.deploy(
1296
+ _token,
1297
+ _endpoint,
1298
+ _delegate,
1299
+ overrides || {}
1300
+ ) as Promise<OFTAdapterImpl>;
1301
+ }
1302
+ getDeployTransaction(
1303
+ _token: string,
1304
+ _endpoint: string,
1305
+ _delegate: string,
1306
+ overrides?: Overrides & { from?: string | Promise<string> }
1307
+ ): TransactionRequest {
1308
+ return super.getDeployTransaction(
1309
+ _token,
1310
+ _endpoint,
1311
+ _delegate,
1312
+ overrides || {}
1313
+ );
1314
+ }
1315
+ attach(address: string): OFTAdapterImpl {
1316
+ return super.attach(address) as OFTAdapterImpl;
1317
+ }
1318
+ connect(signer: Signer): OFTAdapterImpl__factory {
1319
+ return super.connect(signer) as OFTAdapterImpl__factory;
1320
+ }
1321
+ static readonly contractName: "OFTAdapterImpl";
1322
+ public readonly contractName: "OFTAdapterImpl";
1323
+ static readonly bytecode = _bytecode;
1324
+ static readonly abi = _abi;
1325
+ static createInterface(): OFTAdapterImplInterface {
1326
+ return new utils.Interface(_abi) as OFTAdapterImplInterface;
1327
+ }
1328
+ static connect(
1329
+ address: string,
1330
+ signerOrProvider: Signer | Provider
1331
+ ): OFTAdapterImpl {
1332
+ return new Contract(address, _abi, signerOrProvider) as OFTAdapterImpl;
1333
+ }
1334
+ }