From f61bc5d45bc97c940e9227dafe1de396e34ba4b4 Mon Sep 17 00:00:00 2001 From: Hugh Cunningham <57735705+hughy@users.noreply.github.com> Date: Mon, 11 Nov 2024 15:13:43 -0800 Subject: [PATCH] adds docs page for 'wallet:account' command (#745) * adds docs page for 'wallet:account' command populates terminal output with example for account on testnet named 'MyAccount' * moves wallet:account command to CLI documentation section --- .../cli/cli-cmd-wallet-account.mdx | 22 +++++++++++++++++++ content/documentation/sidebar.ts | 1 + 2 files changed, 23 insertions(+) create mode 100644 content/documentation/cli/cli-cmd-wallet-account.mdx diff --git a/content/documentation/cli/cli-cmd-wallet-account.mdx b/content/documentation/cli/cli-cmd-wallet-account.mdx new file mode 100644 index 00000000..892f8c3c --- /dev/null +++ b/content/documentation/cli/cli-cmd-wallet-account.mdx @@ -0,0 +1,22 @@ +--- +title: wallet:account +seo: Wallet Account Command +--- + +To see the status of an account on your node + +```sh +ironfish wallet:account MyAccount +``` + + diff --git a/content/documentation/sidebar.ts b/content/documentation/sidebar.ts index b0905fa9..5c8588f8 100644 --- a/content/documentation/sidebar.ts +++ b/content/documentation/sidebar.ts @@ -54,6 +54,7 @@ export const sidebar: SidebarDefinition = [ { label: "wallet", items: [ + "cli/cli-cmd-wallet-account", "cli/cli-cmd-wallet-accounts", "cli/cli-cmd-wallet-address", "cli/cli-cmd-wallet-assets",