New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@mempoolnode/ws

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mempoolnode/ws

Mempool Node WebSocket NPM package. An helpful utility wrapper around the underlying connection mechanism which adds useful functionality; auto-reconnects, authentication, and an easy API to use it with.

  • 0.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

Mempool Node WebSocket For Binance Smart Chain & Ethereum

A NodeJS package to help you monitor prechain mempool data for DEXs, DAPPs, & NFTs on popular blockchains such as Binance Smart Chain(BSC) and Ethereum(ETH) via Mempool Node's WebSocket endpoint. Receive detailed decoded data.

You can either use the bundled compiled .js, or build the Typescript yourself using your own tsconfigs.

Find detailed documentation via our Developer Docs.

Quick Start

Follow these steps to connect to the Mempool WebSocket:

Step 1

Install the package npm i @mempoolnode/ws

Step 2a

Get your API Key from the Mempool Node Dashboard, if you don't have an account you can create one for free, and filter the contract address you wish to monitor it's mempool data on, available for both ETH & BSC.

Step 2b

Create an instance of the connection manager

import { connectionManager } from  "@mempoolnode/ws";

//Pass in the API Key, obtained from the Mempool Node Dashboard.
let  connection = connectionManager('{YOUR-API-KEY}');

Step 3

Start your connection, passing in a callback handler for the transaction, and an optional error message handler.

//To begin receiving decoded mempool data, start the connection
connection.start((transaction) => console.log(transaction))

Step 4

To prevent consuming your API Limits in the background, don't forget to stop your connection when finished

//Stop the connection to the Mempool WebSocket
connection.stop()

Keywords

FAQs

Package last updated on 08 Jun 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc