From 24ba06f1465e16505fa70944c2d3f3705fa1e73b Mon Sep 17 00:00:00 2001 From: sashaodessa <140454972+sashaodessa@users.noreply.github.com> Date: Wed, 10 Sep 2025 13:24:47 +0200 Subject: [PATCH 1/4] Update ecosystem.ts Signed-off-by: sashaodessa <140454972+sashaodessa@users.noreply.github.com> --- packages/thirdweb/src/wallets/in-app/native/ecosystem.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/thirdweb/src/wallets/in-app/native/ecosystem.ts b/packages/thirdweb/src/wallets/in-app/native/ecosystem.ts index 902655e3ff5..407ded4ba6a 100644 --- a/packages/thirdweb/src/wallets/in-app/native/ecosystem.ts +++ b/packages/thirdweb/src/wallets/in-app/native/ecosystem.ts @@ -48,7 +48,7 @@ import type { EcosystemWallet } from "../core/wallet/types.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"; From e3bf24304fe707535df66d981105173c08526584 Mon Sep 17 00:00:00 2001 From: sashaodessa <140454972+sashaodessa@users.noreply.github.com> Date: Wed, 10 Sep 2025 13:25:07 +0200 Subject: [PATCH 2/4] Update rpc.ts Signed-off-by: sashaodessa <140454972+sashaodessa@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 b79b31b4434..c16da4676f3 100644 --- a/packages/thirdweb/src/rpc/rpc.ts +++ b/packages/thirdweb/src/rpc/rpc.ts @@ -125,7 +125,7 @@ export function getRpcClient( inflight.request.id = index; // also assign the jsonrpc version inflight.request.jsonrpc = "2.0"; - // assing the request to the requests array (so we don't have to map it again later) + // assign the request to the requests array (so we don't have to map it again later) requests[index] = inflight.request; return inflight; }); From c9ff4556e50a83e4615627ee6e74ef6196f77bf9 Mon Sep 17 00:00:00 2001 From: sashaodessa <140454972+sashaodessa@users.noreply.github.com> Date: Wed, 10 Sep 2025 13:25:47 +0200 Subject: [PATCH 3/4] Update useContractEvents.ts Signed-off-by: sashaodessa <140454972+sashaodessa@users.noreply.github.com> --- .../thirdweb/src/react/core/hooks/contract/useContractEvents.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/thirdweb/src/react/core/hooks/contract/useContractEvents.ts b/packages/thirdweb/src/react/core/hooks/contract/useContractEvents.ts index 1045fc43cf6..fd7cb2e78c0 100644 --- a/packages/thirdweb/src/react/core/hooks/contract/useContractEvents.ts +++ b/packages/thirdweb/src/react/core/hooks/contract/useContractEvents.ts @@ -37,7 +37,7 @@ type UseContractEventsOptions< * * ### Using event extensions * - * The `thirdweb/extesions` export contains event definitions for many popular contracts. + * The `thirdweb/extensions` export contains event definitions for many popular contracts. * You can use these event definitions to watch for specific events with a type-safe API. * * ```jsx From ac82d2e6ee9c2176d215eb99e10211fcd7b66b99 Mon Sep 17 00:00:00 2001 From: sashaodessa <140454972+sashaodessa@users.noreply.github.com> Date: Wed, 10 Sep 2025 13:26:04 +0200 Subject: [PATCH 4/4] Update useWaitForReceipt.ts Signed-off-by: sashaodessa <140454972+sashaodessa@users.noreply.github.com> --- .../thirdweb/src/react/core/hooks/contract/useWaitForReceipt.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/thirdweb/src/react/core/hooks/contract/useWaitForReceipt.ts b/packages/thirdweb/src/react/core/hooks/contract/useWaitForReceipt.ts index 085cb607a82..9339d6f60a8 100644 --- a/packages/thirdweb/src/react/core/hooks/contract/useWaitForReceipt.ts +++ b/packages/thirdweb/src/react/core/hooks/contract/useWaitForReceipt.ts @@ -32,7 +32,7 @@ export function useWaitForReceipt( }, queryKey: [ "waitForReceipt", - // TODO: here chain can be undfined so we go to a `-1` chain but this feels wrong + // TODO: here chain can be undefined so we go to a `-1` chain but this feels wrong options?.chain.id || -1, options?.transactionHash, ] as const,