@pendle/core-v2 3.0.0-beta-4 → 3.0.0-beta-6
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.
- package/build/artifacts/contracts/router/ActionMiscV3.sol/ActionMiscV3.dbg.json +1 -1
- package/build/artifacts/contracts/router/ActionMiscV3.sol/ActionMiscV3.json +2 -2
- package/contracts/router/ActionMiscV3.sol +1 -1
- package/deployments/1-core.json +2 -1
- package/deployments/10-core.json +2 -1
- package/deployments/42161-core.json +7 -4
- package/deployments/56-core.json +2 -1
- package/package.json +1 -1
- package/typechain-types/IAggregationExecutorOptimistic.ts +394 -0
- package/typechain-types/IExecutorHelperL2.ts +2272 -0
- package/typechain-types/PendleSwapBase.ts +126 -0
- package/typechain-types/PendleSwapL1.ts +126 -0
- package/typechain-types/PendleSwapL2.ts +126 -0
- package/typechain-types/factories/ActionMiscV3__factory.ts +1 -1
- package/typechain-types/factories/IAggregationExecutorOptimistic__factory.ts +213 -0
- package/typechain-types/factories/IExecutorHelperL2__factory.ts +1862 -0
- package/typechain-types/factories/PendleSwapBase__factory.ts +91 -0
- package/typechain-types/factories/PendleSwapL1__factory.ts +126 -0
- package/typechain-types/factories/PendleSwapL2__factory.ts +126 -0
- package/typechain-types/hardhat.d.ts +135 -0
- package/typechain-types/index.ts +20 -10
package/typechain-types/index.ts
CHANGED
|
@@ -261,6 +261,16 @@ export type { PendlePtOracle } from "./PendlePtOracle";
|
|
|
261
261
|
export type { PendleLpGlpOracle } from "./PendleLpGlpOracle";
|
|
262
262
|
export type { PendlePtGlpOracle } from "./PendlePtGlpOracle";
|
|
263
263
|
export type { PendlePtUsdChainlinkOracle } from "./PendlePtUsdChainlinkOracle";
|
|
264
|
+
export type { I1inchAggregationRouterV5 } from "./I1inchAggregationRouterV5";
|
|
265
|
+
export type { IAggregationExecutor } from "./IAggregationExecutor";
|
|
266
|
+
export type { IAggregationExecutorOptimistic } from "./IAggregationExecutorOptimistic";
|
|
267
|
+
export type { IExecutorHelper } from "./IExecutorHelper";
|
|
268
|
+
export type { IExecutorHelperL2 } from "./IExecutorHelperL2";
|
|
269
|
+
export type { IMetaAggregationRouterV2 } from "./IMetaAggregationRouterV2";
|
|
270
|
+
export type { IPSwapAggregator } from "./IPSwapAggregator";
|
|
271
|
+
export type { PendleSwapBase } from "./PendleSwapBase";
|
|
272
|
+
export type { PendleSwapL1 } from "./PendleSwapL1";
|
|
273
|
+
export type { PendleSwapL2 } from "./PendleSwapL2";
|
|
264
274
|
export type { ActionAddRemoveLiqV3 } from "./ActionAddRemoveLiqV3";
|
|
265
275
|
export type { ActionMiscV3 } from "./ActionMiscV3";
|
|
266
276
|
export type { ActionSwapPTV3 } from "./ActionSwapPTV3";
|
|
@@ -270,11 +280,6 @@ export type { SimulateHelper } from "./SimulateHelper";
|
|
|
270
280
|
export type { PendleRouterHelper } from "./PendleRouterHelper";
|
|
271
281
|
export type { RouterV2InterfaceForRouterHelper } from "./RouterV2InterfaceForRouterHelper";
|
|
272
282
|
export type { PendleRouterV3 } from "./PendleRouterV3";
|
|
273
|
-
export type { IPSwapAggregator } from "./IPSwapAggregator";
|
|
274
|
-
export type { IAggregationExecutor } from "./IAggregationExecutor";
|
|
275
|
-
export type { IExecutorHelper } from "./IExecutorHelper";
|
|
276
|
-
export type { IMetaAggregationRouterV2 } from "./IMetaAggregationRouterV2";
|
|
277
|
-
export type { I1inchAggregationRouterV5 } from "./I1inchAggregationRouterV5";
|
|
278
283
|
export type { PendleSwap } from "./PendleSwap";
|
|
279
284
|
|
|
280
285
|
export { AggregatorInterface__factory } from "./factories/AggregatorInterface__factory";
|
|
@@ -537,6 +542,16 @@ export { PendlePtOracle__factory } from "./factories/PendlePtOracle__factory";
|
|
|
537
542
|
export { PendleLpGlpOracle__factory } from "./factories/PendleLpGlpOracle__factory";
|
|
538
543
|
export { PendlePtGlpOracle__factory } from "./factories/PendlePtGlpOracle__factory";
|
|
539
544
|
export { PendlePtUsdChainlinkOracle__factory } from "./factories/PendlePtUsdChainlinkOracle__factory";
|
|
545
|
+
export { I1inchAggregationRouterV5__factory } from "./factories/I1inchAggregationRouterV5__factory";
|
|
546
|
+
export { IAggregationExecutor__factory } from "./factories/IAggregationExecutor__factory";
|
|
547
|
+
export { IAggregationExecutorOptimistic__factory } from "./factories/IAggregationExecutorOptimistic__factory";
|
|
548
|
+
export { IExecutorHelper__factory } from "./factories/IExecutorHelper__factory";
|
|
549
|
+
export { IExecutorHelperL2__factory } from "./factories/IExecutorHelperL2__factory";
|
|
550
|
+
export { IMetaAggregationRouterV2__factory } from "./factories/IMetaAggregationRouterV2__factory";
|
|
551
|
+
export { IPSwapAggregator__factory } from "./factories/IPSwapAggregator__factory";
|
|
552
|
+
export { PendleSwapBase__factory } from "./factories/PendleSwapBase__factory";
|
|
553
|
+
export { PendleSwapL1__factory } from "./factories/PendleSwapL1__factory";
|
|
554
|
+
export { PendleSwapL2__factory } from "./factories/PendleSwapL2__factory";
|
|
540
555
|
export { ActionAddRemoveLiqV3__factory } from "./factories/ActionAddRemoveLiqV3__factory";
|
|
541
556
|
export { ActionMiscV3__factory } from "./factories/ActionMiscV3__factory";
|
|
542
557
|
export { ActionSwapPTV3__factory } from "./factories/ActionSwapPTV3__factory";
|
|
@@ -546,9 +561,4 @@ export { SimulateHelper__factory } from "./factories/SimulateHelper__factory";
|
|
|
546
561
|
export { PendleRouterHelper__factory } from "./factories/PendleRouterHelper__factory";
|
|
547
562
|
export { RouterV2InterfaceForRouterHelper__factory } from "./factories/RouterV2InterfaceForRouterHelper__factory";
|
|
548
563
|
export { PendleRouterV3__factory } from "./factories/PendleRouterV3__factory";
|
|
549
|
-
export { IPSwapAggregator__factory } from "./factories/IPSwapAggregator__factory";
|
|
550
|
-
export { IAggregationExecutor__factory } from "./factories/IAggregationExecutor__factory";
|
|
551
|
-
export { IExecutorHelper__factory } from "./factories/IExecutorHelper__factory";
|
|
552
|
-
export { IMetaAggregationRouterV2__factory } from "./factories/IMetaAggregationRouterV2__factory";
|
|
553
|
-
export { I1inchAggregationRouterV5__factory } from "./factories/I1inchAggregationRouterV5__factory";
|
|
554
564
|
export { PendleSwap__factory } from "./factories/PendleSwap__factory";
|