Guest User

Untitled

a guest
Jun 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. var web3 = new Web3('wss://mainnet.infura.io/_ws');
  2.  
  3. subscription = web3.eth.subscribe('pendingTransactions', function (error, result) {})
  4. .on("data", function (transactionHash) {
  5. web3.eth.getTransaction(transactionHash)
  6. .then(function (transaction) {
  7. console.log(transaction);
  8. });
  9. })
Add Comment
Please, Sign In to add comment