@newos/cli
Version:
Command-line interface for the NewOS
57 lines • 3.38 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const lodash_1 = require("lodash");
const send_tx_1 = __importDefault(require("../scripts/send-tx"));
const contract_1 = require("../utils/contract");
const ConfigManager_1 = __importDefault(require("../models/config/ConfigManager"));
const prompt_1 = require("../prompts/prompt");
const method_params_1 = __importDefault(require("../prompts/method-params"));
const telemetry_1 = __importDefault(require("../telemetry"));
const name = 'send-tx';
const signature = name;
const description = 'send a transaction to the specified contract instance. Provide the [address], method to call and its arguments if needed';
const register = program => program
.command(signature, undefined, { noHelp: true })
.usage('--to <to> --method <method> [options]')
.description(description)
.option('--to <to>', 'address of the contract that will receive the transaction')
.option('--method <method>', `name of the method to execute in the contract`)
.option('--args <arg1, arg2, ...>', 'arguments to the method to execute')
.option('--value <value>', `optional value in wei to send with the transaction`)
.option('--gas <gas>', `gas limit of the transaction, will default to the limit specified in the configuration file, or use gas estimation if not set`)
.withNetworkOptions()
.withNonInteractiveOption()
.action(action);
async function action(options) {
const { interactive, to: proxyAddress, value, gas } = options;
const networkOpts = await prompt_1.promptForNetwork(options, () => getCommandProps());
const { network, txParams } = await ConfigManager_1.default.initNetworkConfiguration(Object.assign(Object.assign({}, options), networkOpts));
const { contractFullName, proxyReference } = await promptForProxy(proxyAddress, network, options);
const methodParams = await method_params_1.default(contractFullName, options);
const args = lodash_1.pickBy(Object.assign(Object.assign({}, methodParams), { proxyAddress: proxyReference, value,
gas }));
await telemetry_1.default.report('send-tx', Object.assign(Object.assign({}, args), { network, txParams }), interactive);
await send_tx_1.default(Object.assign(Object.assign({}, args), { network, txParams }));
if (!options.dontExitProcess && process.env.NODE_ENV !== 'test')
process.exit(0);
}
async function promptForProxy(proxyAddress, network, options) {
const { interactive } = options;
const opts = { proxy: proxyAddress };
const props = getCommandProps(network);
const { proxy: promptedProxy } = await prompt_1.promptIfNeeded({ opts, props }, interactive);
return promptedProxy;
}
function getCommandProps(network) {
return Object.assign(Object.assign({}, prompt_1.networksList('network', 'list')), { proxy: {
message: 'Pick an instance',
type: 'list',
choices: prompt_1.proxiesList('byAddress', network),
normalize: input => (typeof input !== 'object' ? prompt_1.proxyInfo(contract_1.parseContractReference(input), network) : input),
} });
}
exports.default = { name, signature, description, register, action };
//# sourceMappingURL=send-tx.js.map