@pendle/core-v2 4.4.4 → 4.4.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/core/StandardizedYield/implementations/Ethena/PendleUSDEL2SY.sol/PendleUSDEL2SY.dbg.json +4 -0
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Ethena/{PendleUSDEMantleSY.sol/PendleUSDEMantleSY.json → PendleUSDEL2SY.sol/PendleUSDEL2SY.json} +4 -4
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Tensorplex/PendleStTAOSY.sol/PendleStTAOSY.dbg.json +4 -0
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Tensorplex/PendleStTAOSY.sol/PendleStTAOSY.json +1036 -0
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Zircuit/PendleZtakeERC20SY.sol/PendleZtakeERC20SY.dbg.json +4 -0
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Zircuit/PendleZtakeERC20SY.sol/PendleZtakeERC20SY.json +1036 -0
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Zircuit/PendleZtakeUSDESY.sol/PendleZtakeUSDESY.dbg.json +4 -0
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Zircuit/PendleZtakeUSDESY.sol/PendleZtakeUSDESY.json +1086 -0
- package/build/artifacts/contracts/interfaces/Tensorplex/ITensorplexStTAO.sol/ITensorplexStTAO.dbg.json +4 -0
- package/build/artifacts/contracts/interfaces/Tensorplex/ITensorplexStTAO.sol/ITensorplexStTAO.json +106 -0
- package/contracts/core/StandardizedYield/implementations/Ethena/{PendleUSDEMantleSY.sol → PendleUSDEL2SY.sol} +1 -2
- package/contracts/core/StandardizedYield/implementations/Tensorplex/PendleStTAOSY.sol +106 -0
- package/contracts/core/StandardizedYield/implementations/Zircuit/{PendleZtakeWETHSY.sol → PendleZtakeERC20SY.sol} +16 -16
- package/contracts/core/StandardizedYield/implementations/Zircuit/PendleZtakeUSDESY.sol +133 -0
- package/contracts/interfaces/Tensorplex/ITensorplexStTAO.sol +16 -0
- package/deployments/1-markets/STTAO-JUNE2024.json +13 -0
- package/deployments/1-markets/ZIRCUIT-USDE-JUNE2024.json +13 -0
- package/deployments/1-offchain-helper.json +2 -1
- package/deployments/10-offchain-helper.json +2 -1
- package/deployments/42161-markets/USDE-ARBITRUM-AUG2024.json +11 -0
- package/deployments/42161-offchain-helper.json +2 -1
- package/deployments/5000-offchain-helper.json +2 -1
- package/deployments/56-offchain-helper.json +2 -1
- package/package.json +1 -1
- package/typechain-types/ITensorplexStTAO.ts +221 -0
- package/typechain-types/PendleStTAOSY.ts +1314 -0
- package/typechain-types/PendleUSDEL2SY.ts +1363 -0
- package/typechain-types/PendleZtakeERC20SY.ts +1336 -0
- package/typechain-types/PendleZtakeUSDESY.ts +1393 -0
- package/typechain-types/factories/ITensorplexStTAO__factory.ts +121 -0
- package/typechain-types/factories/PendleStTAOSY__factory.ts +1088 -0
- package/typechain-types/factories/PendleUSDEL2SY__factory.ts +1110 -0
- package/typechain-types/factories/PendleZtakeERC20SY__factory.ts +1097 -0
- package/typechain-types/factories/PendleZtakeUSDESY__factory.ts +1147 -0
- package/typechain-types/hardhat.d.ts +45 -0
- package/typechain-types/index.ts +10 -0
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Ethena/PendleUSDEMantleSY.sol/PendleUSDEMantleSY.dbg.json +0 -4
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Zircuit/PendleZtakeWETHSY.sol/PendleZtakeWETHSY.dbg.json +0 -4
- package/build/artifacts/contracts/core/StandardizedYield/implementations/Zircuit/PendleZtakeWETHSY.sol/PendleZtakeWETHSY.json +0 -1025
|
@@ -368,6 +368,10 @@ declare module "hardhat/types/runtime" {
|
|
|
368
368
|
name: "PendleSUSDESY",
|
|
369
369
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
370
370
|
): Promise<Contracts.PendleSUSDESY__factory>;
|
|
371
|
+
getContractFactory(
|
|
372
|
+
name: "PendleUSDEL2SY",
|
|
373
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
374
|
+
): Promise<Contracts.PendleUSDEL2SY__factory>;
|
|
371
375
|
getContractFactory(
|
|
372
376
|
name: "PendleUSDEMantleSY",
|
|
373
377
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
@@ -548,6 +552,10 @@ declare module "hardhat/types/runtime" {
|
|
|
548
552
|
name: "SwETHSY",
|
|
549
553
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
550
554
|
): Promise<Contracts.SwETHSY__factory>;
|
|
555
|
+
getContractFactory(
|
|
556
|
+
name: "PendleStTAOSY",
|
|
557
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
558
|
+
): Promise<Contracts.PendleStTAOSY__factory>;
|
|
551
559
|
getContractFactory(
|
|
552
560
|
name: "PendleThenaSY",
|
|
553
561
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
@@ -568,6 +576,10 @@ declare module "hardhat/types/runtime" {
|
|
|
568
576
|
name: "ThenaPreview",
|
|
569
577
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
570
578
|
): Promise<Contracts.ThenaPreview__factory>;
|
|
579
|
+
getContractFactory(
|
|
580
|
+
name: "PendleZtakeERC20SY",
|
|
581
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
582
|
+
): Promise<Contracts.PendleZtakeERC20SY__factory>;
|
|
571
583
|
getContractFactory(
|
|
572
584
|
name: "PendleZtakeEzETHSY",
|
|
573
585
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
@@ -576,6 +588,10 @@ declare module "hardhat/types/runtime" {
|
|
|
576
588
|
name: "PendleZtakeRsETHSY",
|
|
577
589
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
578
590
|
): Promise<Contracts.PendleZtakeRsETHSY__factory>;
|
|
591
|
+
getContractFactory(
|
|
592
|
+
name: "PendleZtakeUSDESY",
|
|
593
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
594
|
+
): Promise<Contracts.PendleZtakeUSDESY__factory>;
|
|
579
595
|
getContractFactory(
|
|
580
596
|
name: "PendleZtakeWeETHSY",
|
|
581
597
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
@@ -1212,6 +1228,10 @@ declare module "hardhat/types/runtime" {
|
|
|
1212
1228
|
name: "ISwETH",
|
|
1213
1229
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
1214
1230
|
): Promise<Contracts.ISwETH__factory>;
|
|
1231
|
+
getContractFactory(
|
|
1232
|
+
name: "ITensorplexStTAO",
|
|
1233
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
1234
|
+
): Promise<Contracts.ITensorplexStTAO__factory>;
|
|
1215
1235
|
getContractFactory(
|
|
1216
1236
|
name: "IThenaFactory",
|
|
1217
1237
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
@@ -1942,6 +1962,11 @@ declare module "hardhat/types/runtime" {
|
|
|
1942
1962
|
address: string,
|
|
1943
1963
|
signer?: ethers.Signer
|
|
1944
1964
|
): Promise<Contracts.PendleSUSDESY>;
|
|
1965
|
+
getContractAt(
|
|
1966
|
+
name: "PendleUSDEL2SY",
|
|
1967
|
+
address: string,
|
|
1968
|
+
signer?: ethers.Signer
|
|
1969
|
+
): Promise<Contracts.PendleUSDEL2SY>;
|
|
1945
1970
|
getContractAt(
|
|
1946
1971
|
name: "PendleUSDEMantleSY",
|
|
1947
1972
|
address: string,
|
|
@@ -2167,6 +2192,11 @@ declare module "hardhat/types/runtime" {
|
|
|
2167
2192
|
address: string,
|
|
2168
2193
|
signer?: ethers.Signer
|
|
2169
2194
|
): Promise<Contracts.SwETHSY>;
|
|
2195
|
+
getContractAt(
|
|
2196
|
+
name: "PendleStTAOSY",
|
|
2197
|
+
address: string,
|
|
2198
|
+
signer?: ethers.Signer
|
|
2199
|
+
): Promise<Contracts.PendleStTAOSY>;
|
|
2170
2200
|
getContractAt(
|
|
2171
2201
|
name: "PendleThenaSY",
|
|
2172
2202
|
address: string,
|
|
@@ -2192,6 +2222,11 @@ declare module "hardhat/types/runtime" {
|
|
|
2192
2222
|
address: string,
|
|
2193
2223
|
signer?: ethers.Signer
|
|
2194
2224
|
): Promise<Contracts.ThenaPreview>;
|
|
2225
|
+
getContractAt(
|
|
2226
|
+
name: "PendleZtakeERC20SY",
|
|
2227
|
+
address: string,
|
|
2228
|
+
signer?: ethers.Signer
|
|
2229
|
+
): Promise<Contracts.PendleZtakeERC20SY>;
|
|
2195
2230
|
getContractAt(
|
|
2196
2231
|
name: "PendleZtakeEzETHSY",
|
|
2197
2232
|
address: string,
|
|
@@ -2202,6 +2237,11 @@ declare module "hardhat/types/runtime" {
|
|
|
2202
2237
|
address: string,
|
|
2203
2238
|
signer?: ethers.Signer
|
|
2204
2239
|
): Promise<Contracts.PendleZtakeRsETHSY>;
|
|
2240
|
+
getContractAt(
|
|
2241
|
+
name: "PendleZtakeUSDESY",
|
|
2242
|
+
address: string,
|
|
2243
|
+
signer?: ethers.Signer
|
|
2244
|
+
): Promise<Contracts.PendleZtakeUSDESY>;
|
|
2205
2245
|
getContractAt(
|
|
2206
2246
|
name: "PendleZtakeWeETHSY",
|
|
2207
2247
|
address: string,
|
|
@@ -2997,6 +3037,11 @@ declare module "hardhat/types/runtime" {
|
|
|
2997
3037
|
address: string,
|
|
2998
3038
|
signer?: ethers.Signer
|
|
2999
3039
|
): Promise<Contracts.ISwETH>;
|
|
3040
|
+
getContractAt(
|
|
3041
|
+
name: "ITensorplexStTAO",
|
|
3042
|
+
address: string,
|
|
3043
|
+
signer?: ethers.Signer
|
|
3044
|
+
): Promise<Contracts.ITensorplexStTAO>;
|
|
3000
3045
|
getContractAt(
|
|
3001
3046
|
name: "IThenaFactory",
|
|
3002
3047
|
address: string,
|
package/typechain-types/index.ts
CHANGED
|
@@ -89,6 +89,7 @@ export type { PendleCurveFraxUsdcSY } from "./PendleCurveFraxUsdcSY";
|
|
|
89
89
|
export type { PendleCurveUsdd3CrvSY } from "./PendleCurveUsdd3CrvSY";
|
|
90
90
|
export type { PendleSUSDEMantleSY } from "./PendleSUSDEMantleSY";
|
|
91
91
|
export type { PendleSUSDESY } from "./PendleSUSDESY";
|
|
92
|
+
export type { PendleUSDEL2SY } from "./PendleUSDEL2SY";
|
|
92
93
|
export type { PendleUSDEMantleSY } from "./PendleUSDEMantleSY";
|
|
93
94
|
export type { PendleUSDESY } from "./PendleUSDESY";
|
|
94
95
|
export type { PendleWEEthSY } from "./PendleWEEthSY";
|
|
@@ -134,13 +135,16 @@ export type { PendleSiloWithIncentiveSY } from "./PendleSiloWithIncentiveSY";
|
|
|
134
135
|
export type { PendleETHXSY } from "./PendleETHXSY";
|
|
135
136
|
export type { PendleRswETHSY } from "./PendleRswETHSY";
|
|
136
137
|
export type { SwETHSY } from "./SwETHSY";
|
|
138
|
+
export type { PendleStTAOSY } from "./PendleStTAOSY";
|
|
137
139
|
export type { PendleThenaSY } from "./PendleThenaSY";
|
|
138
140
|
export type { ThenaLpHelper } from "./ThenaLpHelper";
|
|
139
141
|
export type { ThenaMath } from "./ThenaMath";
|
|
140
142
|
export type { IThenaSY } from "./IThenaSY";
|
|
141
143
|
export type { ThenaPreview } from "./ThenaPreview";
|
|
144
|
+
export type { PendleZtakeERC20SY } from "./PendleZtakeERC20SY";
|
|
142
145
|
export type { PendleZtakeEzETHSY } from "./PendleZtakeEzETHSY";
|
|
143
146
|
export type { PendleZtakeRsETHSY } from "./PendleZtakeRsETHSY";
|
|
147
|
+
export type { PendleZtakeUSDESY } from "./PendleZtakeUSDESY";
|
|
144
148
|
export type { PendleZtakeWeETHSY } from "./PendleZtakeWeETHSY";
|
|
145
149
|
export type { PendleZtakeWETHSY } from "./PendleZtakeWETHSY";
|
|
146
150
|
export type { SYBase } from "./SYBase";
|
|
@@ -300,6 +304,7 @@ export type { ISiloLens } from "./ISiloLens";
|
|
|
300
304
|
export type { IStaderStakeManager } from "./IStaderStakeManager";
|
|
301
305
|
export type { IRswETH } from "./IRswETH";
|
|
302
306
|
export type { ISwETH } from "./ISwETH";
|
|
307
|
+
export type { ITensorplexStTAO } from "./ITensorplexStTAO";
|
|
303
308
|
export type { IThenaFactory } from "./IThenaFactory";
|
|
304
309
|
export type { IThenaGaugeV2 } from "./IThenaGaugeV2";
|
|
305
310
|
export type { IThenaPair } from "./IThenaPair";
|
|
@@ -460,6 +465,7 @@ export { PendleCurveFraxUsdcSY__factory } from "./factories/PendleCurveFraxUsdcS
|
|
|
460
465
|
export { PendleCurveUsdd3CrvSY__factory } from "./factories/PendleCurveUsdd3CrvSY__factory";
|
|
461
466
|
export { PendleSUSDEMantleSY__factory } from "./factories/PendleSUSDEMantleSY__factory";
|
|
462
467
|
export { PendleSUSDESY__factory } from "./factories/PendleSUSDESY__factory";
|
|
468
|
+
export { PendleUSDEL2SY__factory } from "./factories/PendleUSDEL2SY__factory";
|
|
463
469
|
export { PendleUSDEMantleSY__factory } from "./factories/PendleUSDEMantleSY__factory";
|
|
464
470
|
export { PendleUSDESY__factory } from "./factories/PendleUSDESY__factory";
|
|
465
471
|
export { PendleWEEthSY__factory } from "./factories/PendleWEEthSY__factory";
|
|
@@ -505,13 +511,16 @@ export { PendleSiloWithIncentiveSY__factory } from "./factories/PendleSiloWithIn
|
|
|
505
511
|
export { PendleETHXSY__factory } from "./factories/PendleETHXSY__factory";
|
|
506
512
|
export { PendleRswETHSY__factory } from "./factories/PendleRswETHSY__factory";
|
|
507
513
|
export { SwETHSY__factory } from "./factories/SwETHSY__factory";
|
|
514
|
+
export { PendleStTAOSY__factory } from "./factories/PendleStTAOSY__factory";
|
|
508
515
|
export { PendleThenaSY__factory } from "./factories/PendleThenaSY__factory";
|
|
509
516
|
export { ThenaLpHelper__factory } from "./factories/ThenaLpHelper__factory";
|
|
510
517
|
export { ThenaMath__factory } from "./factories/ThenaMath__factory";
|
|
511
518
|
export { IThenaSY__factory } from "./factories/IThenaSY__factory";
|
|
512
519
|
export { ThenaPreview__factory } from "./factories/ThenaPreview__factory";
|
|
520
|
+
export { PendleZtakeERC20SY__factory } from "./factories/PendleZtakeERC20SY__factory";
|
|
513
521
|
export { PendleZtakeEzETHSY__factory } from "./factories/PendleZtakeEzETHSY__factory";
|
|
514
522
|
export { PendleZtakeRsETHSY__factory } from "./factories/PendleZtakeRsETHSY__factory";
|
|
523
|
+
export { PendleZtakeUSDESY__factory } from "./factories/PendleZtakeUSDESY__factory";
|
|
515
524
|
export { PendleZtakeWeETHSY__factory } from "./factories/PendleZtakeWeETHSY__factory";
|
|
516
525
|
export { PendleZtakeWETHSY__factory } from "./factories/PendleZtakeWETHSY__factory";
|
|
517
526
|
export { SYBase__factory } from "./factories/SYBase__factory";
|
|
@@ -671,6 +680,7 @@ export { ISiloLens__factory } from "./factories/ISiloLens__factory";
|
|
|
671
680
|
export { IStaderStakeManager__factory } from "./factories/IStaderStakeManager__factory";
|
|
672
681
|
export { IRswETH__factory } from "./factories/IRswETH__factory";
|
|
673
682
|
export { ISwETH__factory } from "./factories/ISwETH__factory";
|
|
683
|
+
export { ITensorplexStTAO__factory } from "./factories/ITensorplexStTAO__factory";
|
|
674
684
|
export { IThenaFactory__factory } from "./factories/IThenaFactory__factory";
|
|
675
685
|
export { IThenaGaugeV2__factory } from "./factories/IThenaGaugeV2__factory";
|
|
676
686
|
export { IThenaPair__factory } from "./factories/IThenaPair__factory";
|