@kubiklabs/wasmkit
Version:
Wasmkit is a development environment to compile, deploy, test, run cosmwasm contracts on different networks.
36 lines (35 loc) • 908 B
TypeScript
export declare const WASMKIT_NAME = "wasmkit";
export declare const defaultFees: {
upload: {
amount: {
amount: string;
denom: string;
}[];
gas: string;
};
init: {
amount: {
amount: string;
denom: string;
}[];
gas: string;
};
exec: {
amount: {
amount: string;
denom: string;
}[];
gas: string;
};
send: {
amount: {
amount: string;
denom: string;
}[];
gas: string;
};
};
export declare const TEMPLATES_GIT_REMOTE = "https://github.com/kubiklabs/wasmkit-templates";
export declare const DEFAULT_TEMPLATE = "counter";
export declare const TEMPLATES_GIT_REMOTE_PLAYGROUND = "https://github.com/kubiklabs/wasmkit-playground";
export declare const DEFAULT_TEMPLATE_PLAYGROUND = "playground";