From 25f3bc91a36f1e8dea78aca260096cbbaf426dc5 Mon Sep 17 00:00:00 2001 From: alchemy-bot <80712764+alchemy-bot@users.noreply.github.com> Date: Mon, 29 Jun 2026 12:32:07 +0000 Subject: [PATCH] [docs-agent] Render Yellowstone gRPC subscription types as a linked table Replace the five H3 headings under 'Subscription types' with a markdown table that mirrors the sibling Subscription API overview pattern. Each subscription type is now a visibly clickable link to its detail page. Refs DOCS-129 Requested-by: @masterbd --- .../yellowstone/api-reference-overview.mdx | 21 +++++++------------ 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/content/api-reference/yellowstone/api-reference-overview.mdx b/content/api-reference/yellowstone/api-reference-overview.mdx index bc5c6de27..844fcaa65 100644 --- a/content/api-reference/yellowstone/api-reference-overview.mdx +++ b/content/api-reference/yellowstone/api-reference-overview.mdx @@ -10,17 +10,10 @@ Yellowstone gRPC provides real-time streaming of Solana blockchain data through ## Subscription types -### [Subscribe Request](/docs/reference/yellowstone-grpc-subscribe-request) -The base structure for all subscriptions. Defines filters, commitment levels, and combines multiple subscription types in a single request. - -### [Subscribe to Slots](/docs/reference/yellowstone-grpc-subscribe-slots) -Track slot progression and chain state. Essential for understanding confirmations and synchronizing with blockchain time. - -### [Subscribe to Transactions](/docs/reference/yellowstone-grpc-subscribe-transactions) -Stream transactions with filters for accounts, vote/non-vote, and success/failure status. - -### [Subscribe to Accounts](/docs/reference/yellowstone-grpc-subscribe-accounts) -Monitor account changes with filters for addresses, owners, data patterns, and balances. - -### [Subscribe to Blocks](/docs/reference/yellowstone-grpc-subscribe-blocks) -Stream complete blocks with all transactions and metadata. +| Subscription type | Description | +| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | +| [Subscribe Request](/docs/reference/yellowstone-grpc-subscribe-request) | The base structure for all subscriptions. Defines filters, commitment levels, and combines multiple subscription types in a single request. | +| [Subscribe to Slots](/docs/reference/yellowstone-grpc-subscribe-slots) | Track slot progression and chain state. Essential for understanding confirmations and synchronizing with blockchain time. | +| [Subscribe to Transactions](/docs/reference/yellowstone-grpc-subscribe-transactions) | Stream transactions with filters for accounts, vote/non-vote, and success/failure status. | +| [Subscribe to Accounts](/docs/reference/yellowstone-grpc-subscribe-accounts) | Monitor account changes with filters for addresses, owners, data patterns, and balances. | +| [Subscribe to Blocks](/docs/reference/yellowstone-grpc-subscribe-blocks) | Stream complete blocks with all transactions and metadata. |