From 61580f844c73e5bbda2512ad72163a6c359aea68 Mon Sep 17 00:00:00 2001 From: George Kudrayvtsev Date: Wed, 20 Mar 2024 15:02:51 -0700 Subject: [PATCH] Fixup jsdoc and changelog entry --- CHANGELOG.md | 2 +- src/contract_client/client.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b0d9dd07..0c5087a35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/src/contract_client/client.ts b/src/contract_client/client.ts index ad221f21c..2446e3e3b 100644 --- a/src/contract_client/client.ts +++ b/src/contract_client/client.ts @@ -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