Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add WebSocket subscription support #167

Merged

Conversation

joaop21
Copy link
Contributor

@joaop21 joaop21 commented Feb 24, 2025

This PR adds WebSocket subscription support, allowing users to subscribe to blockchain events such as new blocks, contract logs, and pending transactions.

Key changes:

  • Implemented WebSocket subscription and unsubscription functionality
  • Added support for multiple subscription types:
    • newHeads (new block headers)
    • logs (contract events with filtering)
    • newPendingTransactions
  • Updated documentation with comprehensive WebSocket subscription examples
  • Added new WebSocket-specific RPC methods to the documentation

Important Note:
Subscription events are delivered directly to the subscribing process's mailbox.
The process that calls subscribe/2 will receive the events as messages.

Example usage:

# Subscribe to new blocks
{:ok, sub_id} = Ethereumex.WebsocketClient.subscribe(:newHeads)

# Events will be delivered to the current process's mailbox
receive do
  %{
    "method" => "eth_subscription",
    "params" => %{
      "subscription" => ^sub_id,  # Pattern match on the subscription ID
      "result" => block_data
    }
  } -> 
    # Handle the new block data
    handle_block(block_data)
end

@ayrat555
Copy link
Member

@joaop21 thank you!

@ayrat555 ayrat555 merged commit 3d22bf6 into mana-ethereum:master Feb 27, 2025
7 checks passed
@joaop21 joaop21 deleted the js/add-support-for-ws-subscriptions branch March 25, 2025 23:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants