I am using this bitcore npm package. https://bitcore.io/api/lib
And i want to monitor all the transactions over the blockchain, and read the input address, output address and amount associated with that transaction.
But I am unable to find the javascript method to invoke to accomplish this. Even i am not able to find a example for this.
I am looking for as short as something like
var someLib = require('some-bitcore-lib')
someLib.on('transaction-found', function(){
// print everything
console.log(arguments);
// do something else;
})
Any help? Where can i find that some-bitcore-lib or how can i create that in nodejs?