diff --git a/docs-site b/docs-site
index 5499986934..9dada0e734 160000
--- a/docs-site
+++ b/docs-site
@@ -1 +1 @@
-Subproject commit 54999869347cd3de075ff6f9a350c1c5b3bdc9ef
+Subproject commit 9dada0e7348342e64282583f82c72723311dc036
diff --git a/docs/pages/recipes/programmatic-wallet-creation.mdx b/docs/pages/recipes/programmatic-wallet-creation.mdx
index efa5c49e8d..4042d83a9c 100644
--- a/docs/pages/recipes/programmatic-wallet-creation.mdx
+++ b/docs/pages/recipes/programmatic-wallet-creation.mdx
@@ -40,6 +40,7 @@ This recipe shows how to programmatically create a smart wallet: you’ll genera
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
@@ -59,7 +60,7 @@ This recipe shows how to programmatically create a smart wallet: you’ll genera
**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.
diff --git a/docs/pages/signer/authentication/server-wallets.mdx b/docs/pages/signer/authentication/server-wallets.mdx
index 7cee522324..a02b0c0a38 100644
--- a/docs/pages/signer/authentication/server-wallets.mdx
+++ b/docs/pages/signer/authentication/server-wallets.mdx
@@ -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.
+
**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.