UNPKG

locklift

Version:

Node JS framework for working with Ever contracts. Inspired by Truffle and Hardhat. Helps you to build, test, run and maintain your smart contracts.

17 lines (16 loc) 694 B
import { ComponentType } from "./constants"; export declare const platformToSoldTychoPlatform: Record<"win32" | "linux" | "darwin", string>; export declare const getGzFileName: (fileName: string) => string; export declare const replaceDots: (arg: string) => string; export declare const downloadLinks: Record<ComponentType, (arg: { version: string; }) => string>; export declare const fileNames: Record<ComponentType, (arg: { version: string; }) => string>; export declare const executableFileName: Record<ComponentType, (arg: { version: string; }) => string>; export declare const getSupportedVersions: ({ component }: { component: ComponentType; }) => Promise<Array<string>>;