Skip to content

Commit c703503

Browse files
committed
fix: add property to interface
1 parent 26b08f5 commit c703503

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/sdk/market/pricefeeds/types.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { UnionOmit } from "viem";
22

33
import type { IBaseContract } from "../../base";
44
import type { PriceFeedStateHuman, RawTx } from "../../types";
5+
import type { PriceFeedRef } from "./PriceFeedRef";
56

67
export type PriceFeedUsageType = "Main" | "Reserve";
78

@@ -37,6 +38,8 @@ export interface IPriceFeedContract extends IBaseContract {
3738
*/
3839
readonly loaded: boolean;
3940

41+
readonly underlyingPriceFeeds: readonly PriceFeedRef[];
42+
4043
answer: (overrides?: { blockNumber?: bigint }) => Promise<bigint>;
4144
stateHuman: (
4245
raw?: boolean,

0 commit comments

Comments
 (0)