@ixily/activ
Version:
Alpha Capture Trade Idea Verification. Blockchain ownership proven trade ideas and strategies.
25 lines (24 loc) • 1.09 kB
TypeScript
import { CONTRACT_INTERFACES } from '../..';
export declare const extractPricingKeysArrayFromPriceLogs: (logs: string[]) => [string, string][];
export declare const getValidPriceFromSigLogPrice: (litResult: {
signatures: any;
response: CONTRACT_INTERFACES.IPrice;
logs: string[];
}) => CONTRACT_INTERFACES.IValidPrice;
export declare const getSigLogPriceResponseFromLitResult: (litResult: any) => {
signatures: any;
response: CONTRACT_INTERFACES.IPrice;
logs: string[];
};
export declare const getValidPriceFromLitPriceResult: (litResult: any) => CONTRACT_INTERFACES.IValidPrice;
export declare const PricingModule: {
config: (params: {
useProxyUntrusted?: boolean;
}) => void;
getPriceDetails: (params: CONTRACT_INTERFACES.IProviderRequest, mockPricing?: boolean, customSettings?: {
tracker?: string;
attempts?: number | undefined;
croupierUrl?: string;
}) => Promise<CONTRACT_INTERFACES.IValidPrice>;
testPricingAsset: (request: CONTRACT_INTERFACES.IProviderRequest) => Promise<CONTRACT_INTERFACES.IPrice>;
};