Skip to content

Commit b5c76eb

Browse files
committed
edits
1 parent 7e85442 commit b5c76eb

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

delegation-toolkit/concepts/erc7715.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ The ERC-7715 permissions lifecycle is as follows:
5757
The Delegation Toolkit supports [ERC-20 token permissions](../guides/erc7715/use-permissions/erc20-token.md) and
5858
[native token permissions](../guides/erc7715/use-permissions/native-token.md).
5959

60-
4. **Redeem permissions** - Once the permission is granted, the session account redeems the permission.
60+
4. **Redeem permissions** - Once the permission is granted, the session account can redeem the permission, executing on the user's behalf.
6161

6262
See [how to perform executions on a MetaMask user's behalf](../guides/erc7715/execute-on-metamask-user-behalf.md) to get started with the ERC-7715 lifecycle.

delegation-toolkit/guides/erc7715/execute-on-metamask-user-behalf.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ const sessionAccount = privateKeyToAccount("0x...");
9797

9898
### 4. Request ERC-7715 permissions
9999

100-
Request ERC-7715 permissions from the user. In this example, you'll request an ERC-20 periodic
101-
permission using the `grantPermissions` method.
100+
Request ERC-7715 permissions from the user. In this example, you'll request an
101+
[ERC-20 periodic permission](use-permissions/erc20-token.md#erc-20-periodic-permission) using the `grantPermissions` method.
102102

103103
```typescript
104104
import { sepolia as chain } from "viem/chains";
@@ -257,4 +257,9 @@ export const calldata = encodeFunctionData({
257257
```
258258

259259
</TabItem>
260-
</Tabs>
260+
</Tabs>
261+
262+
## Next steps
263+
264+
See how to configure different [ERC-20 token permissions](use-permissions/erc20-token.md) and
265+
[native token permissions](use-permissions/native-token.md).

0 commit comments

Comments
 (0)