Using steem.js, it is easy to iterate over all the history items of an account. However, if you have not done this before, it may be a little tricky, because there is not enough documentation on the web (or maybe I didn’t find it).
Anyway, steem.api.getAccountHistory
returns a promise that resolves to a batch of history items. Each item has an ID number (that starts with 1
for the first item in the history). The batch returned is sorted ascendingly, and contains limit + 1
items, starting at from
. If you want to start at the most recent item, you can give from
a value of -1
. Otherwise, from
must be larger than or equal to limit
.
Here is an example code for getting history items:
for (let from = -1, limit = 100, going = true; !!from && going; ) {
let items = await steem.api.getAccountHistory(username, from, Math.min(limit, from));
from = items[0][0] - 1;
items.reverse();
loop:
for (let item of items) {
if (someTest(item)) {
going = false;
break loop;
}
// do something with item
}
}
The loop ends if we reach the first item (hence the use of !!from
) or if someTest(item)
returns true
.
It's totally a new thing for me. Thanks for sharing this important information.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I didn't know about it. But i am interested to know about it.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
nice ♥
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
your are really good at programming, i also like progaramming , l like c language
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Good writing.Its help us .
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Sir! Is your account hacked? 3 consecutive posts other than idioms? Never seen it before~!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I am going to post more content like this. I am currently doing a programming project and I will be posting some of the tips that I think may be useful.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
@originalworks.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I do have an interest in computer programming but it takes too much time to get used to it. But after all its worth to give time to learn it.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Helpful post...
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
You are doing a lot of good work. It looks very good to me because of your work. You are teaching us Persian language very much.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Wonderful and informative technology. Excellent post.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Really great post
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
very interesting good post @ghasemkiani
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Wow...Amazing post..I appreciate technology..I like javascript.thanks for share...
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
very nice technology my dear friend @ghasemkiani
Thanks for this post,,
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks for this programming tutorial.Javascript is very useful for all browser,and huge app.
Carry on you activity
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Its very good lesson for us and this post very useful.
Thabks sir @ghasemkiani for sharing information post.
Stay blessed
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
nice post friends with beautiful article.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Helpful post thanks for information @ghasemkiani
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks for your educative post
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I need to know more about it, this is era of technology and we need to be informed. Please I need more tutorial from you thanks
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
good post
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
hi my dear friend @ghasemkiani.
Now I began to think hard about posting idioms.
my post is not desirable as posting idioms you my friend @ghasemkiani.
I hope your help for idiom posting tricks in order to follow your footsteps.
Thanks so much :)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Its very interesting and informative blog. Its very nice steeming
All the best
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
nice post dear @ghasemkiani. i miss you all time your post
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Very useful tutorial on javascript.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
That a great post. its a helpfull for us.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thats a great sir..I appreciate ...
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
its pretty helpful. btw jquery could be more shorter... anyway great work
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Helpful for us.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
i like this technology thanks for sharing i within for you next post best of luck..
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Nice post. i like this technology thanks for sharing. @ghasemkiani
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
wow , you create a new kind of post.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
nice
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hallo my friend @ghamsekiani
Your posts are very good
I like it ...
If you do not mind upvote my post too: https://www.steemit.com/sports/@mahyul/join-madrid-neymar-ready-to-be-paid-cheap
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
nice....helpfull post...thanks
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
You got a 0.78% upvote from @postpromoter courtesy of @ghasemkiani! Want to promote your posts too? Check out the Steem Bot Tracker website for more info. If you would like to support development of @postpromoter and the bot tracker please vote for @yabapmatt for witness!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit