Skip to content

Commit 911043c

Browse files
authored
fix: quick pass to fix typos (#1939)
1 parent a690c84 commit 911043c

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ aa-sdk/
1212
│ ├── docs.yml # The main configuration file that defines the documentation structure and sidebar navigation
1313
│ ├── pages/ # Contains the documentation markdown files
1414
│ ├── images/ # Contains images used in the documentation
15-
│ ├── components/ # Contains the all custom React components used in markdown
15+
│ ├── components/ # Contains all the custom React components used in markdown
1616
| ├── specs/ # Contains OpenRPC and OpenAPI spec definitions which are dereferenced during build
1717
| └── api-generators/ # Contains generators.yaml files used by Fern to reference API specs
1818
└── docs-site/ # Git Submodule containing Fern and all non-wallet docs content

docs/pages/reference/account-kit/infra/functions/isAlchemyTransport.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ slug: wallets/reference/account-kit/infra/functions/isAlchemyTransport
77

88
A type guard for the transport to determine if it is an Alchemy transport.
99
Used in cases where we would like to do switching depending on the transport, where there used
10-
to be two clients for a alchemy and a non alchemy, and with this switch we don't need the two seperate clients. \*
10+
to be two clients for an alchemy and a non alchemy, and with this switch we don't need the two separate clients. \*
1111

1212
## Import
1313

docs/pages/signer/as-an-eoa.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ slug: wallets/signer/as-an-eoa
99
sponsorship, batched transactions, multi-owner, or plugins. If you want to
1010
switch from EOA to smart accounts later, then each user will need to transfer
1111
their assets from the EOA account to a new smart account. It is not currently
12-
possible to "upgrade" and EOA to a smart contract account, although the
12+
possible to "upgrade" an EOA to a smart contract account, although the
1313
community is discussing potential
1414
[EIPs](https://eips.ethereum.org/EIPS/eip-7377) to do that in the future.
1515
</Warning>

docs/pages/signer/authentication/auth0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You’ll also be able to select the attributes and permissions you will be reque
1616

1717
<img
1818
src="/images/wallets/auth0-config.png"
19-
alt="Configure Github auth provider settings Auth0"
19+
alt="Configure GitHub auth provider settings Auth0"
2020
/>
2121

2222
Also on this page, note the “Name” field containing “github”. This will be used later as a variable in adding authentication to your app.

docs/pages/smart-contracts/other-accounts/light-account/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ Multi-Owner Light Account uses v0.7 of the entry point.
2929
## Developer links
3030

3131
- [Light Account deployment addresses](/wallets/smart-contracts/deployed-addresses)
32-
- [Light Account Github repo](https://github.com/alchemyplatform/light-account)
32+
- [Light Account GitHub repo](https://github.com/alchemyplatform/light-account)
3333
- [Quantstamp audit report](https://github.com/alchemyplatform/light-account/blob/develop/audits/2024-04-26_quantstamp_93f46a2.pdf)

docs/pages/smart-contracts/other-accounts/modular-account/session-keys/supported-permissions.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,21 @@ Note that the gas limit is tracked in terms of native token units (wei), not in
3636

3737
Permissions start with the following default values:
3838

39-
| Permission | Default Value |
40-
| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ |
41-
| Access control list | Type: allowlist <br /> The list starts empty. When the allowlist is empty, all calls will be denied. |
42-
| Time range | Unlimited |
43-
| Native token spend limit | 0 <br /> This means all calls spending the native token will be denied, unless the limit is updated or removed. |
44-
| ERC-20 spend limit | Unset. If you want to enabled an ERC-20 spend limit, add the ERC-20 token contract to the access control list and set the spending limit amount. |
45-
| Gas spend limits | Unset. When defining the session key’s permissions, you should specify either a gas spending limit or a required paymaster. |
39+
| Permission | Default Value |
40+
| ------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------- |
41+
| Access control list | Type: allowlist <br /> The list starts empty. When the allowlist is empty, all calls will be denied. |
42+
| Time range | Unlimited |
43+
| Native token spend limit | 0 <br /> This means all calls spending the native token will be denied, unless the limit is updated or removed. |
44+
| ERC-20 spend limit | Unset. If you want to enable an ERC-20 spend limit, add the ERC-20 token contract to the access control list and set the spending limit amount. |
45+
| Gas spend limits | Unset. When defining the session key’s permissions, you should specify either a gas spending limit or a required paymaster. |
4646

4747
## Using the PermissionsBuilder
4848

4949
To construct the data to set a key's permissions, you will need to use the `SessionKeyPermissionBuilder` class. This will allow you to specify a series of updates, and when complete, you may generate the encoded data to perform all updates at once.
5050

5151
The permissions data may be specified in 3 places:
5252

53-
- In the Session Key Plugin's `onInstall` data, setting the intial permissions for a session key added at install time.
53+
- In the Session Key Plugin's `onInstall` data, setting the initial permissions for a session key added at install time.
5454
- As data for the initial permissions of a session key added via `addSessionKey`.
5555
- As a parameter to the `updateKeyPermissions` function, to change the permissions of an existing key.
5656

0 commit comments

Comments
 (0)