@nfps.dev/cli
Version:
CLI for NFP development, inspection, and manipulation
35 lines (34 loc) • 868 B
TypeScript
export declare const X_GAS_PRICE_DEFAULT = 0.0125;
export declare const H_OPTS_EXEC: {
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";
};
};
export declare const H_DEFAULT_NETWORKS: {
'secret-4': {
title: string;
lcds: string;
rpcs: string;
price: number;
};
'pulsar-3': {
title: string;
lcds: string;
rpcs: string;
};
'secretdev-1': {
title: string;
lcds: string;
rpcs: string;
};
};