@sentio/truffle-fetch-and-compile
Version:
Used to obtain external verified sources and compile them
7 lines (6 loc) • 478 B
TypeScript
import { FetcherConstructor } from "@truffle/source-fetcher";
import Config from "@truffle/config";
import type { Recognizer, FetchAndCompileOptions } from "./types";
import * as Types from "./types";
export declare function fetchAndCompileForRecognizer(recognizer: Recognizer, options: FetchAndCompileOptions | Config, optimizerOverride?: Types.Optimizer): Promise<void>;
export declare function getSortedFetcherConstructors(userFetcherNames?: string[]): FetcherConstructor[];