web3.js 221 B

1234567
  1. const pify = require('pify');
  2. const ethAsync = pify(web3.eth);
  3. export const ethGetBalance = ethAsync.getBalance;
  4. export const ethSendTransaction = ethAsync.sendTransaction;
  5. export const ethGetBlock = ethAsync.getBlock;