diff --git a/src/contract/client.ts b/src/contract/client.ts index f4109808d..421f18076 100644 --- a/src/contract/client.ts +++ b/src/contract/client.ts @@ -59,7 +59,7 @@ export class Client { static async deploy( /** Constructor/Initialization Args for the contract's `__constructor` method */ args: Record | null, - /** Options for initalizing a Client as well as for calling a method, with extras specific to deploying. */ + /** Options for initializing a Client as well as for calling a method, with extras specific to deploying. */ options: MethodOptions & Omit & { /** The hash of the Wasm blob, which must already be installed on-chain. */ diff --git a/src/webauth/utils.ts b/src/webauth/utils.ts index 01c289471..c1e9030fe 100644 --- a/src/webauth/utils.ts +++ b/src/webauth/utils.ts @@ -41,7 +41,7 @@ import { ServerApi } from "../horizon/server_api"; * memo must be of type `id`. If the `clientaccountID` is a muxed account, * memos cannot be used. * @param {string} [clientDomain] The fully qualified domain of the client - * requesting the challenge. Only necessary when the the 'client_domain' + * requesting the challenge. Only necessary when the 'client_domain' * parameter is passed. * @param {string} [clientSigningKey] The public key assigned to the SIGNING_KEY * attribute specified on the stellar.toml hosted on the client domain. Only diff --git a/test/unit/transaction_test.js b/test/unit/transaction_test.js index 99ede6fe6..ee17be4c1 100644 --- a/test/unit/transaction_test.js +++ b/test/unit/transaction_test.js @@ -86,7 +86,7 @@ describe("assembleTransaction", () => { // since it was greater than tx.fee expect(result.toEnvelope().v1().tx().fee()).to.equal(215); - // validate it udpated sorobantransactiondata block in the tx ext + // validate it updated sorobantransactiondata block in the tx ext expect(result.toEnvelope().v1().tx().ext().sorobanData()).to.deep.equal( sorobanTransactionData, );