web3.js 267 B

12345678910
  1. const pify = require('pify');
  2. const ethAsync = pify(web3.eth);
  3. module.exports = {
  4. ethGetBalance: ethAsync.getBalance,
  5. ethGetBlock: ethAsync.getBlock,
  6. ethGetTransactionReceipt: ethAsync.getTransactionReceipt,
  7. ethSendTransaction: ethAsync.sendTransaction,
  8. };