From e450d69e7160ec6cf378c1c44e58f73fc8b7ff7a Mon Sep 17 00:00:00 2001 From: Abhishek Krishna Date: Tue, 21 Apr 2026 06:48:25 +0530 Subject: [PATCH] docs: replace deprecated `init` subcommand with `new` in README The CLI marks 'init' as deprecated and prints 'Note: init is deprecated. Use solscript new instead.' when invoked. Update the Quick Start and CLI Reference sections so the README stops promoting the deprecated path to new users. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 109a80f..0d4adb6 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ contract Token { cargo install --git https://github.com/cryptuon/solscript solscript-cli # Create a project -solscript init my-token +solscript new my-token cd my-token # Build and deploy @@ -215,7 +215,7 @@ export LLVM_SYS_180_PREFIX=$(brew --prefix llvm@18) ## CLI Reference ```bash -solscript init # Create new project +solscript new # Create new project solscript build # Generate Rust/Anchor code solscript build-bpf # Compile to deployable .so solscript build-bpf --llvm # Direct LLVM compilation