From e0bb3ae3af4746b3e5ff845a39809f5174f69f31 Mon Sep 17 00:00:00 2001 From: zramsay Date: Wed, 11 Jan 2023 12:55:47 -0500 Subject: [PATCH] rename command and directory --- src/cmds/registry.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cmds/registry.ts b/src/cmds/registry.ts index 5548242..e665a62 100644 --- a/src/cmds/registry.ts +++ b/src/cmds/registry.ts @@ -1,6 +1,6 @@ import yargs from 'yargs'; -export const command = 'cns'; +export const command = 'registry'; export const desc = 'Laconic Registry Tools'; @@ -17,7 +17,7 @@ exports.builder = (yargs: yargs.Argv) => { 'gas': { type: 'string' }, 'fees': { type: 'string' } }) - .commandDir('cns-cmds') + .commandDir('registry-cmds') .demandCommand() .help() }