From 423a03e54e8064c33d39c3a2ae7b6d9fa953e66c Mon Sep 17 00:00:00 2001 From: Shohei KAMON Date: Wed, 16 Apr 2025 07:03:24 +0800 Subject: [PATCH] Update README.md --- README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f757034..aee27e2 100644 --- a/README.md +++ b/README.md @@ -52,14 +52,15 @@ fireblocks-cli --help # fireblocks-cli configure Subcommand List -Subcommand | Status | Description | Notes -init | Not implemented | Initialize the default configuration files | Creates ~/.fireblocks/config.toml and ~/.fireblocks/keys/ if missing -gen-keys | ✅ Implemented | Generate Fireblocks-compatible private key and CSR | Outputs to .fireblocks/keys/{name}_key.csr, etc. -list | Not implemented | List all configured profiles | Displays [profile] sections from config.toml -edit | Not implemented | Open the config file in your default $EDITOR | Falls back to vi or nano if $EDITOR is not set -validate | Not implemented | Validate the structure and contents of the config file | Checks for invalid or missing keys and values -add | Not implemented | Append a new profile to the configuration file | Will add to the bottom of the file without auto-formatting -remove | Not implemented | Remove a profile from the configuration | Deletes the corresponding section from config.toml +| Subcommand | Status | Description | Notes | +|-------------------|------------------|----------------------------------------------------------------|-----------------------------------------------------------------------| +| `init` | Not implemented | Initialize the default configuration files | Creates `~/.fireblocks/config.toml` and `~/.fireblocks/keys/` | +| `gen-keys` | ✅ Implemented | Generate Fireblocks-compatible private key and CSR | Outputs to `.fireblocks/keys/{name}_key.csr`, etc. | +| `list` | Not implemented | List all configured profiles | Displays `[profile]` sections from `config.toml` | +| `edit` | Not implemented | Open the config file in your default `$EDITOR` | Falls back to `vi` or `nano` if `$EDITOR` is not set | +| `validate` | Not implemented | Validate the structure and contents of the config file | Checks for invalid or missing keys and values | +| `add` | Not implemented | Append a new profile to the configuration file | Will add to the bottom of the file without auto-formatting | +| `remove`| Not implemented | Remove a profile from the configuration | Deletes the corresponding section from `config.toml` | ---