From 6c5cbe6987e197295ee82f61acd70966a962b25e Mon Sep 17 00:00:00 2001 From: alchemy-bot <80712764+alchemy-bot@users.noreply.github.com> Date: Mon, 14 Sep 2026 09:17:13 +0000 Subject: [PATCH] [docs-agent] Note plan availability for historical getAccountInfo on Solana Extend the Solana getAccountInfo OpenRPC description with a note that historical reads via the Account Archive params (slot, lastUpdateBeforeSlot, firstUpdateAfterSlot) require a paid Alchemy plan (pay-as-you-go or enterprise). Latest-state getAccountInfo (without those params) stays available on all plans. Phrasing follows the precedent set for Jito bundle methods in _components/custom/methods.yaml. Refs DOCS-224 Requested-by: @pgtodoroffalch --- src/openrpc/chains/_components/solana/methods.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/openrpc/chains/_components/solana/methods.yaml b/src/openrpc/chains/_components/solana/methods.yaml index 7a6c2fc18..69be08fbe 100644 --- a/src/openrpc/chains/_components/solana/methods.yaml +++ b/src/openrpc/chains/_components/solana/methods.yaml @@ -2,7 +2,15 @@ components: methods: getAccountInfo: name: getAccountInfo - description: Returns all information associated with the account of provided Pubkey. + description: >- + Returns all information associated with the account of provided Pubkey. + + + Historical reads via the [Solana Account Archive](/docs/solana/account-archive) + (the `slot`, `lastUpdateBeforeSlot`, and `firstUpdateAfterSlot` config parameters) + are available on paid Alchemy plans (pay-as-you-go or enterprise); they are not + available on the free tier. Latest-state `getAccountInfo` (without any of these + parameters) is available on all plans. x-compute-units: 10 params: - name: Pubkey