UNPKG

erc20-wizard

Version:

CLI for creating and deploying ERC20 tokens on Ethereum network.

15 lines (14 loc) 890 B
#!/usr/bin/env node "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const controller_1 = require("./controller"); const console_service_1 = require("./services/console.service"); const infura_service_1 = require("./services/infura.service"); const contract_template_service_1 = require("./services/contract-template.service"); const configuration_service_1 = require("./services/configuration.service"); const configurationSerice = new configuration_service_1.ConfigurationService(); const consoleService = new console_service_1.ConsoleService(); const infuraService = new infura_service_1.InfuraService(configurationSerice); const contractTemplateService = new contract_template_service_1.ContractTemplateService(); const controller = new controller_1.Controller(consoleService, infuraService, contractTemplateService, configurationSerice); controller.init();