@nfps.dev/cli
Version:
CLI for NFP development, inspection, and manipulation
30 lines (29 loc) • 792 B
TypeScript
export declare const H_CMDS_MINT: {
'mint <token-id>': import("../common.js").Command<{
public: {
type: "string";
desc: string;
};
private: {
type: "string";
desc: string;
};
gas: {
readonly type: "number";
readonly desc: "amount of GAS to use for tx";
};
price: {
readonly type: "number";
readonly desc: "gas price to use when calculating fee";
};
yes: {
readonly type: "boolean";
readonly alias: "y";
readonly desc: "automatically confirm prompts such as broadcasting txs and saving to .env";
};
}, {
tokenId: {
type: "string";
};
}>;
};