Steem.js api comes with functions that return Promises

in #steemit7 years ago

I just found out, that steem.js comes with api calls that already return Promises. You only have to append Async to the function name and voilà:

"use strict";

const steem = require("steem");

steem.api.getAccountsAsync(["nafestw"]).then(r => {
  console.log(r[0]);
});

All the manual wrapping in promises was totally pointless...

Coin Marketplace

STEEM 0.14
TRX 0.29
JST 0.036
BTC 116887.44
ETH 2969.90
USDT 1.00
SBD 0.82