Skip to content

docs: added binary configuration step to use ntt globally #429

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

Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,20 @@ Follow these steps to install the NTT CLI:
curl -fsSL https://raw.githubusercontent.com/wormhole-foundation/native-token-transfers/main/cli/install.sh | bash
```

2. Verify the NTT CLI is installed:
2. Add the installed binary to your PATH
Append the following line to your shell configuration file (e.g., .zshrc, .bashrc, etc.):
```bash
echo 'export PATH="$HOME/.bun/bin:$PATH"' >> .zshrc
```
Note: Make sure to use the appropriate shell config file for your shell (e.g., ~/.bashrc for Bash).

3. Verify the NTT CLI is installed:

```bash
ntt --version
```

3. Once installed, check out the available [NTT CLI Commands](/docs/build/transfers/native-token-transfers/cli-commands/){target=\_blank} to start using the CLI
4. Once installed, check out the available [NTT CLI Commands](/docs/build/transfers/native-token-transfers/cli-commands/){target=\_blank} to start using the CLI

## Update NTT CLI

Expand Down