Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates Docs for Core 0.3.0 Release. #250

Merged
merged 2 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/basics/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ The command-line interface (CLI) is the most straightforward way to interact wit
npm install --global @entropyxyz/cli
```

1. Run the CLI using `entropy`:
1. Run the CLI using `entropy tui`:

```shell
entropy
entropy tui
```

```output
Expand Down
4 changes: 2 additions & 2 deletions content/guides/deploy-a-program.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Next, you can move on to starting the CLI and deploying your program.

### Deploy the program

1. Start the CLI by running `entropy`.
1. Start the CLI by running `entropy tui`.
1. At the main menu within the CLI, select **Deploy Program**:

```output
Expand Down Expand Up @@ -50,7 +50,7 @@ You can now interact with your program using the program pointer.

If you've lost your program pointer, you can list it by running the following:

1. Start the CLI by running `entropy`.
1. Start the CLI by running `entropy tui`.
1. At the main menu within the CLI, select **Deploy Program**:

```output
Expand Down
4 changes: 2 additions & 2 deletions content/guides/manage-accounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ You need to have the Entropy CLI installed. [Take a look at the CLI page for det

### Create an account

1. Start the CLI by running `entropy`.
1. Start the CLI by running `entropy tui`.
1. Select **Manage Accounts**.
1. Select **New**.
1. Type `n` and press `ENTER` when asked _Would you like to import a key?_:
Expand All @@ -36,7 +36,7 @@ You need to have the Entropy CLI installed. [Take a look at the CLI page for det

You can import an account by the `seed` for the account. Most Substrate-based wallets allow you to export your account information.

1. Start the CLI by running `entropy`.
1. Start the CLI by running `entropy tui`.
1. Select **Manage Accounts**.
1. Select **New**.
1. Type `y` and press `ENTER` when asked _Would you like to import a key?_:
Expand Down
2 changes: 1 addition & 1 deletion content/guides/register-an-account.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ lead: "Registering an account is a feature unique to Entropy. Without going into

Here is the process for registering an address using the Entropy CLI's interactive text-based user interface (TUI).

1. Start the CLI by running `entropy`.
1. Start the CLI by running `entropy tui`.
1. Back at the main menu within the CLI, select **Register**:

```output
Expand Down
Loading