Guest User

Untitled

a guest
Jun 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. let currentAccount;
  2. web3.eth.getAccounts((err, accounts) => {
  3. if (err) reject(err);
  4. else if (!accounts.length) reject('No Metamask accounts found');
  5. else {
  6. currentAccount = accounts[0];
  7. ... do whetever with it ....
  8. }
  9. });
Add Comment
Please, Sign In to add comment