@kubiklabs/wasmkit
Version:
Wasmkit is a development environment to compile, deploy, test, run cosmwasm contracts on different networks.
18 lines (17 loc) • 932 B
TypeScript
export declare const JS_CONFIG_FILENAME = "wasmkit.config.js";
export declare const CONTRACTS_DIR = "contracts";
export declare const ARTIFACTS_DIR = "artifacts";
export declare const CACHE_DIR: string;
export declare const CONTRACTS_OUT_DIR: string;
export declare const TARGET_DIR = "target/wasm32-unknown-unknown/release/";
export declare const SCHEMA_DIR = "artifacts/schema";
export declare const TS_SCHEMA_DIR = "artifacts/typescript_schema";
export declare const SCRIPTS_DIR = "scripts";
export declare const TESTS_DIR = "test";
export declare const singleImageVersion = "1.0.5";
export declare const multiImageVersion = "1.0.5";
export declare function isCwdInsideProject(): boolean;
export declare function isCwdProjectDir(): boolean;
export declare function getUserConfigPath(): string | undefined;
export declare function assertAllDirs(): Promise<void>;
export declare function assertDir(dirname: string): Promise<void>;