Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/pages/recipes/programmatic-wallet-creation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ This recipe shows how to programmatically create a smart wallet: you’ll genera
<Step title="Generate an access key">
Server wallets enable backend applications to programmatically control wallets using access keys, without requiring interactive authentication. This is perfect for automated systems, batch operations, or when you need to sign transactions from your backend.

Note: This access key is not the same as the [access keys](https://www.alchemy.com/docs/how-to-create-access-keys#generating-access-keys) generated in the Alchemy Dashboard. It’s specific to server wallet authentication. You must generate and securely store this key yourself.
**How server wallets work:**
- You generate a secure access key that never leaves your server
- Alchemy derives a public key from your access key for authentication
Expand All @@ -59,7 +60,7 @@ This recipe shows how to programmatically create a smart wallet: you’ll genera
<Warning>
**Critical: Save your access key securely!**

This access key is required to control your server wallet and cannot be recovered if lost. Make sure to store it in a secure location.
This access key is required to control your server wallet. Alchemy does not store it and it cannot be recovered if lost. Make sure to store it in a secure location.
</Warning>

</Step>
Expand Down
4 changes: 3 additions & 1 deletion docs/pages/signer/authentication/server-wallets.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ Get your **API key** by creating a new app in your [Alchemy Dashboard](https://d

Generate a secure access key for authentication. This key will never be sent to our servers - we'll derive a public key from it when interacting with Alchemy.

Note: This access key is not the same as the [access keys](https://www.alchemy.com/docs/how-to-create-access-keys#generating-access-keys) generated in the Alchemy Dashboard. It’s specific to server wallet authentication. You must generate and securely store this key yourself.

<Warning>
**Critical: Save your access key securely!**

This access key is required to control your server wallet and cannot be recovered if lost. Make sure to store it in a secure location.
This access key is required to control your server wallet. Alchemy does not store it and it cannot be recovered if lost. Make sure to store it in a secure location.

</Warning>

Expand Down
Loading