@gearbox-protocol/periphery-v3 1.7.0-next.31 → 1.7.0-next.32
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.
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
// (c) Gearbox Holdings, 2024
|
|
4
4
|
pragma solidity ^0.8.10;
|
|
5
5
|
|
|
6
|
+
import {BaseParams} from "../types/BaseState.sol";
|
|
6
7
|
import {MarketData} from "../types/MarketData.sol";
|
|
7
8
|
import {PoolState} from "../types/PoolState.sol";
|
|
8
9
|
import {IVersion} from "@gearbox-protocol/core-v3/contracts/interfaces/base/IVersion.sol";
|
|
@@ -15,4 +16,9 @@ interface IMarketCompressor is IVersion {
|
|
|
15
16
|
function getMarketData(address pool) external view returns (MarketData memory result);
|
|
16
17
|
|
|
17
18
|
function getMarkets(MarketFilter memory filter) external view returns (MarketData[] memory result);
|
|
19
|
+
|
|
20
|
+
function getUpdatablePriceFeeds(MarketFilter memory filter)
|
|
21
|
+
external
|
|
22
|
+
view
|
|
23
|
+
returns (BaseParams[] memory updatablePriceFeeds);
|
|
18
24
|
}
|
package/package.json
CHANGED