Skip to content

Commit

Permalink
Fixup jsdoc and changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaptic committed Mar 20, 2024
1 parent 0c93a53 commit 61580f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A breaking change will get clearly marked in this log.

### Added
* Introduces an entire suite of helpers to assist with interacting with smart contracts ([#929](https://github.com/stellar/js-stellar-sdk/pull/929)):
- `ContractClient`: generate a class from the contract specification where each contract method gets included with a "JSified" name. Each method returns an `AssembledTransaction` that can be used to modify, simulate, decode results, and possibly sign, & submit the transaction.
- `ContractClient`: generate a class from the contract specification where each Rust contract method gets a matching method in this class. Each method returns an `AssembledTransaction` that can be used to modify, simulate, decode results, and possibly sign, & submit the transaction.
- `AssembledTransaction`: used to wrap a transaction-under-construction and provide high-level interfaces to the most common workflows, while still providing access to low-level transaction manipulation.
- `SentTransaction`: transaction sent to the Soroban network, in two steps - initial submission and waiting for it to finalize to get the result (retried with exponential backoff)

Expand Down
2 changes: 1 addition & 1 deletion src/contract_client/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { ContractClientOptions, MethodOptions } from './types'
export class ContractClient {
/**
* Generate a class from the contract spec that where each contract method
* gets included with a JSified name.
* gets included with an identical name.
*
* Each method returns an {@link AssembledTransaction} that can be used to
* modify, simulate, decode results, and possibly sign, & submit the
Expand Down

0 comments on commit 61580f8

Please sign in to comment.