From 0269fb74cc48a48fca343e3ed3322df742a8fd35 Mon Sep 17 00:00:00 2001 From: joeybright53 Date: Tue, 2 Sep 2025 14:18:30 +0800 Subject: [PATCH] docs: Fix Typos in docs --- .../v5/extensions/examples/transfering-tokens/page.mdx | 2 +- apps/portal/src/app/typescript/v5/extensions/use/page.mdx | 2 +- apps/portal/src/app/typescript/v5/migrate/page.mdx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/portal/src/app/typescript/v5/extensions/examples/transfering-tokens/page.mdx b/apps/portal/src/app/typescript/v5/extensions/examples/transfering-tokens/page.mdx index cfe822e5ebe..970e8a42c73 100644 --- a/apps/portal/src/app/typescript/v5/extensions/examples/transfering-tokens/page.mdx +++ b/apps/portal/src/app/typescript/v5/extensions/examples/transfering-tokens/page.mdx @@ -1,4 +1,4 @@ -# Transfering (sending) tokens using thirdweb extensions +# Transferring (sending) tokens using thirdweb extensions ## ERC721 ```typescript diff --git a/apps/portal/src/app/typescript/v5/extensions/use/page.mdx b/apps/portal/src/app/typescript/v5/extensions/use/page.mdx index ff4708ff92d..bd07fedcf32 100644 --- a/apps/portal/src/app/typescript/v5/extensions/use/page.mdx +++ b/apps/portal/src/app/typescript/v5/extensions/use/page.mdx @@ -58,7 +58,7 @@ const transactionResult = await sendTransaction({ ### Example: `transfer()` extension for ERC20 tokens -This extension conveniently handles unit conversion when transfering ERC20 tokens. You can pass the amount in tokens, the extension will convert it to the right unit before calling the contract. +This extension conveniently handles unit conversion when Transferring ERC20 tokens. You can pass the amount in tokens, the extension will convert it to the right unit before calling the contract. ```typescript import { getContract, sendTransaction } from "thirdweb"; diff --git a/apps/portal/src/app/typescript/v5/migrate/page.mdx b/apps/portal/src/app/typescript/v5/migrate/page.mdx index 0c0e8c5f3ab..acea3192dda 100644 --- a/apps/portal/src/app/typescript/v5/migrate/page.mdx +++ b/apps/portal/src/app/typescript/v5/migrate/page.mdx @@ -72,7 +72,7 @@ sendTx(transaction); As you can see, by pairing the contract extensions with `useReadContract` (for read) and `useSendTransaction` (for write), we are able to greatly reduce the amount of code that is packaged & shipped to the end users. Plus, with this approach we can dedicate more time -to building contract extensions. The SDK v5 currenty supports over hundreds of extensions, with some popular protocols like Uniswap, Farcaster, Lens & more to come. +to building contract extensions. The SDK v5 currently supports over hundreds of extensions, with some popular protocols like Uniswap, Farcaster, Lens & more to come. View a list of [supported extensions](/typescript/v5/extensions/built-in) here, or [build your own](/typescript/v5/extensions/create)!