@kubiklabs/wasmkit
Version:
Wasmkit is a development environment to compile, deploy, test, run cosmwasm contracts on different networks.
8 lines (7 loc) • 397 B
TypeScript
import { WasmkitRuntimeEnvironment } from "../../types";
export declare function runScript(relativeScriptPath: string, runtimeEnv: WasmkitRuntimeEnvironment): Promise<void>;
/**
* Ensure wasmkit/register source file path is resolved to compiled JS file
* instead of TS source file, so we don't need to run ts-node unnecessarily.
*/
export declare function resolveBuilderRegisterPath(): string;