diff --git a/components/method-docs/ethereum/EthereumMethod_subscribe.tsx b/components/method-docs/ethereum/EthereumMethod_subscribe.tsx index 4a81543..e3c9272 100644 --- a/components/method-docs/ethereum/EthereumMethod_subscribe.tsx +++ b/components/method-docs/ethereum/EthereumMethod_subscribe.tsx @@ -208,11 +208,17 @@ const REQUEST_PARAMS: RequestParamProp = [ paramDescription: "Returns logs matching filter criteria in newly imported blocks.", }, + { + paramName: "newPendingTransactions", + type: "string", + paramDescription: + "Allows to receive real-time notifications regarding new pending transactions.", + }, { paramName: "drpc_pendingTransactions", type: "string", paramDescription: - "Allows to receive real-time notifications regarding new pending transactions. Functionality expansion is planned.", + "Allows to receive real-time notifications regarding new pending transactions with the full transaction objects.", }, ], }, @@ -245,7 +251,6 @@ const USE_CASES = [ ]; const CONSTRAINTS = [ - "drpc_pendingTransactions instead of newPendingTransaction", "Requires continuous WebSocket connection to the node", "Node must support eth_subscribe method", ]; diff --git a/pages/pricing/subscriptions/evm.mdx b/pages/pricing/subscriptions/evm.mdx index e2bf51b..4745776 100644 --- a/pages/pricing/subscriptions/evm.mdx +++ b/pages/pricing/subscriptions/evm.mdx @@ -28,7 +28,7 @@ Receive notifications for each new block added to the blockchain. Each update co **Logs (logs)** \ Filter smart contract events by address or topics. Could be used for tracking specific activities in decentralized applications (e.g., token transfers or contract state changes). -**Pending Transactions: dRPC doesn't support this type of subscription** \ +**Pending Transactions (newPendingTransactions/drpc_pendingTransactions)** \ Monitor unconfirmed transactions as they are added to the mempool. Example: Subscribe to New Blocks