@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.
- package/build/artifacts/contracts/core/StandardizedYield/implementations/PendleERC20WithSupplyCapSY.sol/PendleERC20WithSupplyCapSY.dbg.json +1 -1
- package/build/artifacts/contracts/core/StandardizedYield/implementations/PendleERC20WithSupplyCapSY.sol/PendleERC20WithSupplyCapSY.json +2 -2
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Swell/PendleSwellRswETHStakingSY.sol/PendleSwellRswETHStakingSY.dbg.json +4 -0
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Swell/PendleSwellRswETHStakingSY.sol/PendleSwellRswETHStakingSY.json +1049 -0
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Swell/PendleSwellStakingERC20SY.sol/PendleSwellStakingERC20SY.dbg.json +4 -0
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Swell/PendleSwellStakingERC20SY.sol/PendleSwellStakingERC20SY.json +1039 -0
- package/build/artifacts/contracts/interfaces/Swell/ISwellSimpleStakingERC20.sol/ISwellSimpleStakingERC20.dbg.json +4 -0
- package/build/artifacts/contracts/interfaces/Swell/ISwellSimpleStakingERC20.sol/ISwellSimpleStakingERC20.json +207 -0
- package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionMarketAuxStatic.sol/ActionMarketAuxStatic.dbg.json +1 -1
- package/build/artifacts/contracts/offchain-helpers/router-static/base/ActionMarketAuxStatic.sol/ActionMarketAuxStatic.json +2 -2
- package/contracts/core/StandardizedYield/implementations/PendleERC20WithSupplyCapSY.sol +6 -1
- package/contracts/core/StandardizedYield/implementations/Swell/PendleSwellRswETHStakingSY.sol +57 -0
- package/contracts/core/StandardizedYield/implementations/Swell/PendleSwellStakingERC20SY.sol +111 -0
- package/contracts/interfaces/Swell/ISwellSimpleStakingERC20.sol +66 -0
- package/contracts/offchain-helpers/router-static/base/ActionMarketAuxStatic.sol +12 -4
- package/deployments/1-markets/EZETH-MAINNET-SEP2024.json +11 -0
- package/deployments/1-markets/RSWETH-SWELL-STAKING-MAINNET-JUL2024.json +11 -0
- package/deployments/1-markets/WEETH-MAINNET-SEP2024.json +11 -0
- package/deployments/42161-markets/EZETH-ARB-SEP2024.json +11 -0
- package/deployments/42161-markets/SILO-PTEETH-ARBITRUM-JUNE2024.json +11 -0
- package/deployments/42161-markets/SILO-PTEZETH-ARBITRUM-JUNE2024.json +11 -0
- package/deployments/42161-markets/WEETH-ARB-SEP2024.json +11 -0
- package/deployments/56-markets/WEETH-BSC-SEP2024.json +11 -0
- package/deployments/merkle-distribution/2024-04-25.json +14930 -0
- package/package.json +1 -1
- package/typechain-types/ISwellSimpleStakingERC20.ts +289 -0
- package/typechain-types/PendleSwellRswETHStakingSY.ts +1325 -0
- package/typechain-types/PendleSwellStakingERC20SY.ts +1299 -0
- package/typechain-types/factories/ActionMarketAuxStatic__factory.ts +1 -1
- package/typechain-types/factories/ISwellSimpleStakingERC20__factory.ts +226 -0
- package/typechain-types/factories/PendleERC20WithSupplyCapSY__factory.ts +1 -1
- package/typechain-types/factories/PendleSwellRswETHStakingSY__factory.ts +1106 -0
- package/typechain-types/factories/PendleSwellStakingERC20SY__factory.ts +1112 -0
- package/typechain-types/hardhat.d.ts +27 -0
- package/typechain-types/index.ts +6 -0
- /package/deployments/1-markets/{EZETH-JUNE2024.json → EZETH-APR2024.json} +0 -0
- /package/deployments/42161-markets/{RSETH-MAY2024.json → RSETH-JUNE2024.json} +0 -0
- /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,
|
package/typechain-types/index.ts
CHANGED
|
@@ -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";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|