import { OraclePriceAssertion, OraclePriceAssertionDto, TokenInstanceKey } from "@gala-chain/api"; import BigNumber from "bignumber.js"; import { GalaChainContext } from "../types"; export interface ISaveOraclePriceAssertion { oracle: string; identity?: string | undefined; baseToken: TokenInstanceKey; quoteToken: TokenInstanceKey; exchangeRate: BigNumber; source?: string | undefined; sourceUrl?: string | undefined; timestamp: number; } export declare function saveOraclePriceAssertion(ctx: GalaChainContext, dto: OraclePriceAssertionDto): Promise; //# sourceMappingURL=saveOraclePriceAssertion.d.ts.map