Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion packages/thirdweb/src/rpc/rpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
});
Expand Down
2 changes: 1 addition & 1 deletion packages/thirdweb/src/wallets/in-app/native/ecosystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down