web3-core-subscriptions
TypeScript icon, indicating that this package has built-in type declarations

1.10.3 • Public • Published

web3-core-subscriptions

NPM Package

This is a sub-package of web3.js

This subscriptions package is used within some web3.js packages.

Please read the documentation for more.

Installation

You can install the package either using NPM or using Yarn

Using NPM

npm install web3-core-subscriptions

Using Yarn

yarn add web3-core-subscriptions

Usage

const Web3Subscriptions = require('web3-core-subscriptions');

const sub = new Web3Subscriptions({
    name: 'subscribe',
    type: 'eth',
    subscriptions: {
        'newBlockHeaders': {
            subscriptionName: 'newHeads',
            params: 0,
            outputFormatter: formatters.outputBlockFormatter
        },
        'pendingTransactions': {
            params: 0,
            outputFormatter: formatters.outputTransactionFormatter
        }
    }
});
sub.attachToObject(myCoolLib);

myCoolLib.subscribe('newBlockHeaders', function(){ ... });

Readme

Keywords

none

Package Sidebar

Install

npm i web3-core-subscriptions

Weekly Downloads

402,676

Version

1.10.3

License

LGPL-3.0

Unpacked Size

32.4 kB

Total Files

12

Last publish

Collaborators

  • luu-alex
  • mpetrunic
  • jdevcs
  • gregthegreek