We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26b08f5 commit c703503Copy full SHA for c703503
src/sdk/market/pricefeeds/types.ts
@@ -2,6 +2,7 @@ import type { UnionOmit } from "viem";
2
3
import type { IBaseContract } from "../../base";
4
import type { PriceFeedStateHuman, RawTx } from "../../types";
5
+import type { PriceFeedRef } from "./PriceFeedRef";
6
7
export type PriceFeedUsageType = "Main" | "Reserve";
8
@@ -37,6 +38,8 @@ export interface IPriceFeedContract extends IBaseContract {
37
38
*/
39
readonly loaded: boolean;
40
41
+ readonly underlyingPriceFeeds: readonly PriceFeedRef[];
42
+
43
answer: (overrides?: { blockNumber?: bigint }) => Promise<bigint>;
44
stateHuman: (
45
raw?: boolean,
0 commit comments