client-aftermath-ts-sdk
Version:
Client Aftermath TypeScript SDK
11 lines • 449 B
TypeScript
import { EventOnChain } from "../../general/types/castingTypes";
import { BigIntAsString, IFixedAsString, ObjectId } from "../../types";
export type UpdatedPriceFeedEventOnChain = EventOnChain<{
price_feed_storage_id: ObjectId;
source_wrapper_id: ObjectId;
old_price: IFixedAsString;
old_timestamp: BigIntAsString;
new_price: IFixedAsString;
new_timestamp: BigIntAsString;
}>;
//# sourceMappingURL=oracleCastingTypes.d.ts.map