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 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, 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; }); 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";