@nfps.dev/cli
Version:
CLI for NFP development, inspection, and manipulation
27 lines (26 loc) • 763 B
TypeScript
export declare const H_CMDS_EXEC: {
'exec <method> [args]': import("../common.js").Command<{
readonly gas: {
readonly type: "number";
readonly desc: "amount of GAS to use for tx";
};
readonly price: {
readonly type: "number";
readonly desc: "gas price to use when calculating fee";
};
readonly yes: {
readonly type: "boolean";
readonly alias: "y";
readonly desc: "automatically confirm prompts such as broadcasting txs and saving to .env";
};
}, {
method: {
type: "string";
desc: string;
};
args: {
type: "string";
desc: string;
};
}>;
};