create account

Introducing SteemData - A Database Layer for STEEM by furion

View this thread on: hive.blogpeakd.comecency.com
· @furion ·
$645.78
Introducing SteemData - A Database Layer for STEEM
![](http://i.imgur.com/uAu5ST4.jpg)

## Why 
The goal of the SteemData project is to make data from the STEEM blockchain more accessible to developers, researchers and 3rd party services.

Today, most apps use `steemd` as the source of data. In this context, steemd is used for fetching information about the blockchain itself, requesting blocks, and fetching recent content (ie. new blog posts from a user, homepage feed, etc.)

Unfortunately it also comes with a few shortcomings.

Running steemd locally is very hard, due to its growing RAM requirements. (None of my computers are capable of running it). Which means that we have to rely on remote RPC's,  and that brings up another issue: *time*.

It takes a long time for a round trip request to a remote RPC server (sometimes more than 1 second per request).

Because steemd was never intended for running queries, aggregates, map-reduce, text search, it is not very well equipped to deal with historic data. If we are interested in historic data, we have to get it block-by-block form the remote RPC, which takes a really really long time.

For example, fetching the data required to create a [monthly STEEM report](https://steemit.com/stats/@furion/a-collection-of-steem-stats-for-october) now takes more than a week. This is simply not feasible.

## Hello MongoDB
I have chosen MongoDB for this project for a couple of reasons:
- Mongo is a document-based database, which is great for storing unstructured (schema-less) data.
- Mongo has a powerful and expressive query language, ability to run aggregate queries and javascript functions directly in its shell (for example: map-reduce pattern).
- By utilizing Mongo's Oplog we can 'subscribe' to new data as well as database changes. This is useful for creating real-time applications.
- Steemit Inc is already developing a MySQL based solution, and Microsoft SQL solution exists on http://steemsql.com/


## Server
I have setup a preview version of the database as a service. You can access it on:
```
Host: mongo0.steemdata.com
Port: 27017

Database: Steem
Username: steemit
Password: steemit
```
The steemit user account is **read-only**.

I highly recommend [RoboMongo](https://robomongo.org/) as a GUI utility for experimenting with the database.

![](http://i.imgur.com/lRSpXG1.png)

After you're connected, you can run queries against any collection like this:
![](http://i.imgur.com/LjIa5KL.png)

# Data Layout

## Accounts
Accounts contains Steem Accounts and their:
- account info / profile
- balances
- vesting routes
- open conversion requests
- voting history on posts
- a list of followers and followings
- witness votes
- curation stats


**Example**
Find all Steemit users that have at least 500 followers, less than $50,000 SBD in cash, have set their profile picture, and follow me (@furion) on Steemit.
```
db.getCollection('Accounts').find({
    'followers_count': {'$gt': 500},
    'balances.SBD': {'$lte': 50000},
    'profile.profile_image': {'$exists': true},
    'following': {'$in': ['furion']},
    })
```

## Posts
Posts provide us with easy to query post objects, and include content, metadata, and a few added helpers. They also come with all the `replies`, which are also full Post objects.

**A few extra niceties:**
- `body` field supports Full Text Search
- timestamps are parsed as native ISO dates
- amounts are parsed as Amount objects

**Example**
Find all Posts by @steemsports from October, which have raised at least $200.5 in post rewards and have more than 20 comments and mention @theprophet0 in the metadata.
```
db.getCollection('Posts').find({
    'author': 'steemsports',
    'created': {
        '$gte': ISODate('2016-10-01 00:00:00.000Z'),
        '$lt': ISODate('2016-11-01 00:00:00.000Z'),
     },
     'total_payout_reward.amount': {'$gte': 200.5},
     '$where':'this.replies.length>20',
     'json_metadata.people': {'$in': ['theprophet0']},
    })
```

**Example 2**
Find all posts which mention *meteor* in their body:
```
db.getCollection('Posts').find({'$text': {'$search': 'meteor'}})
```

## Operations
Operations represent the *entire blockchain*, as seen trough a time series of individual actions, such as:
```
operation_types = [
    'vote', 'comment_options', 'delete_comment', 'account_create', 'account_update',
    'limit_order_create', 'limit_order_cancel',
    'transfer', 'transfer_to_vesting', 'withdraw_vesting', 'convert', 'set_withdraw_vesting_route',
    'pow', 'pow2', 'feed_publish', 'witness_update',
    'account_witness_vote', 'account_witness_proxy',
    'recover_account', 'request_account_recovery', 'change_recovery_account',
    'custom', 'custom_json'
]
```

Operations have the same structure as on the Blockchain, but come with a few extra fields, such as `timestamp`, `type` and `block_num`.

**Example**
Find all *transfers* in block *6717326*.
```
db.getCollection('Operations').find({'type':'transfer', 'block_num': 6717326})
```

We get 1 result:
```
{
    "_id" : ObjectId("584eac2fd6194c5ab027f671"),
    "from" : "bittrex",
    "to" : "poloniex",
    "type" : "transfer",
    "timestamp" : "2016-11-14T13:21:30",
    "block_num" : 6717326,
    "amount" : "466.319 STEEM",
    "memo" : "83ad5b2c56448d45"
}
```

## VirtualOperations
Virtual Operations represent all actions performed by individual accounts, such as:
```
    types = {
        'account_create',
        'account_update',
        'account_witness_vote',
        'comment',
        'delete_comment',
        'comment_reward',
        'author_reward',
        'convert',
        'curate_reward',
        'curation_reward',
        'fill_order',
        'fill_vesting_withdraw',
        'fill_convert_request',
        'set_withdraw_vesting_route',
        'interest',
        'limit_order_cancel',
        'limit_order_create',
        'transfer',
        'transfer_to_vesting',
        'vote',
        'witness_update',
        'account_witness_proxy',
        'feed_publish',
        'pow', 'pow2',
        'liquidity_reward',
        'withdraw_vesting',
        'transfer_to_savings',
        'transfer_from_savings',
        'cancel_transfer_from_savings',
        'custom',
    }
```

Operations have the same structure as in the steemd database, but come with a few extra fields, such as `account`, `timestamp`, `type`, `index` and `trx_id`.

**Example:**
Query all transfers from @steemsports to @furion in the past month.
```
db.getCollection('VirtualOperations').find({
    'account': 'steemsports',
    'type': 'transfer',
    'to': 'furion',
    'timestamp': {
        '$gte': ISODate('2016-10-01 00:00:00.000Z'),
        '$lt': ISODate('2016-11-01 00:00:00.000Z'),
    }})
```

## TODO
* [] Historic 3rd party price feeds (partially done)
* [] add Indexes based on usage patterns (partially done)
* [] parse more values into native data types
* [] create relationships using HRefs
* [] Create Open-Source Server (Python+Docker based)
* [] Create Open-Source Client Libraries (Python, JS?)


## Looking for feedback and testers
I would love to get community feedback on the database structure, as well as feature requests. 

If you're a hacker, and have a cool app idea, feel free to use the public mongo endpoint provided by [steemdata.com](https://steemdata.com)


## Expansion Ideas
I would love to expand this service to PostgreSQL as well as build a https://steemdata.com portal with useful utilities, statistics and charts.


## Sponsored by SteemSports
A 32GB RAM, Quad-Core baremetal server that is powering SteemData has been kindly provided by [SteemSports](https://steemsports.com).


-------------------

<center>[![](http://i.imgur.com/5MaAhy7.png)](https://steemit.com/@furion)
Don't miss out on the next post - [follow me](https://steemit.com/@furion)
</center>

-------------------
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 512 others
properties (23)
authorfurion
permlinkintroducing-steemdata-a-database-layer-for-steem
categorysteemdata
json_metadata{"tags":["steemdata","steem","steemd","steemit"],"users":["steemsports","theprophet0","furion"],"image":["http://i.imgur.com/uAu5ST4.jpg","http://i.imgur.com/lRSpXG1.png","http://i.imgur.com/LjIa5KL.png","http://i.imgur.com/5MaAhy7.png"],"links":["https://steemit.com/stats/@furion/a-collection-of-steem-stats-for-october","http://steemsql.com/","https://robomongo.org/","https://steemdata.com","https://steemsports.com","https://steemit.com/@furion"],"app":"steemit/0.1","format":"markdown"}
created2017-01-10 18:34:24
last_update2017-01-10 18:34:24
depth0
children52
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value628.878 HBD
curator_payout_value16.898 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,777
author_reputation116,503,940,714,958
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id2,214,127
net_rshares324,383,239,463,622
author_curate_reward""
vote details (576)
@abudar ·
very interesting
properties (22)
authorabudar
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170111t103431457z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-11 10:34:33
last_update2017-01-11 10:34:33
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation43,436,046,989,517
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,219,285
net_rshares0
@andu ·
@furion: what type is the amount field in the Operations / VirtualOperations table?
How would one search for transactions above a certain amount or transactions that were in SBD etc. Tried with NumberDecimal/Float and currency: "STEEM" but to no avail..
properties (22)
authorandu
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170113t075146776z
categorysteemdata
json_metadata{"tags":["steemdata"],"users":["furion"],"app":"steemit/0.1"}
created2017-01-13 07:52:00
last_update2017-01-13 07:52:00
depth1
children2
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length253
author_reputation5,355,583,123,081
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,234,868
net_rshares0
@furion · (edited)
The amount fields in Operations/VirtualOperations are still strings unfortunately (todo: have native types everywhere for v2).

So what you have to do is query all transactions for a time period, and then filter out the ones you need in your code.

Python Example:
```
from steem.amount import Amount

filter(Amount(x['amount']).currency == 'STEEM', lambda x: Amount(x['amount']).amount > 100, db_results)
```
👍  ,
properties (23)
authorfurion
permlinkre-andu-re-furion-introducing-steemdata-a-database-layer-for-steem-20170113t091820403z
categorysteemdata
json_metadata{"tags":["steemdata"],"app":"steemit/0.1"}
created2017-01-13 09:18:21
last_update2017-01-13 09:27:30
depth2
children1
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length409
author_reputation116,503,940,714,958
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,235,201
net_rshares74,433,027,757
author_curate_reward""
vote details (2)
@andu ·
I see, ok, Thanks man!
properties (22)
authorandu
permlinkre-furion-re-andu-re-furion-introducing-steemdata-a-database-layer-for-steem-20170113t091910016z
categorysteemdata
json_metadata{"tags":["steemdata"],"app":"steemit/0.1"}
created2017-01-13 09:19:24
last_update2017-01-13 09:19:24
depth3
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation5,355,583,123,081
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,235,209
net_rshares0
@araki ·
You made my day , when i see dev tool for steemit i feel great @furion even though i don't understand more than ABC at coding  , the fact that steemit community actively involved in development make steemit a true decentralized blockchain .
thnx for the hard work , keep it up , steemit on
upvoted , followed and resteemed
👍  
properties (23)
authoraraki
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170111t093248789z
categorysteemdata
json_metadata{"tags":["steemdata"],"users":["furion"]}
created2017-01-11 09:32:48
last_update2017-01-11 09:32:48
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length322
author_reputation18,300,925,590,032
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,219,065
net_rshares1,349,536,581
author_curate_reward""
vote details (1)
@avvah ·
Does the preview version still work?  I can't seem to be able to connect.

Host: mongo0.steemdata.com
Port: 27017
👍  
properties (23)
authoravvah
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170528t011240472z
categorysteemdata
json_metadata{"tags":["steemdata"],"app":"steemit/0.1"}
created2017-05-28 01:12:39
last_update2017-05-28 01:12:39
depth1
children4
last_payout2017-06-04 01:12:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation769,439,802,936
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,872,266
net_rshares558,556,844
author_curate_reward""
vote details (1)
@furion ·
Please use the updated connect info from steemdata.com
👍  
properties (23)
authorfurion
permlinkre-avvah-re-furion-introducing-steemdata-a-database-layer-for-steem-20170528t012302693z
categorysteemdata
json_metadata{"tags":["steemdata"],"app":"steemit/0.1"}
created2017-05-28 01:23:03
last_update2017-05-28 01:23:03
depth2
children3
last_payout2017-06-04 01:23:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation116,503,940,714,958
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,872,481
net_rshares779,514,278
author_curate_reward""
vote details (1)
@avvah ·
Ok... Thanks, I'll see if I can find that.  :)
👍  
properties (23)
authoravvah
permlinkre-furion-re-avvah-re-furion-introducing-steemdata-a-database-layer-for-steem-20170528t012952963z
categorysteemdata
json_metadata{"tags":["steemdata"],"app":"steemit/0.1"}
created2017-05-28 01:29:54
last_update2017-05-28 01:29:54
depth3
children0
last_payout2017-06-04 01:29:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation769,439,802,936
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,872,648
net_rshares558,556,844
author_curate_reward""
vote details (1)
@avvah ·
Got it. Thanks so much.
👍  
properties (23)
authoravvah
permlinkre-furion-re-avvah-re-furion-introducing-steemdata-a-database-layer-for-steem-20170528t013151114z
categorysteemdata
json_metadata{"tags":["steemdata"],"app":"steemit/0.1"}
created2017-05-28 01:31:51
last_update2017-05-28 01:31:51
depth3
children0
last_payout2017-06-04 01:31:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation769,439,802,936
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,872,682
net_rshares558,556,844
author_curate_reward""
vote details (1)
@avvah · (edited)
.
👍  
properties (23)
authoravvah
permlinkre-furion-re-avvah-re-furion-introducing-steemdata-a-database-layer-for-steem-20170616t231839396z
categorysteemdata
json_metadata{"tags":"steemdata","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-06-16 23:18:39
last_update2017-06-17 23:28:15
depth3
children0
last_payout2017-06-23 23:18:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation769,439,802,936
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,049,581
net_rshares115,292,641
author_curate_reward""
vote details (1)
@barrydutton ·
No idea about all this tech stuff but it sounds nice lol--- Good job.
properties (22)
authorbarrydutton
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170110t211135575z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 21:11:36
last_update2017-01-10 21:11:36
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation333,942,309,404,197
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,215,397
net_rshares0
@choreboy ·
Very cool! Think I need to give you a follow.
properties (22)
authorchoreboy
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170111t205918238z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-11 20:58:36
last_update2017-01-11 20:58:36
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation936,090,538,366
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,223,316
net_rshares0
@dragosroua ·
Impressive.

What would be the time constraints of porting this into a Firebase backend? Having a Firebase backend mirroring the Steem blockchain would allow for real-time apps without the hassle of RPC calls. Having a little bit of both worlds.
properties (22)
authordragosroua
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170110t190252767z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 19:02:51
last_update2017-01-10 19:02:51
depth1
children4
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length245
author_reputation372,798,229,806,288
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,214,411
net_rshares0
@furion ·
I'm not familiar with Firebase, but I guess with a little bit of coding its totally feasible.

I build real-time apps with Meteor, which uses MongoDB and its oplog, however Meteor is on decline in popularity these days.
properties (22)
authorfurion
permlinkre-dragosroua-re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t194215446z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 19:42:15
last_update2017-01-10 19:42:15
depth2
children3
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation116,503,940,714,958
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,214,690
net_rshares0
@dragosroua ·
I worked a few months with Firebase (check out http://app.zentasktic.com), it's quite similar with Mongo but much faster. It's now integrated into the Google full stack of services (analytics, push notifications, admob, etc).
👍  ,
properties (23)
authordragosroua
permlinkre-furion-re-dragosroua-re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t194215446z-2017110t21453886z
categorysteemdata
json_metadata{"tags":"steemdata","app":"esteem/1.3.5","format":"markdown+html"}
created2017-01-10 19:45:06
last_update2017-01-10 19:45:06
depth3
children2
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length225
author_reputation372,798,229,806,288
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,214,714
net_rshares71,438,839,277
author_curate_reward""
vote details (2)
@ekaputri ·
very useful your posts@furion
properties (22)
authorekaputri
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170111t110935490z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-11 11:09:36
last_update2017-01-11 11:09:36
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation20,366,678,497,958
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,219,413
net_rshares0
@eric-boucher ·
Great accomplishment, thanks for sharing! All for one and one for all!!!  Namaste   :)
👍  
properties (23)
authoreric-boucher
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170110t223514876z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 22:35:15
last_update2017-01-10 22:35:15
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation68,503,601,066,539
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,215,981
net_rshares67,442,020,150
author_curate_reward""
vote details (1)
@furion · (edited)
A quick Python implementation can be seen in one of the use cases [here](https://github.com/SteemSports/Research/blob/master/Notebook/FreePlay%20winners%20for%20December%202016.ipynb)
👍  , , ,
properties (23)
authorfurion
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170110t184823880z
categorysteemdata
json_metadata{"tags":["steemdata"],"links":["https://github.com/SteemSports/Research/blob/master/Notebook/FreePlay%20winners%20for%20December%202016.ipynb"]}
created2017-01-10 18:48:24
last_update2017-01-10 18:48:48
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation116,503,940,714,958
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,214,273
net_rshares462,862,658,261
author_curate_reward""
vote details (4)
@good-karma ·
Great work and initiative, brother!

Is it being populated real-time?
👍  , , , , ,
properties (23)
authorgood-karma
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170111t052727302z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-11 05:27:27
last_update2017-01-11 05:27:27
depth1
children5
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation656,214,797,217,320
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,218,186
net_rshares203,345,698,826
author_curate_reward""
vote details (6)
@andu ·
I'm also interested to know how quickly the blockchain data gets added to the db as I have some apps in the pipeline that need a refresh quicker than SteemDB's 10 minute.
👍  , ,
properties (23)
authorandu
permlinkre-good-karma-re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t072020365z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-11 07:20:30
last_update2017-01-11 07:20:30
depth2
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length170
author_reputation5,355,583,123,081
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,218,615
net_rshares130,557,313,577
author_curate_reward""
vote details (3)
@andu ·
refreshing this in the browser: https://steemdata.com/stats seems to add up blocks every 5-10 seconds which is freaking awesome!
👍  
properties (23)
authorandu
permlinkre-good-karma-re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t075305104z
categorysteemdata
json_metadata{"tags":["steemdata"],"links":["https://steemdata.com/stats"]}
created2017-01-11 07:53:15
last_update2017-01-11 07:53:15
depth2
children3
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation5,355,583,123,081
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,218,715
net_rshares90,070,382,510
author_curate_reward""
vote details (1)
@good-karma ·
I think, there is queue for block addition it looks (15 blocks behind or so). If @furion can clarify exact numbers or way it is being populated, it would be helpful.
properties (22)
authorgood-karma
permlinkre-andu-re-good-karma-re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t075647828z
categorysteemdata
json_metadata{"tags":["steemdata"],"users":["furion"]}
created2017-01-11 07:56:48
last_update2017-01-11 07:56:48
depth3
children2
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation656,214,797,217,320
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,218,728
net_rshares0
@gutzofter ·
@furion I'm on board. Tonight
properties (22)
authorgutzofter
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170110t193907903z
categorysteemdata
json_metadata{"tags":["steemdata"],"users":["furion"]}
created2017-01-10 19:39:12
last_update2017-01-10 19:39:12
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation7,621,537,677,018
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,214,662
net_rshares0
@kingscrown ·
damn good job!
properties (22)
authorkingscrown
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170110t191600123z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 19:16:00
last_update2017-01-10 19:16:00
depth1
children1
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation2,115,151,300,228,565
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,214,515
net_rshares0
@barrydutton ·
I have no idea what you guys are talking about lol, but I am happy you are happy (:
properties (22)
authorbarrydutton
permlinkre-kingscrown-re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t211046570z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 21:10:48
last_update2017-01-10 21:10:48
depth2
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation333,942,309,404,197
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,215,389
net_rshares0
@kurtbeil · (edited)
Oh my God!  This is exactly what I needed! Promises almost killed me man! ;-)

Thank you @furion!
properties (22)
authorkurtbeil
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170111t014639802z
categorysteemdata
json_metadata{"tags":["steemdata"],"users":["furion"]}
created2017-01-11 01:46:42
last_update2017-01-11 01:48:21
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation25,700,831,936,873
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,217,083
net_rshares0
@lemouth ·
Impressive! :)
properties (22)
authorlemouth
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170111t160204514z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-11 16:02:06
last_update2017-01-11 16:02:06
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation338,011,164,701,274
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,221,204
net_rshares0
@luka.skubonja ·
Good job man :)
properties (22)
authorluka.skubonja
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170110t220537335z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 22:05:39
last_update2017-01-10 22:05:39
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation22,161,107,756,409
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,215,771
net_rshares0
@maerco ·
Good job!
I will try to play with it tomorrow!
properties (22)
authormaerco
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-2017110t223447817z
categorysteemdata
json_metadata{"tags":"steemdata","app":"esteem/1.3.6","format":"markdown+html"}
created2017-01-10 21:34:54
last_update2017-01-10 21:34:54
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation883,984,535,985
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,215,560
net_rshares0
@mikemeister ·
Looks like this is dead?
properties (22)
authormikemeister
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20181124t151055872z
categorysteemdata
json_metadata{"tags":["steemdata"],"app":"steemit/0.1"}
created2018-11-24 15:11:00
last_update2018-11-24 15:11:00
depth1
children0
last_payout2018-12-01 15:11:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation220,748,298,342
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,838,700
net_rshares0
@nogoud5 ·
Great Work Dude! Keep up on this workflow!!!
properties (22)
authornogoud5
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170617t231737371z
categorysteemdata
json_metadata{"tags":["steemdata"],"app":"steemit/0.1"}
created2017-06-17 23:17:36
last_update2017-06-17 23:17:36
depth1
children0
last_payout2017-06-24 23:17:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation99,040,916
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,132,470
net_rshares0
@normalguy ·
$0.03
Just want to know, I was trying to access the Steemit Database using the robomongo however it always was failing to connect. Is there new connection to the database ??
👍  ,
properties (23)
authornormalguy
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20180614t114928701z
categorysteemdata
json_metadata{"tags":["steemdata"],"app":"steemit/0.1"}
created2018-06-14 11:50:39
last_update2018-06-14 11:50:39
depth1
children0
last_payout2018-06-21 11:50:39
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation963,989,451,804
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id60,714,062
net_rshares10,806,890,346
author_curate_reward""
vote details (2)
@pnc ·
$0.07
Wow! this is great @furion. With SteemData, we could query Steem Blockchain and build Accounting App for  community members or even build some tools for financial education, espically in the field of micro-financing to empower the unbanked.  Congratulation.
👍  , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorpnc
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170111t051507794z
categorysteemdata
json_metadata{"tags":["steemdata"],"users":["furion"]}
created2017-01-11 05:15:09
last_update2017-01-11 05:15:09
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length257
author_reputation31,743,007,487,651
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,218,128
net_rshares1,940,754,137,625
author_curate_reward""
vote details (25)
@sailendram ·
Thank you for sharing about steemdb.  I am trying to understand steem operation and virtual operation.  Is there any reference to these operations?
 what is pow2?
properties (22)
authorsailendram
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20171110t012412181z
categorysteemdata
json_metadata{"tags":["steemdata"],"app":"steemit/0.1"}
created2017-11-10 01:24:12
last_update2017-11-10 01:24:12
depth1
children0
last_payout2017-11-17 01:24:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation71,774,746
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,914,806
net_rshares0
@saramiller ·
Way to go, @furion!
properties (22)
authorsaramiller
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170111t034148000z
categorysteemdata
json_metadata{"tags":["steemdata"],"users":["furion"]}
created2017-01-11 03:41:48
last_update2017-01-11 03:41:48
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation247,949,226,173,094
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,217,726
net_rshares0
@simonjay ·
I see very interesting thanks upped
properties (22)
authorsimonjay
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170111t003544797z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-11 00:35:48
last_update2017-01-11 00:35:48
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation79,432,694,207,847
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,216,642
net_rshares0
@smysullivan ·
Great work, thank you for your work on the project, I agree MongoDB should be extremely fast and able to handle the project with no issues.
👍  
properties (23)
authorsmysullivan
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170110t190501971z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 19:05:06
last_update2017-01-10 19:05:06
depth1
children2
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation16,261,876,135,297
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,214,427
net_rshares3,187,384,066
author_curate_reward""
vote details (1)
@barrydutton · (edited)
how do you know all this stuff lol, so much for my Steemit day off lol
👍  
properties (23)
authorbarrydutton
permlinkre-smysullivan-re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t211001375z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 21:10:03
last_update2017-01-10 21:10:21
depth2
children1
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation333,942,309,404,197
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,215,379
net_rshares9,063,328,959
author_curate_reward""
vote details (1)
@smysullivan ·
Working customer service for a large bank they run MangoDB on the back end for accounts so many cool things you can do with MangoDB.

Plus been trying to teach myself programming but not very good anymore have not been able to really work on it as of late.
properties (22)
authorsmysullivan
permlinkre-barrydutton-re-smysullivan-re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t211001375z-2017110t141310104z
categorysteemdata
json_metadata{"tags":"steemdata","app":"esteem/1.3.5","format":"markdown+html"}
created2017-01-10 21:13:15
last_update2017-01-10 21:13:15
depth3
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length256
author_reputation16,261,876,135,297
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,215,409
net_rshares0
@steemalf ·
Great job!
properties (22)
authorsteemalf
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170111t171939358z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-11 17:19:39
last_update2017-01-11 17:19:39
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation4,227,972,199,091
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,221,764
net_rshares0
@teamsteem ·
$1.28
This looks like incredibly useful. This must have been a lot of work. Good job!
👍  , ,
properties (23)
authorteamsteem
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170110t220904117z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 22:08:57
last_update2017-01-10 22:08:57
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.960 HBD
curator_payout_value0.319 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation284,804,541,406,803
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,215,801
net_rshares12,338,370,860,753
author_curate_reward""
vote details (3)
@tfhg ·
This is good.  Don't understand fully but will reread, maybe couple times :)
properties (22)
authortfhg
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170111t150151923z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-11 15:01:54
last_update2017-01-11 15:01:54
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation438,173,880,166
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,220,803
net_rshares0
@the-future ·
I might not understand everything you are saying, but this is an impressive work @furion.
👍  
properties (23)
authorthe-future
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170110t184330288z
categorysteemdata
json_metadata{"tags":["steemdata"],"users":["furion"]}
created2017-01-10 18:43:39
last_update2017-01-10 18:43:39
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation64,560,224,887,999
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,214,231
net_rshares16,396,596,430
author_curate_reward""
vote details (1)
@thebatchman ·
$1.49
Damn this is some impressive work. Thanks for opening up an query able archive for Steemit.
👍  , , , , , , ,
properties (23)
authorthebatchman
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170110t184810611z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 18:48:09
last_update2017-01-10 18:48:09
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value1.164 HBD
curator_payout_value0.322 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation10,499,752,392,175
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,214,268
net_rshares13,429,236,817,466
author_curate_reward""
vote details (8)
@thecryptodrive ·
$0.02
Well done my friend, I am proud of what you have accomplished here.
👍  
properties (23)
authorthecryptodrive
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170110t203135569z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 20:31:33
last_update2017-01-10 20:31:33
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.015 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation103,594,115,164,820
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,215,054
net_rshares703,721,426,150
author_curate_reward""
vote details (1)
@twinner ·
Well done, furion. Seems that SteemData will become my favourite SteemTool soon :-)
properties (22)
authortwinner
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170110t185702671z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 18:57:03
last_update2017-01-10 18:57:03
depth1
children1
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation67,053,192,912,359
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,214,353
net_rshares0
@furion · (edited)
I'm happy to hear  :)
properties (22)
authorfurion
permlinkre-twinner-re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t201223879z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-10 20:12:27
last_update2017-01-10 20:12:36
depth2
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation116,503,940,714,958
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,214,913
net_rshares0
@xeroc ·
pretty impressive! good job!
👍  , ,
properties (23)
authorxeroc
permlinkre-furion-introducing-steemdata-a-database-layer-for-steem-20170111t131529571z
categorysteemdata
json_metadata{"tags":["steemdata"]}
created2017-01-11 13:15:30
last_update2017-01-11 13:15:30
depth1
children0
last_payout2017-02-10 21:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation118,819,064,085,695
root_title"Introducing SteemData - A Database Layer for STEEM"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,220,133
net_rshares484,682,524,017
author_curate_reward""
vote details (3)