Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. /* eslint-disable */
  2. import web3 from './web3';
  3.  
  4. const address = 'Paste the Instance Address Here';
  5. const abi = // Paste the ABI Code Here
  6.  
  7. const instance = new web3.eth.Contract(abi, address);
  8.  
  9. export default instance;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement