Interface PythFetchPriceResponse

interface PythFetchPriceResponse {
    code?: string;
    message?: string;
    price?: string;
    priceFeedID: string;
    status: "success" | "error";
}

Properties

code?: string
message?: string
price?: string
priceFeedID: string
status: "success" | "error"