 ## 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.  After you're connected, you can run queries against any collection like this:  # 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>[](https://steemit.com/@furion) Don't miss out on the next post - [follow me](https://steemit.com/@furion) </center> -------------------
author | furion |
---|---|
permlink | introducing-steemdata-a-database-layer-for-steem |
category | steemdata |
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"} |
created | 2017-01-10 18:34:24 |
last_update | 2017-01-10 18:34:24 |
depth | 0 |
children | 52 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 628.878 HBD |
curator_payout_value | 16.898 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,777 |
author_reputation | 116,503,940,714,958 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 2,214,127 |
net_rshares | 324,383,239,463,622 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dantheman | 0 | 25,959,962,167,558 | 100% | ||
erath | 0 | 557,061,545,612 | 100% | ||
smooth | 0 | 27,739,951,371,070 | 100% | ||
anonymous | 0 | 360,011,516,235 | 100% | ||
penambang | 0 | 33,264,701,707 | 100% | ||
berkah | 0 | 96,908,229,645 | 100% | ||
hello | 0 | 105,234,079,429 | 100% | ||
summon | 0 | 12,036,421,975,149 | 100% | ||
world | 0 | 39,512,983,458 | 100% | ||
blocktrades | 0 | 49,989,574,629,028 | 100% | ||
ned | 0 | 44,065,365,806,033 | 100% | ||
jamesc | 0 | 34,569,824,639,683 | 100% | ||
fufubar1 | 0 | 57,450,897,642 | 100% | ||
modprobe | 0 | 1,048,671,264,668 | 100% | ||
riverhead | 0 | 7,113,429,724,995 | 100% | ||
wackou | 0 | 5,923,651,627,629 | 100% | ||
lafona-miner | 0 | 2,629,699,023,749 | 100% | ||
lafona | 0 | 552,607,838,194 | 100% | ||
tombstone | 0 | 19,985,261,306,506 | 100% | ||
sandra | 0 | 123,363,562,172 | 100% | ||
ihashfury | 0 | 763,808,208,195 | 100% | ||
rossco99 | 0 | 301,911,958,227 | 100% | ||
delegate.lafona | 0 | 1,394,248,414,818 | 100% | ||
liondani | 0 | 2,036,077,335,736 | 100% | ||
lafona5 | 0 | 271,425,386,400 | 100% | ||
roadscape | 0 | 8,938,212,790,676 | 100% | ||
jaewoocho | 0 | 2,669,992,327,476 | 100% | ||
boy | 0 | 4,450,573,341 | 100% | ||
xeroc | 0 | 468,073,406,873 | 100% | ||
steem-id | 0 | 83,841,778,307 | 100% | ||
bue-witness | 0 | 5,419,055,976 | 100% | ||
testz | 0 | 111,931,505,427 | 100% | ||
bunny | 0 | 877,875,613 | 100% | ||
complexring | 0 | 5,583,858,835,349 | 100% | ||
fminer05 | 0 | 146,182,863,810 | 100% | ||
clayop | 0 | 4,332,248,531,103 | 100% | ||
bue | 0 | 85,262,737,624 | 100% | ||
mini | 0 | 2,381,735,032 | 100% | ||
moon | 0 | 302,971,251 | 100% | ||
lovejoy | 0 | 263,461,477,877 | 100% | ||
bhuz | 0 | 3,162,271,090,918 | 100% | ||
aizensou | 0 | 751,140,375,783 | 100% | ||
au1nethyb1 | 0 | 847,254,828,482 | 40% | ||
mineralwasser | 0 | 1,743,325,452 | 100% | ||
boombastic | 0 | 948,581,997,061 | 100% | ||
bingo-0 | 0 | 9,594,290,063 | 100% | ||
boatymcboatface | 0 | 160,849,682,895 | 100% | ||
indominon | 0 | 214,464,764,347 | 100% | ||
pfunk | 0 | 1,434,970,679,848 | 100% | ||
pairmike | 0 | 28,472,019,423 | 100% | ||
onceuponatime | 0 | 3,989,887,263,252 | 100% | ||
marginal | 0 | 568,052,775,088 | 100% | ||
cass | 0 | 1,390,932,024,793 | 100% | ||
pheonike | 0 | 4,169,727,528 | 0.8% | ||
proctologic | 0 | 81,775,390,873 | 100% | ||
healthcare | 0 | 891,373,998 | 100% | ||
tuck-fheman | 0 | 718,694,222,451 | 100% | ||
daniel.pan | 0 | 1,407,170,400 | 100% | ||
donkeypong | 0 | 2,868,767,679,540 | 100% | ||
steemrollin | 0 | 873,630,348,691 | 100% | ||
jchch | 0 | 98,959,917,864 | 100% | ||
ash | 0 | 201,054,395,316 | 100% | ||
chitty | 0 | 304,887,983,950 | 100% | ||
ilanaakoundi | 0 | 83,045,090,882 | 100% | ||
pnc | 0 | 68,355,831,533 | 100% | ||
helen.tan | 0 | 409,328,392 | 100% | ||
bhokor | 0 | 7,507,509,683 | 100% | ||
valtr | 0 | 15,844,094,159 | 100% | ||
vitaly-lvov | 0 | 113,379,953,358 | 80% | ||
acidsun | 0 | 31,097,033,154 | 50% | ||
andzzz | 0 | 8,874,775,963 | 100% | ||
sandwich | 0 | 12,568,789,325 | 100% | ||
morning | 0 | 80,723,978,606 | 100% | ||
cyan91 | 0 | 76,259,909,945 | 100% | ||
sock | 0 | 1,187,149,560 | 10% | ||
full-measure | 0 | 102,520,628,252 | 100% | ||
kingscrown | 0 | 105,805,659,916 | 100% | ||
hipster | 0 | 763,515,946,211 | 100% | ||
spaninv | 0 | 5,476,707,824 | 100% | ||
teamsteem | 0 | 380,497,292,428 | 100% | ||
cryptoctopus | 0 | 602,641,906,659 | 75% | ||
richman | 0 | 155,030,434,809 | 100% | ||
himalayanguru | 0 | 39,600,641,034 | 100% | ||
nanzo-scoop | 0 | 1,473,579,146,446 | 100% | ||
pal | 0 | 344,429,664,479 | 100% | ||
avarice | 0 | 60,215,557,301 | 100% | ||
acidyo | 0 | 71,718,555,065 | 100% | ||
hannixx42 | 0 | 44,640,283,712 | 100% | ||
dan-atstarlite | 0 | 101,615,292,443 | 100% | ||
mummyimperfect | 0 | 159,420,853,706 | 100% | ||
klye | 0 | 160,726,310,304 | 100% | ||
kevinwong | 0 | 1,090,492,812,054 | 100% | ||
murh | 0 | 1,267,851,803 | 11% | ||
cryptofunk | 0 | 13,669,669,972 | 100% | ||
b4bb4r-5h3r | 0 | 12,151,381,548 | 100% | ||
framelalife | 0 | 16,009,890,075 | 100% | ||
blakemiles84 | 0 | 92,218,344,050 | 100% | ||
andu | 0 | 39,297,199,677 | 100% | ||
leprechaun | 0 | 920,918,401 | 100% | ||
theshell | 0 | 68,294,264,232 | 100% | ||
ak2020 | 0 | 61,232,182,396 | 100% | ||
mrsteemgarden | 0 | 275,903,026 | 100% | ||
steemgarden | 0 | 275,725,334 | 100% | ||
justtryme90 | 0 | 135,047,104,696 | 100% | ||
zebbra2014 | 0 | 6,513,474,949 | 100% | ||
eric-boucher | 0 | 67,442,020,150 | 100% | ||
pets | 0 | 261,374,568 | 100% | ||
applecrisp | 0 | 4,830,657,087 | 100% | ||
stellabelle | 0 | 1,874,408,407,609 | 100% | ||
hisnameisolllie | 0 | 215,570,442,035 | 100% | ||
pangur-ban | 0 | 1,870,033,423 | 100% | ||
ratel | 0 | 23,764,843,066 | 100% | ||
thecryptodrive | 0 | 137,602,254,921 | 100% | ||
fjccoin | 0 | 4,674,387,841 | 100% | ||
bravenewcoin | 0 | 160,245,040,089 | 100% | ||
everythink | 0 | 58,792,165,716 | 100% | ||
infovore | 0 | 894,612,691,226 | 100% | ||
facer | 0 | 78,803,685,055 | 100% | ||
beervangeer | 0 | 111,946,816,519 | 100% | ||
schro | 0 | 112,861,994,519 | 100% | ||
tobixen | 0 | 91,908,553,581 | 100% | ||
tee-em | 0 | 56,218,750,820 | 100% | ||
michaelx | 0 | 10,380,108,632 | 100% | ||
thedashguy | 0 | 148,610,367,107 | 100% | ||
proglobyte | 0 | 1,924,889,907 | 50% | ||
grandpere | 0 | 5,735,023,535 | 10% | ||
mark-waser | 0 | 48,358,303,383 | 100% | ||
albertogm | 0 | 13,551,811,603 | 100% | ||
geoffrey | 0 | 357,228,168,669 | 100% | ||
lukestokes | 0 | 366,499,354,951 | 100% | ||
christoph3 | 0 | 5,876,274,536 | 100% | ||
tyler-fletcher | 0 | 5,255,561,657 | 100% | ||
emily-cook | 0 | 56,320,938,349 | 100% | ||
gtg | 0 | 926,603,562,190 | 100% | ||
tskeene | 0 | 0 | 100% | ||
fyrstikken | 0 | 54,593,490,884 | 2% | ||
cryptoiskey | 0 | 64,500,967,200 | 100% | ||
clement | 0 | 14,461,517,250 | 100% | ||
skapaneas | 0 | 10,243,016,941 | 100% | ||
bacchist | 0 | 169,089,208,328 | 100% | ||
michaellamden68 | 0 | 2,174,824,760 | 100% | ||
ericvancewalton | 0 | 1,207,278,555,659 | 100% | ||
thebatchman | 0 | 27,883,233,364 | 100% | ||
artem-sokoloff | 0 | 4,684,594,049 | 100% | ||
asmolokalo | 0 | 523,975,498,203 | 100% | ||
britvr | 0 | 19,267,123,978 | 100% | ||
good-karma | 0 | 88,137,949,652 | 100% | ||
roelandp | 0 | 241,411,042,729 | 100% | ||
sonzweil | 0 | 276,809,211,056 | 100% | ||
yoonjang0707 | 0 | 144,554,322,890 | 100% | ||
lehard | 0 | 47,324,379,175 | 100% | ||
rubybian | 0 | 97,826,585,144 | 100% | ||
getssidetracked | 0 | 6,250,942,190 | 100% | ||
firepower | 0 | 23,546,802,005 | 21% | ||
robrigo | 0 | 293,192,761,002 | 100% | ||
trees | 0 | 1,367,787,279 | 100% | ||
strawhat | 0 | 2,101,062,500 | 100% | ||
cultura.bitcoin | 0 | 4,479,016,124 | 100% | ||
cryptochannel | 0 | 5,129,120,814 | 100% | ||
bartcant | 0 | 990,953,449 | 100% | ||
rxhector | 0 | 2,308,220,871 | 100% | ||
btcshare7 | 0 | 4,256,065,315 | 100% | ||
hammurabi | 0 | 2,945,084,570 | 37% | ||
furion | 0 | 299,505,488,966 | 100% | ||
busser | 0 | 5,281,665,188 | 100% | ||
cdubendo | 0 | 106,059,401,402 | 100% | ||
coderabbitcrypto | 0 | 8,362,927,754 | 100% | ||
knircky | 0 | 365,150,209,058 | 100% | ||
on0tole | 0 | 19,564,687,853 | 100% | ||
anasya | 0 | 42,398,412,660 | 100% | ||
mrgreen | 0 | 11,669,454,771 | 100% | ||
ausbitbank | 0 | 56,889,808,174 | 100% | ||
vl248 | 0 | 12,661,229,301 | 100% | ||
steem1653 | 0 | 5,575,052,669 | 90% | ||
sveokla | 0 | 9,264,700,056 | 100% | ||
marinabogumil | 0 | 11,506,974,192 | 100% | ||
joseph.kalu | 0 | 241,852,814 | 100% | ||
taurus | 0 | 5,615,829,863 | 100% | ||
steemit-life | 0 | 212,073,363,358 | 58% | ||
jesta | 0 | 1,787,703,652,979 | 100% | ||
bitland | 0 | 580,297,500 | 22% | ||
paco | 0 | 179,355,203,942 | 100% | ||
anmuravjev | 0 | 5,228,032,383 | 100% | ||
dwinblood | 0 | 89,893,346,306 | 100% | ||
igster | 0 | 25,223,665,540 | 100% | ||
deviedev | 0 | 28,641,566,332 | 100% | ||
jaycobbell | 0 | 11,372,341,865 | 100% | ||
juvyjabian | 0 | 15,625,967,738 | 50% | ||
raymondspeaks | 0 | 4,170,408,110 | 100% | ||
bycz | 0 | 15,911,170,331 | 100% | ||
kell234 | 0 | 3,759,582,183 | 100% | ||
karenmckersie | 0 | 23,699,218,095 | 71% | ||
pkattera | 0 | 228,551,123,151 | 100% | ||
luisucv34 | 0 | 19,587,401,245 | 100% | ||
hyiparena | 0 | 8,577,385,640 | 100% | ||
anduweb | 0 | 32,141,639,600 | 100% | ||
krystle | 0 | 17,193,326,409 | 100% | ||
inertia | 0 | 211,800,809,605 | 100% | ||
artific | 0 | 137,208,854,585 | 100% | ||
kendewitt | 0 | 79,759,763,326 | 100% | ||
lichtblick | 0 | 91,178,478,669 | 100% | ||
demotruk | 0 | 647,994,815,391 | 100% | ||
the-future | 0 | 19,315,463,381 | 100% | ||
adamt | 0 | 11,218,982,948 | 100% | ||
cryptojoy.com | 0 | 1,114,424,134 | 100% | ||
nippel66 | 0 | 20,141,195,254 | 100% | ||
konti | 0 | 10,767,422,503 | 100% | ||
phenom | 0 | 8,930,754,656 | 100% | ||
mynameisbrian | 0 | 70,401,061,383 | 100% | ||
blueorgy | 0 | 223,945,249,189 | 100% | ||
febird | 0 | 13,033,849,886 | 100% | ||
opheliafu | 0 | 176,529,792,932 | 100% | ||
calaber24p | 0 | 389,130,508,167 | 100% | ||
thylbom | 0 | 418,425,116,524 | 100% | ||
ubg | 0 | 20,599,696,237 | 100% | ||
geronimo | 0 | 6,962,290,641 | 100% | ||
bitcoiner | 0 | 49,508,661,171 | 100% | ||
tarindel | 0 | 8,791,487,776 | 100% | ||
ellamaeamor | 0 | 415,959,057 | 100% | ||
deanliu | 0 | 69,297,250,555 | 100% | ||
siol | 0 | 596,569,510 | 100% | ||
sharker | 0 | 16,753,295,210 | 100% | ||
dmitriybtc | 0 | 14,550,254,344 | 100% | ||
elmusic | 0 | 116,445,466 | 100% | ||
pokemon | 0 | 227,364,647 | 100% | ||
zaebars | 0 | 95,997,190,212 | 100% | ||
raymonjohnstone | 0 | 8,220,727,998 | 100% | ||
mysteem | 0 | 4,419,336,822 | 100% | ||
crypto.owl | 0 | 13,423,691,987 | 100% | ||
jasonpay1 | 0 | 638,614,316 | 100% | ||
clonewarz | 0 | 5,537,471,772 | 100% | ||
kooshikoo | 0 | 27,722,809,976 | 100% | ||
ace108 | 0 | 10,366,399,166 | 32% | ||
samu-paha | 0 | 263,143,259 | 100% | ||
yoganarchista | 0 | 16,396,596,430 | 100% | ||
greymass | 0 | 23,435,297,933 | 100% | ||
smailer | 0 | 82,207,871,402 | 100% | ||
tommyhansen | 0 | 76,683,501,754 | 100% | ||
fabien | 0 | 732,356,702,836 | 100% | ||
alexpmorris | 0 | 5,773,726,325 | 100% | ||
dmilash | 0 | 26,207,471,669 | 100% | ||
jamesbrown | 0 | 209,213,767,422 | 100% | ||
jed78 | 0 | 10,183,447,738 | 100% | ||
shaka | 0 | 718,895,191,137 | 100% | ||
shortcut | 0 | 81,325,544,650 | 100% | ||
steemdrive | 0 | 110,225,985,272 | 100% | ||
gomeravibz | 0 | 52,971,414,966 | 100% | ||
proglobyte-m1 | 0 | 1,915,367,933 | 30% | ||
craigslist | 0 | 604,524,819 | 100% | ||
nekromarinist | 0 | 37,012,993,852 | 100% | ||
theprophet0 | 0 | 82,990,156,331 | 100% | ||
felixxx | 0 | 63,137,033,239 | 100% | ||
tingaling | 0 | 1,583,602,219 | 25% | ||
twinner | 0 | 1,151,093,340,213 | 100% | ||
rawnetics | 0 | 15,022,098,190 | 100% | ||
always1success | 0 | 6,845,511,462 | 100% | ||
timcliff | 0 | 141,491,711,106 | 100% | ||
transhuman | 0 | 1,694,879,517 | 44% | ||
allpunk | 0 | 1,510,890,239 | 100% | ||
brendio | 0 | 26,228,535,296 | 80% | ||
asdes | 0 | 8,298,918,677 | 100% | ||
thisvsthis | 0 | 2,585,407,604,486 | 100% | ||
timsaid | 0 | 209,189,641,340 | 100% | ||
mama-steem | 0 | 2,720,284,971 | 100% | ||
mibenkito | 0 | 123,777,074,429 | 100% | ||
achim86 | 0 | 565,230,886 | 1% | ||
ullikume | 0 | 8,856,227,674 | 100% | ||
stephen.king989 | 0 | 27,559,475,971 | 100% | ||
tommycoin | 0 | 135,424,333,850 | 100% | ||
kurtbeil | 0 | 42,066,176,989 | 50% | ||
uuuhha | 0 | 23,258,333,844 | 100% | ||
romancs | 0 | 5,456,896,829 | 100% | ||
sky.max | 0 | 71,184,177 | 100% | ||
steemleak | 0 | 5,351,228,222 | 100% | ||
ipumba | 0 | 5,588,045,432 | 100% | ||
juurop | 0 | 3,657,608,042 | 100% | ||
d3nv3r | 0 | 2,726,366,064 | 100% | ||
usb | 0 | 851,119,463 | 100% | ||
tannukas6 | 0 | 3,470,768,520 | 100% | ||
ekitcho | 0 | 0 | 100% | ||
bigsambucca | 0 | 503,839,268 | 100% | ||
joele | 0 | 195,875,478,595 | 100% | ||
steemradio | 0 | 776,582,496 | 100% | ||
krishtopa | 0 | 114,923,165,769 | 100% | ||
gargon | 0 | 122,291,862,674 | 100% | ||
nonlinearone | 0 | 88,770,194,980 | 100% | ||
villainblack | 0 | 12,809,247,320 | 100% | ||
cmorton | 0 | 1,552,242,131 | 50% | ||
xcepta | 0 | 4,994,697,510 | 100% | ||
cristi | 0 | 56,404,173,187 | 100% | ||
ozbitcoin | 0 | 61,679,839 | 100% | ||
numberone | 0 | 5,835,014,938 | 100% | ||
jrcornel | 0 | 352,980,854,676 | 100% | ||
bryan-imhoff | 0 | 45,551,960,845 | 100% | ||
mrosenquist | 0 | 73,436,678,785 | 100% | ||
tommycordero | 0 | 7,467,497,128 | 100% | ||
stylezion | 0 | 145,373,572 | 100% | ||
zentat | 0 | 2,347,396,176 | 50% | ||
rivalhw | 0 | 46,906,130,362 | 100% | ||
rmach | 0 | 32,407,870,313 | 100% | ||
gardoz32 | 0 | 20,203,426,834 | 100% | ||
kyriacos | 0 | 96,685,421,931 | 100% | ||
virtualgrowth | 0 | 625,718,793 | 2% | ||
lemouth | 0 | 41,085,032,029 | 100% | ||
lamech-m | 0 | 4,689,245,421 | 100% | ||
dgarsan | 0 | 4,320,911,744 | 100% | ||
almerri | 0 | 23,082,828,157 | 100% | ||
stevescoins | 0 | 26,366,336,774 | 100% | ||
bitgate | 0 | 14,801,626,458 | 100% | ||
ripplerm | 0 | 0 | 100% | ||
awgbibb | 0 | 7,474,110,732 | 100% | ||
neptun | 0 | 343,124,307,882 | 100% | ||
jsantana | 0 | 12,111,291,028 | 50% | ||
cryptomancer | 0 | 155,533,172,301 | 100% | ||
keepdoodling | 0 | 11,752,245,437 | 100% | ||
steevc | 0 | 23,197,464,029 | 100% | ||
anarchyhasnogods | 0 | 60,497,380,200 | 100% | ||
jimmco | 0 | 186,944,317,391 | 100% | ||
rossenpavlov | 0 | 32,816,719,948 | 100% | ||
netaterra | 0 | 3,294,846,011 | 100% | ||
garywilson | 0 | 10,410,087,038 | 100% | ||
kenistyles | 0 | 2,810,623,848 | 100% | ||
joelbow | 0 | 81,053,338 | 100% | ||
craigwilliamz | 0 | 4,896,163,582 | 100% | ||
leno4ek | 0 | 2,905,454,744 | 100% | ||
oldtimer | 0 | 384,482,668,215 | 100% | ||
steemitpatina | 0 | 5,467,889,350 | 25% | ||
humanlevel | 0 | 57,378,271 | 100% | ||
onlyvoluntary | 0 | 3,126,815,594 | 100% | ||
inchonbitcoin | 0 | 383,250,320,895 | 100% | ||
steembriefing | 0 | 1,285,557,557 | 20% | ||
sauna | 0 | 2,150,019,192 | 100% | ||
franks | 0 | 22,919,380,442 | 100% | ||
etcmike | 0 | 135,886,889,938 | 50% | ||
englishtchrivy | 0 | 55,834,664,406 | 100% | ||
nulliusinverba | 0 | 3,065,863,472 | 100% | ||
ats-david | 0 | 191,027,269,775 | 100% | ||
groovedigital | 0 | 11,247,491,094 | 100% | ||
barrydutton | 0 | 24,774,803,715 | 100% | ||
stephenkendal | 0 | 10,133,380,400 | 100% | ||
charlie777pt | 0 | 5,201,206,293 | 100% | ||
uwelang | 0 | 90,359,260 | 100% | ||
richardcrill | 0 | 71,259,618,359 | 100% | ||
eight-rad | 0 | 9,313,959,791 | 100% | ||
nadin3 | 0 | 11,337,246,313 | 100% | ||
xanoxt | 0 | 41,184,045,465 | 100% | ||
davidjkelley | 0 | 2,421,346,930 | 100% | ||
aggroed | 0 | 61,666,759,702 | 100% | ||
victoriart | 0 | 18,029,663,484 | 100% | ||
l0k1 | 0 | 51,795,113,404 | 100% | ||
digital-wisdom | 0 | 21,114,304,715 | 100% | ||
ethical-ai | 0 | 5,887,045,637 | 100% | ||
saramiller | 0 | 170,659,600,915 | 100% | ||
immortalfame | 0 | 13,766,765,124 | 100% | ||
titusfrost | 0 | 19,964,071,192 | 100% | ||
jwaser | 0 | 8,355,606,530 | 100% | ||
tatianka | 0 | 4,106,754,637 | 100% | ||
zettar | 0 | 1,946,028,367 | 100% | ||
betamusic | 0 | 26,083,609,393 | 100% | ||
maarnio | 0 | 150,165,220 | 1% | ||
the-ego-is-you | 0 | 3,753,749,685 | 100% | ||
jonathanyoung | 0 | 7,475,109,369 | 100% | ||
dubi | 0 | 116,537,879,796 | 100% | ||
goose | 0 | 12,059,436,028 | 100% | ||
elena-singer | 0 | 11,894,812,791 | 100% | ||
bwaser | 0 | 2,966,867,032 | 100% | ||
renzoarg | 0 | 5,654,952,247 | 50% | ||
finleyexp | 0 | 1,084,594,562 | 100% | ||
dexter-k | 0 | 65,314,639,615 | 100% | ||
tracemayer | 0 | 16,243,720,053 | 100% | ||
littlescribe | 0 | 14,639,166,320 | 100% | ||
feruz | 0 | 172,280,357 | 100% | ||
burnin | 0 | 11,643,238,833 | 100% | ||
bestoftherest | 0 | 4,642,387,925 | 100% | ||
anton333 | 0 | 10,851,097,053 | 100% | ||
ballinconscious | 0 | 6,422,034,545 | 100% | ||
paxmagnus | 0 | 22,709,585,206 | 100% | ||
portuguesinha | 0 | 1,352,826,643 | 100% | ||
bontonstory | 0 | 20,590,534,592 | 40% | ||
inphiknit | 0 | 10,732,384,181 | 81% | ||
ellepdub | 0 | 9,401,818,524 | 100% | ||
jack8831 | 0 | 81,508,228,768 | 100% | ||
luup | 0 | 2,137,048,630 | 100% | ||
pickoum | 0 | 22,921,112,706 | 100% | ||
yangyang | 0 | 34,047,891,639 | 100% | ||
thenakedgod | 0 | 5,997,124,674 | 100% | ||
ekaterinka | 0 | 3,777,650,376 | 100% | ||
herpetologyguy | 0 | 64,161,580,484 | 100% | ||
ocrdu | 0 | 14,035,288,002 | 50% | ||
develcuy | 0 | 6,226,555,526 | 100% | ||
greatdabu | 0 | 72,311,409,289 | 100% | ||
lajulius | 0 | 9,112,240,367 | 90% | ||
jang | 0 | 10,254,528,211 | 100% | ||
morgan.waser | 0 | 5,359,166,700 | 100% | ||
steemalf | 0 | 5,739,183,891 | 100% | ||
borishaifa | 0 | 12,864,998,562 | 100% | ||
mapalatv | 0 | 3,382,262,703 | 100% | ||
cupang | 0 | 8,817,884,325 | 100% | ||
thefinanceguy | 0 | 13,861,130,470 | 100% | ||
thegame | 0 | 114,980,917 | 2% | ||
okean123 | 0 | 7,197,231,901 | 100% | ||
nil1511 | 0 | 1,929,759,553 | 100% | ||
ssekulji | 0 | 2,585,515,055 | 100% | ||
surpassinggoogle | 0 | 9,567,421,364 | 100% | ||
natord | 0 | 24,030,932,664 | 100% | ||
steembets | 0 | 105,186,957 | 2% | ||
skorek | 0 | 22,367,580,729 | 100% | ||
strong-ai | 0 | 5,862,916,294 | 100% | ||
dylanhobalart | 0 | 5,007,627,219 | 100% | ||
steemitawards | 0 | 2,236,947,749 | 100% | ||
thesteemitawards | 0 | 372,551,497 | 30% | ||
steemawards | 0 | 850,667,670 | 40% | ||
thesteemawards | 0 | 500,895,219 | 40% | ||
steemint | 0 | 1,626,926,088 | 25% | ||
htyfn | 0 | 4,355,603,278 | 100% | ||
anasz | 0 | 20,732,568,774 | 100% | ||
rusteemitblog | 0 | 11,508,366,853 | 100% | ||
abudar | 0 | 3,225,789,646 | 100% | ||
dianargenti | 0 | 4,006,890,525 | 100% | ||
pinc | 0 | 93,794,617 | 100% | ||
makis84 | 0 | 1,844,817,350 | 100% | ||
thomasp | 0 | 152,693,116 | 100% | ||
budgiebee | 0 | 732,802,727 | 100% | ||
reddust | 0 | 56,901,351,566 | 100% | ||
lydon.sipe | 0 | 14,751,894,146 | 100% | ||
gamer00 | 0 | 68,548,697,565 | 100% | ||
mikerano | 0 | 170,607,677 | 100% | ||
steemtruth | 0 | 89,153,024,198 | 100% | ||
simonjay | 0 | 7,526,170,343 | 100% | ||
marel | 0 | 2,503,387,903 | 100% | ||
paulocouto | 0 | 701,646,498 | 100% | ||
son-of-satire | 0 | 23,016,181,419 | 100% | ||
steemlift | 0 | 5,477,809,830 | 100% | ||
milank | 0 | 3,805,207,102 | 100% | ||
steemsports | 0 | 1,190,757,524,835 | 100% | ||
ryanbaer | 0 | 4,066,403,204 | 100% | ||
tomino | 0 | 143,429,701,081 | 100% | ||
frankches | 0 | 3,712,870,687 | 100% | ||
sanghkaang | 0 | 17,029,479,243 | 100% | ||
drkarl | 0 | 3,135,032,463 | 100% | ||
ianstrat | 0 | 1,848,701,085 | 100% | ||
yodbe | 0 | 143,793,569 | 100% | ||
mkdouglas | 0 | 0 | 100% | ||
sochul | 0 | 1,087,643,418,381 | 100% | ||
supergoodliving | 0 | 30,224,586,577 | 100% | ||
thejohalfiles | 0 | 5,415,394,114,285 | 88% | ||
ianboil | 0 | 2,027,876,308 | 100% | ||
dragosroua | 0 | 93,464,025,050 | 100% | ||
tablettenformat | 0 | 117,508,728 | 100% | ||
ejhaasteem | 0 | 5,143,353,109 | 100% | ||
max-max | 0 | 5,987,950,807 | 100% | ||
raluca | 0 | 6,798,568,231 | 100% | ||
sstefan | 0 | 3,559,665,565 | 40% | ||
nataliia | 0 | 726,154,225 | 100% | ||
unipsycho | 0 | 15,013,099,334 | 40% | ||
rockzu07 | 0 | 242,537,133 | 100% | ||
jejujinfarm | 0 | 174,401,633,328 | 100% | ||
amadeus | 0 | 146,102,065 | 100% | ||
steemland.com | 0 | 105,099,828 | 2% | ||
voronoi | 0 | 83,860,171,160 | 100% | ||
aunt-deb | 0 | 12,592,042,674 | 100% | ||
streetartgallery | 0 | 5,092,510,044 | 100% | ||
xl521 | 0 | 626,368,326 | 100% | ||
stevebj | 0 | 77,301,134 | 100% | ||
steemvoter | 0 | 74,740,194,050 | 100% | ||
johnathanhenry | 0 | 50,125,330 | 76% | ||
muhtadiaremi | 0 | 1,210,349,506 | 100% | ||
nigelmarkdias | 0 | 598,957,861 | 100% | ||
jfesrom | 0 | 1,316,556,471 | 33% | ||
lenny0908 | 0 | 123,506,606 | 100% | ||
teukuemiaremi | 0 | 444,558,776 | 100% | ||
gutzofter | 0 | 30,871,821,573 | 100% | ||
fosho | 0 | 242,408,783 | 40% | ||
teukumukhlis | 0 | 5,587,053,441 | 100% | ||
esteemapp | 0 | 166,924,910 | 100% | ||
smysullivan | 0 | 7,930,412,839 | 70% | ||
our | 0 | 648,015,411 | 100% | ||
chiliec | 0 | 921,388,972 | 100% | ||
steemprentice | 0 | 1,128,192,157 | 2% | ||
technoprogressiv | 0 | 5,648,986,961 | 100% | ||
steemperor | 0 | 26,064,358,770 | 100% | ||
steempire | 0 | 77,697,154,713 | 100% | ||
mafeeva | 0 | 25,647,822,142 | 100% | ||
reisman | 0 | 2,159,824,053 | 100% | ||
important | 0 | 638,067,330 | 100% | ||
government | 0 | 598,200,845 | 100% | ||
elven | 0 | 1,542,370,317 | 100% | ||
ourlifestory | 0 | 16,596,491,942 | 100% | ||
bottymcbotface | 0 | 321,227,232 | 100% | ||
practicemagic | 0 | 3,071,719,679 | 100% | ||
ekaputri | 0 | 1,176,695,303 | 100% | ||
finder | 0 | 700,111,801 | 100% | ||
writingamigo | 0 | 15,332,701,494 | 100% | ||
chappers | 0 | 24,492,913,944 | 100% | ||
steemcake | 0 | 1,257,898,984 | 100% | ||
cardboard | 0 | 2,201,564,863 | 40% | ||
richq11 | 0 | 3,705,730,912 | 71% | ||
meltmuredemons | 0 | 5,971,110,764 | 100% | ||
hammaraxx | 0 | 2,471,474,469 | 100% | ||
araki | 0 | 11,797,948,349 | 100% | ||
supremo | 0 | 554,948,664 | 100% | ||
blaha | 0 | 551,042,957 | 100% | ||
soushi888 | 0 | 2,354,001,429 | 100% | ||
tonicbbleking | 0 | 834,708,558 | 100% | ||
eaca | 0 | 533,841,050 | 100% | ||
codydeeds | 0 | 5,160,433,684 | 100% | ||
choreboy | 0 | 6,018,688,221 | 100% | ||
hulkbuster | 0 | 8,434,891,569 | 100% | ||
simply1moore | 0 | 1,656,828,137 | 100% | ||
gasgeverij | 0 | 475,254,410 | 100% | ||
throughtheglass | 0 | 1,463,581,146 | 30% | ||
huasipi | 0 | 524,942,553 | 100% | ||
tamersameeh | 0 | 294,767,482 | 100% | ||
taktoys | 0 | 4,401,001,022 | 100% | ||
quck | 0 | 4,421,962,694 | 100% | ||
ilovebatcatstew | 0 | 1,657,559,150 | 100% | ||
personz | 0 | 6,642,588,278 | 100% | ||
steemerjay | 0 | 417,820,558 | 100% | ||
drcrypto | 0 | 1,349,536,581 | 100% | ||
darth-azrael | 0 | 467,206,586 | 100% | ||
maerco | 0 | 835,683,784 | 100% | ||
vibrantsoils | 0 | 417,724,913 | 100% | ||
cryptocash | 0 | 590,384,161 | 100% | ||
oho.name | 0 | 417,695,796 | 100% | ||
rajiv | 0 | 427,040,678 | 100% | ||
barvon | 0 | 168,564,603 | 76% | ||
marieta88 | 0 | 662,224,576 | 100% | ||
tzimis | 0 | 1,368,717,869 | 100% | ||
tfhg | 0 | 412,099,015 | 100% | ||
noagenda | 0 | 2,135,249,140,432 | 100% | ||
zulfahmiaulia | 0 | 417,561,867 | 100% | ||
kobold-djawa | 0 | 935,015,152 | 100% | ||
kimji6336 | 0 | 417,528,804 | 100% | ||
nik69 | 0 | 75,778,001 | 100% | ||
martunis | 0 | 417,529,904 | 100% | ||
loreennaa | 0 | 1,901,340,734 | 100% | ||
juandemarte | 0 | 418,612,160 | 100% | ||
lukinsawyer | 0 | 2,233,630,194 | 100% | ||
erevos | 0 | 417,490,945 | 100% | ||
crzndx | 0 | 921,036,942 | 100% | ||
wr4second | 0 | 409,137,642 | 100% | ||
kansafadhilah | 0 | 446,941,899 | 100% | ||
hellhen | 0 | 359,908,468 | 100% | ||
free2play | 0 | 1,979,782,760 | 100% | ||
fisteganos | 0 | 373,334,388 | 100% | ||
georgepitsonis | 0 | 352,532,359 | 100% | ||
samsiedenstrang | 0 | 480,018,030 | 100% | ||
macaroni | 0 | 417,399,076 | 100% | ||
ajril | 0 | 417,397,585 | 100% | ||
vjysheth | 0 | 659,913,592 | 100% | ||
amazontargetz | 0 | 258,794,545 | 100% | ||
luka.skubonja | 0 | 409,037,011 | 100% | ||
ericas | 0 | 417,383,009 | 100% | ||
aaronc | 0 | 400,681,320 | 100% | ||
cat-behemoth | 0 | 409,022,853 | 100% | ||
pianosky | 0 | 417,366,607 | 100% | ||
per4ik | 0 | 417,365,272 | 100% | ||
godsatan.abdulov | 0 | 283,806,249 | 100% | ||
yuda | 0 | 417,359,051 | 100% | ||
trananhtuanqb | 0 | 417,358,349 | 100% | ||
faustiantimes | 0 | 417,357,950 | 100% | ||
oeyeso | 0 | 417,356,976 | 100% | ||
dhandho | 0 | 417,355,131 | 100% | ||
metadesigns | 0 | 417,351,642 | 100% | ||
luckyluk | 0 | 10,848,297,962 | 100% | ||
jinaa | 0 | 0 | 100% | ||
dnjsgkr11 | 0 | 0 | 100% | ||
mlong168 | 0 | 0 | 100% | ||
valencra | 0 | 0 | 100% | ||
jooyoung | 0 | 0 | 100% | ||
jabenaqui | 0 | 0 | 100% | ||
dbdecoy | 0 | 0 | 100% | ||
aneilpatel | 0 | 0 | 100% | ||
ebundala | 0 | 0 | 100% | ||
mohdmohsin | 0 | 0 | 100% | ||
laijihua | 0 | 0 | 100% |
very interesting
author | abudar |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t103431457z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-11 10:34:33 |
last_update | 2017-01-11 10:34:33 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 43,436,046,989,517 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,219,285 |
net_rshares | 0 |
@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..
author | andu |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170113t075146776z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"users":["furion"],"app":"steemit/0.1"} |
created | 2017-01-13 07:52:00 |
last_update | 2017-01-13 07:52:00 |
depth | 1 |
children | 2 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 253 |
author_reputation | 5,355,583,123,081 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,234,868 |
net_rshares | 0 |
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) ```
author | furion |
---|---|
permlink | re-andu-re-furion-introducing-steemdata-a-database-layer-for-steem-20170113t091820403z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"app":"steemit/0.1"} |
created | 2017-01-13 09:18:21 |
last_update | 2017-01-13 09:27:30 |
depth | 2 |
children | 1 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 409 |
author_reputation | 116,503,940,714,958 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,235,201 |
net_rshares | 74,433,027,757 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
andu | 0 | 40,950,588,131 | 100% | ||
anduweb | 0 | 33,482,439,626 | 100% |
I see, ok, Thanks man!
author | andu |
---|---|
permlink | re-furion-re-andu-re-furion-introducing-steemdata-a-database-layer-for-steem-20170113t091910016z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"app":"steemit/0.1"} |
created | 2017-01-13 09:19:24 |
last_update | 2017-01-13 09:19:24 |
depth | 3 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 5,355,583,123,081 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,235,209 |
net_rshares | 0 |
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
author | araki |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t093248789z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"users":["furion"]} |
created | 2017-01-11 09:32:48 |
last_update | 2017-01-11 09:32:48 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 322 |
author_reputation | 18,300,925,590,032 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,219,065 |
net_rshares | 1,349,536,581 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drcrypto | 0 | 1,349,536,581 | 100% |
Does the preview version still work? I can't seem to be able to connect. Host: mongo0.steemdata.com Port: 27017
author | avvah |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170528t011240472z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"app":"steemit/0.1"} |
created | 2017-05-28 01:12:39 |
last_update | 2017-05-28 01:12:39 |
depth | 1 |
children | 4 |
last_payout | 2017-06-04 01:12:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 113 |
author_reputation | 769,439,802,936 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,872,266 |
net_rshares | 558,556,844 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tezzajw | 0 | 558,556,844 | 100% |
Please use the updated connect info from steemdata.com
author | furion |
---|---|
permlink | re-avvah-re-furion-introducing-steemdata-a-database-layer-for-steem-20170528t012302693z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"app":"steemit/0.1"} |
created | 2017-05-28 01:23:03 |
last_update | 2017-05-28 01:23:03 |
depth | 2 |
children | 3 |
last_payout | 2017-06-04 01:23:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 116,503,940,714,958 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,872,481 |
net_rshares | 779,514,278 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
avvah | 0 | 779,514,278 | 100% |
Ok... Thanks, I'll see if I can find that. :)
author | avvah |
---|---|
permlink | re-furion-re-avvah-re-furion-introducing-steemdata-a-database-layer-for-steem-20170528t012952963z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"app":"steemit/0.1"} |
created | 2017-05-28 01:29:54 |
last_update | 2017-05-28 01:29:54 |
depth | 3 |
children | 0 |
last_payout | 2017-06-04 01:29:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 769,439,802,936 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,872,648 |
net_rshares | 558,556,844 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tezzajw | 0 | 558,556,844 | 100% |
Got it. Thanks so much.
author | avvah |
---|---|
permlink | re-furion-re-avvah-re-furion-introducing-steemdata-a-database-layer-for-steem-20170528t013151114z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"app":"steemit/0.1"} |
created | 2017-05-28 01:31:51 |
last_update | 2017-05-28 01:31:51 |
depth | 3 |
children | 0 |
last_payout | 2017-06-04 01:31:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 769,439,802,936 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,872,682 |
net_rshares | 558,556,844 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tezzajw | 0 | 558,556,844 | 100% |
.
author | avvah |
---|---|
permlink | re-furion-re-avvah-re-furion-introducing-steemdata-a-database-layer-for-steem-20170616t231839396z |
category | steemdata |
json_metadata | {"tags":"steemdata","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"} |
created | 2017-06-16 23:18:39 |
last_update | 2017-06-17 23:28:15 |
depth | 3 |
children | 0 |
last_payout | 2017-06-23 23:18:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1 |
author_reputation | 769,439,802,936 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,049,581 |
net_rshares | 115,292,641 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tezzajw | 0 | 115,292,641 | 100% |
No idea about all this tech stuff but it sounds nice lol--- Good job.
author | barrydutton |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t211135575z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 21:11:36 |
last_update | 2017-01-10 21:11:36 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 333,942,309,404,197 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,215,397 |
net_rshares | 0 |
Very cool! Think I need to give you a follow.
author | choreboy |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t205918238z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-11 20:58:36 |
last_update | 2017-01-11 20:58:36 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 936,090,538,366 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,223,316 |
net_rshares | 0 |
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.
author | dragosroua |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t190252767z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 19:02:51 |
last_update | 2017-01-10 19:02:51 |
depth | 1 |
children | 4 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 245 |
author_reputation | 372,798,229,806,288 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,214,411 |
net_rshares | 0 |
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.
author | furion |
---|---|
permlink | re-dragosroua-re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t194215446z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 19:42:15 |
last_update | 2017-01-10 19:42:15 |
depth | 2 |
children | 3 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 219 |
author_reputation | 116,503,940,714,958 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,214,690 |
net_rshares | 0 |
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).
author | dragosroua |
---|---|
permlink | re-furion-re-dragosroua-re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t194215446z-2017110t21453886z |
category | steemdata |
json_metadata | {"tags":"steemdata","app":"esteem/1.3.5","format":"markdown+html"} |
created | 2017-01-10 19:45:06 |
last_update | 2017-01-10 19:45:06 |
depth | 3 |
children | 2 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 225 |
author_reputation | 372,798,229,806,288 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,214,714 |
net_rshares | 71,438,839,277 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
andu | 0 | 39,297,199,677 | 100% | ||
anduweb | 0 | 32,141,639,600 | 100% |
very useful your posts@furion
author | ekaputri |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t110935490z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-11 11:09:36 |
last_update | 2017-01-11 11:09:36 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 20,366,678,497,958 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,219,413 |
net_rshares | 0 |
Great accomplishment, thanks for sharing! All for one and one for all!!! Namaste :)
author | eric-boucher |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t223514876z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 22:35:15 |
last_update | 2017-01-10 22:35:15 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 68,503,601,066,539 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,215,981 |
net_rshares | 67,442,020,150 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 67,442,020,150 | 100% |
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)
author | furion |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t184823880z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"links":["https://github.com/SteemSports/Research/blob/master/Notebook/FreePlay%20winners%20for%20December%202016.ipynb"]} |
created | 2017-01-10 18:48:24 |
last_update | 2017-01-10 18:48:48 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 183 |
author_reputation | 116,503,940,714,958 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,214,273 |
net_rshares | 462,862,658,261 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
andu | 0 | 39,297,209,693 | 100% | ||
tobixen | 0 | 91,908,553,581 | 100% | ||
furion | 0 | 299,515,255,387 | 100% | ||
anduweb | 0 | 32,141,639,600 | 100% |
Great work and initiative, brother! Is it being populated real-time?
author | good-karma |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t052727302z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-11 05:27:27 |
last_update | 2017-01-11 05:27:27 |
depth | 1 |
children | 5 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 656,214,797,217,320 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,218,186 |
net_rshares | 203,345,698,826 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
andu | 0 | 39,297,199,677 | 100% | ||
good-karma | 0 | 125,394,864,560 | 100% | ||
anduweb | 0 | 32,141,639,600 | 100% | ||
finleyexp | 0 | 1,251,520,999 | 100% | ||
teukumukhlis | 0 | 3,910,937,409 | 100% | ||
drcrypto | 0 | 1,349,536,581 | 100% |
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.
author | andu |
---|---|
permlink | re-good-karma-re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t072020365z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-11 07:20:30 |
last_update | 2017-01-11 07:20:30 |
depth | 2 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 170 |
author_reputation | 5,355,583,123,081 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,218,615 |
net_rshares | 130,557,313,577 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
good-karma | 0 | 125,394,864,560 | 100% | ||
finleyexp | 0 | 1,251,511,608 | 100% | ||
teukumukhlis | 0 | 3,910,937,409 | 100% |
refreshing this in the browser: https://steemdata.com/stats seems to add up blocks every 5-10 seconds which is freaking awesome!
author | andu |
---|---|
permlink | re-good-karma-re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t075305104z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"links":["https://steemdata.com/stats"]} |
created | 2017-01-11 07:53:15 |
last_update | 2017-01-11 07:53:15 |
depth | 2 |
children | 3 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 5,355,583,123,081 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,218,715 |
net_rshares | 90,070,382,510 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tobixen | 0 | 90,070,382,510 | 100% |
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.
author | good-karma |
---|---|
permlink | re-andu-re-good-karma-re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t075647828z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"users":["furion"]} |
created | 2017-01-11 07:56:48 |
last_update | 2017-01-11 07:56:48 |
depth | 3 |
children | 2 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 165 |
author_reputation | 656,214,797,217,320 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,218,728 |
net_rshares | 0 |
@furion I'm on board. Tonight
author | gutzofter |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t193907903z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"users":["furion"]} |
created | 2017-01-10 19:39:12 |
last_update | 2017-01-10 19:39:12 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 7,621,537,677,018 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,214,662 |
net_rshares | 0 |
damn good job!
author | kingscrown |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t191600123z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 19:16:00 |
last_update | 2017-01-10 19:16:00 |
depth | 1 |
children | 1 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 2,115,151,300,228,565 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,214,515 |
net_rshares | 0 |
I have no idea what you guys are talking about lol, but I am happy you are happy (:
author | barrydutton |
---|---|
permlink | re-kingscrown-re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t211046570z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 21:10:48 |
last_update | 2017-01-10 21:10:48 |
depth | 2 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 333,942,309,404,197 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,215,389 |
net_rshares | 0 |
Oh my God! This is exactly what I needed! Promises almost killed me man! ;-) Thank you @furion!
author | kurtbeil |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t014639802z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"users":["furion"]} |
created | 2017-01-11 01:46:42 |
last_update | 2017-01-11 01:48:21 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 25,700,831,936,873 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,217,083 |
net_rshares | 0 |
Impressive! :)
author | lemouth |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t160204514z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-11 16:02:06 |
last_update | 2017-01-11 16:02:06 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 338,011,164,701,274 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,221,204 |
net_rshares | 0 |
Good job man :)
author | luka.skubonja |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t220537335z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 22:05:39 |
last_update | 2017-01-10 22:05:39 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 22,161,107,756,409 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,215,771 |
net_rshares | 0 |
Good job! I will try to play with it tomorrow!
author | maerco |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-2017110t223447817z |
category | steemdata |
json_metadata | {"tags":"steemdata","app":"esteem/1.3.6","format":"markdown+html"} |
created | 2017-01-10 21:34:54 |
last_update | 2017-01-10 21:34:54 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 883,984,535,985 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,215,560 |
net_rshares | 0 |
Looks like this is dead?
author | mikemeister |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20181124t151055872z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"app":"steemit/0.1"} |
created | 2018-11-24 15:11:00 |
last_update | 2018-11-24 15:11:00 |
depth | 1 |
children | 0 |
last_payout | 2018-12-01 15:11:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 220,748,298,342 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,838,700 |
net_rshares | 0 |
Great Work Dude! Keep up on this workflow!!!
author | nogoud5 |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170617t231737371z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"app":"steemit/0.1"} |
created | 2017-06-17 23:17:36 |
last_update | 2017-06-17 23:17:36 |
depth | 1 |
children | 0 |
last_payout | 2017-06-24 23:17:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 99,040,916 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,132,470 |
net_rshares | 0 |
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 ??
author | normalguy |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20180614t114928701z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"app":"steemit/0.1"} |
created | 2018-06-14 11:50:39 |
last_update | 2018-06-14 11:50:39 |
depth | 1 |
children | 0 |
last_payout | 2018-06-21 11:50:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.021 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 167 |
author_reputation | 963,989,451,804 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 60,714,062 |
net_rshares | 10,806,890,346 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ozymandias | 0 | 2,105,437,534 | 100% | ||
thing-2 | 0 | 8,701,452,812 | 100% |
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.
author | pnc |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t051507794z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"users":["furion"]} |
created | 2017-01-11 05:15:09 |
last_update | 2017-01-11 05:15:09 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.052 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 257 |
author_reputation | 31,743,007,487,651 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,218,128 |
net_rshares | 1,940,754,137,625 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rossco99 | 0 | 356,872,308,912 | 100% | ||
xeroc | 0 | 595,898,750,544 | 100% | ||
boatymcboatface | 0 | 204,835,413,251 | 100% | ||
pairmike | 0 | 35,596,270,043 | 100% | ||
pheonike | 0 | 29,190,592,059 | 40% | ||
blakemiles84 | 0 | 117,392,191,133 | 100% | ||
theshell | 0 | 61,105,990,296 | 100% | ||
tobixen | 0 | 91,908,553,581 | 100% | ||
michaelx | 0 | 12,112,320,791 | 100% | ||
albertogm | 0 | 16,264,683,083 | 100% | ||
skapaneas | 0 | 15,366,550,018 | 100% | ||
raymondspeaks | 0 | 4,634,394,046 | 100% | ||
cryptojoy.com | 0 | 1,238,361,725 | 100% | ||
phenom | 0 | 10,718,565,839 | 100% | ||
bigsambucca | 0 | 575,843,017 | 100% | ||
steemradio | 0 | 998,581,531 | 100% | ||
cmorton | 0 | 1,693,595,451 | 50% | ||
neptun | 0 | 343,124,307,882 | 100% | ||
nulliusinverba | 0 | 3,679,521,971 | 100% | ||
tracemayer | 0 | 19,495,549,178 | 100% | ||
ballinconscious | 0 | 8,564,151,782 | 100% | ||
ianboil | 0 | 2,253,454,660 | 100% | ||
sstefan | 0 | 3,543,776,795 | 40% | ||
teukumukhlis | 0 | 3,198,984,823 | 100% | ||
tamersameeh | 0 | 491,425,214 | 100% |
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?
author | sailendram |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20171110t012412181z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"app":"steemit/0.1"} |
created | 2017-11-10 01:24:12 |
last_update | 2017-11-10 01:24:12 |
depth | 1 |
children | 0 |
last_payout | 2017-11-17 01:24:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 162 |
author_reputation | 71,774,746 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,914,806 |
net_rshares | 0 |
Way to go, @furion!
author | saramiller |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t034148000z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"users":["furion"]} |
created | 2017-01-11 03:41:48 |
last_update | 2017-01-11 03:41:48 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 247,949,226,173,094 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,217,726 |
net_rshares | 0 |
I see very interesting thanks upped
author | simonjay |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t003544797z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-11 00:35:48 |
last_update | 2017-01-11 00:35:48 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 79,432,694,207,847 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,216,642 |
net_rshares | 0 |
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.
author | smysullivan |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t190501971z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 19:05:06 |
last_update | 2017-01-10 19:05:06 |
depth | 1 |
children | 2 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 139 |
author_reputation | 16,261,876,135,297 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,214,427 |
net_rshares | 3,187,384,066 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tomino | 0 | 3,187,384,066 | 1% |
how do you know all this stuff lol, so much for my Steemit day off lol
author | barrydutton |
---|---|
permlink | re-smysullivan-re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t211001375z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 21:10:03 |
last_update | 2017-01-10 21:10:21 |
depth | 2 |
children | 1 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 333,942,309,404,197 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,215,379 |
net_rshares | 9,063,328,959 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smysullivan | 0 | 9,063,328,959 | 80% |
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.
author | smysullivan |
---|---|
permlink | re-barrydutton-re-smysullivan-re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t211001375z-2017110t141310104z |
category | steemdata |
json_metadata | {"tags":"steemdata","app":"esteem/1.3.5","format":"markdown+html"} |
created | 2017-01-10 21:13:15 |
last_update | 2017-01-10 21:13:15 |
depth | 3 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 256 |
author_reputation | 16,261,876,135,297 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,215,409 |
net_rshares | 0 |
Great job!
author | steemalf |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t171939358z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-11 17:19:39 |
last_update | 2017-01-11 17:19:39 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 4,227,972,199,091 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,221,764 |
net_rshares | 0 |
This looks like incredibly useful. This must have been a lot of work. Good job!
author | teamsteem |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t220904117z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 22:08:57 |
last_update | 2017-01-10 22:08:57 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.960 HBD |
curator_payout_value | 0.319 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 79 |
author_reputation | 284,804,541,406,803 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,215,801 |
net_rshares | 12,338,370,860,753 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
summon | 0 | 12,036,435,236,989 | 100% | ||
furion | 0 | 299,701,993,570 | 100% | ||
lukinsawyer | 0 | 2,233,630,194 | 100% |
This is good. Don't understand fully but will reread, maybe couple times :)
author | tfhg |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t150151923z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-11 15:01:54 |
last_update | 2017-01-11 15:01:54 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 438,173,880,166 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,220,803 |
net_rshares | 0 |
I might not understand everything you are saying, but this is an impressive work @furion.
author | the-future |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t184330288z |
category | steemdata |
json_metadata | {"tags":["steemdata"],"users":["furion"]} |
created | 2017-01-10 18:43:39 |
last_update | 2017-01-10 18:43:39 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 64,560,224,887,999 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,214,231 |
net_rshares | 16,396,596,430 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yoganarchista | 0 | 16,396,596,430 | 100% |
Damn this is some impressive work. Thanks for opening up an query able archive for Steemit.
author | thebatchman |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t184810611z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 18:48:09 |
last_update | 2017-01-10 18:48:09 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.164 HBD |
curator_payout_value | 0.322 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 10,499,752,392,175 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,214,268 |
net_rshares | 13,429,236,817,466 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
summon | 0 | 12,036,435,236,989 | 100% | ||
wang | 0 | 150,427,244,636 | 1% | ||
sandwich | 0 | 12,568,789,325 | 100% | ||
infovore | 0 | 894,612,691,226 | 100% | ||
roelandp | 0 | 34,328,063,322 | 1% | ||
furion | 0 | 299,515,255,387 | 100% | ||
drcrypto | 0 | 1,349,536,581 | 100% | ||
aneilpatel | 0 | 0 | 100% |
Well done my friend, I am proud of what you have accomplished here.
author | thecryptodrive |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t203135569z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 20:31:33 |
last_update | 2017-01-10 20:31:33 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.015 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 103,594,115,164,820 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,215,054 |
net_rshares | 703,721,426,150 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tuck-fheman | 0 | 703,721,426,150 | 100% |
Well done, furion. Seems that SteemData will become my favourite SteemTool soon :-)
author | twinner |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t185702671z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 18:57:03 |
last_update | 2017-01-10 18:57:03 |
depth | 1 |
children | 1 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 67,053,192,912,359 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,214,353 |
net_rshares | 0 |
I'm happy to hear :)
author | furion |
---|---|
permlink | re-twinner-re-furion-introducing-steemdata-a-database-layer-for-steem-20170110t201223879z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-10 20:12:27 |
last_update | 2017-01-10 20:12:36 |
depth | 2 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 116,503,940,714,958 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,214,913 |
net_rshares | 0 |
author | xeroc |
---|---|
permlink | re-furion-introducing-steemdata-a-database-layer-for-steem-20170111t131529571z |
category | steemdata |
json_metadata | {"tags":["steemdata"]} |
created | 2017-01-11 13:15:30 |
last_update | 2017-01-11 13:15:30 |
depth | 1 |
children | 0 |
last_payout | 2017-02-10 21:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 118,819,064,085,695 |
root_title | "Introducing SteemData - A Database Layer for STEEM" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,220,133 |
net_rshares | 484,682,524,017 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wang | 0 | 150,505,703,978 | 1% | ||
roelandp | 0 | 34,390,368,923 | 1% | ||
furion | 0 | 299,786,451,116 | 100% |