Skip to content

Commit

Permalink
fix: typos in documentation files (#6321)
Browse files Browse the repository at this point in the history
Signed-off-by: kilavvy <[email protected]>
  • Loading branch information
kilavvy authored Feb 24, 2025
1 parent 2cb89cb commit 95cc74e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/thirdweb/src/rpc/rpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export function getRpcClient(
reject = reject_;
});
inflightRequests.set(requestKey, promise);
// @ts-expect-error - they *are* definitely assgined within the promise constructor
// @ts-expect-error - they *are* definitely assigned within the promise constructor
pendingBatch.push({ request, resolve, reject, requestKey });
if (batchSize > 1) {
// if there is no timeout, set one
Expand Down
2 changes: 1 addition & 1 deletion packages/thirdweb/src/wallets/in-app/web/ecosystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import { createInAppWallet } from "../core/wallet/in-app-core.js";
*
* ### Connect to a restricted ecosystem wallet with your designated partner ID
*
* The parnter ID will be provided to you by the ecosystem with which you're integrating.
* The partner ID will be provided to you by the ecosystem with which you're integrating.
*
* ```ts
* import { ecosystemWallet } from "thirdweb/wallets";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export class IFrameWallet implements IWebWallet {
};

if (tx.maxFeePerGas) {
// ethers (in the iframe) rejects any type 0 trasaction with unknown keys
// ethers (in the iframe) rejects any type 0 transaction with unknown keys
// TODO remove this once iframe is upgraded to v5
transaction.accessList = tx.accessList;
transaction.maxFeePerGas = tx.maxFeePerGas;
Expand Down

0 comments on commit 95cc74e

Please sign in to comment.