Guest User

Untitled

a guest
Nov 18th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. window.web3 = new Web3(
  2. new Web3.providers.HttpProvider('https://ropsten.infura.io'));
  3.  
  4. var Contract = contract.at("0x....");
  5. Contract.allEvents({fromBlock: currentBlock - 100, toBlock: 'latest'},
  6. function (evt) {
  7. console.log('evt!', evt); // this code is never run
  8. });
Add Comment
Please, Sign In to add comment