You are viewing a single comment's thread from:

RE: Introducing Pipes

in #steem8 years ago

If you're interested in getting the information directly, check out SteemData.

The type of query I'm using is:

db.getCollection('AccountOperations').count({type: 'transfer', to: 'null', timestamp: {'$gt': new Date(ISODate().getTime() - 1000 * 86400 * 30)}})

Which asks for the number of transfers to the null account in the past 30 days and returns 2907. You can put that query into RoboMongo.

Sort:  

Thank you! I'll use it. :wink: