UNPKG

create-tezos-smart-contract

Version:

Node.js toolset to write, test and deploy Tezos smart contracts

6 lines (5 loc) 374 B
import { FlextesaOptions } from "./types"; export declare const POD_NAME = "flextesa-sandbox"; export declare const startFlextesa: (_options: Partial<FlextesaOptions>, readyCallback?: (() => void) | undefined) => Promise<void>; export declare const stopFlextesa: (callback?: (() => void) | undefined) => void; export declare const isFlextesaRunning: () => Promise<boolean>;