From 707e5ae30b6eed31480732540dae3a035bf8d3ef Mon Sep 17 00:00:00 2001 From: vhtgzzl <317591381+vhtgzzl@users.noreply.github.com> Date: Wed, 19 Aug 2026 11:00:37 +0300 Subject: [PATCH] fix(base-account): remove dangling code fences and add missing frontmatter description in provider RPC reference docs --- .../eth_getBlockTransactionCountByHash.mdx | 2 -- .../reference/core/provider-rpc-methods/eth_getStorageAt.mdx | 2 -- .../eth_getTransactionByBlockHashAndIndex.mdx | 4 ---- .../eth_getTransactionByBlockNumberAndIndex.mdx | 4 ---- .../provider-rpc-methods/eth_getUncleCountByBlockHash.mdx | 2 -- .../provider-rpc-methods/eth_getUncleCountByBlockNumber.mdx | 2 -- .../reference/core/provider-rpc-methods/request-overview.mdx | 1 + 7 files changed, 1 insertion(+), 16 deletions(-) diff --git a/docs/base-account/reference/core/provider-rpc-methods/eth_getBlockTransactionCountByHash.mdx b/docs/base-account/reference/core/provider-rpc-methods/eth_getBlockTransactionCountByHash.mdx index 9f4cbb47e..636436382 100644 --- a/docs/base-account/reference/core/provider-rpc-methods/eth_getBlockTransactionCountByHash.mdx +++ b/docs/base-account/reference/core/provider-rpc-methods/eth_getBlockTransactionCountByHash.mdx @@ -62,5 +62,3 @@ The number of transactions in this block as a hexadecimal string. This method returns the count of transactions in a specific block identified by its hash. - -``` diff --git a/docs/base-account/reference/core/provider-rpc-methods/eth_getStorageAt.mdx b/docs/base-account/reference/core/provider-rpc-methods/eth_getStorageAt.mdx index 430946836..f0027aadc 100644 --- a/docs/base-account/reference/core/provider-rpc-methods/eth_getStorageAt.mdx +++ b/docs/base-account/reference/core/provider-rpc-methods/eth_getStorageAt.mdx @@ -65,5 +65,3 @@ The value at this storage position as a hexadecimal string. Storage positions start at 0x0. The result is a 32-byte hexadecimal value representing the data stored at that position. -``` - diff --git a/docs/base-account/reference/core/provider-rpc-methods/eth_getTransactionByBlockHashAndIndex.mdx b/docs/base-account/reference/core/provider-rpc-methods/eth_getTransactionByBlockHashAndIndex.mdx index 682f8cfec..f40befac7 100644 --- a/docs/base-account/reference/core/provider-rpc-methods/eth_getTransactionByBlockHashAndIndex.mdx +++ b/docs/base-account/reference/core/provider-rpc-methods/eth_getTransactionByBlockHashAndIndex.mdx @@ -140,7 +140,3 @@ ECDSA signature s. Transaction indices start at 0x0 for the first transaction in a block. If the index exceeds the number of transactions in the block, null is returned. - -``` - -``` diff --git a/docs/base-account/reference/core/provider-rpc-methods/eth_getTransactionByBlockNumberAndIndex.mdx b/docs/base-account/reference/core/provider-rpc-methods/eth_getTransactionByBlockNumberAndIndex.mdx index e871b7823..5c52ff6cd 100644 --- a/docs/base-account/reference/core/provider-rpc-methods/eth_getTransactionByBlockNumberAndIndex.mdx +++ b/docs/base-account/reference/core/provider-rpc-methods/eth_getTransactionByBlockNumberAndIndex.mdx @@ -152,7 +152,3 @@ ECDSA signature s. Transaction indices start at 0x0 for the first transaction in a block. If the index exceeds the number of transactions, null is returned. - -``` - -``` diff --git a/docs/base-account/reference/core/provider-rpc-methods/eth_getUncleCountByBlockHash.mdx b/docs/base-account/reference/core/provider-rpc-methods/eth_getUncleCountByBlockHash.mdx index 4b29e3401..897a9c968 100644 --- a/docs/base-account/reference/core/provider-rpc-methods/eth_getUncleCountByBlockHash.mdx +++ b/docs/base-account/reference/core/provider-rpc-methods/eth_getUncleCountByBlockHash.mdx @@ -63,5 +63,3 @@ The number of uncles in this block as a hexadecimal string. Uncle blocks are blocks that were mined but not included in the main blockchain. This method returns their count for a specific block. -``` - diff --git a/docs/base-account/reference/core/provider-rpc-methods/eth_getUncleCountByBlockNumber.mdx b/docs/base-account/reference/core/provider-rpc-methods/eth_getUncleCountByBlockNumber.mdx index bd61b0bf9..250871fa9 100644 --- a/docs/base-account/reference/core/provider-rpc-methods/eth_getUncleCountByBlockNumber.mdx +++ b/docs/base-account/reference/core/provider-rpc-methods/eth_getUncleCountByBlockNumber.mdx @@ -73,5 +73,3 @@ The number of uncles in this block as a hexadecimal string. Uncle blocks are blocks that were mined but not included in the main blockchain. This method returns their count for a specific block number. - -``` diff --git a/docs/base-account/reference/core/provider-rpc-methods/request-overview.mdx b/docs/base-account/reference/core/provider-rpc-methods/request-overview.mdx index 01263f22b..78c036c25 100644 --- a/docs/base-account/reference/core/provider-rpc-methods/request-overview.mdx +++ b/docs/base-account/reference/core/provider-rpc-methods/request-overview.mdx @@ -1,5 +1,6 @@ --- title: "Overview" +description: "Overview of the Base Account SDK provider request method and supported Ethereum RPC methods." --- The `request` method allows apps to make Ethereum RPC requests to the wallet.