Skip to content
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
4 changes: 2 additions & 2 deletions FULL_HELP_DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ Generate code client bindings for a contract
###### **Subcommands:**

- `rust` — Generate Rust bindings
- `typescript` — Generate a TypeScript / JavaScript package
- `typescript` — ⚠️ Deprecated, use the JavaScript Stellar SDK instead (https://github.com/stellar/js-stellar-sdk#cli). Generate a TypeScript / JavaScript package
- `python` — Generate Python bindings
- `java` — Generate Java bindings
- `flutter` — Generate Flutter bindings
Expand All @@ -292,7 +292,7 @@ Generate Rust bindings

## `stellar contract bindings typescript`

Generate a TypeScript / JavaScript package
⚠️ Deprecated, use the JavaScript Stellar SDK instead (https://github.com/stellar/js-stellar-sdk#cli). Generate a TypeScript / JavaScript package

**Usage:** `stellar contract bindings typescript [OPTIONS] --output-dir <OUTPUT_DIR> <--wasm <WASM>|--wasm-hash <WASM_HASH>|--contract-id <CONTRACT_ID>>`

Expand Down
2 changes: 1 addition & 1 deletion cmd/soroban-cli/src/commands/contract/bindings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub enum Cmd {
/// Generate Rust bindings
Rust(rust::Cmd),

/// Generate a TypeScript / JavaScript package
/// ⚠️ Deprecated, use the JavaScript Stellar SDK instead (https://github.com/stellar/js-stellar-sdk#cli). Generate a TypeScript / JavaScript package
Comment thread
fnando marked this conversation as resolved.
Typescript(Box<typescript::Cmd>),

/// Generate Python bindings
Expand Down
Loading