Skip to content

Commit 1951793

Browse files
committed
address reviewer feedback
1 parent 84e1843 commit 1951793

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

delegation-toolkit/get-started/delegation-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const bundlerClient = createBundlerClient({
4848
### 3. Create a delegator account
4949

5050
Create an account to represent Alice, the delegator who will create a delegation.
51-
The delegator must be a [smart account](../concepts/smart-accounts.md).
51+
The delegator must be a [MetaMask smart account](../concepts/smart-accounts.md).
5252

5353
This example configures a Hybrid smart account,
5454
which is a flexible smart account implementation that supports both an externally owned account (EOA) owner and any number of P256 (passkey) signers:

delegation-toolkit/how-to/create-smart-account.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ import TabItem from "@theme/TabItem";
88

99
# Create a MetaMask smart account
1010

11-
The MetaMask Delegation Toolkit is embedded, meaning that the end user can instantly interact with a dapp without wallet authorization, confirmations, or corporate logos.
1211
You can enable users to create a [MetaMask smart account](../concepts/smart-accounts.md) directly in your dapp.
13-
The toolkit supports different [smart account types](../concepts/smart-accounts.md#smart-account-implementation-types),
14-
each with its own configuration and support for different signing mechanisms.
15-
1612
This page provides examples of using [`toMetaMaskSmartAccount`](../reference/api/smart-account.md#tometamasksmartaccount) with Viem Core SDK to create different types of smart accounts with different types of signatories.
1713

1814
## Prerequisites
@@ -25,7 +21,7 @@ This page provides examples of using [`toMetaMaskSmartAccount`](../reference/api
2521
A Hybrid smart account supports both an externally owned account (EOA) owner and any number of P256 (passkey) signers.
2622
You can create a Hybrid smart account with the following types of signatories.
2723

28-
### Create a Hybrid smart account with an account signatory
24+
### Create a Hybrid smart account with an Account signatory
2925

3026
Use [`toMetaMaskSmartAccount`](../reference/api/smart-account.md#tometamasksmartaccount) and Viem's [`privateKeyToAccount`](https://viem.sh/docs/accounts/local/privateKeyToAccount) to create a Hybrid smart account with a signatory from a private key:
3127

@@ -147,7 +143,7 @@ export const walletClient = createWalletClient({
147143
Use [`toMetaMaskSmartAccount`](../reference/api/smart-account.md#tometamasksmartaccount) and Viem's [`toWebAuthnAccount`](https://viem.sh/account-abstraction/accounts/webauthn) to create a Hybrid smart account with a WebAuthn Account signatory:
148144

149145
:::info Installation required
150-
To use WebAuthn, install the [Ox SDK](https://oxlib.sh/).
146+
To work with WebAuthn, install the [Ox SDK](https://oxlib.sh/).
151147
:::
152148

153149
<Tabs>
@@ -419,5 +415,5 @@ With a MetaMask smart account, you can perform the following functions:
419415

420416
- In conjunction with [Viem Account Abstraction clients](configure.md), deploy the smart account
421417
and [send user operations](send-user-operation.md).
422-
- [Sign delegations](create-delegation/index.md) that can be used to grant specific rights and permissions to other accounts.
423-
Smart accounts that sign delegations are called *delegator accounts*.
418+
- [Create delegations](create-delegation/index.md) that can be used to grant specific rights and permissions to other accounts.
419+
Smart accounts that create delegations are called *delegator accounts*.

0 commit comments

Comments
 (0)