Skip to content

Commit c3a362d

Browse files
committed
minor edits
1 parent cdb9eb8 commit c3a362d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

delegation-toolkit/guides/delegation/execute-on-users-behalf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You'll complete the delegation lifecycle (create, sign, and redeem a delegation)
2323
### 1. Create a Public Client
2424

2525
Create a [Viem Public Client](https://viem.sh/docs/clients/public) using Viem's `createPublicClient` function.
26-
Your dapp can use the Public Client to query the signer's account state and interact with smart contracts.
26+
You will configure Alice's account (the delegator) and the Bundler Client with the Public Client, which you can use to query the signer's account state and interact with smart contracts.
2727

2828
```typescript
2929
import { createPublicClient, http } from "viem"
@@ -38,7 +38,7 @@ const publicClient = createPublicClient({
3838
### 2. Create a Bundler Client
3939

4040
Create a [Viem Bundler Client](https://viem.sh/account-abstraction/clients/bundler) using Viem's `createBundlerClient` function.
41-
Your dapp can use the bundler service to estimate gas for user operations and submit transactions to the network.
41+
You can use the bundler service to estimate gas for user operations and submit transactions to the network.
4242

4343
```typescript
4444
import { createBundlerClient } from "viem/account-abstraction"

0 commit comments

Comments
 (0)