From 919fe89b6cf15d553dbe672142a38178db8e9f27 Mon Sep 17 00:00:00 2001 From: Nando Vieira Date: Tue, 15 Sep 2026 11:03:09 -0700 Subject: [PATCH] Deprecate stellar contract bindings typescript. --- cmd/soroban-cli/src/commands/contract/bindings/typescript.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmd/soroban-cli/src/commands/contract/bindings/typescript.rs b/cmd/soroban-cli/src/commands/contract/bindings/typescript.rs index 95b6eaedaa..516dad2ceb 100644 --- a/cmd/soroban-cli/src/commands/contract/bindings/typescript.rs +++ b/cmd/soroban-cli/src/commands/contract/bindings/typescript.rs @@ -55,6 +55,11 @@ impl Cmd { pub async fn execute(&self, quiet: bool) -> Result<(), Error> { let print = Print::new(quiet); + print.warnln( + "`stellar contract bindings typescript` is deprecated. Use the JavaScript Stellar SDK \ + instead: https://github.com/stellar/js-stellar-sdk#cli", + ); + let contract_spec::Fetched { contract, source } = contract_spec::fetch(&self.wasm_or_hash_or_contract_id, &print).await?;