From a13cc3beb4bba0bf307031018663d0aefe4aa8af Mon Sep 17 00:00:00 2001 From: martin0995 Date: Wed, 11 Jun 2025 12:42:43 -0400 Subject: [PATCH 1/4] add warning based on contributor feedback --- products/native-token-transfers/get-started.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/products/native-token-transfers/get-started.md b/products/native-token-transfers/get-started.md index 3adfed3ce..b70417416 100644 --- a/products/native-token-transfers/get-started.md +++ b/products/native-token-transfers/get-started.md @@ -146,6 +146,17 @@ The NTT CLI is recommended to deploy and manage your cross-chain token configura ntt --version ``` +!!! warning "Command not found?" + If the `ntt` command is not recognized after installation, you may need to add the binary to your shell's PATH. + + Append this line to your shell config (e.g., `~/.zshrc` or `~/.bashrc`): + + ```bash + echo 'export PATH="$HOME/.bun/bin:$PATH"' >> ~/.zshrc + ``` + + Then, restart your terminal or run `source ~/.zshrc`. + ## Initialize a New NTT Project 1. Once the CLI is installed, scaffold a new project by running: From 9b79a070722079e0c7c9f2e23557aea61589a95b Mon Sep 17 00:00:00 2001 From: martin0995 Date: Wed, 11 Jun 2025 12:43:04 -0400 Subject: [PATCH 2/4] llm check --- llms-files/llms-ntt.txt | 11 +++++++++++ llms-files/llms-transfer.txt | 11 +++++++++++ llms-full.txt | 11 +++++++++++ 3 files changed, 33 insertions(+) diff --git a/llms-files/llms-ntt.txt b/llms-files/llms-ntt.txt index 26d298285..35e4e1314 100644 --- a/llms-files/llms-ntt.txt +++ b/llms-files/llms-ntt.txt @@ -642,6 +642,17 @@ The NTT CLI is recommended to deploy and manage your cross-chain token configura ntt --version ``` +!!! warning "Command not found?" + If the `ntt` command is not recognized after installation, you may need to add the binary to your shell's PATH. + + Append this line to your shell config (e.g., `~/.zshrc` or `~/.bashrc`): + + ```bash + echo 'export PATH="$HOME/.bun/bin:$PATH"' >> ~/.zshrc + ``` + + Then, restart your terminal or run `source ~/.zshrc`. + ## Initialize a New NTT Project 1. Once the CLI is installed, scaffold a new project by running: diff --git a/llms-files/llms-transfer.txt b/llms-files/llms-transfer.txt index 2eb19a8ca..0d44092cb 100644 --- a/llms-files/llms-transfer.txt +++ b/llms-files/llms-transfer.txt @@ -5335,6 +5335,17 @@ The NTT CLI is recommended to deploy and manage your cross-chain token configura ntt --version ``` +!!! warning "Command not found?" + If the `ntt` command is not recognized after installation, you may need to add the binary to your shell's PATH. + + Append this line to your shell config (e.g., `~/.zshrc` or `~/.bashrc`): + + ```bash + echo 'export PATH="$HOME/.bun/bin:$PATH"' >> ~/.zshrc + ``` + + Then, restart your terminal or run `source ~/.zshrc`. + ## Initialize a New NTT Project 1. Once the CLI is installed, scaffold a new project by running: diff --git a/llms-full.txt b/llms-full.txt index 1f7af2f22..92f20b76f 100644 --- a/llms-full.txt +++ b/llms-full.txt @@ -12272,6 +12272,17 @@ The NTT CLI is recommended to deploy and manage your cross-chain token configura ntt --version ``` +!!! warning "Command not found?" + If the `ntt` command is not recognized after installation, you may need to add the binary to your shell's PATH. + + Append this line to your shell config (e.g., `~/.zshrc` or `~/.bashrc`): + + ```bash + echo 'export PATH="$HOME/.bun/bin:$PATH"' >> ~/.zshrc + ``` + + Then, restart your terminal or run `source ~/.zshrc`. + ## Initialize a New NTT Project 1. Once the CLI is installed, scaffold a new project by running: From f0916bd108fab99a915030d9bb23cd22a4e02a81 Mon Sep 17 00:00:00 2001 From: Martin Hofmann Date: Wed, 11 Jun 2025 14:53:36 -0400 Subject: [PATCH 3/4] Update products/native-token-transfers/get-started.md Co-authored-by: Erin Shaben --- products/native-token-transfers/get-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/products/native-token-transfers/get-started.md b/products/native-token-transfers/get-started.md index b70417416..182124cf5 100644 --- a/products/native-token-transfers/get-started.md +++ b/products/native-token-transfers/get-started.md @@ -146,9 +146,9 @@ The NTT CLI is recommended to deploy and manage your cross-chain token configura ntt --version ``` -!!! warning "Command not found?" - If the `ntt` command is not recognized after installation, you may need to add the binary to your shell's PATH. - +??? warning "Command not found?" + If the `ntt` command is not recognized after installation, ensure that [Bun](https://bun.sh/) is installed and that its binary directory is included in your shell’s PATH. + Append this line to your shell config (e.g., `~/.zshrc` or `~/.bashrc`): ```bash From 7096a13858f1f35702411845b36da7fc103abc09 Mon Sep 17 00:00:00 2001 From: martin0995 Date: Wed, 11 Jun 2025 14:54:55 -0400 Subject: [PATCH 4/4] llm check --- llms-files/llms-ntt.txt | 6 +++--- llms-files/llms-transfer.txt | 6 +++--- llms-full.txt | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/llms-files/llms-ntt.txt b/llms-files/llms-ntt.txt index 35e4e1314..84b3eecbc 100644 --- a/llms-files/llms-ntt.txt +++ b/llms-files/llms-ntt.txt @@ -642,9 +642,9 @@ The NTT CLI is recommended to deploy and manage your cross-chain token configura ntt --version ``` -!!! warning "Command not found?" - If the `ntt` command is not recognized after installation, you may need to add the binary to your shell's PATH. - +??? warning "Command not found?" + If the `ntt` command is not recognized after installation, ensure that [Bun](https://bun.sh/) is installed and that its binary directory is included in your shell’s PATH. + Append this line to your shell config (e.g., `~/.zshrc` or `~/.bashrc`): ```bash diff --git a/llms-files/llms-transfer.txt b/llms-files/llms-transfer.txt index 0d44092cb..6e1907b24 100644 --- a/llms-files/llms-transfer.txt +++ b/llms-files/llms-transfer.txt @@ -5335,9 +5335,9 @@ The NTT CLI is recommended to deploy and manage your cross-chain token configura ntt --version ``` -!!! warning "Command not found?" - If the `ntt` command is not recognized after installation, you may need to add the binary to your shell's PATH. - +??? warning "Command not found?" + If the `ntt` command is not recognized after installation, ensure that [Bun](https://bun.sh/) is installed and that its binary directory is included in your shell’s PATH. + Append this line to your shell config (e.g., `~/.zshrc` or `~/.bashrc`): ```bash diff --git a/llms-full.txt b/llms-full.txt index 92f20b76f..a155e2792 100644 --- a/llms-full.txt +++ b/llms-full.txt @@ -12272,9 +12272,9 @@ The NTT CLI is recommended to deploy and manage your cross-chain token configura ntt --version ``` -!!! warning "Command not found?" - If the `ntt` command is not recognized after installation, you may need to add the binary to your shell's PATH. - +??? warning "Command not found?" + If the `ntt` command is not recognized after installation, ensure that [Bun](https://bun.sh/) is installed and that its binary directory is included in your shell’s PATH. + Append this line to your shell config (e.g., `~/.zshrc` or `~/.bashrc`): ```bash