api-xps3-core-subscriptions
v0.0.4
Published
Manages web3 subscriptions. This is an internal package for api-xps3.
Downloads
7
Readme
xps3-core-subscriptions
tus]deps-image]deps-url
This is a sub-package of xps3
This subscriptions package is used within some xps3 packages.
Please read the documentation for more.
Installation
Node.js
npm install xps3-core-subscriptionsUsage
const Web3Subscriptions = require('xps3-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(){ ... });