Skip to content

Commit a83fee6

Browse files
authored
Fix typos and improve documentation clarity (#5827)
Signed-off-by: Tristav <124001124+Pricstas@users.noreply.github.com>
1 parent e4fcae8 commit a83fee6

File tree

12 files changed

+12
-12
lines changed
  • apps/portal/src/app
    • cli/create
    • connect/in-app-wallet/guides/build-your-own-ui
    • contracts/modular-contracts
    • react/v5/in-app-wallet/build-your-own-ui
    • typescript/v5/client
  • packages/thirdweb/src/adapters

12 files changed

+12
-12
lines changed

apps/portal/src/app/cli/create/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ npx thirdweb create [options] [projectPath]
4646
- `--use-pnpm` - Explicitly tell the CLI to bootstrap the app using pnpm.
4747
- `--framework` - The preferred framework.
4848
- `--evm` - Initialize as an Ethereum project.
49-
- `--template` - A template to start your project from. You can use an template repository name from the official thirdweb-example org.
49+
- `--template` - A template to start your project from. You can use a template repository name from the official thirdweb-example org.
5050
- `--contract-name` - Name of the new smart contract to create.

apps/portal/src/app/connect/in-app-wallet/guides/build-your-own-ui/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const metadata = createMetadata({
2222

2323
## Low level control to authenticate and connect wallets
2424

25-
You have full control with the connection hooks and functions to build your own UI. To use in-app wallets, you first choose a authentication strategy and then connect.
25+
You have full control with the connection hooks and functions to build your own UI. To use in-app wallets, you first choose an authentication strategy and then connect.
2626

2727
## Starting from an example
2828

apps/portal/src/app/contracts/modular-contracts/modular-contracts/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ A modular contract is made up of two kinds of contracts:
6565

6666
</Callout>
6767

68-
Installing an Module in a Core customizes the Core’s behaviour in two ways:
68+
Installing a Module in a Core customizes the Core’s behaviour in two ways:
6969

7070
1. New functions become callable on the Core contract (via its [fallback function](https://docs.soliditylang.org/en/v0.8.26/contracts.html#fallback-function)).
7171
2. Core contract’s fixed functions make callback function calls into the Module.

apps/portal/src/app/contracts/modular-contracts/module-contracts/erc-1155/metadata/simpleMetadataERC1155/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const metadata = createMetadata({
1515

1616
## Description
1717

18-
The `SimpleMetadataERC1155` contract is an module that provides simple metadata functionality for ERC-1155 tokens. It inherits from `SimpleMetadataERC721` to leverage the metadata management capabilities and adapt them for ERC-1155 tokens, allowing for easy setting and retrieval of token URIs.
18+
The `SimpleMetadataERC1155` contract is a module that provides simple metadata functionality for ERC-1155 tokens. It inherits from `SimpleMetadataERC721` to leverage the metadata management capabilities and adapt them for ERC-1155 tokens, allowing for easy setting and retrieval of token URIs.
1919

2020
## Callback Functions
2121

apps/portal/src/app/contracts/modular-contracts/module-contracts/erc-1155/misc/transferableERC1155/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const metadata = createMetadata({
1414

1515
## Description
1616

17-
The `TransferableERC1155` contract is an module that provides transfer control functionality for ERC-1155 tokens. This contract allows enabling or disabling token transfers globally or for specific addresses, adding an extra layer of control over how tokens can be moved.
17+
The `TransferableERC1155` contract is a module that provides transfer control functionality for ERC-1155 tokens. This contract allows enabling or disabling token transfers globally or for specific addresses, adding an extra layer of control over how tokens can be moved.
1818

1919
<GithubButtonLink href="https://github.com/thirdweb-dev/modular-contracts/blob/dev/src/module/token/transferable/TransferableERC1155.sol" />
2020

apps/portal/src/app/contracts/modular-contracts/module-contracts/erc-20/misc/transferableERC20/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const metadata = createMetadata({
1515

1616
## Description
1717

18-
The `TransferableERC20` contract is an module that provides transfer control functionality for ERC-20 tokens. This contract allows enabling or disabling token transfers globally or for specific addresses, adding an extra layer of control over how tokens can be moved.
18+
The `TransferableERC20` contract is a module that provides transfer control functionality for ERC-20 tokens. This contract allows enabling or disabling token transfers globally or for specific addresses, adding an extra layer of control over how tokens can be moved.
1919

2020
<GithubButtonLink href="https://github.com/thirdweb-dev/modular-contracts/blob/dev/src/module/token/transferable/TransferableERC20.sol" />
2121

apps/portal/src/app/contracts/modular-contracts/module-contracts/erc-721/metadata/delayedRevealBatchMetadataERC721/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const metadata = createMetadata({
1515

1616
## Description
1717

18-
The `DelayedRevealBatchMetadataERC721` contract is an module that provides functionality for delayed reveal of metadata for ERC-721 tokens. It enables the uploading of metadata for ranges of token IDs with optional encryption, allowing tokens to be revealed at a later time with a decryption key. This is useful for scenarios where the token metadata needs to be kept secret until a specified time.
18+
The `DelayedRevealBatchMetadataERC721` contract is a module that provides functionality for delayed reveal of metadata for ERC-721 tokens. It enables the uploading of metadata for ranges of token IDs with optional encryption, allowing tokens to be revealed at a later time with a decryption key. This is useful for scenarios where the token metadata needs to be kept secret until a specified time.
1919

2020
## Callback Functions
2121

apps/portal/src/app/contracts/modular-contracts/module-contracts/erc-721/metadata/simpleMetadataERC721/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const metadata = createMetadata({
1515

1616
## Description
1717

18-
The `SimpleMetadataERC721` contract is an module that provides simple metadata functionality for ERC-721 tokens. It allows for easy setting and retrieval of token URIs, making it straightforward to manage metadata for individual tokens.
18+
The `SimpleMetadataERC721` contract is a module that provides simple metadata functionality for ERC-721 tokens. It allows for easy setting and retrieval of token URIs, making it straightforward to manage metadata for individual tokens.
1919

2020
## Callback Functions
2121

apps/portal/src/app/contracts/modular-contracts/module-contracts/erc-721/misc/transferableERC721/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const metadata = createMetadata({
1515

1616
## Description
1717

18-
The `TransferableERC721` contract is an module that provides transfer control functionality for ERC-721 tokens. This contract allows enabling or disabling token transfers globally or for specific addresses, adding an extra layer of control over how tokens can be moved.
18+
The `TransferableERC721` contract is a module that provides transfer control functionality for ERC-721 tokens. This contract allows enabling or disabling token transfers globally or for specific addresses, adding an extra layer of control over how tokens can be moved.
1919

2020
<GithubButtonLink href="https://github.com/thirdweb-dev/modular-contracts/blob/dev/src/module/token/transferable/TransferableERC721.sol" />
2121

apps/portal/src/app/react/v5/in-app-wallet/build-your-own-ui/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const metadata = createMetadata({
2323

2424
## Low level control to authenticate and connect wallets
2525

26-
You have full control with the connection hooks and functions to build your own UI. To use in-app wallets, you first choose a authentication strategy and then connect.
26+
You have full control with the connection hooks and functions to build your own UI. To use in-app wallets, you first choose an authentication strategy and then connect.
2727

2828
## Setup the ThirdwebProvider
2929

0 commit comments

Comments
 (0)