File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
react/core/hooks/contract Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ type UseContractEventsOptions<
37
37
*
38
38
* ### Using event extensions
39
39
*
40
- * The `thirdweb/extesions ` export contains event definitions for many popular contracts.
40
+ * The `thirdweb/extensions ` export contains event definitions for many popular contracts.
41
41
* You can use these event definitions to watch for specific events with a type-safe API.
42
42
*
43
43
* ```jsx
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export function useWaitForReceipt(
32
32
} ,
33
33
queryKey : [
34
34
"waitForReceipt" ,
35
- // TODO: here chain can be undfined so we go to a `-1` chain but this feels wrong
35
+ // TODO: here chain can be undefined so we go to a `-1` chain but this feels wrong
36
36
options ?. chain . id || - 1 ,
37
37
options ?. transactionHash ,
38
38
] as const ,
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ export function getRpcClient(
125
125
inflight . request . id = index ;
126
126
// also assign the jsonrpc version
127
127
inflight . request . jsonrpc = "2.0" ;
128
- // assing the request to the requests array (so we don't have to map it again later)
128
+ // assign the request to the requests array (so we don't have to map it again later)
129
129
requests [ index ] = inflight . request ;
130
130
return inflight ;
131
131
} ) ;
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ import type { EcosystemWallet } from "../core/wallet/types.js";
48
48
*
49
49
* ### Connect to a restricted ecosystem wallet with your designated partner ID
50
50
*
51
- * The parnter ID will be provided to you by the ecosystem with which you're integrating.
51
+ * The partner ID will be provided to you by the ecosystem with which you're integrating.
52
52
*
53
53
* ```ts
54
54
* import { ecosystemWallet } from "thirdweb/wallets";
You can’t perform that action at this time.
0 commit comments