Sort:  

我主要是想遍历出所有的customJson,查它好像只有这个方法吧

可以这样写,先读取最早的100个记录,然后读取100-200,然后200-300,300-400,直到没有记录

getAccountHistory('ericet',100,100);

function getAccountHistory(account,from,limit){
steem.api.getAccountHistory(account,from,limit,function(err,result){
if(result.length-1==limit){
    getAccountHistory(account,from+limit,limit);
}

});
}

Coin Marketplace

STEEM 0.16
TRX 0.12
JST 0.026
BTC 57110.78
ETH 2521.26
USDT 1.00
SBD 2.32