Skip to content

Commit ffcd050

Browse files
committed
address some reviewer comments
1 parent 7bb0474 commit ffcd050

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

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

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const bundlerClient = createBundlerClient({
4848

4949
### 3. Create a delegator account
5050

51-
Create an account to represent Alice, the delegator who will set up the delegation.
51+
Create an account to represent Alice, the delegator who will create a delegation.
5252
The delegator must be a [smart account](../how-to/create-smart-account/index.md).
5353

5454
This example configures a [Hybrid](../concepts/smart-accounts.md#hybrid-smart-account) smart account,
@@ -96,7 +96,7 @@ const delegateSmartAccount = await toMetaMaskSmartAccount({
9696

9797
### 5. Create a delegation
9898

99-
[Create a root delegation](../how-to/create-delegation/index.md#create-a-root-delegation) from Alice to Bob.
99+
[Create a delegation](../how-to/create-delegation/index.md) from Alice to Bob.
100100

101101
This example passes an empty `caveats` array, which means Bob can perform any action on Alice's behalf. We recommend [restricting the delegation](../how-to/create-delegation/restrict-delegation.md) by adding caveat enforcers.
102102
For example, Alice can delegate the ability to sepnd her USDC to Bob, limiting the amount to 100 USDC.
@@ -166,3 +166,8 @@ const userOperationHash = await bundlerClient.sendUserOperation({
166166
maxPriorityFeePerGas: 1n,
167167
})
168168
```
169+
170+
:::note
171+
If Bob's account (the delegate account) is an externally owned account (EOA) instead of a smart account,
172+
see [how to redeem the delegation with an EOA](../how-to/redeem-delegation.md#redeem-with-an-eoa).
173+
:::

0 commit comments

Comments
 (0)