import { Command } from 'commander' import transactionStatus from '../../infrastructure/transaction/transactionStatus' const program = new Command() program .name('status') .description('Get Transaction Status') .option('-u, --url ', 'Specify the input of mijin URL') .option('-r, --readfile ', 'Specify the input of Read Config File', 'config.json') .option('-t, --transactionhash ', 'Specify the input of Transaction Hash') .option('-p, --privatekey ', 'Specify the input of Mosaic Owner Account Private Key') .option('-b, --bod', 'Specify the input of mijin BOD mode(use Cookie)', false) .action(transactionStatus) export default program