Conversation
🔗 Preview Mode
|
🔍 Link CheckStatus: ❌ Failed Summary
Broken links (94) — click to expandErrors per inputErrors in ./content/changelog/2026-03-26.md
Errors in ./content/wallets/pages/authentication/overview.mdx
Errors in ./content/api-reference/op-mainnet/op-mainnet-api-faq/op-mainnet-api-faq.mdx
Errors in ./content/wallets/pages/recipes/upgrade-to-smart-accounts.mdx
Errors in ./content/tutorials/alchemy-university/smart-contract-basics/multi-sig-contracts.mdx
Errors in ./content/wallets/pages/recipes/send-usdc.mdx
Errors in ./content/changelog/2026-04-09.md
Errors in ./content/api-reference/websockets/subscription-api.mdx
Errors in ./content/api-reference/hyperevm/hyperevm-api-overview.mdx
Errors in ./content/api-reference/websockets/solana-subscription-api-endpoints/solana-subscription-api-endpoints.mdx
Errors in ./content/wallets/pages/smart-wallets/quickstart/index.mdx
Errors in ./content/api-reference/arbitrum/arbitrum-api-faq/arbitrum-api-faq.mdx
Errors in ./content/changelog/2025-09-18.md
Errors in ./content/changelog/2025-08-28.md
Errors in ./content/api-reference/introduction/api-overview.mdx
Errors in ./content/wallets/pages/recipes/onramp-funds.mdx
Errors in ./content/wallets/pages/index.mdx
Errors in ./content/wallets/pages/recipes/smart-wallets-aave.mdx
Errors in ./content/api-reference/arbitrum-nova/arbitrum-nova-deprecation-notice.mdx
Errors in ./content/api-reference/katana/katana-api-overview.mdx
Errors in ./content/wallets/pages/react-native/getting-started/getting-started-rn-bare.mdx
Errors in ./content/wallets/pages/concepts/smart-account-client.mdx
Errors in ./content/wallets/pages/bundler-api/bundler-faqs.mdx
Errors in ./content/wallets/pages/smart-wallets/how-to-stamp-requests.mdx
Errors in ./content/wallets/pages/react-native/getting-started/getting-started-expo.mdx
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 1e39020c30
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
|
|
||
| <CodeGroup> | ||
| ```shell wscat | ||
| {"jsonrpc":"2.0","id":1,"method":"accountUnsubscribe","params":[subscription_id]} |
There was a problem hiding this comment.
Use valid JSON in unsubscribe request examples
The unsubscribe wscat payload is not valid JSON because subscription_id is emitted as an unquoted identifier ("params":[subscription_id]), so users who paste this directly into a WebSocket session will get a parse error instead of unsubscribing. This same pattern appears across the new Solana method pages, so these examples should use an actual numeric ID (for example, 23784) or clearly-marked placeholder JSON that remains syntactically valid.
Useful? React with 👍 / 👎.
Description
Adds a dedicated Solana Subscription API section under
content/api-reference/websockets/, mirroring the method index from Solana Foundation's PubSub reference. Each page documents one*Subscribemethod plus its paired*Unsubscribecall, withwscatand@solana/web3.jsexamples.Related Issues
Changes Made
content/api-reference/websockets/solana-subscription-api-endpoints/with:solana-subscription-api-endpoints.mdx— category-grouped index page with shared Solana PubSub request/notification format tables.account-subscribe.mdx,program-subscribe.mdx(Accounts).logs-subscribe.mdx,signature-subscribe.mdx(Transactions).root-subscribe.mdx,slot-subscribe.mdx(Cluster).title/description/subtitle/slug: reference/<kebab-case>),# Supported Networks,# Parameters,# Requestwith a<CodeGroup>(wscat+@solana/web3.jswhere available),# Result, and# Unsubscribe.content/api-reference/websockets/subscription-api.mdx:description/subtitleto mention Solana alongside Ethereum, Polygon, Arbitrum, and Optimism.## Solana subscription endpointssubsection with per-category tables linking to the 9 new method pages, plus a note that Solana uses native*Subscribe/*Unsubscribemethods (noteth_subscribe).content/docs.yml: added a newSolana Subscription API Endpointssubsection under the existingWebSocketssection (slugsolana-subscription-api-endpoints), alongside the existing EVMSubscription API Endpoints.Testing
pnpm run validate)