@gearbox-protocol/deploy-tools 4.61.23 → 4.61.24
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/dist/index.mjs +26 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -332786,8 +332786,13 @@ var FEED_NAMES = {
|
|
|
332786
332786
|
ERC4626PriceFeed: "PRICE_FEED_ERC4626_VAULT_ORACLE",
|
|
332787
332787
|
// = 16,
|
|
332788
332788
|
// "": "PRICE_FEED_NETWORK_DEPENDENT", // = 17,
|
|
332789
|
-
CurveUSDPriceFeed: "PRICE_FEED_CURVE_USD_ORACLE"
|
|
332789
|
+
CurveUSDPriceFeed: "PRICE_FEED_CURVE_USD_ORACLE",
|
|
332790
332790
|
// = 18
|
|
332791
|
+
// PRICE_FEED_PYTH_ORACLE // 19
|
|
332792
|
+
MellowLRTPriceFeed: "PRICE_FEED_MELLOW_LRT_ORACLE",
|
|
332793
|
+
// = 20
|
|
332794
|
+
PendleTWAPPTPriceFeed: "PRICE_FEED_PENDLE_PT_TWAP_ORACLE"
|
|
332795
|
+
// = 21
|
|
332791
332796
|
};
|
|
332792
332797
|
|
|
332793
332798
|
// ../../packages/node/dist/parsers/feeds/BoundedPriceFeedParser.js
|
|
@@ -333211,6 +333216,23 @@ var MellowPriceFeedParser = class extends AbstractParser {
|
|
|
333211
333216
|
}
|
|
333212
333217
|
};
|
|
333213
333218
|
|
|
333219
|
+
// ../../packages/node/dist/parsers/feeds/PendleTWAPPTPriceFeedParser.js
|
|
333220
|
+
var PendleTWAPPTPriceFeedParser = class extends AbstractParser {
|
|
333221
|
+
constructor(contractType) {
|
|
333222
|
+
super(contractType, "constructor(address _market, address _priceFeed, uint32 _stalenessPeriod, uint32 _twapWindow)");
|
|
333223
|
+
this._iFace = augmentInterface(ILPPriceFeed__factory.createInterface(), "function setController(address newController) external");
|
|
333224
|
+
this.parameterParsers = {
|
|
333225
|
+
constructor: [
|
|
333226
|
+
parseAddress(),
|
|
333227
|
+
parseAddress(),
|
|
333228
|
+
parseDuration(),
|
|
333229
|
+
parseDuration()
|
|
333230
|
+
],
|
|
333231
|
+
"setController(address)": [parseAddress()]
|
|
333232
|
+
};
|
|
333233
|
+
}
|
|
333234
|
+
};
|
|
333235
|
+
|
|
333214
333236
|
// ../../packages/node/dist/parsers/feeds/RedstonePriceFeedParser.js
|
|
333215
333237
|
var RedstonePriceFeedParser = class extends AbstractParser {
|
|
333216
333238
|
constructor(contractType) {
|
|
@@ -333356,6 +333378,8 @@ function priceFeedParser(contract, version3, contractName) {
|
|
|
333356
333378
|
return new CompositePriceFeedParser(contract);
|
|
333357
333379
|
case "PRICE_FEED_MELLOW_LRT_ORACLE":
|
|
333358
333380
|
return new MellowPriceFeedParser(contract);
|
|
333381
|
+
case "PRICE_FEED_PENDLE_PT_TWAP_ORACLE":
|
|
333382
|
+
return new PendleTWAPPTPriceFeedParser(contract);
|
|
333359
333383
|
case "PRICE_FEED_PYTH_ORACLE":
|
|
333360
333384
|
case "PRICE_FEED_CHAINLINK_ORACLE":
|
|
333361
333385
|
case "PRICE_FEED_THE_SAME_AS":
|
|
@@ -335176,7 +335200,7 @@ function getRenderer(opts) {
|
|
|
335176
335200
|
}
|
|
335177
335201
|
|
|
335178
335202
|
// package.json
|
|
335179
|
-
var version2 = "4.61.
|
|
335203
|
+
var version2 = "4.61.24";
|
|
335180
335204
|
|
|
335181
335205
|
// src/version.ts
|
|
335182
335206
|
var version_default = version2;
|