From 11eab347bd368cbb888a78b17b7f0587e63eecd9 Mon Sep 17 00:00:00 2001 From: Vedant Madane <6527493+VedantMadane@users.noreply.github.com> Date: Thu, 15 Jan 2026 14:30:35 +0530 Subject: [PATCH] feat(key): add 'ipfs key ls' as alias for 'ipfs key list' Add 'ls' as an alias for the 'list' subcommand in 'ipfs key' to be consistent with other ipfs commands like 'ipfs repo ls' and 'ipfs pin ls' which use 'ls' instead of 'list'. Fixes #10976 Signed-off-by: Vedant Madane <6527493+VedantMadane@users.noreply.github.com> --- core/commands/keystore.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/commands/keystore.go b/core/commands/keystore.go index 6ce1b5a0d..0e0eb7ca2 100644 --- a/core/commands/keystore.go +++ b/core/commands/keystore.go @@ -50,6 +50,7 @@ publish'. "export": keyExportCmd, "import": keyImportCmd, "list": keyListCmd, + "ls": keyListCmd, "rename": keyRenameCmd, "rm": keyRmCmd, "rotate": keyRotateCmd,