From a41d389a49587650335181b9c68c6b645a77e63f Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Sat, 22 Feb 2025 18:43:10 +0100 Subject: [PATCH 1/3] Update rpc.ts Signed-off-by: kilavvy <140459108+kilavvy@users.noreply.github.com> --- packages/thirdweb/src/rpc/rpc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/thirdweb/src/rpc/rpc.ts b/packages/thirdweb/src/rpc/rpc.ts index 0f1659d0459..c5dd367bc2b 100644 --- a/packages/thirdweb/src/rpc/rpc.ts +++ b/packages/thirdweb/src/rpc/rpc.ts @@ -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 From 98b90a264373f6de7cc93c16bf8c17004d6164a5 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Sat, 22 Feb 2025 18:43:40 +0100 Subject: [PATCH 2/3] Update iframe-wallet.ts Signed-off-by: kilavvy <140459108+kilavvy@users.noreply.github.com> --- packages/thirdweb/src/wallets/in-app/web/lib/iframe-wallet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/thirdweb/src/wallets/in-app/web/lib/iframe-wallet.ts b/packages/thirdweb/src/wallets/in-app/web/lib/iframe-wallet.ts index 3c0627aa40a..8cc415914c0 100644 --- a/packages/thirdweb/src/wallets/in-app/web/lib/iframe-wallet.ts +++ b/packages/thirdweb/src/wallets/in-app/web/lib/iframe-wallet.ts @@ -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; From 00c22bdebbfe46e5646b4d08b5f9fa7473083f00 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Sat, 22 Feb 2025 18:45:07 +0100 Subject: [PATCH 3/3] Update ecosystem.ts Signed-off-by: kilavvy <140459108+kilavvy@users.noreply.github.com> --- packages/thirdweb/src/wallets/in-app/web/ecosystem.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/thirdweb/src/wallets/in-app/web/ecosystem.ts b/packages/thirdweb/src/wallets/in-app/web/ecosystem.ts index 2f887c5ae3a..774626aef09 100644 --- a/packages/thirdweb/src/wallets/in-app/web/ecosystem.ts +++ b/packages/thirdweb/src/wallets/in-app/web/ecosystem.ts @@ -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";