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

remove ntt devnet initialization, as for Solana devnet also the ntt testnet config is working #325

Merged
merged 5 commits into from
Mar 25, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,8 @@ The [NTT CLI](/docs/build/transfers/native-token-transfers/deployment-process/in
```bash
ntt init Testnet
```

=== "Devnet"

```bash
ntt init Devnet
```
!!! note
Testnet deployment settings work for both Solana Testnet and Devnet networks.

### Set Mint Authority

Expand Down
8 changes: 2 additions & 6 deletions llms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12491,12 +12491,8 @@ The [NTT CLI](/docs/build/transfers/native-token-transfers/deployment-process/in
```bash
ntt init Testnet
```

=== "Devnet"

```bash
ntt init Devnet
```
!!! note
Testnet deployment settings work for both Solana Testnet and Devnet networks.

### Set Mint Authority

Expand Down
4 changes: 4 additions & 0 deletions scripts/generate_llms.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ def get_all_markdown_files(directory):
if 'node_modules' in root.split(os.sep):
continue

# Skip 'venv' directory
if 'venv' in root.split(os.sep):
continue

for file in files:
if file.endswith(('.md', '.mdx')):
results.append(os.path.join(root, file))
Expand Down