Skip to content

Commit ccffde1

Browse files
committed
Add Next Steps sections
1 parent aff7c5f commit ccffde1

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

hacker-guides/_getting-started/authenticating-a-session/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ As covered [here](../README.md#session-signatures) in the Getting Started `READM
2020
- [Understanding the Code](#understanding-the-code)
2121
- [Creating an Ethers Signer](#creating-an-ethers-signer)
2222
- [Requesting Session Signatures](#requesting-session-signatures)
23+
- [Next Steps](#next-steps)
2324

2425

2526
## Prerequisites
@@ -123,3 +124,11 @@ Upon receiving the request, each Lit node in the network will independently auth
123124
If a node determines that the Authentication Signature is valid and authorized to delegate the `resourceAbilityRequests` to the session, it will generate a Session Signature indicating that the session is authenticated and authorized to use the specified Lit Resources and abilities.
124125

125126
After a threshold of nodes have generated Session Signatures, the Lit Network will send the Session Signatures back to your client. You will then use these Session Signatures to interact with the Lit Network, as we'll cover in other code examples in this guide.
127+
128+
## Next Steps
129+
130+
Now that you've learned how to authenticate a session with Lit, you can proceed to one of the following code examples to learn how to use a Session Signature to interact with a Lit Resource:
131+
132+
- [Encrypting and Decrypting Data](../../encryption/README.md)
133+
- [Signing data with a PKP](../../signing/README.md)
134+
- [Executing a Lit Action](../../decentralized-serverless-functions/README.md)

hacker-guides/_getting-started/connecting-to-lit/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,8 @@ To disconnect from the Lit Network, you can call the `disconnect()` method on th
6565

6666
```typescript
6767
litNodeClient!.disconnect();
68-
```
68+
```
69+
70+
## Next Steps
71+
72+
Now that you've connected to the Lit Network, you can proceed to the next code example to learn how to [authenticate a session with Lit](../authenticating-a-session/README.md).

0 commit comments

Comments
 (0)