@pendle/core-v2 4.5.0 → 4.5.1

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 (38) hide show
  1. package/build/artifacts/contracts/core/StandardizedYield/implementations/PendleERC20WithSupplyCapSY.sol/PendleERC20WithSupplyCapSY.dbg.json +1 -1
  2. package/build/artifacts/contracts/core/StandardizedYield/implementations/PendleERC20WithSupplyCapSY.sol/PendleERC20WithSupplyCapSY.json +2 -2
  3. package/build/artifacts/contracts/core/StandardizedYield/implementations/Swell/PendleSwellRswETHStakingSY.sol/PendleSwellRswETHStakingSY.dbg.json +4 -0
  4. package/build/artifacts/contracts/core/StandardizedYield/implementations/Swell/PendleSwellRswETHStakingSY.sol/PendleSwellRswETHStakingSY.json +1049 -0
  5. package/build/artifacts/contracts/core/StandardizedYield/implementations/Swell/PendleSwellStakingERC20SY.sol/PendleSwellStakingERC20SY.dbg.json +4 -0
  6. package/build/artifacts/contracts/core/StandardizedYield/implementations/Swell/PendleSwellStakingERC20SY.sol/PendleSwellStakingERC20SY.json +1039 -0
  7. package/build/artifacts/contracts/interfaces/Swell/ISwellSimpleStakingERC20.sol/ISwellSimpleStakingERC20.dbg.json +4 -0
  8. package/build/artifacts/contracts/interfaces/Swell/ISwellSimpleStakingERC20.sol/ISwellSimpleStakingERC20.json +207 -0
  9. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionMarketAuxStatic.sol/ActionMarketAuxStatic.dbg.json +1 -1
  10. package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionMarketAuxStatic.sol/ActionMarketAuxStatic.json +2 -2
  11. package/contracts/core/StandardizedYield/implementations/PendleERC20WithSupplyCapSY.sol +6 -1
  12. package/contracts/core/StandardizedYield/implementations/Swell/PendleSwellRswETHStakingSY.sol +57 -0
  13. package/contracts/core/StandardizedYield/implementations/Swell/PendleSwellStakingERC20SY.sol +111 -0
  14. package/contracts/interfaces/Swell/ISwellSimpleStakingERC20.sol +66 -0
  15. package/contracts/offchain-helpers/router-static/base/ActionMarketAuxStatic.sol +12 -4
  16. package/deployments/1-markets/EZETH-MAINNET-SEP2024.json +11 -0
  17. package/deployments/1-markets/RSWETH-SWELL-STAKING-MAINNET-JUL2024.json +11 -0
  18. package/deployments/1-markets/WEETH-MAINNET-SEP2024.json +11 -0
  19. package/deployments/42161-markets/EZETH-ARB-SEP2024.json +11 -0
  20. package/deployments/42161-markets/SILO-PTEETH-ARBITRUM-JUNE2024.json +11 -0
  21. package/deployments/42161-markets/SILO-PTEZETH-ARBITRUM-JUNE2024.json +11 -0
  22. package/deployments/42161-markets/WEETH-ARB-SEP2024.json +11 -0
  23. package/deployments/56-markets/WEETH-BSC-SEP2024.json +11 -0
  24. package/deployments/merkle-distribution/2024-04-25.json +14930 -0
  25. package/package.json +1 -1
  26. package/typechain-types/ISwellSimpleStakingERC20.ts +289 -0
  27. package/typechain-types/PendleSwellRswETHStakingSY.ts +1325 -0
  28. package/typechain-types/PendleSwellStakingERC20SY.ts +1299 -0
  29. package/typechain-types/factories/ActionMarketAuxStatic__factory.ts +1 -1
  30. package/typechain-types/factories/ISwellSimpleStakingERC20__factory.ts +226 -0
  31. package/typechain-types/factories/PendleERC20WithSupplyCapSY__factory.ts +1 -1
  32. package/typechain-types/factories/PendleSwellRswETHStakingSY__factory.ts +1106 -0
  33. package/typechain-types/factories/PendleSwellStakingERC20SY__factory.ts +1112 -0
  34. package/typechain-types/hardhat.d.ts +27 -0
  35. package/typechain-types/index.ts +6 -0
  36. /package/deployments/1-markets/{EZETH-JUNE2024.json → EZETH-APR2024.json} +0 -0
  37. /package/deployments/42161-markets/{RSETH-MAY2024.json → RSETH-JUNE2024.json} +0 -0
  38. /package/deployments/42161-markets/{WEETH-MAY2024.json → WEETH-JUNE2024.json} +0 -0
@@ -548,6 +548,14 @@ declare module "hardhat/types/runtime" {
548
548
  name: "PendleRswETHSY",
549
549
  signerOrOptions?: ethers.Signer | FactoryOptions
550
550
  ): Promise<Contracts.PendleRswETHSY__factory>;
551
+ getContractFactory(
552
+ name: "PendleSwellRswETHStakingSY",
553
+ signerOrOptions?: ethers.Signer | FactoryOptions
554
+ ): Promise<Contracts.PendleSwellRswETHStakingSY__factory>;
555
+ getContractFactory(
556
+ name: "PendleSwellStakingERC20SY",
557
+ signerOrOptions?: ethers.Signer | FactoryOptions
558
+ ): Promise<Contracts.PendleSwellStakingERC20SY__factory>;
551
559
  getContractFactory(
552
560
  name: "SwETHSY",
553
561
  signerOrOptions?: ethers.Signer | FactoryOptions
@@ -1216,6 +1224,10 @@ declare module "hardhat/types/runtime" {
1216
1224
  name: "IRswETH",
1217
1225
  signerOrOptions?: ethers.Signer | FactoryOptions
1218
1226
  ): Promise<Contracts.IRswETH__factory>;
1227
+ getContractFactory(
1228
+ name: "ISwellSimpleStakingERC20",
1229
+ signerOrOptions?: ethers.Signer | FactoryOptions
1230
+ ): Promise<Contracts.ISwellSimpleStakingERC20__factory>;
1219
1231
  getContractFactory(
1220
1232
  name: "ISwETH",
1221
1233
  signerOrOptions?: ethers.Signer | FactoryOptions
@@ -2175,6 +2187,16 @@ declare module "hardhat/types/runtime" {
2175
2187
  address: string,
2176
2188
  signer?: ethers.Signer
2177
2189
  ): Promise<Contracts.PendleRswETHSY>;
2190
+ getContractAt(
2191
+ name: "PendleSwellRswETHStakingSY",
2192
+ address: string,
2193
+ signer?: ethers.Signer
2194
+ ): Promise<Contracts.PendleSwellRswETHStakingSY>;
2195
+ getContractAt(
2196
+ name: "PendleSwellStakingERC20SY",
2197
+ address: string,
2198
+ signer?: ethers.Signer
2199
+ ): Promise<Contracts.PendleSwellStakingERC20SY>;
2178
2200
  getContractAt(
2179
2201
  name: "SwETHSY",
2180
2202
  address: string,
@@ -3010,6 +3032,11 @@ declare module "hardhat/types/runtime" {
3010
3032
  address: string,
3011
3033
  signer?: ethers.Signer
3012
3034
  ): Promise<Contracts.IRswETH>;
3035
+ getContractAt(
3036
+ name: "ISwellSimpleStakingERC20",
3037
+ address: string,
3038
+ signer?: ethers.Signer
3039
+ ): Promise<Contracts.ISwellSimpleStakingERC20>;
3013
3040
  getContractAt(
3014
3041
  name: "ISwETH",
3015
3042
  address: string,
@@ -134,6 +134,8 @@ export type { PendleRenzoPreviewHelper } from "./PendleRenzoPreviewHelper";
134
134
  export type { PendleSiloWithIncentiveSY } from "./PendleSiloWithIncentiveSY";
135
135
  export type { PendleETHXSY } from "./PendleETHXSY";
136
136
  export type { PendleRswETHSY } from "./PendleRswETHSY";
137
+ export type { PendleSwellRswETHStakingSY } from "./PendleSwellRswETHStakingSY";
138
+ export type { PendleSwellStakingERC20SY } from "./PendleSwellStakingERC20SY";
137
139
  export type { SwETHSY } from "./SwETHSY";
138
140
  export type { PendleStTAOSY } from "./PendleStTAOSY";
139
141
  export type { PendleThenaSY } from "./PendleThenaSY";
@@ -301,6 +303,7 @@ export type { ISiloIncentiveController } from "./ISiloIncentiveController";
301
303
  export type { ISiloLens } from "./ISiloLens";
302
304
  export type { IStaderStakeManager } from "./IStaderStakeManager";
303
305
  export type { IRswETH } from "./IRswETH";
306
+ export type { ISwellSimpleStakingERC20 } from "./ISwellSimpleStakingERC20";
304
307
  export type { ISwETH } from "./ISwETH";
305
308
  export type { ITensorplexStTAO } from "./ITensorplexStTAO";
306
309
  export type { IThenaFactory } from "./IThenaFactory";
@@ -507,6 +510,8 @@ export { PendleRenzoPreviewHelper__factory } from "./factories/PendleRenzoPrevie
507
510
  export { PendleSiloWithIncentiveSY__factory } from "./factories/PendleSiloWithIncentiveSY__factory";
508
511
  export { PendleETHXSY__factory } from "./factories/PendleETHXSY__factory";
509
512
  export { PendleRswETHSY__factory } from "./factories/PendleRswETHSY__factory";
513
+ export { PendleSwellRswETHStakingSY__factory } from "./factories/PendleSwellRswETHStakingSY__factory";
514
+ export { PendleSwellStakingERC20SY__factory } from "./factories/PendleSwellStakingERC20SY__factory";
510
515
  export { SwETHSY__factory } from "./factories/SwETHSY__factory";
511
516
  export { PendleStTAOSY__factory } from "./factories/PendleStTAOSY__factory";
512
517
  export { PendleThenaSY__factory } from "./factories/PendleThenaSY__factory";
@@ -674,6 +679,7 @@ export { ISiloIncentiveController__factory } from "./factories/ISiloIncentiveCon
674
679
  export { ISiloLens__factory } from "./factories/ISiloLens__factory";
675
680
  export { IStaderStakeManager__factory } from "./factories/IStaderStakeManager__factory";
676
681
  export { IRswETH__factory } from "./factories/IRswETH__factory";
682
+ export { ISwellSimpleStakingERC20__factory } from "./factories/ISwellSimpleStakingERC20__factory";
677
683
  export { ISwETH__factory } from "./factories/ISwETH__factory";
678
684
  export { ITensorplexStTAO__factory } from "./factories/ITensorplexStTAO__factory";
679
685
  export { IThenaFactory__factory } from "./factories/IThenaFactory__factory";