From 3d9e96ce84f3b8ea0bfc03d7afae49e2be0ee9b4 Mon Sep 17 00:00:00 2001 From: Crystalin Date: Sat, 15 Jan 2022 18:28:30 -0500 Subject: [PATCH] Force strict arguments/command --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 48f842f..5b08b84 100644 --- a/src/index.ts +++ b/src/index.ts @@ -19,4 +19,5 @@ export const cli = yargs(hideBin(process.argv)) .command(getTransactionDataCommand) // TODO: test getTransactionDataCommand and submitTxCommand .command(submitTxCommand) .demandCommand() + .strict() .help().argv;