Skip to content

Commit ebbda37

Browse files
authored
Fix typos (#6970)
1 parent c81fed3 commit ebbda37

File tree

23 files changed

+28
-28
lines changed

23 files changed

+28
-28
lines changed

apps/dashboard/src/app/(app)/(dashboard)/(chain)/[chain_id]/[contractAddress]/(marketplace)/components/list-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ export const CreateListingsForm: React.FC<CreateListingsFormProps> = ({
345345
const promise = sendAndConfirmTx.mutateAsync(approveTx);
346346
toast.promise(promise, {
347347
loading: "Approving NFT for listing",
348-
success: "NFT approved succesfully",
348+
success: "NFT approved successfully",
349349
error: "Failed to approve NFT",
350350
});
351351
await promise;

apps/portal/src/app/connect/wallet/security/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ When a user signs into an application using their email or social logins for the
3838

3939
### General Usage
4040

41-
- When users interact with their wallet via the the enclave, all communications are encrypted and only the legitimate user can access their wallet.
41+
- When users interact with their wallet via the enclave, all communications are encrypted and only the legitimate user can access their wallet.
4242
- All traffic is encrypted with TLS and HSTS. Services are run in private VPCs on AWS and accessible only from a single entry point via our Cloudflare DNS.
4343
- Applications can [link multiple authentication methods](/connect/in-app-wallet/guides/link-multiple-profiles) to the same wallet. Any of these methods can be used to authenticate into the users wallet.
4444

apps/portal/src/app/contracts/build/base-contracts/erc-4337/account/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ App developers can issue `Account` smart accounts programmatically by deploying
3838

3939
<br />
4040

41-
<Callout title="Issue accounts programatically" variant="info" >
41+
<Callout title="Issue accounts programmatically" variant="info" >
4242

4343
If you intend to issue accounts programmatically using a custom factory contract, you must do the following:
4444

apps/portal/src/app/contracts/build/base-contracts/erc-4337/managed-account/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ An upgrade to the features of `ManagedAccount` applies to **all** `ManagedAccoun
3232

3333
<br />
3434

35-
<Callout title="Issue accounts programatically" variant="info">
35+
<Callout title="Issue accounts programmatically" variant="info">
3636

3737
If you intend to issue accounts programmatically using a custom factory contract, you must do the following:
3838

apps/portal/src/app/dotnet/wallets/providers/ecosystem-wallet/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Ecosystem Wallets support a variety of login methods:
2020
- Custom Auth (Generic Auth Endpoint)
2121
- Guest (Onboard easily, link other accounts later)
2222
- Backend (Server Wallets)
23-
- Siwe (Login with a seperate wallet supported by the SDK)
23+
- Siwe (Login with a separate wallet supported by the SDK)
2424
- SiweExternal (Login with an external wallet that only supports web using a browser loading a static thirdweb React page temporarily)
2525

2626
## Usage
@@ -104,7 +104,7 @@ An instance of `ThirdwebClient`.
104104

105105
### ecosystemId (required)
106106

107-
The ID of the ecosyste wallet you created on the dashboard.
107+
The ID of the ecosystem wallet you created on the dashboard.
108108

109109
### ecosystemPartnerId (optional)
110110

apps/portal/src/app/dotnet/wallets/providers/in-app-wallet/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In-App Wallets support a variety of login methods:
2020
- Custom Auth (Generic Auth Endpoint)
2121
- Guest (Onboard easily, link other accounts later)
2222
- Backend (Server Wallets)
23-
- Siwe (Login with a seperate wallet supported by the SDK)
23+
- Siwe (Login with a separate wallet supported by the SDK)
2424
- SiweExternal (Login with an external wallet that only supports web using a browser loading a static thirdweb React page temporarily)
2525

2626
## Usage

apps/portal/src/app/react/v5/getting-started/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ You can quickly create a new project with the thirdweb CLI
1212
npx thirdweb create app
1313
```
1414

15-
or clone the the Next.js or Vite starter repo:
15+
or clone the Next.js or Vite starter repo:
1616

1717
<Stack>
1818
<GithubTemplateCard

apps/portal/src/app/react/v5/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ You can quickly create a new project with the thirdweb CLI
6060
npx thirdweb create app
6161
```
6262

63-
or clone the the Next.js or Vite starter repo:
63+
or clone the Next.js or Vite starter repo:
6464

6565
<Stack>
6666
<GithubTemplateCard

apps/portal/src/app/react/v5/rainbow-kit-migrate/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Learn how to migrate to thirdweb's ConnectButton component from [RainbowKit](htt
111111

112112
<hr/>
113113

114-
### Initalization
114+
### Initialization
115115

116116
#### RainbowKit
117117

apps/portal/src/app/typescript/v5/contract/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ const contract = getContract({
1919
});
2020
```
2121

22-
Contracts defined this way are lightweight and can be exported as consts accross your application to read or write to it.
22+
Contracts defined this way are lightweight and can be exported as consts across your application to read or write to it.

apps/portal/src/app/unity/v5/wallets/ecosystem-wallet/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Ecosystem Wallets support a variety of login methods:
2525
- Custom Auth (Generic Auth Endpoint)
2626
- Guest (Onboard easily, link other accounts later)
2727
- Backend (Server Wallets)
28-
- Siwe (Login with a seperate wallet supported by the SDK)
28+
- Siwe (Login with a separate wallet supported by the SDK)
2929
- SiweExternal (Login with an external wallet that only supports web using a browser loading a static thirdweb React page temporarily)
3030

3131
### Login with Email

apps/portal/src/app/unity/v5/wallets/in-app-wallet/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In-App Wallets support a variety of login methods:
2323
- Custom Auth (Generic Auth Endpoint)
2424
- Guest (Onboard easily, link other accounts later)
2525
- Backend (Server Wallets)
26-
- Siwe (Login with a seperate wallet supported by the SDK)
26+
- Siwe (Login with a separate wallet supported by the SDK)
2727
- SiweExternal (Login with an external wallet that only supports web using a browser loading a static thirdweb React page temporarily)
2828

2929
### Login with Email

packages/thirdweb/src/contract/verification/constructor-params.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export async function fetchConstructorParams(
8686
),
8787
];
8888

89-
// regex finds the LAST occurence of solc metadata bytes, result always in same position
89+
// regex finds the LAST occurrence of solc metadata bytes, result always in same position
9090
// TODO: we currently don't handle error string embedded in the bytecode, need to strip ascii (upgradeableProxy) in patterns[2]
9191
// https://etherscan.io/address/0xee6a57ec80ea46401049e92587e52f5ec1c24785#code
9292
if (matches?.[0]?.[2]) {

packages/thirdweb/src/extensions/prebuilts/get-required-transactions.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ async function getTransactionsForMaketplaceV3(options: {
178178
client: ThirdwebClient;
179179
}): Promise<DeployTransactionResult[]> {
180180
const { chain, client } = options;
181-
const WETHAdress = await computePublishedContractAddress({
181+
const WETHAddress = await computePublishedContractAddress({
182182
chain,
183183
client,
184184
contractId: "WETH9",
@@ -195,7 +195,7 @@ async function getTransactionsForMaketplaceV3(options: {
195195
chain,
196196
client,
197197
contractId: "DirectListingsLogic",
198-
constructorParams: { _nativeTokenWrapper: WETHAdress },
198+
constructorParams: { _nativeTokenWrapper: WETHAddress },
199199
}).then((c) =>
200200
c
201201
? null
@@ -205,7 +205,7 @@ async function getTransactionsForMaketplaceV3(options: {
205205
chain,
206206
client,
207207
contractId: "EnglishAuctionsLogic",
208-
constructorParams: { _nativeTokenWrapper: WETHAdress },
208+
constructorParams: { _nativeTokenWrapper: WETHAddress },
209209
}).then((c) =>
210210
c
211211
? null
@@ -233,7 +233,7 @@ async function getTransactionsForDynamicContract(options: {
233233
deployMetadata: FetchDeployMetadataResult;
234234
}): Promise<DeployTransactionResult[]> {
235235
const { chain, client } = options;
236-
const WETHAdress = await computePublishedContractAddress({
236+
const WETHAddress = await computePublishedContractAddress({
237237
chain,
238238
client,
239239
contractId: "WETH9",
@@ -255,7 +255,7 @@ async function getTransactionsForDynamicContract(options: {
255255
contractId: e.extensionName,
256256
publisher: e.publisherAddress,
257257
version: e.extensionVersion || "latest",
258-
constructorParams: { _nativeTokenWrapper: WETHAdress },
258+
constructorParams: { _nativeTokenWrapper: WETHAddress },
259259
}).then((c) =>
260260
c
261261
? null

packages/thirdweb/src/react/native/ui/prebuilt/Account/balance.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export interface AccountBalanceProps extends Omit<TextProps, "children"> {
5555
* If not passed, the component will return `null`.
5656
*
5757
* You can/should pass a descriptive text/component to this prop, indicating that the
58-
* balance was not fetched succesfully
58+
* balance was not fetched successfully
5959
* @example
6060
* ```tsx
6161
* <AccountBalance

packages/thirdweb/src/react/native/ui/prebuilt/Wallet/name.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface WalletNameProps extends Omit<TextProps, "children"> {
2525
* If not passed, the component will return `null`.
2626
*
2727
* You can/should pass a descriptive text/component to this prop, indicating that the
28-
* name was not fetched succesfully
28+
* name was not fetched successfully
2929
* @example
3030
* ```tsx
3131
* <WalletName fallbackComponent={<span>Failed to load</span>}

packages/thirdweb/src/react/web/ui/prebuilt/Account/balance.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export interface AccountBalanceProps
5757
* If not passed, the component will return `null`.
5858
*
5959
* You can/should pass a descriptive text/component to this prop, indicating that the
60-
* balance was not fetched succesfully
60+
* balance was not fetched successfully
6161
* @example
6262
* ```tsx
6363
* <AccountBalance

packages/thirdweb/src/react/web/ui/prebuilt/Chain/name.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export interface ChainNameProps
4545
* If not passed, the component will return `null`.
4646
*
4747
* You can/should pass a descriptive text/component to this prop, indicating that the
48-
* name was not fetched succesfully
48+
* name was not fetched successfully
4949
* @example
5050
* ```tsx
5151
* <ChainName fallbackComponent={<span>Failed to load</span>}

packages/thirdweb/src/react/web/ui/prebuilt/Token/name.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export interface TokenNameProps
5050
* If not passed, the component will return `null`.
5151
*
5252
* You can/should pass a descriptive text/component to this prop, indicating that the
53-
* name was not fetched succesfully
53+
* name was not fetched successfully
5454
* @example
5555
* ```tsx
5656
* <TokenName fallbackComponent={"Failed to load"}

packages/thirdweb/src/react/web/ui/prebuilt/Token/symbol.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export interface TokenSymbolProps
5050
* If not passed, the component will return `null`.
5151
*
5252
* You can/should pass a descriptive text/component to this prop, indicating that the
53-
* symbol was not fetched succesfully
53+
* symbol was not fetched successfully
5454
* @example
5555
* ```tsx
5656
* <TokenSymbol fallbackComponent={"Failed to load"}

packages/thirdweb/src/react/web/ui/prebuilt/Wallet/name.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export interface WalletNameProps
2727
* If not passed, the component will return `null`.
2828
*
2929
* You can/should pass a descriptive text/component to this prop, indicating that the
30-
* name was not fetched succesfully
30+
* name was not fetched successfully
3131
* @example
3232
* ```tsx
3333
* <WalletName fallbackComponent={<span>Failed to load</span>}

packages/thirdweb/src/react/web/wallets/in-app/InAppWalletConnectUI.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function InAppWalletConnectUI(props: {
5151
return <LoadingScreen />;
5252
}
5353

54-
// if the the modal starts out with the wallet's connect ui instead of wallet selector - going back to main screen requires staying on the same component and clearing the selection data
54+
// if the modal starts out with the wallet's connect ui instead of wallet selector - going back to main screen requires staying on the same component and clearing the selection data
5555
// otherwise, we go back to the wallet selector by calling props.goBack
5656
const goBackToMain = () => {
5757
if (initialScreen === props.wallet) {

packages/thirdweb/src/storage/upload/mobile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export async function uploadBatchMobile(
104104
);
105105
}
106106

107-
return reject(new Error("Unknown upload error occured"));
107+
return reject(new Error("Unknown upload error occurred"));
108108
});
109109

110110
xhr.open("POST", `https://${getThirdwebDomains().storage}/ipfs/upload`);

0 commit comments

Comments
 (0)