Skip to content

Instantly share code, notes, and snippets.

Lucky Luke ('luckyluke.rb') for STEEM. Please have a look at the README.md file.
// lets see whats in block 9508058
db.getCollection('Operations').find({'block_num': 9508058})
// operation types
db.getCollection('Operations').distinct('type', {})
// find latest payments to poloniex
db.getCollection('Operations').find({type: 'transfer', to: 'poloniex'}).sort({timestamp:-1})