@pendle/core-v2 4.5.1-beta-2 → 4.5.1-beta-4
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/IPActionMiscV3.sol/IPActionMiscV3.dbg.json +1 -1
- package/build/artifacts/contracts/interfaces/IPActionMiscV3.sol/IPActionMiscV3.json +46 -2
- package/build/artifacts/contracts/interfaces/IPAllActionV3.sol/IPAllActionV3.dbg.json +1 -1
- package/build/artifacts/contracts/interfaces/IPAllActionV3.sol/IPAllActionV3.json +46 -2
- package/build/artifacts/contracts/interfaces/IPGovernanceProxy.sol/IPGovernanceProxy.dbg.json +4 -0
- package/build/artifacts/contracts/interfaces/IPGovernanceProxy.sol/IPGovernanceProxy.json +60 -0
- package/build/artifacts/contracts/interfaces/IPPausingInterface.sol/IPPausingInterface.dbg.json +4 -0
- package/build/artifacts/contracts/interfaces/IPPausingInterface.sol/IPPausingInterface.json +25 -0
- package/build/artifacts/contracts/interfaces/IPPtLpOracle.sol/IPPtLpOracle.dbg.json +1 -1
- package/build/artifacts/contracts/interfaces/IPReflector.sol/IPReflector.dbg.json +4 -0
- package/build/artifacts/contracts/interfaces/IPReflector.sol/IPReflector.json +30 -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/PendleGovernanceProxy.sol/PendleGovernanceProxy.dbg.json +4 -0
- package/build/artifacts/contracts/offchain-helpers/PendleGovernanceProxy.sol/PendleGovernanceProxy.json +401 -0
- package/build/artifacts/contracts/offchain-helpers/PendlePoolDeployHelper.sol/PendlePoolDeployHelper.dbg.json +1 -1
- package/build/artifacts/contracts/offchain-helpers/PendlePoolDeployHelper.sol/PendlePoolDeployHelper.json +2 -2
- 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/build/artifacts/contracts/oracles/PendleLpOracleLib.sol/PendleLpOracleLib.dbg.json +1 -1
- package/build/artifacts/contracts/oracles/PendlePtLpOracle.sol/PendlePtLpOracle.dbg.json +1 -1
- package/build/artifacts/contracts/oracles/PendlePtOracleLib.sol/PendlePtOracleLib.dbg.json +1 -1
- package/build/artifacts/contracts/oracles/samples/BoringLpGlpOracle.sol/BoringLpGlpOracle.dbg.json +1 -1
- package/build/artifacts/contracts/oracles/samples/BoringPtUsdChainlinkOracle.sol/BoringPtUsdChainlinkOracle.dbg.json +1 -1
- package/build/artifacts/contracts/router/ActionAddRemoveLiqV3.sol/ActionAddRemoveLiqV3.dbg.json +1 -1
- package/build/artifacts/contracts/router/ActionAddRemoveLiqV3.sol/ActionAddRemoveLiqV3.json +2 -2
- package/build/artifacts/contracts/router/ActionMiscV3.sol/ActionMiscV3.dbg.json +1 -1
- package/build/artifacts/contracts/router/ActionMiscV3.sol/ActionMiscV3.json +48 -4
- package/build/artifacts/contracts/router/ActionSwapPTV3.sol/ActionSwapPTV3.dbg.json +1 -1
- package/build/artifacts/contracts/router/ActionSwapPTV3.sol/ActionSwapPTV3.json +2 -2
- package/build/artifacts/contracts/router/ActionSwapYTV3.sol/ActionSwapYTV3.dbg.json +1 -1
- package/build/artifacts/contracts/router/ActionSwapYTV3.sol/ActionSwapYTV3.json +2 -2
- package/build/artifacts/contracts/router/Reflector.sol/Reflector.dbg.json +4 -0
- package/build/artifacts/contracts/router/Reflector.sol/Reflector.json +34 -0
- package/build/artifacts/contracts/router/base/ActionBase.sol/ActionBase.dbg.json +1 -1
- package/contracts/core/StandardizedYield/implementations/PendleERC20WithSupplyCapSY.sol +6 -1
- package/contracts/core/StandardizedYield/implementations/Swell/PendleSwellRswETHStakingSY.sol +56 -0
- package/contracts/core/StandardizedYield/implementations/Swell/PendleSwellStakingERC20SY.sol +111 -0
- package/contracts/interfaces/IPActionMiscV3.sol +9 -2
- package/contracts/interfaces/IPGovernanceProxy.sol +14 -0
- package/contracts/interfaces/IPPausingInterface.sol +8 -0
- package/contracts/interfaces/IPReflector.sol +6 -0
- package/contracts/interfaces/Swell/ISwellSimpleStakingERC20.sol +66 -0
- package/contracts/offchain-helpers/PendleGovernanceProxy.sol +84 -0
- package/contracts/offchain-helpers/router-static/base/ActionMarketAuxStatic.sol +12 -4
- package/contracts/router/ActionMiscV3.sol +31 -5
- package/contracts/router/Reflector.sol +69 -0
- package/contracts/router/base/ActionBase.sol +0 -16
- package/deployments/1-markets/EZETH-MAINNET-SEP2024.json +11 -0
- package/deployments/1-markets/PUFETH-MAINNET-SEP2024.json +11 -0
- package/deployments/1-markets/RSETH-MAINNET-SEP2024.json +11 -0
- package/deployments/1-markets/RSWETH-SWELL-STAKING-MAINNET-JUL2024.json +11 -0
- package/deployments/1-markets/SUSDE-MAINNET-SEP2024.json +13 -0
- package/deployments/1-markets/UNIETH-MAINNET-SEP2024.json +13 -0
- package/deployments/1-markets/WEETH-MAINNET-SEP2024.json +11 -0
- package/deployments/42161-core.json +1 -1
- package/deployments/42161-markets/EZETH-ARB-SEP2024.json +11 -0
- package/deployments/42161-markets/RSETH-ARBITRUM-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/package.json +1 -1
- package/typechain-types/ActionMiscV3.ts +61 -6
- package/typechain-types/BoringPYUsdChainlinkAssetOracle.ts +244 -0
- package/typechain-types/BoringPYUsdChainlinkSYOracle.ts +243 -0
- package/typechain-types/IPActionMiscV3.ts +61 -6
- package/typechain-types/IPAllActionV3.ts +61 -6
- package/typechain-types/IPGovernanceProxy.ts +142 -0
- package/typechain-types/IPPYLpOracle.ts +379 -0
- package/typechain-types/IPPausingInterface.ts +112 -0
- package/typechain-types/IPReflector.ts +95 -0
- package/typechain-types/IPossibleSupplyCapInterface.ts +142 -0
- package/typechain-types/PendleGovernanceProxy.ts +603 -0
- package/typechain-types/PendlePYLpOracle.ts +612 -0
- package/typechain-types/Reflector.ts +95 -0
- package/typechain-types/SupplyCapReader.ts +105 -0
- package/typechain-types/factories/ActionAddRemoveLiqV3__factory.ts +1 -1
- package/typechain-types/factories/ActionMarketAuxStatic__factory.ts +1 -1
- package/typechain-types/factories/ActionMiscV3__factory.ts +47 -3
- package/typechain-types/factories/ActionSwapPTV3__factory.ts +1 -1
- package/typechain-types/factories/ActionSwapYTV3__factory.ts +1 -1
- package/typechain-types/factories/BoringPYUsdChainlinkAssetOracle__factory.ts +269 -0
- package/typechain-types/factories/BoringPYUsdChainlinkSYOracle__factory.ts +267 -0
- package/typechain-types/factories/IPActionMiscV3__factory.ts +46 -2
- package/typechain-types/factories/IPAllActionV3__factory.ts +46 -2
- package/typechain-types/factories/IPGovernanceProxy__factory.ts +75 -0
- package/typechain-types/factories/IPPYLpOracle__factory.ts +214 -0
- package/typechain-types/factories/IPPausingInterface__factory.ts +40 -0
- package/typechain-types/factories/IPReflector__factory.ts +42 -0
- package/typechain-types/factories/IPossibleSupplyCapInterface__factory.ts +82 -0
- package/typechain-types/factories/PendleERC20WithSupplyCapSY__factory.ts +1 -1
- package/typechain-types/factories/PendleGovernanceProxy__factory.ts +458 -0
- package/typechain-types/factories/PendlePYLpOracle__factory.ts +487 -0
- package/typechain-types/factories/PendlePoolDeployHelper__factory.ts +1 -1
- package/typechain-types/factories/PendleSwellRswETHStakingSY__factory.ts +1 -1
- package/typechain-types/factories/Reflector__factory.ts +84 -0
- package/typechain-types/factories/SupplyCapReader__factory.ts +88 -0
- package/typechain-types/hardhat.d.ts +72 -0
- package/typechain-types/index.ts +16 -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
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "SY sETH-ptezETHSilo",
|
|
3
|
+
"SY": "0x8242F81F7B06C1e67bC80DFD2B2716f58bD46651",
|
|
4
|
+
"YT": "0x8138E8cAC470Dc963437b055834B54D56d6d6a29",
|
|
5
|
+
"PT": "0xd7e810aEd2988B8A7eA0187d55C939110b178521",
|
|
6
|
+
"market": "0xCf602767e9c82194DaF58EB67a3169d60DbAaC62",
|
|
7
|
+
"expiry": 1719446400,
|
|
8
|
+
"scalarRoot": "10324763686000000000",
|
|
9
|
+
"initAnchor": "1041846750000000000",
|
|
10
|
+
"lnFeeRateRoot": "499875041000000"
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "SY weETH",
|
|
3
|
+
"SY": "0xa6C895EB332E91c5b3D00B7baeEAae478cc502DA",
|
|
4
|
+
"YT": "0xfB2A7AC0372C2425c273932f8d438518402A873E",
|
|
5
|
+
"PT": "0xb8b0a120F6A68Dd06209619F62429fB1a8e92feC",
|
|
6
|
+
"market": "0xf9F9779d8fF604732EBA9AD345E6A27EF5c2a9d6",
|
|
7
|
+
"expiry": 1727308800,
|
|
8
|
+
"scalarRoot": "7728447732000000000",
|
|
9
|
+
"initAnchor": "1116672357000000000",
|
|
10
|
+
"lnFeeRateRoot": "2995508979000000"
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "SY weETH",
|
|
3
|
+
"SY": "0x56b70AC3a6Ae850F6AEE67591d1bB86895Ba211E",
|
|
4
|
+
"YT": "0xBf1E6E67cE2Bd8da1ea7342354126b59B46d4000",
|
|
5
|
+
"PT": "0x0E8Ba474FCB6581059C61c328a21CFa285C7Cee7",
|
|
6
|
+
"market": "0x27255F9aFF1868A8eFB1182471F4De2121946Fd0",
|
|
7
|
+
"expiry": 1727308800,
|
|
8
|
+
"scalarRoot": "7728447732000000000",
|
|
9
|
+
"initAnchor": "1116672357000000000",
|
|
10
|
+
"lnFeeRateRoot": "2995508979000000"
|
|
11
|
+
}
|
package/package.json
CHANGED
|
@@ -234,6 +234,7 @@ export interface ActionMiscV3Interface extends utils.Interface {
|
|
|
234
234
|
contractName: "ActionMiscV3";
|
|
235
235
|
functions: {
|
|
236
236
|
"boostMarkets(address[])": FunctionFragment;
|
|
237
|
+
"callAndReflect(address,bytes,bytes,bytes)": FunctionFragment;
|
|
237
238
|
"exitPostExpToSy(address,address,uint256,uint256,uint256)": FunctionFragment;
|
|
238
239
|
"exitPostExpToToken(address,address,uint256,uint256,(address,uint256,address,address,(uint8,address,bytes,bool)))": FunctionFragment;
|
|
239
240
|
"exitPreExpToSy(address,address,uint256,uint256,uint256,uint256,(address,uint256,((uint256,uint256,uint256,uint8,address,address,address,address,uint256,uint256,uint256,bytes),bytes,uint256)[],((uint256,uint256,uint256,uint8,address,address,address,address,uint256,uint256,uint256,bytes),bytes,uint256)[],bytes))": FunctionFragment;
|
|
@@ -255,6 +256,10 @@ export interface ActionMiscV3Interface extends utils.Interface {
|
|
|
255
256
|
functionFragment: "boostMarkets",
|
|
256
257
|
values: [string[]]
|
|
257
258
|
): string;
|
|
259
|
+
encodeFunctionData(
|
|
260
|
+
functionFragment: "callAndReflect",
|
|
261
|
+
values: [string, BytesLike, BytesLike, BytesLike]
|
|
262
|
+
): string;
|
|
258
263
|
encodeFunctionData(
|
|
259
264
|
functionFragment: "exitPostExpToSy",
|
|
260
265
|
values: [string, string, BigNumberish, BigNumberish, BigNumberish]
|
|
@@ -336,6 +341,10 @@ export interface ActionMiscV3Interface extends utils.Interface {
|
|
|
336
341
|
functionFragment: "boostMarkets",
|
|
337
342
|
data: BytesLike
|
|
338
343
|
): Result;
|
|
344
|
+
decodeFunctionResult(
|
|
345
|
+
functionFragment: "callAndReflect",
|
|
346
|
+
data: BytesLike
|
|
347
|
+
): Result;
|
|
339
348
|
decodeFunctionResult(
|
|
340
349
|
functionFragment: "exitPostExpToSy",
|
|
341
350
|
data: BytesLike
|
|
@@ -471,7 +480,7 @@ export type ExitPreExpToSyEvent = TypedEvent<
|
|
|
471
480
|
caller: string;
|
|
472
481
|
market: string;
|
|
473
482
|
receiver: string;
|
|
474
|
-
|
|
483
|
+
netLpIn: BigNumber;
|
|
475
484
|
params: IPActionMiscV3.ExitPreExpReturnParamsStructOutput;
|
|
476
485
|
}
|
|
477
486
|
>;
|
|
@@ -493,7 +502,7 @@ export type ExitPreExpToTokenEvent = TypedEvent<
|
|
|
493
502
|
market: string;
|
|
494
503
|
token: string;
|
|
495
504
|
receiver: string;
|
|
496
|
-
|
|
505
|
+
netLpIn: BigNumber;
|
|
497
506
|
totalTokenOut: BigNumber;
|
|
498
507
|
params: IPActionMiscV3.ExitPreExpReturnParamsStructOutput;
|
|
499
508
|
}
|
|
@@ -619,6 +628,14 @@ export interface ActionMiscV3 extends BaseContract {
|
|
|
619
628
|
overrides?: Overrides & { from?: string | Promise<string> }
|
|
620
629
|
): Promise<ContractTransaction>;
|
|
621
630
|
|
|
631
|
+
callAndReflect(
|
|
632
|
+
reflector: string,
|
|
633
|
+
selfCall1: BytesLike,
|
|
634
|
+
selfCall2: BytesLike,
|
|
635
|
+
reflectCall: BytesLike,
|
|
636
|
+
overrides?: PayableOverrides & { from?: string | Promise<string> }
|
|
637
|
+
): Promise<ContractTransaction>;
|
|
638
|
+
|
|
622
639
|
exitPostExpToSy(
|
|
623
640
|
receiver: string,
|
|
624
641
|
market: string,
|
|
@@ -748,6 +765,14 @@ export interface ActionMiscV3 extends BaseContract {
|
|
|
748
765
|
overrides?: Overrides & { from?: string | Promise<string> }
|
|
749
766
|
): Promise<ContractTransaction>;
|
|
750
767
|
|
|
768
|
+
callAndReflect(
|
|
769
|
+
reflector: string,
|
|
770
|
+
selfCall1: BytesLike,
|
|
771
|
+
selfCall2: BytesLike,
|
|
772
|
+
reflectCall: BytesLike,
|
|
773
|
+
overrides?: PayableOverrides & { from?: string | Promise<string> }
|
|
774
|
+
): Promise<ContractTransaction>;
|
|
775
|
+
|
|
751
776
|
exitPostExpToSy(
|
|
752
777
|
receiver: string,
|
|
753
778
|
market: string,
|
|
@@ -874,6 +899,20 @@ export interface ActionMiscV3 extends BaseContract {
|
|
|
874
899
|
callStatic: {
|
|
875
900
|
boostMarkets(markets: string[], overrides?: CallOverrides): Promise<void>;
|
|
876
901
|
|
|
902
|
+
callAndReflect(
|
|
903
|
+
reflector: string,
|
|
904
|
+
selfCall1: BytesLike,
|
|
905
|
+
selfCall2: BytesLike,
|
|
906
|
+
reflectCall: BytesLike,
|
|
907
|
+
overrides?: CallOverrides
|
|
908
|
+
): Promise<
|
|
909
|
+
[string, string, string] & {
|
|
910
|
+
selfRes1: string;
|
|
911
|
+
selfRes2: string;
|
|
912
|
+
reflectRes: string;
|
|
913
|
+
}
|
|
914
|
+
>;
|
|
915
|
+
|
|
877
916
|
exitPostExpToSy(
|
|
878
917
|
receiver: string,
|
|
879
918
|
market: string,
|
|
@@ -1059,14 +1098,14 @@ export interface ActionMiscV3 extends BaseContract {
|
|
|
1059
1098
|
caller?: string | null,
|
|
1060
1099
|
market?: string | null,
|
|
1061
1100
|
receiver?: string | null,
|
|
1062
|
-
|
|
1101
|
+
netLpIn?: null,
|
|
1063
1102
|
params?: null
|
|
1064
1103
|
): ExitPreExpToSyEventFilter;
|
|
1065
1104
|
ExitPreExpToSy(
|
|
1066
1105
|
caller?: string | null,
|
|
1067
1106
|
market?: string | null,
|
|
1068
1107
|
receiver?: string | null,
|
|
1069
|
-
|
|
1108
|
+
netLpIn?: null,
|
|
1070
1109
|
params?: null
|
|
1071
1110
|
): ExitPreExpToSyEventFilter;
|
|
1072
1111
|
|
|
@@ -1075,7 +1114,7 @@ export interface ActionMiscV3 extends BaseContract {
|
|
|
1075
1114
|
market?: string | null,
|
|
1076
1115
|
token?: string | null,
|
|
1077
1116
|
receiver?: null,
|
|
1078
|
-
|
|
1117
|
+
netLpIn?: null,
|
|
1079
1118
|
totalTokenOut?: null,
|
|
1080
1119
|
params?: null
|
|
1081
1120
|
): ExitPreExpToTokenEventFilter;
|
|
@@ -1084,7 +1123,7 @@ export interface ActionMiscV3 extends BaseContract {
|
|
|
1084
1123
|
market?: string | null,
|
|
1085
1124
|
token?: string | null,
|
|
1086
1125
|
receiver?: null,
|
|
1087
|
-
|
|
1126
|
+
netLpIn?: null,
|
|
1088
1127
|
totalTokenOut?: null,
|
|
1089
1128
|
params?: null
|
|
1090
1129
|
): ExitPreExpToTokenEventFilter;
|
|
@@ -1198,6 +1237,14 @@ export interface ActionMiscV3 extends BaseContract {
|
|
|
1198
1237
|
overrides?: Overrides & { from?: string | Promise<string> }
|
|
1199
1238
|
): Promise<BigNumber>;
|
|
1200
1239
|
|
|
1240
|
+
callAndReflect(
|
|
1241
|
+
reflector: string,
|
|
1242
|
+
selfCall1: BytesLike,
|
|
1243
|
+
selfCall2: BytesLike,
|
|
1244
|
+
reflectCall: BytesLike,
|
|
1245
|
+
overrides?: PayableOverrides & { from?: string | Promise<string> }
|
|
1246
|
+
): Promise<BigNumber>;
|
|
1247
|
+
|
|
1201
1248
|
exitPostExpToSy(
|
|
1202
1249
|
receiver: string,
|
|
1203
1250
|
market: string,
|
|
@@ -1328,6 +1375,14 @@ export interface ActionMiscV3 extends BaseContract {
|
|
|
1328
1375
|
overrides?: Overrides & { from?: string | Promise<string> }
|
|
1329
1376
|
): Promise<PopulatedTransaction>;
|
|
1330
1377
|
|
|
1378
|
+
callAndReflect(
|
|
1379
|
+
reflector: string,
|
|
1380
|
+
selfCall1: BytesLike,
|
|
1381
|
+
selfCall2: BytesLike,
|
|
1382
|
+
reflectCall: BytesLike,
|
|
1383
|
+
overrides?: PayableOverrides & { from?: string | Promise<string> }
|
|
1384
|
+
): Promise<PopulatedTransaction>;
|
|
1385
|
+
|
|
1331
1386
|
exitPostExpToSy(
|
|
1332
1387
|
receiver: string,
|
|
1333
1388
|
market: string,
|
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import {
|
|
5
|
+
BaseContract,
|
|
6
|
+
BigNumber,
|
|
7
|
+
BytesLike,
|
|
8
|
+
CallOverrides,
|
|
9
|
+
PopulatedTransaction,
|
|
10
|
+
Signer,
|
|
11
|
+
utils,
|
|
12
|
+
} from "ethers";
|
|
13
|
+
import { FunctionFragment, Result } from "@ethersproject/abi";
|
|
14
|
+
import { Listener, Provider } from "@ethersproject/providers";
|
|
15
|
+
import type {
|
|
16
|
+
TypedEventFilter,
|
|
17
|
+
TypedEvent,
|
|
18
|
+
TypedListener,
|
|
19
|
+
OnEvent,
|
|
20
|
+
} from "./common";
|
|
21
|
+
|
|
22
|
+
export interface BoringPYUsdChainlinkAssetOracleInterface
|
|
23
|
+
extends utils.Interface {
|
|
24
|
+
contractName: "BoringPYUsdChainlinkAssetOracle";
|
|
25
|
+
functions: {
|
|
26
|
+
"checkOracleState()": FunctionFragment;
|
|
27
|
+
"feed()": FunctionFragment;
|
|
28
|
+
"feedDecimals()": FunctionFragment;
|
|
29
|
+
"getPtPriceSample1()": FunctionFragment;
|
|
30
|
+
"getPtPriceSample2()": FunctionFragment;
|
|
31
|
+
"getYtPriceSample1()": FunctionFragment;
|
|
32
|
+
"getYtPriceSample2()": FunctionFragment;
|
|
33
|
+
"market()": FunctionFragment;
|
|
34
|
+
"pyLpOracle()": FunctionFragment;
|
|
35
|
+
"twapDuration()": FunctionFragment;
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
encodeFunctionData(
|
|
39
|
+
functionFragment: "checkOracleState",
|
|
40
|
+
values?: undefined
|
|
41
|
+
): string;
|
|
42
|
+
encodeFunctionData(functionFragment: "feed", values?: undefined): string;
|
|
43
|
+
encodeFunctionData(
|
|
44
|
+
functionFragment: "feedDecimals",
|
|
45
|
+
values?: undefined
|
|
46
|
+
): string;
|
|
47
|
+
encodeFunctionData(
|
|
48
|
+
functionFragment: "getPtPriceSample1",
|
|
49
|
+
values?: undefined
|
|
50
|
+
): string;
|
|
51
|
+
encodeFunctionData(
|
|
52
|
+
functionFragment: "getPtPriceSample2",
|
|
53
|
+
values?: undefined
|
|
54
|
+
): string;
|
|
55
|
+
encodeFunctionData(
|
|
56
|
+
functionFragment: "getYtPriceSample1",
|
|
57
|
+
values?: undefined
|
|
58
|
+
): string;
|
|
59
|
+
encodeFunctionData(
|
|
60
|
+
functionFragment: "getYtPriceSample2",
|
|
61
|
+
values?: undefined
|
|
62
|
+
): string;
|
|
63
|
+
encodeFunctionData(functionFragment: "market", values?: undefined): string;
|
|
64
|
+
encodeFunctionData(
|
|
65
|
+
functionFragment: "pyLpOracle",
|
|
66
|
+
values?: undefined
|
|
67
|
+
): string;
|
|
68
|
+
encodeFunctionData(
|
|
69
|
+
functionFragment: "twapDuration",
|
|
70
|
+
values?: undefined
|
|
71
|
+
): string;
|
|
72
|
+
|
|
73
|
+
decodeFunctionResult(
|
|
74
|
+
functionFragment: "checkOracleState",
|
|
75
|
+
data: BytesLike
|
|
76
|
+
): Result;
|
|
77
|
+
decodeFunctionResult(functionFragment: "feed", data: BytesLike): Result;
|
|
78
|
+
decodeFunctionResult(
|
|
79
|
+
functionFragment: "feedDecimals",
|
|
80
|
+
data: BytesLike
|
|
81
|
+
): Result;
|
|
82
|
+
decodeFunctionResult(
|
|
83
|
+
functionFragment: "getPtPriceSample1",
|
|
84
|
+
data: BytesLike
|
|
85
|
+
): Result;
|
|
86
|
+
decodeFunctionResult(
|
|
87
|
+
functionFragment: "getPtPriceSample2",
|
|
88
|
+
data: BytesLike
|
|
89
|
+
): Result;
|
|
90
|
+
decodeFunctionResult(
|
|
91
|
+
functionFragment: "getYtPriceSample1",
|
|
92
|
+
data: BytesLike
|
|
93
|
+
): Result;
|
|
94
|
+
decodeFunctionResult(
|
|
95
|
+
functionFragment: "getYtPriceSample2",
|
|
96
|
+
data: BytesLike
|
|
97
|
+
): Result;
|
|
98
|
+
decodeFunctionResult(functionFragment: "market", data: BytesLike): Result;
|
|
99
|
+
decodeFunctionResult(functionFragment: "pyLpOracle", data: BytesLike): Result;
|
|
100
|
+
decodeFunctionResult(
|
|
101
|
+
functionFragment: "twapDuration",
|
|
102
|
+
data: BytesLike
|
|
103
|
+
): Result;
|
|
104
|
+
|
|
105
|
+
events: {};
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export interface BoringPYUsdChainlinkAssetOracle extends BaseContract {
|
|
109
|
+
contractName: "BoringPYUsdChainlinkAssetOracle";
|
|
110
|
+
connect(signerOrProvider: Signer | Provider | string): this;
|
|
111
|
+
attach(addressOrName: string): this;
|
|
112
|
+
deployed(): Promise<this>;
|
|
113
|
+
|
|
114
|
+
interface: BoringPYUsdChainlinkAssetOracleInterface;
|
|
115
|
+
|
|
116
|
+
queryFilter<TEvent extends TypedEvent>(
|
|
117
|
+
event: TypedEventFilter<TEvent>,
|
|
118
|
+
fromBlockOrBlockhash?: string | number | undefined,
|
|
119
|
+
toBlock?: string | number | undefined
|
|
120
|
+
): Promise<Array<TEvent>>;
|
|
121
|
+
|
|
122
|
+
listeners<TEvent extends TypedEvent>(
|
|
123
|
+
eventFilter?: TypedEventFilter<TEvent>
|
|
124
|
+
): Array<TypedListener<TEvent>>;
|
|
125
|
+
listeners(eventName?: string): Array<Listener>;
|
|
126
|
+
removeAllListeners<TEvent extends TypedEvent>(
|
|
127
|
+
eventFilter: TypedEventFilter<TEvent>
|
|
128
|
+
): this;
|
|
129
|
+
removeAllListeners(eventName?: string): this;
|
|
130
|
+
off: OnEvent<this>;
|
|
131
|
+
on: OnEvent<this>;
|
|
132
|
+
once: OnEvent<this>;
|
|
133
|
+
removeListener: OnEvent<this>;
|
|
134
|
+
|
|
135
|
+
functions: {
|
|
136
|
+
checkOracleState(overrides?: CallOverrides): Promise<[void]>;
|
|
137
|
+
|
|
138
|
+
feed(overrides?: CallOverrides): Promise<[string]>;
|
|
139
|
+
|
|
140
|
+
feedDecimals(overrides?: CallOverrides): Promise<[number]>;
|
|
141
|
+
|
|
142
|
+
getPtPriceSample1(overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
143
|
+
|
|
144
|
+
getPtPriceSample2(overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
145
|
+
|
|
146
|
+
getYtPriceSample1(overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
147
|
+
|
|
148
|
+
getYtPriceSample2(overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
149
|
+
|
|
150
|
+
market(overrides?: CallOverrides): Promise<[string]>;
|
|
151
|
+
|
|
152
|
+
pyLpOracle(overrides?: CallOverrides): Promise<[string]>;
|
|
153
|
+
|
|
154
|
+
twapDuration(overrides?: CallOverrides): Promise<[number]>;
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
checkOracleState(overrides?: CallOverrides): Promise<void>;
|
|
158
|
+
|
|
159
|
+
feed(overrides?: CallOverrides): Promise<string>;
|
|
160
|
+
|
|
161
|
+
feedDecimals(overrides?: CallOverrides): Promise<number>;
|
|
162
|
+
|
|
163
|
+
getPtPriceSample1(overrides?: CallOverrides): Promise<BigNumber>;
|
|
164
|
+
|
|
165
|
+
getPtPriceSample2(overrides?: CallOverrides): Promise<BigNumber>;
|
|
166
|
+
|
|
167
|
+
getYtPriceSample1(overrides?: CallOverrides): Promise<BigNumber>;
|
|
168
|
+
|
|
169
|
+
getYtPriceSample2(overrides?: CallOverrides): Promise<BigNumber>;
|
|
170
|
+
|
|
171
|
+
market(overrides?: CallOverrides): Promise<string>;
|
|
172
|
+
|
|
173
|
+
pyLpOracle(overrides?: CallOverrides): Promise<string>;
|
|
174
|
+
|
|
175
|
+
twapDuration(overrides?: CallOverrides): Promise<number>;
|
|
176
|
+
|
|
177
|
+
callStatic: {
|
|
178
|
+
checkOracleState(overrides?: CallOverrides): Promise<void>;
|
|
179
|
+
|
|
180
|
+
feed(overrides?: CallOverrides): Promise<string>;
|
|
181
|
+
|
|
182
|
+
feedDecimals(overrides?: CallOverrides): Promise<number>;
|
|
183
|
+
|
|
184
|
+
getPtPriceSample1(overrides?: CallOverrides): Promise<BigNumber>;
|
|
185
|
+
|
|
186
|
+
getPtPriceSample2(overrides?: CallOverrides): Promise<BigNumber>;
|
|
187
|
+
|
|
188
|
+
getYtPriceSample1(overrides?: CallOverrides): Promise<BigNumber>;
|
|
189
|
+
|
|
190
|
+
getYtPriceSample2(overrides?: CallOverrides): Promise<BigNumber>;
|
|
191
|
+
|
|
192
|
+
market(overrides?: CallOverrides): Promise<string>;
|
|
193
|
+
|
|
194
|
+
pyLpOracle(overrides?: CallOverrides): Promise<string>;
|
|
195
|
+
|
|
196
|
+
twapDuration(overrides?: CallOverrides): Promise<number>;
|
|
197
|
+
};
|
|
198
|
+
|
|
199
|
+
filters: {};
|
|
200
|
+
|
|
201
|
+
estimateGas: {
|
|
202
|
+
checkOracleState(overrides?: CallOverrides): Promise<BigNumber>;
|
|
203
|
+
|
|
204
|
+
feed(overrides?: CallOverrides): Promise<BigNumber>;
|
|
205
|
+
|
|
206
|
+
feedDecimals(overrides?: CallOverrides): Promise<BigNumber>;
|
|
207
|
+
|
|
208
|
+
getPtPriceSample1(overrides?: CallOverrides): Promise<BigNumber>;
|
|
209
|
+
|
|
210
|
+
getPtPriceSample2(overrides?: CallOverrides): Promise<BigNumber>;
|
|
211
|
+
|
|
212
|
+
getYtPriceSample1(overrides?: CallOverrides): Promise<BigNumber>;
|
|
213
|
+
|
|
214
|
+
getYtPriceSample2(overrides?: CallOverrides): Promise<BigNumber>;
|
|
215
|
+
|
|
216
|
+
market(overrides?: CallOverrides): Promise<BigNumber>;
|
|
217
|
+
|
|
218
|
+
pyLpOracle(overrides?: CallOverrides): Promise<BigNumber>;
|
|
219
|
+
|
|
220
|
+
twapDuration(overrides?: CallOverrides): Promise<BigNumber>;
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
populateTransaction: {
|
|
224
|
+
checkOracleState(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
225
|
+
|
|
226
|
+
feed(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
227
|
+
|
|
228
|
+
feedDecimals(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
229
|
+
|
|
230
|
+
getPtPriceSample1(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
231
|
+
|
|
232
|
+
getPtPriceSample2(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
233
|
+
|
|
234
|
+
getYtPriceSample1(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
235
|
+
|
|
236
|
+
getYtPriceSample2(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
237
|
+
|
|
238
|
+
market(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
239
|
+
|
|
240
|
+
pyLpOracle(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
241
|
+
|
|
242
|
+
twapDuration(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
243
|
+
};
|
|
244
|
+
}
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import {
|
|
5
|
+
BaseContract,
|
|
6
|
+
BigNumber,
|
|
7
|
+
BytesLike,
|
|
8
|
+
CallOverrides,
|
|
9
|
+
PopulatedTransaction,
|
|
10
|
+
Signer,
|
|
11
|
+
utils,
|
|
12
|
+
} from "ethers";
|
|
13
|
+
import { FunctionFragment, Result } from "@ethersproject/abi";
|
|
14
|
+
import { Listener, Provider } from "@ethersproject/providers";
|
|
15
|
+
import type {
|
|
16
|
+
TypedEventFilter,
|
|
17
|
+
TypedEvent,
|
|
18
|
+
TypedListener,
|
|
19
|
+
OnEvent,
|
|
20
|
+
} from "./common";
|
|
21
|
+
|
|
22
|
+
export interface BoringPYUsdChainlinkSYOracleInterface extends utils.Interface {
|
|
23
|
+
contractName: "BoringPYUsdChainlinkSYOracle";
|
|
24
|
+
functions: {
|
|
25
|
+
"checkOracleState()": FunctionFragment;
|
|
26
|
+
"feed()": FunctionFragment;
|
|
27
|
+
"feedDecimals()": FunctionFragment;
|
|
28
|
+
"getPtPriceSample1()": FunctionFragment;
|
|
29
|
+
"getPtPriceSample2()": FunctionFragment;
|
|
30
|
+
"getYtPriceSample1()": FunctionFragment;
|
|
31
|
+
"getYtPriceSample2()": FunctionFragment;
|
|
32
|
+
"market()": FunctionFragment;
|
|
33
|
+
"pyLpOracle()": FunctionFragment;
|
|
34
|
+
"twapDuration()": FunctionFragment;
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
encodeFunctionData(
|
|
38
|
+
functionFragment: "checkOracleState",
|
|
39
|
+
values?: undefined
|
|
40
|
+
): string;
|
|
41
|
+
encodeFunctionData(functionFragment: "feed", values?: undefined): string;
|
|
42
|
+
encodeFunctionData(
|
|
43
|
+
functionFragment: "feedDecimals",
|
|
44
|
+
values?: undefined
|
|
45
|
+
): string;
|
|
46
|
+
encodeFunctionData(
|
|
47
|
+
functionFragment: "getPtPriceSample1",
|
|
48
|
+
values?: undefined
|
|
49
|
+
): string;
|
|
50
|
+
encodeFunctionData(
|
|
51
|
+
functionFragment: "getPtPriceSample2",
|
|
52
|
+
values?: undefined
|
|
53
|
+
): string;
|
|
54
|
+
encodeFunctionData(
|
|
55
|
+
functionFragment: "getYtPriceSample1",
|
|
56
|
+
values?: undefined
|
|
57
|
+
): string;
|
|
58
|
+
encodeFunctionData(
|
|
59
|
+
functionFragment: "getYtPriceSample2",
|
|
60
|
+
values?: undefined
|
|
61
|
+
): string;
|
|
62
|
+
encodeFunctionData(functionFragment: "market", values?: undefined): string;
|
|
63
|
+
encodeFunctionData(
|
|
64
|
+
functionFragment: "pyLpOracle",
|
|
65
|
+
values?: undefined
|
|
66
|
+
): string;
|
|
67
|
+
encodeFunctionData(
|
|
68
|
+
functionFragment: "twapDuration",
|
|
69
|
+
values?: undefined
|
|
70
|
+
): string;
|
|
71
|
+
|
|
72
|
+
decodeFunctionResult(
|
|
73
|
+
functionFragment: "checkOracleState",
|
|
74
|
+
data: BytesLike
|
|
75
|
+
): Result;
|
|
76
|
+
decodeFunctionResult(functionFragment: "feed", data: BytesLike): Result;
|
|
77
|
+
decodeFunctionResult(
|
|
78
|
+
functionFragment: "feedDecimals",
|
|
79
|
+
data: BytesLike
|
|
80
|
+
): Result;
|
|
81
|
+
decodeFunctionResult(
|
|
82
|
+
functionFragment: "getPtPriceSample1",
|
|
83
|
+
data: BytesLike
|
|
84
|
+
): Result;
|
|
85
|
+
decodeFunctionResult(
|
|
86
|
+
functionFragment: "getPtPriceSample2",
|
|
87
|
+
data: BytesLike
|
|
88
|
+
): Result;
|
|
89
|
+
decodeFunctionResult(
|
|
90
|
+
functionFragment: "getYtPriceSample1",
|
|
91
|
+
data: BytesLike
|
|
92
|
+
): Result;
|
|
93
|
+
decodeFunctionResult(
|
|
94
|
+
functionFragment: "getYtPriceSample2",
|
|
95
|
+
data: BytesLike
|
|
96
|
+
): Result;
|
|
97
|
+
decodeFunctionResult(functionFragment: "market", data: BytesLike): Result;
|
|
98
|
+
decodeFunctionResult(functionFragment: "pyLpOracle", data: BytesLike): Result;
|
|
99
|
+
decodeFunctionResult(
|
|
100
|
+
functionFragment: "twapDuration",
|
|
101
|
+
data: BytesLike
|
|
102
|
+
): Result;
|
|
103
|
+
|
|
104
|
+
events: {};
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export interface BoringPYUsdChainlinkSYOracle extends BaseContract {
|
|
108
|
+
contractName: "BoringPYUsdChainlinkSYOracle";
|
|
109
|
+
connect(signerOrProvider: Signer | Provider | string): this;
|
|
110
|
+
attach(addressOrName: string): this;
|
|
111
|
+
deployed(): Promise<this>;
|
|
112
|
+
|
|
113
|
+
interface: BoringPYUsdChainlinkSYOracleInterface;
|
|
114
|
+
|
|
115
|
+
queryFilter<TEvent extends TypedEvent>(
|
|
116
|
+
event: TypedEventFilter<TEvent>,
|
|
117
|
+
fromBlockOrBlockhash?: string | number | undefined,
|
|
118
|
+
toBlock?: string | number | undefined
|
|
119
|
+
): Promise<Array<TEvent>>;
|
|
120
|
+
|
|
121
|
+
listeners<TEvent extends TypedEvent>(
|
|
122
|
+
eventFilter?: TypedEventFilter<TEvent>
|
|
123
|
+
): Array<TypedListener<TEvent>>;
|
|
124
|
+
listeners(eventName?: string): Array<Listener>;
|
|
125
|
+
removeAllListeners<TEvent extends TypedEvent>(
|
|
126
|
+
eventFilter: TypedEventFilter<TEvent>
|
|
127
|
+
): this;
|
|
128
|
+
removeAllListeners(eventName?: string): this;
|
|
129
|
+
off: OnEvent<this>;
|
|
130
|
+
on: OnEvent<this>;
|
|
131
|
+
once: OnEvent<this>;
|
|
132
|
+
removeListener: OnEvent<this>;
|
|
133
|
+
|
|
134
|
+
functions: {
|
|
135
|
+
checkOracleState(overrides?: CallOverrides): Promise<[void]>;
|
|
136
|
+
|
|
137
|
+
feed(overrides?: CallOverrides): Promise<[string]>;
|
|
138
|
+
|
|
139
|
+
feedDecimals(overrides?: CallOverrides): Promise<[number]>;
|
|
140
|
+
|
|
141
|
+
getPtPriceSample1(overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
142
|
+
|
|
143
|
+
getPtPriceSample2(overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
144
|
+
|
|
145
|
+
getYtPriceSample1(overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
146
|
+
|
|
147
|
+
getYtPriceSample2(overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
148
|
+
|
|
149
|
+
market(overrides?: CallOverrides): Promise<[string]>;
|
|
150
|
+
|
|
151
|
+
pyLpOracle(overrides?: CallOverrides): Promise<[string]>;
|
|
152
|
+
|
|
153
|
+
twapDuration(overrides?: CallOverrides): Promise<[number]>;
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
checkOracleState(overrides?: CallOverrides): Promise<void>;
|
|
157
|
+
|
|
158
|
+
feed(overrides?: CallOverrides): Promise<string>;
|
|
159
|
+
|
|
160
|
+
feedDecimals(overrides?: CallOverrides): Promise<number>;
|
|
161
|
+
|
|
162
|
+
getPtPriceSample1(overrides?: CallOverrides): Promise<BigNumber>;
|
|
163
|
+
|
|
164
|
+
getPtPriceSample2(overrides?: CallOverrides): Promise<BigNumber>;
|
|
165
|
+
|
|
166
|
+
getYtPriceSample1(overrides?: CallOverrides): Promise<BigNumber>;
|
|
167
|
+
|
|
168
|
+
getYtPriceSample2(overrides?: CallOverrides): Promise<BigNumber>;
|
|
169
|
+
|
|
170
|
+
market(overrides?: CallOverrides): Promise<string>;
|
|
171
|
+
|
|
172
|
+
pyLpOracle(overrides?: CallOverrides): Promise<string>;
|
|
173
|
+
|
|
174
|
+
twapDuration(overrides?: CallOverrides): Promise<number>;
|
|
175
|
+
|
|
176
|
+
callStatic: {
|
|
177
|
+
checkOracleState(overrides?: CallOverrides): Promise<void>;
|
|
178
|
+
|
|
179
|
+
feed(overrides?: CallOverrides): Promise<string>;
|
|
180
|
+
|
|
181
|
+
feedDecimals(overrides?: CallOverrides): Promise<number>;
|
|
182
|
+
|
|
183
|
+
getPtPriceSample1(overrides?: CallOverrides): Promise<BigNumber>;
|
|
184
|
+
|
|
185
|
+
getPtPriceSample2(overrides?: CallOverrides): Promise<BigNumber>;
|
|
186
|
+
|
|
187
|
+
getYtPriceSample1(overrides?: CallOverrides): Promise<BigNumber>;
|
|
188
|
+
|
|
189
|
+
getYtPriceSample2(overrides?: CallOverrides): Promise<BigNumber>;
|
|
190
|
+
|
|
191
|
+
market(overrides?: CallOverrides): Promise<string>;
|
|
192
|
+
|
|
193
|
+
pyLpOracle(overrides?: CallOverrides): Promise<string>;
|
|
194
|
+
|
|
195
|
+
twapDuration(overrides?: CallOverrides): Promise<number>;
|
|
196
|
+
};
|
|
197
|
+
|
|
198
|
+
filters: {};
|
|
199
|
+
|
|
200
|
+
estimateGas: {
|
|
201
|
+
checkOracleState(overrides?: CallOverrides): Promise<BigNumber>;
|
|
202
|
+
|
|
203
|
+
feed(overrides?: CallOverrides): Promise<BigNumber>;
|
|
204
|
+
|
|
205
|
+
feedDecimals(overrides?: CallOverrides): Promise<BigNumber>;
|
|
206
|
+
|
|
207
|
+
getPtPriceSample1(overrides?: CallOverrides): Promise<BigNumber>;
|
|
208
|
+
|
|
209
|
+
getPtPriceSample2(overrides?: CallOverrides): Promise<BigNumber>;
|
|
210
|
+
|
|
211
|
+
getYtPriceSample1(overrides?: CallOverrides): Promise<BigNumber>;
|
|
212
|
+
|
|
213
|
+
getYtPriceSample2(overrides?: CallOverrides): Promise<BigNumber>;
|
|
214
|
+
|
|
215
|
+
market(overrides?: CallOverrides): Promise<BigNumber>;
|
|
216
|
+
|
|
217
|
+
pyLpOracle(overrides?: CallOverrides): Promise<BigNumber>;
|
|
218
|
+
|
|
219
|
+
twapDuration(overrides?: CallOverrides): Promise<BigNumber>;
|
|
220
|
+
};
|
|
221
|
+
|
|
222
|
+
populateTransaction: {
|
|
223
|
+
checkOracleState(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
224
|
+
|
|
225
|
+
feed(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
226
|
+
|
|
227
|
+
feedDecimals(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
228
|
+
|
|
229
|
+
getPtPriceSample1(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
230
|
+
|
|
231
|
+
getPtPriceSample2(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
232
|
+
|
|
233
|
+
getYtPriceSample1(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
234
|
+
|
|
235
|
+
getYtPriceSample2(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
236
|
+
|
|
237
|
+
market(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
238
|
+
|
|
239
|
+
pyLpOracle(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
240
|
+
|
|
241
|
+
twapDuration(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
242
|
+
};
|
|
243
|
+
}
|