From c50665c8f66121db558caa7c205631c28e0fe2ed Mon Sep 17 00:00:00 2001 From: ABW <andrzejl@syncad.com> Date: Fri, 13 Nov 2020 17:17:37 +0100 Subject: [PATCH] [ABW]: added new tests for get_replies_by_last_update and get_reblogged_by supplemented comments to existing tests for those calls some tests for the get_replies_by_last_update changed due to fix in paging (no more overlapping records) --- .../get_account_posts/blog/nkdk.tavern.yaml | 6 +- .../blog/roadscape.tavern.yaml | 6 +- .../the_same_account_start.tavern.yaml | 2 +- .../the_same_account_start.tavern.yaml | 2 +- .../get_reblogged_by/deleted_post.orig.json | 5 + .../get_reblogged_by/deleted_post.pat.json | 5 + .../get_reblogged_by/deleted_post.tavern.yaml | 29 + .../get_reblogged_by/deleted_reply.orig.json | 5 + .../get_reblogged_by/deleted_reply.pat.json | 5 + .../deleted_reply.tavern.yaml | 29 + ...results.orig.json => bad_author.orig.json} | 0 .../bad_author.pat.json | 5 + .../bad_author.tavern.yaml | 30 + .../bad_post.orig.json | 1 + ...{no_results.pat.json => bad_post.pat.json} | 0 ...sults.tavern.yaml => bad_post.tavern.yaml} | 4 +- .../blank_start_author.pat.json | 2 +- .../ignore/complete_result_set.tavern.yaml | 2 +- .../ignore/complete_result_set.tavern.yaml | 2 +- .../get_reblogged_by/_readme.txt | 5 +- .../get_replies_by_last_update/_readme.txt | 14 +- .../get_replies_by_last_update/abit.pat.json | 69 +- .../abit.tavern.yaml | 2 +- .../get_replies_by_last_update/admin.pat.json | 95 +- .../admin.tavern.yaml | 3 +- .../dantheman.orig.json | 345 +++- .../dantheman.pat.json | 353 +++- .../dantheman.tavern.yaml | 2 +- .../paginated.orig.json | 163 ++ .../paginated.pat.json | 150 ++ .../paginated.tavern.yaml | 29 + .../post_with_deleted_reply.orig.json | 377 ++++ .../post_with_deleted_reply.pat.json | 371 ++++ .../post_with_deleted_reply.tavern.yaml | 31 + .../pre_appbase.orig.json | 365 +++- .../pre_appbase.pat.json | 388 +++- .../pre_appbase.tavern.yaml | 4 +- .../steemit.orig.json | 1333 ++++++++++++++ .../steemit.pat.json | 1339 ++++++++++++++ .../steemit.tavern.yaml | 28 + .../top_post.orig.json | 1 + .../top_post.pat.json | 1 + .../top_post.tavern.yaml | 28 + .../truncated.orig.json | 1574 +++++++++++++++++ .../truncated.pat.json | 1574 +++++++++++++++++ .../truncated.tavern.yaml | 28 + 46 files changed, 8446 insertions(+), 366 deletions(-) create mode 100644 hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_post.orig.json create mode 100644 hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_post.pat.json create mode 100644 hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_post.tavern.yaml create mode 100644 hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_reply.orig.json create mode 100644 hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_reply.pat.json create mode 100644 hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_reply.tavern.yaml rename hivemind/tavern/condenser_api_negative/get_replies_by_last_update/{no_results.orig.json => bad_author.orig.json} (100%) create mode 100644 hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_author.pat.json create mode 100644 hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_author.tavern.yaml create mode 100644 hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_post.orig.json rename hivemind/tavern/condenser_api_negative/get_replies_by_last_update/{no_results.pat.json => bad_post.pat.json} (100%) rename hivemind/tavern/condenser_api_negative/get_replies_by_last_update/{no_results.tavern.yaml => bad_post.tavern.yaml} (88%) create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/paginated.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/paginated.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/paginated.tavern.yaml create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/post_with_deleted_reply.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/post_with_deleted_reply.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/post_with_deleted_reply.tavern.yaml create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/steemit.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/steemit.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/steemit.tavern.yaml create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/top_post.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/top_post.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/top_post.tavern.yaml create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/truncated.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/truncated.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/truncated.tavern.yaml diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts/blog/nkdk.tavern.yaml b/hivemind/tavern/bridge_api_patterns/get_account_posts/blog/nkdk.tavern.yaml index 12cee86b..66aa6cb6 100644 --- a/hivemind/tavern/bridge_api_patterns/get_account_posts/blog/nkdk.tavern.yaml +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts/blog/nkdk.tavern.yaml @@ -1,14 +1,14 @@ --- - test_name: Hivemind bridge_api.get_account_posts get reblogged article test # api.hive.blog 443 + test_name: Hivemind bridge_api.get_account_posts marks: - - patterntest # test-safari only has reblogs and replies, no top posts; original had less reblogs, most likely a bug + - patterntest includes: - !include ../../../common.yaml stages: - - name: get_account_posts get reblogged article + - name: get_account_posts request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts/blog/roadscape.tavern.yaml b/hivemind/tavern/bridge_api_patterns/get_account_posts/blog/roadscape.tavern.yaml index f954db55..02672bf3 100644 --- a/hivemind/tavern/bridge_api_patterns/get_account_posts/blog/roadscape.tavern.yaml +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts/blog/roadscape.tavern.yaml @@ -1,14 +1,14 @@ --- - test_name: Hivemind bridge_api.get_account_posts get reblogged article test # api.hive.blog 443 + test_name: Hivemind bridge_api.get_account_posts marks: - - patterntest # test-safari only has reblogs and replies, no top posts; original had less reblogs, most likely a bug + - patterntest includes: - !include ../../../common.yaml stages: - - name: get_account_posts get reblogged article + - name: get_account_posts request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST diff --git a/hivemind/tavern/condenser_api_negative/get_followers/the_same_account_start.tavern.yaml b/hivemind/tavern/condenser_api_negative/get_followers/the_same_account_start.tavern.yaml index 4cfe5979..2b5c1de6 100644 --- a/hivemind/tavern/condenser_api_negative/get_followers/the_same_account_start.tavern.yaml +++ b/hivemind/tavern/condenser_api_negative/get_followers/the_same_account_start.tavern.yaml @@ -2,7 +2,7 @@ test_name: Hivemind condenser_api.get_followers patterns test marks: - - patterntest # original always included page defining account in results (and order of follows created in the same time was basically random), that was corrected + - patterntest includes: - !include ../../common.yaml diff --git a/hivemind/tavern/condenser_api_negative/get_following/the_same_account_start.tavern.yaml b/hivemind/tavern/condenser_api_negative/get_following/the_same_account_start.tavern.yaml index ad674125..0aae0b58 100644 --- a/hivemind/tavern/condenser_api_negative/get_following/the_same_account_start.tavern.yaml +++ b/hivemind/tavern/condenser_api_negative/get_following/the_same_account_start.tavern.yaml @@ -2,7 +2,7 @@ test_name: Hivemind condenser_api.get_followers patterns test marks: - - patterntest # original always included page defining account in results (and order of follows created in the same time was basically random), that was corrected + - patterntest includes: - !include ../../common.yaml diff --git a/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_post.orig.json b/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_post.orig.json new file mode 100644 index 00000000..14ebb9fd --- /dev/null +++ b/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_post.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32000, + "data": "ValueError: list.remove(x): x not in list", + "message": "Server error" +} diff --git a/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_post.pat.json b/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_post.pat.json new file mode 100644 index 00000000..85edadd9 --- /dev/null +++ b/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_post.pat.json @@ -0,0 +1,5 @@ +{ + "code": -31999, + "data": "Post christiaan/woman-sets-her-husband-on-fire-for-raping-her-7-year-old-daughter was deleted 1 time(s)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_post.tavern.yaml b/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_post.tavern.yaml new file mode 100644 index 00000000..fff365e2 --- /dev/null +++ b/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_post.tavern.yaml @@ -0,0 +1,29 @@ +--- + test_name: Hivemind condenser_api.get_reblogged_by patterns test + + marks: + - patterntest # bug in old HM + + includes: + - !include ../../common.yaml + + stages: + - name: get_reblogged_by + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_reblogged_by" + params: {"author":"christiaan","permlink":"woman-sets-her-husband-on-fire-for-raping-her-7-year-old-daughter"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "deleted_post" + directory: "condenser_api_negative/get_reblogged_by" + error_response: true \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_reply.orig.json b/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_reply.orig.json new file mode 100644 index 00000000..14ebb9fd --- /dev/null +++ b/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_reply.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32000, + "data": "ValueError: list.remove(x): x not in list", + "message": "Server error" +} diff --git a/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_reply.pat.json b/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_reply.pat.json new file mode 100644 index 00000000..d2d5bb16 --- /dev/null +++ b/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_reply.pat.json @@ -0,0 +1,5 @@ +{ + "code": -31999, + "data": "Post gardenlady/re-steemychicken1-re-andrarchy-steemit-slogan-competition-20160625t015635752z was deleted 1 time(s)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_reply.tavern.yaml b/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_reply.tavern.yaml new file mode 100644 index 00000000..fbf47b3d --- /dev/null +++ b/hivemind/tavern/condenser_api_negative/get_reblogged_by/deleted_reply.tavern.yaml @@ -0,0 +1,29 @@ +--- + test_name: Hivemind condenser_api.get_reblogged_by patterns test + + marks: + - patterntest # bug in old HM + + includes: + - !include ../../common.yaml + + stages: + - name: get_reblogged_by + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_reblogged_by" + params: {"author":"gardenlady","permlink":"re-steemychicken1-re-andrarchy-steemit-slogan-competition-20160625t015635752z"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "deleted_reply" + directory: "condenser_api_negative/get_reblogged_by" + error_response: true \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/no_results.orig.json b/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_author.orig.json similarity index 100% rename from hivemind/tavern/condenser_api_negative/get_replies_by_last_update/no_results.orig.json rename to hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_author.orig.json diff --git a/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_author.pat.json b/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_author.pat.json new file mode 100644 index 00000000..bec552d6 --- /dev/null +++ b/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_author.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "Account nonexisting does not exist", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_author.tavern.yaml b/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_author.tavern.yaml new file mode 100644 index 00000000..f1aced41 --- /dev/null +++ b/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_author.tavern.yaml @@ -0,0 +1,30 @@ +--- + test_name: Hivemind condenser_api.get_replies_by_last_update no results patterns test + + marks: + - patterntest # original did not validate author, just gave empty results + - negative + + includes: + - !include ../../common.yaml + + stages: + - name: get_replies_by_last_update no results + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_replies_by_last_update" + params: ["nonexisting","",1] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "bad_author" + directory: "condenser_api_negative/get_replies_by_last_update" + error_response: true \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_post.orig.json b/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_post.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_post.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/no_results.pat.json b/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_post.pat.json similarity index 100% rename from hivemind/tavern/condenser_api_negative/get_replies_by_last_update/no_results.pat.json rename to hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_post.pat.json diff --git a/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/no_results.tavern.yaml b/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_post.tavern.yaml similarity index 88% rename from hivemind/tavern/condenser_api_negative/get_replies_by_last_update/no_results.tavern.yaml rename to hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_post.tavern.yaml index 79226919..814dead7 100644 --- a/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/no_results.tavern.yaml +++ b/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/bad_post.tavern.yaml @@ -2,7 +2,7 @@ test_name: Hivemind condenser_api.get_replies_by_last_update no results patterns test marks: - - patterntest + - patterntest # original did not validate post, just gave empty results - negative includes: @@ -25,6 +25,6 @@ verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "no_results" + method: "bad_post" directory: "condenser_api_negative/get_replies_by_last_update" error_response: true \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/blank_start_author.pat.json b/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/blank_start_author.pat.json index 0e5dbcbf..d6fea406 100644 --- a/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/blank_start_author.pat.json +++ b/hivemind/tavern/condenser_api_negative/get_replies_by_last_update/blank_start_author.pat.json @@ -1,5 +1,5 @@ { "code": -32602, - "data": "`start_author` cannot be blank", + "data": "invalid account (not specified)", "message": "Invalid parameters" } diff --git a/hivemind/tavern/condenser_api_patterns/get_followers/ignore/complete_result_set.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_followers/ignore/complete_result_set.tavern.yaml index 0900f161..1b27edab 100644 --- a/hivemind/tavern/condenser_api_patterns/get_followers/ignore/complete_result_set.tavern.yaml +++ b/hivemind/tavern/condenser_api_patterns/get_followers/ignore/complete_result_set.tavern.yaml @@ -2,7 +2,7 @@ test_name: Hivemind condenser_api.get_followers patterns test marks: - - patterntest + - patterntest # see paginated.tavern.yaml includes: - !include ../../../common.yaml diff --git a/hivemind/tavern/condenser_api_patterns/get_following/ignore/complete_result_set.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_following/ignore/complete_result_set.tavern.yaml index 4ffe844a..14f62f7f 100644 --- a/hivemind/tavern/condenser_api_patterns/get_following/ignore/complete_result_set.tavern.yaml +++ b/hivemind/tavern/condenser_api_patterns/get_following/ignore/complete_result_set.tavern.yaml @@ -2,7 +2,7 @@ test_name: Hivemind condenser_api.get_followers patterns test marks: - - patterntest + - patterntest # see paginated.tavern.yaml includes: - !include ../../../common.yaml diff --git a/hivemind/tavern/condenser_api_patterns/get_reblogged_by/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_reblogged_by/_readme.txt index 483130a7..debf31ce 100644 --- a/hivemind/tavern/condenser_api_patterns/get_reblogged_by/_readme.txt +++ b/hivemind/tavern/condenser_api_patterns/get_reblogged_by/_readme.txt @@ -3,8 +3,7 @@ Lists rebloggers of given post. method: "condenser_api.get_reblogged_by" params: { - "author":"{author}" + "permlink":"{permlink}", - - mandatory, have to point on valid post; paging mechanism + "author":"{author}" + "permlink":"{permlink}" + mandatory, have to point to valid post } \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/_readme.txt index 06a56d1b..f24bde3a 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/_readme.txt +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/_readme.txt @@ -1,21 +1,23 @@ -Lists replies made to author's posts. +Lists replies made to posts (both top posts and comments) of given blogger. +Contrary to name, time of last update is not considered - posts are ordered by creation time (newer first). method: "condenser_api.get_replies_by_last_update" params: { "start_author":"{author}", - mandatory, point on author + mandatory, points to valid account; when start_permlink is omitted the account means blogger, + when start_permlink is given it selects post from a result page and author of parent post is the blogger "start_permlink":"{permlink}", - optional, when passed piont on valid post + optional, when passed it has to point to valid post (paired with start_author) "limit":"{number}", - optional range 1..100, default = 20 + optional, 1..100, default = 20 - "truncate_body":"{number}", + "truncate_body":"{number}" - optional, default = 0 + optional, default = 0 (meaning no truncation); reduces maximal size of post body, cutting out all excess } \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/abit.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/abit.pat.json index c028f6b5..d92ccb9c 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/abit.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/abit.pat.json @@ -1,35 +1,4 @@ [ - { - "active_votes": [], - "author": "abit", - "author_reputation": 20297981245452, - "beneficiaries": [], - "body": "Sorry.. accidentally down-voted.", - "body_length": 32, - "cashout_time": "1969-12-31T23:59:59", - "category": "gardening", - "children": 1, - "created": "2016-05-25T11:43:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{}", - "last_payout": "2016-08-22T11:15:54", - "last_update": "2016-05-25T11:43:57", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "summersolstice", - "parent_permlink": "cabbage-moths--cheap-solutions", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-summersolstice-cabbage-moths--cheap-solutions-20160525t114306407z", - "post_id": 13661, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Cabbage moths - cheap solutions?", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/gardening/@summersolstice/cabbage-moths--cheap-solutions#@abit/re-summersolstice-cabbage-moths--cheap-solutions-20160525t114306407z" - }, { "active_votes": [ { @@ -361,5 +330,43 @@ "title": "", "total_payout_value": "0.000 HBD", "url": "/steemhelp/@summersolstice/thumbnails-not-showing-up-for-pictures#@tuck-fheman/re-summersolstice-thumbnails-not-showing-up-for-pictures-20160524t233109518z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 4327154838646, + "rshares": 58004033, + "voter": "summersolstice" + } + ], + "author": "donkeypong", + "author_reputation": 96486114508046, + "beneficiaries": [], + "body": "Congratulations! Your blog post is featured in the Steemit Blog Spotlight, Issue 1 (link below). The newsletter is dedicated to highlighting new and original blog content on Steemit, helping emerging bloggers get more exposure, upvotes, and payments. The newsletter's own upvote dollars are used 100% for promoting Steemit to other bloggers on the web. If you know any other good bloggers who might want to be featured, please click the link below and post a reply comment. And please keep posting more blog content!\n\nhttps://steemit.com/blogspotlight/@donkeypong/steemit-blog-spotlight-issue-1", + "body_length": 594, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 0, + "created": "2016-05-21T05:30:33", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-21T05:36:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 58004033, + "parent_author": "summersolstice", + "parent_permlink": "first-harvest", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-summersolstice-first-harvest-20160521t053032724z", + "post_id": 10242, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "First harvest", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/gardening/@summersolstice/first-harvest#@donkeypong/re-summersolstice-first-harvest-20160521t053032724z" } ] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/abit.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/abit.tavern.yaml index 8329f049..eed5cf4c 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/abit.tavern.yaml +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/abit.tavern.yaml @@ -2,7 +2,7 @@ test_name: Hivemind condenser_api.get_replies_by_last_update patterns test marks: - - patterntest + - patterntest # original made overlapping pages, that was corrected includes: - !include ../../common.yaml diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/admin.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/admin.pat.json index 66f32f8c..fe51488c 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/admin.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/admin.pat.json @@ -1,94 +1 @@ -[ - { - "active_votes": [ - { - "percent": "-100", - "reputation": 145171381514207, - "rshares": -375241, - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": 5100, - "voter": "steemit46" - }, - { - "percent": "10000", - "reputation": 9800209121307, - "rshares": 81125, - "voter": "roadscape" - }, - { - "percent": "10000", - "reputation": 1172373556107, - "rshares": 425903066, - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 15755437221598, - "rshares": 431616594, - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 1005278051807, - "rshares": 742566481, - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 7967572146571, - "rshares": 58854897335, - "voter": "business" - }, - { - "percent": "10000", - "reputation": 353432699790, - "rshares": 108855472, - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 1241600128334, - "rshares": 244129227, - "voter": "kewpiedoll" - }, - { - "percent": "10000", - "reputation": 1320262999851, - "rshares": 1615731741, - "voter": "naturalista" - } - ], - "author": "admin", - "author_reputation": 975371654, - "beneficiaries": [], - "body": "First Reply! Let's get this **party** started", - "body_length": 45, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 2, - "created": "2016-03-30T19:52:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T19:52:30", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62423410900, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "firstpost", - "post_id": 2, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/meta/@steemit/firstpost#@admin/firstpost" - } -] +[] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/admin.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/admin.tavern.yaml index 49b8e048..0898c0e5 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/admin.tavern.yaml +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/admin.tavern.yaml @@ -2,7 +2,8 @@ test_name: Hivemind condenser_api.get_replies_by_last_update patterns test marks: - - patterntest + - patterntest # original made overlapping pages, that was corrected + # (compare with steemit.tavern.yaml - @admin/firstpost is the last - oldest - reply to any post by steemit, therefore there is nothing on page defined by it) includes: - !include ../../common.yaml diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/dantheman.orig.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/dantheman.orig.json index 7592fa3c..080fc514 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/dantheman.orig.json +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/dantheman.orig.json @@ -1,102 +1,339 @@ [ + { + "active_votes": [], + "author": "linkback-bot-v0", + "author_reputation": 0, + "beneficiaries": [], + "body": "<div> <p> This post has been linked to from another place on Steem. </p> <ul> <li> <a href=\"https://steemit.com/ru/@rusteemitblog/masshtabiruemost-personalnoi-otvetstvennosti-pri-anarkhii-scalability-of-individual-responsibility-in-anarchy-perevod-stati\"> \ud83d\udcdd \u041c\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u0443\u0435\u043c\u043e\u0441\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438 \u0430\u043d\u0430\u0440\u0445\u0438\u0438./Scalability of Individual Responsibility in Anarchy (\u043f\u0435\u0440\u0435\u0432\u043e\u0434 \u0441\u0442\u0430\u0442\u044c\u0438 @dantheman) </a> by <a href=\"https://steemit.com/@rusteemitblog\"> @rusteemitblog </a> </li> <li> <a href=\"https://steemit.com/stats/@topten/steemit-club-500-8-september-2016\"> Steemit Club 500 - 8 September 2016 </a> by <a href=\"https://steemit.com/@topten\"> @topten </a> </li> </ul> <p> Learn more about <a href=\"https://steemit.com/steem/@ontofractal/steem-linkback-bot-v0-3-released\"> linkback bot v0.3</a> </p> <p>Upvote if you want the bot to continue posting linkbacks for your posts. Flag if otherwise. Built by @ontofractal</p></div>", + "body_length": 1000, + "cashout_time": "2016-10-08T23:22:15", + "category": "voluntarism", + "children": 0, + "created": "2016-09-15T18:18:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T18:18:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dantheman", + "parent_permlink": "scalability-of-individual-responsibility-in-anarchy", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dantheman-scalability-of-individual-responsibility-in-anarchy-linkbacks", + "post_id": 960245, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Scalability of Individual Responsibility in Anarchy", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/voluntarism/@dantheman/scalability-of-individual-responsibility-in-anarchy#@linkback-bot-v0/re-dantheman-scalability-of-individual-responsibility-in-anarchy-linkbacks" + }, + { + "active_votes": [], + "author": "dwinblood", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks this has happened to me as well. It's been a bit and I only attracted one such person and it was not the person they showed here. Yet they have been silent for awhile. Not being able to ignore their replies was a pain. So thank you for fixing that.", + "body_length": 264, + "cashout_time": "2016-09-16T15:04:13", + "category": "steemit-abuse", + "children": 0, + "created": "2016-09-15T17:09:24", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-abuse\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T17:09:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dantheman", + "parent_permlink": "re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135233694z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t170931858z", + "post_id": 959648, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Petition to End steemit harassment FAO @dan & @ned", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit-abuse/@beanz/petition-to-take-down-earnest-fao-dan-and-ned#@dwinblood/re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t170931858z" + }, { "active_votes": [ { "percent": "10000", "reputation": 0, - "rshares": "73510007700", - "voter": "red" + "rshares": "374335736876", + "voter": "craig-grant" } ], - "author": "dantheman", + "author": "craig-grant", "author_reputation": 0, "beneficiaries": [], - "body": "I love spam, dan I am.", - "body_length": 22, - "cashout_time": "1969-12-31T23:59:59", - "category": "spam", + "body": "perfect", + "body_length": 7, + "cashout_time": "2016-09-16T15:04:13", + "category": "steemit-abuse", "children": 0, - "created": "2016-04-14T14:40:15", - "curator_payout_value": "0.011 HBD", - "depth": 5, - "json_metadata": "{}", - "last_payout": "2016-08-22T08:02:15", - "last_update": "2016-04-14T14:40:15", + "created": "2016-09-15T16:16:36", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-abuse\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T16:16:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 374335736876, + "parent_author": "dantheman", + "parent_permlink": "re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135233694z", + "pending_payout_value": "0.090 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t161635818z", + "post_id": 959208, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Petition to End steemit harassment FAO @dan & @ned", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit-abuse/@beanz/petition-to-take-down-earnest-fao-dan-and-ned#@craig-grant/re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t161635818z" + }, + { + "active_votes": [], + "author": "stellabelle", + "author_reputation": 0, + "beneficiaries": [], + "body": "Dana-Edwards has created a solution too: https://steemit.com/steem/@dana-edwards/an-approach-for-dealing-with-harassment-on-steemit-selective-channels\nI, along with many others are looking forward to you and the team getting this done as soon as possible. As you can see, the community is asking/has been asking for these types of features. I appreciate your speed in dealing with this.", + "body_length": 386, + "cashout_time": "2016-09-16T15:04:13", + "category": "steemit-abuse", + "children": 0, + "created": "2016-09-15T15:32:48", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-abuse\"],\"links\":[\"https:\\/\\/steemit.com\\/steem\\/@dana-edwards\\/an-approach-for-dealing-with-harassment-on-steemit-selective-channels\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T15:38:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dantheman", + "parent_permlink": "re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135233694z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t153249723z", + "post_id": 958812, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Petition to End steemit harassment FAO @dan & @ned", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit-abuse/@beanz/petition-to-take-down-earnest-fao-dan-and-ned#@stellabelle/re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t153249723z" + }, + { + "active_votes": [], + "author": "halo", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you , I appreciate you taking this action, and taking action so quickly. \n\ud83d\udc8b @halo \ud83d\udc8b\ud83d\ude07", + "body_length": 90, + "cashout_time": "2016-09-16T15:04:13", + "category": "steemit-abuse", + "children": 2, + "created": "2016-09-15T14:17:30", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-abuse\"],\"users\":[\"halo\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T14:17:30", "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 73510007700, - "parent_author": "roadscape", - "parent_permlink": "re-red-broadcasted", + "net_rshares": 0, + "parent_author": "dantheman", + "parent_permlink": "re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135233694z", "pending_payout_value": "0.000 HBD", "percent_steem_dollars": 10000, - "permlink": "re-roadscape-re-red-broadcasted-20160414t144014018z", - "post_id": 123, + "permlink": "re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t141729210z", + "post_id": 958116, "promoted": "0.000 HBD", "replies": [], - "root_title": "Spam test", + "root_title": "Petition to End steemit harassment FAO @dan & @ned", "title": "", - "total_payout_value": "0.010 HBD", - "url": "/spam/@abit/abit-spam-post1#@dantheman/re-roadscape-re-red-broadcasted-20160414t144014018z" + "total_payout_value": "0.000 HBD", + "url": "/steemit-abuse/@beanz/petition-to-take-down-earnest-fao-dan-and-ned#@halo/re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t141729210z" + }, + { + "active_votes": [ + { + "percent": "-10000", + "reputation": 0, + "rshares": "-82393668", + "voter": "christianus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "126705985303", + "voter": "demotruk" + } + ], + "author": "beanz", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you @dantheman :)\n\nI really appreciate you taking a look at this. So many users will have a much more pleasant experience.", + "body_length": 129, + "cashout_time": "2016-09-16T15:04:13", + "category": "steemit-abuse", + "children": 0, + "created": "2016-09-15T13:58:03", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-abuse\"],\"users\":[\"dantheman\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T13:58:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 126623591635, + "parent_author": "dantheman", + "parent_permlink": "re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135233694z", + "pending_payout_value": "0.028 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135801159z", + "post_id": 957944, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Petition to End steemit harassment FAO @dan & @ned", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit-abuse/@beanz/petition-to-take-down-earnest-fao-dan-and-ned#@beanz/re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135801159z" }, { "active_votes": [], - "author": "penambang", + "author": "james-show", "author_reputation": 0, "beneficiaries": [], - "body": "Well done roadscape...", - "body_length": 22, - "cashout_time": "1969-12-31T23:59:59", - "category": "news", + "body": "Dan,\nwrote you a love letter - [A Love Letter to Dan's paranoia](https://steemit.com/trading/@james-show/the-perpetual-motion-of-trading-a-fictional-trading-strategy-but-if-real-the-only-trading-strategy-you-will-ever-need-to-make)", + "body_length": 231, + "cashout_time": "2016-10-15T19:28:54", + "category": "steem", "children": 0, - "created": "2016-04-13T03:45:03", + "created": "2016-09-14T22:40:00", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"],\"links\":[\"https:\\/\\/steemit.com\\/trading\\/@james-show\\/the-perpetual-motion-of-trading-a-fictional-trading-strategy-but-if-real-the-only-trading-strategy-you-will-ever-need-to-make\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-14T22:40:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dantheman", + "parent_permlink": "re-james-show-re-biophil-sbd-conversion-should-be-cancelable-20160914t200843808z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dantheman-re-james-show-re-biophil-sbd-conversion-should-be-cancelable-20160914t223954861z", + "post_id": 953183, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "SBD Conversion should be cancelable (actually, probably not)", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@biophil/sbd-conversion-should-be-cancelable#@james-show/re-dantheman-re-james-show-re-biophil-sbd-conversion-should-be-cancelable-20160914t223954861z" + }, + { + "active_votes": [], + "author": "geke", + "author_reputation": 0, + "beneficiaries": [], + "body": "I'm anxious to see the power down phase clear out all the nervous nellies and nonbelievers. Once those out to make a fast buck have given up, things should settle down, content quality should stabilize, and a true diversity will hopefully emerge that will replace the provincial idea of \"fairness\" that a lot of minnow are still expressing.", + "body_length": 340, + "cashout_time": "2016-10-11T00:02:18", + "category": "steem", + "children": 0, + "created": "2016-09-14T20:21:57", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "{}", - "last_payout": "2016-08-13T00:29:33", - "last_update": "2016-04-13T03:45:03", + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-14T20:21:57", "max_accepted_payout": "1000000.000 HBD", "net_rshares": 0, - "parent_author": "roadscape", - "parent_permlink": "steem-explorer", + "parent_author": "dantheman", + "parent_permlink": "justification-for-104-week-power-down", "pending_payout_value": "0.000 HBD", "percent_steem_dollars": 10000, - "permlink": "re-roadscape-steem-explorer", - "post_id": 100, + "permlink": "re-dantheman-justification-for-104-week-power-down-20160914t202154498z", + "post_id": 952122, "promoted": "0.000 HBD", "replies": [], - "root_title": "STEEM Explorer", - "title": "Well done!", + "root_title": "Justification for 104 week Power Down", + "title": "", "total_payout_value": "0.000 HBD", - "url": "/news/@roadscape/steem-explorer#@penambang/re-roadscape-steem-explorer" + "url": "/steem/@dantheman/justification-for-104-week-power-down#@geke/re-dantheman-justification-for-104-week-power-down-20160914t202154498z" }, { "active_votes": [], - "author": "red", + "author": "james-show", "author_reputation": 0, "beneficiaries": [], - "body": "...", - "body_length": 3, - "cashout_time": "1969-12-31T23:59:59", - "category": "spam", - "children": 1, - "created": "2016-04-12T16:35:03", + "body": "Maybe people do expect that...on the other hand I do believe taking both the SD and bitUSD designs (and lessons) a peg of something less than 3% (up or down) [at most times less than 1%] from the 1:1 peg is actually achievable _right now_.", + "body_length": 240, + "cashout_time": "2016-10-15T19:28:54", + "category": "steem", + "children": 0, + "created": "2016-09-14T20:15:48", "curator_payout_value": "0.000 HBD", - "depth": 5, - "json_metadata": "{}", - "last_payout": "2016-08-22T08:02:15", - "last_update": "2016-04-22T16:55:45", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-14T20:15:48", "max_accepted_payout": "1000000.000 HBD", "net_rshares": 0, - "parent_author": "roadscape", - "parent_permlink": "re-red-broadcasted", + "parent_author": "dantheman", + "parent_permlink": "re-james-show-re-biophil-sbd-conversion-should-be-cancelable-20160914t200843808z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dantheman-re-james-show-re-biophil-sbd-conversion-should-be-cancelable-20160914t201544774z", + "post_id": 952077, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "SBD Conversion should be cancelable (actually, probably not)", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@biophil/sbd-conversion-should-be-cancelable#@james-show/re-dantheman-re-james-show-re-biophil-sbd-conversion-should-be-cancelable-20160914t201544774z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "525448545", + "voter": "lyndsaybowes" + } + ], + "author": "krnel", + "author_reputation": 0, + "beneficiaries": [], + "body": "I agree. It prevents restriction of information about the truth in reality, and also isn't an authoritarian mouthpiece of disinfo and misinfo to forcefully warp our perception of reality.", + "body_length": 187, + "cashout_time": "2016-10-15T15:07:06", + "category": "unity", + "children": 1, + "created": "2016-09-14T15:50:45", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"unity\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-14T15:50:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 525448545, + "parent_author": "dantheman", + "parent_permlink": "re-krnel-unity-and-knowledge-20160914t153436683z", "pending_payout_value": "0.000 HBD", "percent_steem_dollars": 10000, - "permlink": "yield-callapis", - "post_id": 92, + "permlink": "re-dantheman-re-krnel-unity-and-knowledge-20160914t155040045z", + "post_id": 950118, "promoted": "0.000 HBD", "replies": [], - "root_title": "Spam test", + "root_title": "Unity and Knowledge", "title": "", "total_payout_value": "0.000 HBD", - "url": "/spam/@abit/abit-spam-post1#@red/yield-callapis" + "url": "/unity/@krnel/unity-and-knowledge#@krnel/re-dantheman-re-krnel-unity-and-knowledge-20160914t155040045z" } ] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/dantheman.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/dantheman.pat.json index 0ee873f1..26cfee47 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/dantheman.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/dantheman.pat.json @@ -1,102 +1,339 @@ [ + { + "active_votes": [], + "author": "linkback-bot-v0", + "author_reputation": 202215076691, + "beneficiaries": [], + "body": "<div> <p> This post has been linked to from another place on Steem. </p> <ul> <li> <a href=\"https://steemit.com/ru/@rusteemitblog/masshtabiruemost-personalnoi-otvetstvennosti-pri-anarkhii-scalability-of-individual-responsibility-in-anarchy-perevod-stati\"> \ud83d\udcdd \u041c\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u0443\u0435\u043c\u043e\u0441\u0442\u044c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438 \u0430\u043d\u0430\u0440\u0445\u0438\u0438./Scalability of Individual Responsibility in Anarchy (\u043f\u0435\u0440\u0435\u0432\u043e\u0434 \u0441\u0442\u0430\u0442\u044c\u0438 @dantheman) </a> by <a href=\"https://steemit.com/@rusteemitblog\"> @rusteemitblog </a> </li> <li> <a href=\"https://steemit.com/stats/@topten/steemit-club-500-8-september-2016\"> Steemit Club 500 - 8 September 2016 </a> by <a href=\"https://steemit.com/@topten\"> @topten </a> </li> </ul> <p> Learn more about <a href=\"https://steemit.com/steem/@ontofractal/steem-linkback-bot-v0-3-released\"> linkback bot v0.3</a> </p> <p>Upvote if you want the bot to continue posting linkbacks for your posts. Flag if otherwise. Built by @ontofractal</p></div>", + "body_length": 1000, + "cashout_time": "2016-09-22T18:18:54", + "category": "voluntarism", + "children": 0, + "created": "2016-09-15T18:18:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T18:18:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dantheman", + "parent_permlink": "scalability-of-individual-responsibility-in-anarchy", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dantheman-scalability-of-individual-responsibility-in-anarchy-linkbacks", + "post_id": 1256972, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Scalability of Individual Responsibility in Anarchy", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/voluntarism/@dantheman/scalability-of-individual-responsibility-in-anarchy#@linkback-bot-v0/re-dantheman-scalability-of-individual-responsibility-in-anarchy-linkbacks" + }, + { + "active_votes": [], + "author": "dwinblood", + "author_reputation": 19168905436557, + "beneficiaries": [], + "body": "Thanks this has happened to me as well. It's been a bit and I only attracted one such person and it was not the person they showed here. Yet they have been silent for awhile. Not being able to ignore their replies was a pain. So thank you for fixing that.", + "body_length": 264, + "cashout_time": "2016-09-22T17:09:24", + "category": "steemit-abuse", + "children": 0, + "created": "2016-09-15T17:09:24", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-abuse\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T17:09:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dantheman", + "parent_permlink": "re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135233694z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t170931858z", + "post_id": 1256256, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Petition to End steemit harassment FAO @dan & @ned", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit-abuse/@beanz/petition-to-take-down-earnest-fao-dan-and-ned#@dwinblood/re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t170931858z" + }, { "active_votes": [ { "percent": "10000", - "reputation": 1993860928264, - "rshares": 73510007700, - "voter": "red" + "reputation": 54345938068170, + "rshares": 374335736876, + "voter": "craig-grant" } ], - "author": "dantheman", - "author_reputation": 145171381514207, + "author": "craig-grant", + "author_reputation": 54345938068170, "beneficiaries": [], - "body": "I love spam, dan I am.", - "body_length": 22, - "cashout_time": "1969-12-31T23:59:59", - "category": "spam", + "body": "perfect", + "body_length": 7, + "cashout_time": "2016-09-22T16:16:36", + "category": "steemit-abuse", "children": 0, - "created": "2016-04-14T14:40:15", - "curator_payout_value": "0.011 HBD", - "depth": 5, - "json_metadata": "{}", - "last_payout": "2016-08-22T08:02:15", - "last_update": "2016-04-14T14:40:15", + "created": "2016-09-15T16:16:36", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-abuse\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T16:16:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 374335736876, + "parent_author": "dantheman", + "parent_permlink": "re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135233694z", + "pending_payout_value": "0.091 HBD", + "percent_hbd": 10000, + "permlink": "re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t161635818z", + "post_id": 1255718, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Petition to End steemit harassment FAO @dan & @ned", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit-abuse/@beanz/petition-to-take-down-earnest-fao-dan-and-ned#@craig-grant/re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t161635818z" + }, + { + "active_votes": [], + "author": "stellabelle", + "author_reputation": 200733663789408, + "beneficiaries": [], + "body": "Dana-Edwards has created a solution too: https://steemit.com/steem/@dana-edwards/an-approach-for-dealing-with-harassment-on-steemit-selective-channels\nI, along with many others are looking forward to you and the team getting this done as soon as possible. As you can see, the community is asking/has been asking for these types of features. I appreciate your speed in dealing with this.", + "body_length": 386, + "cashout_time": "2016-09-22T15:32:48", + "category": "steemit-abuse", + "children": 0, + "created": "2016-09-15T15:32:48", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-abuse\"],\"links\":[\"https://steemit.com/steem/@dana-edwards/an-approach-for-dealing-with-harassment-on-steemit-selective-channels\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T15:38:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dantheman", + "parent_permlink": "re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135233694z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t153249723z", + "post_id": 1255216, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Petition to End steemit harassment FAO @dan & @ned", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit-abuse/@beanz/petition-to-take-down-earnest-fao-dan-and-ned#@stellabelle/re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t153249723z" + }, + { + "active_votes": [], + "author": "halo", + "author_reputation": 26654160223111, + "beneficiaries": [], + "body": "Thank you , I appreciate you taking this action, and taking action so quickly. \n\ud83d\udc8b @halo \ud83d\udc8b\ud83d\ude07", + "body_length": 90, + "cashout_time": "2016-09-22T14:17:30", + "category": "steemit-abuse", + "children": 2, + "created": "2016-09-15T14:17:30", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-abuse\"],\"users\":[\"halo\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T14:17:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dantheman", + "parent_permlink": "re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135233694z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t141729210z", + "post_id": 1254331, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Petition to End steemit harassment FAO @dan & @ned", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit-abuse/@beanz/petition-to-take-down-earnest-fao-dan-and-ned#@halo/re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t141729210z" + }, + { + "active_votes": [ + { + "percent": "-10000", + "reputation": 25700558035, + "rshares": -82393668, + "voter": "christianus" + }, + { + "percent": "10000", + "reputation": 2974404080988, + "rshares": 126705985303, + "voter": "demotruk" + } + ], + "author": "beanz", + "author_reputation": 5571312226030, + "beneficiaries": [], + "body": "Thank you @dantheman :)\n\nI really appreciate you taking a look at this. So many users will have a much more pleasant experience.", + "body_length": 129, + "cashout_time": "2016-09-22T13:58:03", + "category": "steemit-abuse", + "children": 0, + "created": "2016-09-15T13:58:03", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-abuse\"],\"users\":[\"dantheman\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T13:58:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 126623591635, + "parent_author": "dantheman", + "parent_permlink": "re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135233694z", + "pending_payout_value": "0.029 HBD", + "percent_hbd": 10000, + "permlink": "re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135801159z", + "post_id": 1254118, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Petition to End steemit harassment FAO @dan & @ned", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit-abuse/@beanz/petition-to-take-down-earnest-fao-dan-and-ned#@beanz/re-dantheman-re-beanz-petition-to-take-down-earnest-fao-dan-and-ned-20160915t135801159z" + }, + { + "active_votes": [], + "author": "james-show", + "author_reputation": 5045406568403, + "beneficiaries": [], + "body": "Dan,\nwrote you a love letter - [A Love Letter to Dan's paranoia](https://steemit.com/trading/@james-show/the-perpetual-motion-of-trading-a-fictional-trading-strategy-but-if-real-the-only-trading-strategy-you-will-ever-need-to-make)", + "body_length": 231, + "cashout_time": "2016-09-21T22:40:00", + "category": "steem", + "children": 0, + "created": "2016-09-14T22:40:00", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"],\"links\":[\"https://steemit.com/trading/@james-show/the-perpetual-motion-of-trading-a-fictional-trading-strategy-but-if-real-the-only-trading-strategy-you-will-ever-need-to-make\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-14T22:40:00", "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 73510007700, - "parent_author": "roadscape", - "parent_permlink": "re-red-broadcasted", + "net_rshares": 0, + "parent_author": "dantheman", + "parent_permlink": "re-james-show-re-biophil-sbd-conversion-should-be-cancelable-20160914t200843808z", "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, - "permlink": "re-roadscape-re-red-broadcasted-20160414t144014018z", - "post_id": 153, + "permlink": "re-dantheman-re-james-show-re-biophil-sbd-conversion-should-be-cancelable-20160914t223954861z", + "post_id": 1248198, "promoted": "0.000 HBD", "replies": [], - "root_title": "Spam test", + "root_title": "SBD Conversion should be cancelable (actually, probably not)", "title": "", - "total_payout_value": "0.010 HBD", - "url": "/spam/@abit/abit-spam-post1#@dantheman/re-roadscape-re-red-broadcasted-20160414t144014018z" + "total_payout_value": "0.000 HBD", + "url": "/steem/@biophil/sbd-conversion-should-be-cancelable#@james-show/re-dantheman-re-james-show-re-biophil-sbd-conversion-should-be-cancelable-20160914t223954861z" }, { "active_votes": [], - "author": "penambang", - "author_reputation": 314859374093, + "author": "geke", + "author_reputation": 3090583312974, "beneficiaries": [], - "body": "Well done roadscape...", - "body_length": 22, - "cashout_time": "1969-12-31T23:59:59", - "category": "news", + "body": "I'm anxious to see the power down phase clear out all the nervous nellies and nonbelievers. Once those out to make a fast buck have given up, things should settle down, content quality should stabilize, and a true diversity will hopefully emerge that will replace the provincial idea of \"fairness\" that a lot of minnow are still expressing.", + "body_length": 340, + "cashout_time": "2016-09-21T20:21:57", + "category": "steem", "children": 0, - "created": "2016-04-13T03:45:03", + "created": "2016-09-14T20:21:57", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "{}", - "last_payout": "2016-08-13T00:29:33", - "last_update": "2016-04-13T03:45:03", + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-14T20:21:57", "max_accepted_payout": "1000000.000 HBD", "net_rshares": 0, - "parent_author": "roadscape", - "parent_permlink": "steem-explorer", + "parent_author": "dantheman", + "parent_permlink": "justification-for-104-week-power-down", "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, - "permlink": "re-roadscape-steem-explorer", - "post_id": 115, + "permlink": "re-dantheman-justification-for-104-week-power-down-20160914t202154498z", + "post_id": 1246831, "promoted": "0.000 HBD", "replies": [], - "root_title": "STEEM Explorer", - "title": "Well done!", + "root_title": "Justification for 104 week Power Down", + "title": "", "total_payout_value": "0.000 HBD", - "url": "/news/@roadscape/steem-explorer#@penambang/re-roadscape-steem-explorer" + "url": "/steem/@dantheman/justification-for-104-week-power-down#@geke/re-dantheman-justification-for-104-week-power-down-20160914t202154498z" }, { "active_votes": [], - "author": "red", - "author_reputation": 1993860928264, + "author": "james-show", + "author_reputation": 5045406568403, "beneficiaries": [], - "body": "...", - "body_length": 3, - "cashout_time": "1969-12-31T23:59:59", - "category": "spam", - "children": 1, - "created": "2016-04-12T16:35:03", + "body": "Maybe people do expect that...on the other hand I do believe taking both the SD and bitUSD designs (and lessons) a peg of something less than 3% (up or down) [at most times less than 1%] from the 1:1 peg is actually achievable _right now_.", + "body_length": 240, + "cashout_time": "2016-09-21T20:15:48", + "category": "steem", + "children": 0, + "created": "2016-09-14T20:15:48", "curator_payout_value": "0.000 HBD", - "depth": 5, - "json_metadata": "{}", - "last_payout": "2016-08-22T08:02:15", - "last_update": "2016-04-22T16:55:45", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-14T20:15:48", "max_accepted_payout": "1000000.000 HBD", "net_rshares": 0, - "parent_author": "roadscape", - "parent_permlink": "re-red-broadcasted", + "parent_author": "dantheman", + "parent_permlink": "re-james-show-re-biophil-sbd-conversion-should-be-cancelable-20160914t200843808z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dantheman-re-james-show-re-biophil-sbd-conversion-should-be-cancelable-20160914t201544774z", + "post_id": 1246765, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "SBD Conversion should be cancelable (actually, probably not)", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@biophil/sbd-conversion-should-be-cancelable#@james-show/re-dantheman-re-james-show-re-biophil-sbd-conversion-should-be-cancelable-20160914t201544774z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 1499198528675, + "rshares": 525448545, + "voter": "lyndsaybowes" + } + ], + "author": "krnel", + "author_reputation": 17676358821986, + "beneficiaries": [], + "body": "I agree. It prevents restriction of information about the truth in reality, and also isn't an authoritarian mouthpiece of disinfo and misinfo to forcefully warp our perception of reality.", + "body_length": 187, + "cashout_time": "2016-09-21T15:50:45", + "category": "unity", + "children": 1, + "created": "2016-09-14T15:50:45", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"unity\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-14T15:50:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 525448545, + "parent_author": "dantheman", + "parent_permlink": "re-krnel-unity-and-knowledge-20160914t153436683z", "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, - "permlink": "yield-callapis", - "post_id": 99, + "permlink": "re-dantheman-re-krnel-unity-and-knowledge-20160914t155040045z", + "post_id": 1244286, "promoted": "0.000 HBD", "replies": [], - "root_title": "Spam test", + "root_title": "Unity and Knowledge", "title": "", "total_payout_value": "0.000 HBD", - "url": "/spam/@abit/abit-spam-post1#@red/yield-callapis" + "url": "/unity/@krnel/unity-and-knowledge#@krnel/re-dantheman-re-krnel-unity-and-knowledge-20160914t155040045z" } ] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/dantheman.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/dantheman.tavern.yaml index 29aa3969..9657eb0c 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/dantheman.tavern.yaml +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/dantheman.tavern.yaml @@ -18,7 +18,7 @@ jsonrpc: "2.0" id: 1 method: "condenser_api.get_replies_by_last_update" - params: ["dantheman","re-roadscape-re-red-broadcasted-20160414t144014018z",10] + params: ["dantheman","",10] response: status_code: 200 verify_response_with: diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/paginated.orig.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/paginated.orig.json new file mode 100644 index 00000000..77e5e054 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/paginated.orig.json @@ -0,0 +1,163 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "43533730799", + "voter": "brandonp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52397603", + "voter": "doze49" + } + ], + "author": "brandonp", + "author_reputation": 0, + "beneficiaries": [], + "body": "Reading stuff like this makes me realize just how little I know about this whole thing...", + "body_length": 89, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T20:01:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T20:01:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 43586128402, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.024 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z", + "post_id": 631654, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@brandonp/re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z" + }, + { + "active_votes": [], + "author": "thecryptofiend", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks for explaining. You've got my witness vote now.", + "body_length": 55, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T19:31:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:31:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z", + "post_id": 631312, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thecryptofiend/re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "6327910390022", + "voter": "wackou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9559686655", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "829049571", + "voter": "johnerminer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "38432804053", + "voter": "gtg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19873104999", + "voter": "ausbitbank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44706057470", + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31463628969", + "voter": "mibenkito" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14083166401", + "voter": "someguy123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52918124", + "voter": "xomtux" + } + ], + "author": "jesta", + "author_reputation": 0, + "beneficiaries": [], + "body": "I love the idea in this, basically setting up a fortress for your witness node to be more resilient. \n\nOne thing you're right about though is it would be a somewhat expensive venture. At the rate I'm witnessing blocks (maybe 3-4 a day?), it's not feasible to sustain itself financially, but I imagine the top 19 could easily go this route. Maybe even some of the people in the top 30?\n\nI'd be more than willing to help prototype this type of infrastructure. I've been considering how difficult it would be to setup on AWS with a CloudFormation script that spins up seed nodes as ECS Containers, VPCs in every region that all interconnect via private networking, and an EC2 container for your witness node that's not accessible from the internet, but only the seed nodes. \n\nIt really shouldn't be all that hard, and even non-technical witnesses could copy/paste the cloudformation script to get started. Of course with this idea, if AWS is attacked, you're still the mercy of them being able to handle it.", + "body_length": 1005, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 2, + "created": "2016-08-16T19:11:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:11:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6486910806264, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "9.966 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z", + "post_id": 631058, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/paginated.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/paginated.pat.json new file mode 100644 index 00000000..24c65c4d --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/paginated.pat.json @@ -0,0 +1,150 @@ +[ + { + "active_votes": [], + "author": "thecryptofiend", + "author_reputation": 16234753830016, + "beneficiaries": [], + "body": "Thanks for explaining. You've got my witness vote now.", + "body_length": 55, + "cashout_time": "2016-08-23T19:31:06", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T19:31:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:31:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z", + "post_id": 839953, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thecryptofiend/re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 3894279128605, + "rshares": 6327910390022, + "voter": "wackou" + }, + { + "percent": "10000", + "reputation": 1444446898291, + "rshares": 9559686655, + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 37159422493, + "rshares": 829049571, + "voter": "johnerminer" + }, + { + "percent": "10000", + "reputation": 3924899966690, + "rshares": 38432804053, + "voter": "gtg" + }, + { + "percent": "10000", + "reputation": 8017093633272, + "rshares": 19873104999, + "voter": "ausbitbank" + }, + { + "percent": "10000", + "reputation": 161079803820, + "rshares": 44706057470, + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 15739430465359, + "rshares": 31463628969, + "voter": "mibenkito" + }, + { + "percent": "10000", + "reputation": 18890223518661, + "rshares": 14083166401, + "voter": "someguy123" + }, + { + "percent": "10000", + "reputation": 7805684953, + "rshares": 52918124, + "voter": "xomtux" + } + ], + "author": "jesta", + "author_reputation": 38947133984552, + "beneficiaries": [], + "body": "I love the idea in this, basically setting up a fortress for your witness node to be more resilient. \n\nOne thing you're right about though is it would be a somewhat expensive venture. At the rate I'm witnessing blocks (maybe 3-4 a day?), it's not feasible to sustain itself financially, but I imagine the top 19 could easily go this route. Maybe even some of the people in the top 30?\n\nI'd be more than willing to help prototype this type of infrastructure. I've been considering how difficult it would be to setup on AWS with a CloudFormation script that spins up seed nodes as ECS Containers, VPCs in every region that all interconnect via private networking, and an EC2 container for your witness node that's not accessible from the internet, but only the seed nodes. \n\nIt really shouldn't be all that hard, and even non-technical witnesses could copy/paste the cloudformation script to get started. Of course with this idea, if AWS is attacked, you're still the mercy of them being able to handle it.", + "body_length": 1005, + "cashout_time": "2016-08-23T19:11:06", + "category": "witness-category", + "children": 2, + "created": "2016-08-16T19:11:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:11:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6486910806264, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "9.970 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z", + "post_id": 839626, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z" + }, + { + "active_votes": [], + "author": "thebluepanda", + "author_reputation": 7564464865541, + "beneficiaries": [], + "body": "i was checking if you tagged it in #witness-category ;) \nglad to see steemit has a great team of security devs and glad to have upvoted you as witness.", + "body_length": 151, + "cashout_time": "2016-08-23T19:08:06", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T19:08:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:08:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z", + "post_id": 839578, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thebluepanda/re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/paginated.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/paginated.tavern.yaml new file mode 100644 index 00000000..9b297e41 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/paginated.tavern.yaml @@ -0,0 +1,29 @@ +--- + test_name: Hivemind condenser_api.get_replies_by_last_update + + marks: + - patterntest # replies to posts of gtg + # original overlapped pages, but that was corrected + + includes: + - !include ../../common.yaml + + stages: + - name: get_replies_by_last_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_replies_by_last_update" + params: ["brandonp","re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z",3] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "paginated" + directory: "condenser_api_patterns/get_replies_by_last_update" \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/post_with_deleted_reply.orig.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/post_with_deleted_reply.orig.json new file mode 100644 index 00000000..96b5ff98 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/post_with_deleted_reply.orig.json @@ -0,0 +1,377 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "54594928", + "voter": "thomasdh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53732024", + "voter": "markcuban" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "122367017", + "voter": "senia" + } + ], + "author": "bergy", + "author_reputation": 0, + "beneficiaries": [], + "body": "Sounds kind of like a ponzi to me.", + "body_length": 34, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 1, + "created": "2016-07-19T12:49:06", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-24T09:16:12", + "last_update": "2016-07-19T12:49:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 230693969, + "parent_author": "gregory-f", + "parent_permlink": "re-owdy-re-donkeypong-still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy-20160711t145402951z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gregory-f-re-owdy-re-donkeypong-still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy-20160719t124904368z", + "post_id": 136704, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Still Confused by Steem, Steem Dollars, and Steem Power? The Power Plant Analogy", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@donkeypong/still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy#@bergy/re-gregory-f-re-owdy-re-donkeypong-still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy-20160719t124904368z" + }, + { + "active_votes": [], + "author": "krystle", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hey Gregory-f just thought I'd let you know I have finally managed to upload my first original piece. It would be great if you could check it out when you have a chance and let me know what you think Cheers. https://steemit.com/fantasy/@krystle/part-1-disturbance", + "body_length": 263, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-17T05:50:39", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"],\"links\":[\"https:\\/\\/steemit.com\\/fantasy\\/@krystle\\/part-1-disturbance\"]}", + "last_payout": "2016-08-18T07:15:21", + "last_update": "2016-07-17T05:50:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gregory-f", + "parent_permlink": "re-krystle-hey-i-m-krystle-20160713t172656975z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gregory-f-re-krystle-hey-i-m-krystle-20160717t055035860z", + "post_id": 100200, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hey I'm Krystle", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@krystle/hey-i-m-krystle#@krystle/re-gregory-f-re-krystle-hey-i-m-krystle-20160717t055035860z" + }, + { + "active_votes": [], + "author": "kiwiscorner", + "author_reputation": 0, + "beneficiaries": [], + "body": "thanks i always strive for more and more detail C:", + "body_length": 50, + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 0, + "created": "2016-07-17T04:04:51", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-21T05:24:36", + "last_update": "2016-07-17T04:04:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gregory-f", + "parent_permlink": "re-kiwiscorner-speedpaint-also-art-improvement-in-less-then-a-year-20160717t034858234z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gregory-f-re-kiwiscorner-speedpaint-also-art-improvement-in-less-then-a-year-20160717t040452393z", + "post_id": 99076, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Speedpaint! also art improvement in less then a year!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/art/@kiwiscorner/speedpaint-also-art-improvement-in-less-then-a-year#@kiwiscorner/re-gregory-f-re-kiwiscorner-speedpaint-also-art-improvement-in-less-then-a-year-20160717t040452393z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "353152223", + "voter": "lightninggears" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8412682089", + "voter": "nobodyishome" + } + ], + "author": "bitcoinmeister", + "author_reputation": 0, + "beneficiaries": [], + "body": "And from one I have been told it actually is only going on in China on a VERY VERY VERY small scale now. I think the speculation about this trend growing helped boost the price some. Imagine when the large chunks of the chinese and other populations REALLY start to do this. The cool thing is that we can light the spark in some of these countries by informing citizens via Internet methods like Steemit.", + "body_length": 404, + "cashout_time": "1969-12-31T23:59:59", + "category": "bitcoin", + "children": 0, + "created": "2016-07-15T21:12:00", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"bitcoin\"]}", + "last_payout": "2016-08-20T00:29:45", + "last_update": "2016-07-15T21:12:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 8765834312, + "parent_author": "gregory-f", + "parent_permlink": "re-bitcoinmeister-in-what-industry-will-bitcoin-be-the-100-necessary-raw-material-all-portfolios-should-contain-btc-20160715t163409606z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gregory-f-re-bitcoinmeister-in-what-industry-will-bitcoin-be-the-100-necessary-raw-material-all-portfolios-should-contain-btc-20160715t211211622z", + "post_id": 90913, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "In what industry will Bitcoin be the 100% necessary raw material? All portfolios should contain BTC", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/bitcoin/@bitcoinmeister/in-what-industry-will-bitcoin-be-the-100-necessary-raw-material-all-portfolios-should-contain-btc#@bitcoinmeister/re-gregory-f-re-bitcoinmeister-in-what-industry-will-bitcoin-be-the-100-necessary-raw-material-all-portfolios-should-contain-btc-20160715t211211622z" + }, + { + "active_votes": [], + "author": "vilivolcini", + "author_reputation": 0, + "beneficiaries": [], + "body": "But you need lots of electricity to generate BTC. \n\nAnd it's not same, BTC is limited while $ printing is unlimited.", + "body_length": 116, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 3, + "created": "2016-07-14T13:56:51", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-24T09:16:12", + "last_update": "2016-07-14T13:56:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gregory-f", + "parent_permlink": "re-owdy-re-donkeypong-still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy-20160711t145402951z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gregory-f-re-owdy-re-donkeypong-still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy-20160714t135648692z", + "post_id": 79835, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Still Confused by Steem, Steem Dollars, and Steem Power? The Power Plant Analogy", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@donkeypong/still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy#@vilivolcini/re-gregory-f-re-owdy-re-donkeypong-still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy-20160714t135648692z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "552977552", + "voter": "ardenyham" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "234193155", + "voter": "phare" + } + ], + "author": "phare", + "author_reputation": 0, + "beneficiaries": [], + "body": "I have following msg: No withnesses configure! Please add withness names and private keys...\nBut my configurations looks like this:\n\n# name of witness controlled by this node (e.g. initwitness )\n# witness = \"phare\"\n\n# name of miner and its private key (e.g. [\"account\",\"WIF PRIVATE KEY\"] )\n# miner = [\"phare\",\"5---------------------M\"]\n\nWhat is wrong?", + "body_length": 351, + "cashout_time": "1969-12-31T23:59:59", + "category": "steem", + "children": 1, + "created": "2016-07-14T08:29:30", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "2016-08-23T04:37:48", + "last_update": "2016-07-14T08:29:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 787170707, + "parent_author": "gregory-f", + "parent_permlink": "re-jerome-colley-where-is-my-wif-key-located-20160610t180014042z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gregory-f-re-jerome-colley-where-is-my-wif-key-located-20160714t082929642z", + "post_id": 77370, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Where Is My WIF Key located?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@jerome-colley/where-is-my-wif-key-located#@phare/re-gregory-f-re-jerome-colley-where-is-my-wif-key-located-20160714t082929642z" + }, + { + "active_votes": [], + "author": "krystle", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hello and thank you gregory-f I have a few ideas and I'm just working on my first piece to get up hopefully tonight if not tomorrow :)", + "body_length": 134, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-14T07:36:51", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-18T07:15:21", + "last_update": "2016-07-14T07:36:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gregory-f", + "parent_permlink": "re-krystle-hey-i-m-krystle-20160713t172656975z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gregory-f-re-krystle-hey-i-m-krystle-20160714t073652904z", + "post_id": 77052, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hey I'm Krystle", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@krystle/hey-i-m-krystle#@krystle/re-gregory-f-re-krystle-hey-i-m-krystle-20160714t073652904z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "12717798013", + "voter": "gregory-f" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4729193364", + "voter": "christoryan" + } + ], + "author": "dennis-estenson", + "author_reputation": 0, + "beneficiaries": [], + "body": "I concur. Since the steemit community is inviting the masses here, they must make the danger of losing your password explicit, bold, and crystal clear to the user at every step.", + "body_length": 177, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "created": "2016-07-14T00:46:18", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-24T16:55:42", + "last_update": "2016-07-14T00:46:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 17446991377, + "parent_author": "gregory-f", + "parent_permlink": "re-cryptogee-re-pfunk-a-detailed-look-at-the-account-registration-process-for-review-comment-and-suggestion-from-all-users-20160713t200045668z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gregory-f-re-cryptogee-re-pfunk-a-detailed-look-at-the-account-registration-process-for-review-comment-and-suggestion-from-all-users-20160714t004618927z", + "post_id": 74429, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A Detailed Look at The Account Registration Process for Review, Comment, and Suggestion From All Users", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@pfunk/a-detailed-look-at-the-account-registration-process-for-review-comment-and-suggestion-from-all-users#@dennis-estenson/re-gregory-f-re-cryptogee-re-pfunk-a-detailed-look-at-the-account-registration-process-for-review-comment-and-suggestion-from-all-users-20160714t004618927z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "353130674", + "voter": "lightninggears" + } + ], + "author": "dana-edwards", + "author_reputation": 0, + "beneficiaries": [], + "body": "If you know someone is targeting you specifically then would you hesitate to take them out at the best opportunity? I think in cases where you're dealing with a maniac who is killing random people, if the opportunity presents itself to take the person out how would you justify not doing so?\n\nI don't blame the cops in the instance where they are being killed. They do what they have to do in order to survive a war against them.", + "body_length": 429, + "cashout_time": "1969-12-31T23:59:59", + "category": "politics", + "children": 0, + "created": "2016-07-13T21:05:12", + "curator_payout_value": "0.000 HBD", + "depth": 5, + "json_metadata": "{\"tags\":[\"politics\"]}", + "last_payout": "2016-08-20T01:27:51", + "last_update": "2016-07-13T21:05:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 353130674, + "parent_author": "gregory-f", + "parent_permlink": "re-dana-edwards-re-gregory-f-re-stan-re-markfeuerborn-ethics-of-drone-killing-on-american-soil-20160713t202639859z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gregory-f-re-dana-edwards-re-gregory-f-re-stan-re-markfeuerborn-ethics-of-drone-killing-on-american-soil-20160713t210513034z", + "post_id": 72640, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Ethics of drone killing on American soil?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/politics/@mark.feuerborn/ethics-of-drone-killing-on-american-soil#@dana-edwards/re-gregory-f-re-dana-edwards-re-gregory-f-re-stan-re-markfeuerborn-ethics-of-drone-killing-on-american-soil-20160713t210513034z" + }, + { + "active_votes": [], + "author": "cheftony", + "author_reputation": 0, + "beneficiaries": [], + "body": "added, thank you!", + "body_length": 17, + "cashout_time": "1969-12-31T23:59:59", + "category": "steem", + "children": 0, + "created": "2016-07-13T20:29:48", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "2016-08-24T12:55:39", + "last_update": "2016-07-13T20:29:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gregory-f", + "parent_permlink": "re-cheftony-steem-mining-hashrate-and-hardware-comparison-page-20160712t214124161z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gregory-f-re-cheftony-steem-mining-hashrate-and-hardware-comparison-page-20160713t202948528z", + "post_id": 72365, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "steem mining #1 - hashrate and hardware comparison page", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@cheftony/steem-mining-hashrate-and-hardware-comparison-page#@cheftony/re-gregory-f-re-cheftony-steem-mining-hashrate-and-hardware-comparison-page-20160713t202948528z" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/post_with_deleted_reply.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/post_with_deleted_reply.pat.json new file mode 100644 index 00000000..51c8ef82 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/post_with_deleted_reply.pat.json @@ -0,0 +1,371 @@ +[ + { + "active_votes": [], + "author": "krystle", + "author_reputation": 5183116321161, + "beneficiaries": [], + "body": "Hey Gregory-f just thought I'd let you know I have finally managed to upload my first original piece. It would be great if you could check it out when you have a chance and let me know what you think Cheers. https://steemit.com/fantasy/@krystle/part-1-disturbance", + "body_length": 263, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-17T05:50:39", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"],\"links\":[\"https://steemit.com/fantasy/@krystle/part-1-disturbance\"]}", + "last_payout": "2016-08-18T07:15:21", + "last_update": "2016-07-17T05:50:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gregory-f", + "parent_permlink": "re-krystle-hey-i-m-krystle-20160713t172656975z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gregory-f-re-krystle-hey-i-m-krystle-20160717t055035860z", + "post_id": 138094, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hey I'm Krystle", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@krystle/hey-i-m-krystle#@krystle/re-gregory-f-re-krystle-hey-i-m-krystle-20160717t055035860z" + }, + { + "active_votes": [], + "author": "kiwiscorner", + "author_reputation": 1712610642701, + "beneficiaries": [], + "body": "thanks i always strive for more and more detail C:", + "body_length": 50, + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 0, + "created": "2016-07-17T04:04:51", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-21T05:24:36", + "last_update": "2016-07-17T04:04:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gregory-f", + "parent_permlink": "re-kiwiscorner-speedpaint-also-art-improvement-in-less-then-a-year-20160717t034858234z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gregory-f-re-kiwiscorner-speedpaint-also-art-improvement-in-less-then-a-year-20160717t040452393z", + "post_id": 136645, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Speedpaint! also art improvement in less then a year!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/art/@kiwiscorner/speedpaint-also-art-improvement-in-less-then-a-year#@kiwiscorner/re-gregory-f-re-kiwiscorner-speedpaint-also-art-improvement-in-less-then-a-year-20160717t040452393z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 3675954043, + "rshares": 353152223, + "voter": "lightninggears" + }, + { + "percent": "10000", + "reputation": 2018069960576, + "rshares": 8412682089, + "voter": "nobodyishome" + } + ], + "author": "bitcoinmeister", + "author_reputation": 4459522539935, + "beneficiaries": [], + "body": "And from one I have been told it actually is only going on in China on a VERY VERY VERY small scale now. I think the speculation about this trend growing helped boost the price some. Imagine when the large chunks of the chinese and other populations REALLY start to do this. The cool thing is that we can light the spark in some of these countries by informing citizens via Internet methods like Steemit.", + "body_length": 404, + "cashout_time": "1969-12-31T23:59:59", + "category": "bitcoin", + "children": 0, + "created": "2016-07-15T21:12:00", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"bitcoin\"]}", + "last_payout": "2016-08-20T00:29:45", + "last_update": "2016-07-15T21:12:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 8765834312, + "parent_author": "gregory-f", + "parent_permlink": "re-bitcoinmeister-in-what-industry-will-bitcoin-be-the-100-necessary-raw-material-all-portfolios-should-contain-btc-20160715t163409606z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gregory-f-re-bitcoinmeister-in-what-industry-will-bitcoin-be-the-100-necessary-raw-material-all-portfolios-should-contain-btc-20160715t211211622z", + "post_id": 125626, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "In what industry will Bitcoin be the 100% necessary raw material? All portfolios should contain BTC", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/bitcoin/@bitcoinmeister/in-what-industry-will-bitcoin-be-the-100-necessary-raw-material-all-portfolios-should-contain-btc#@bitcoinmeister/re-gregory-f-re-bitcoinmeister-in-what-industry-will-bitcoin-be-the-100-necessary-raw-material-all-portfolios-should-contain-btc-20160715t211211622z" + }, + { + "active_votes": [], + "author": "vilivolcini", + "author_reputation": 0, + "beneficiaries": [], + "body": "But you need lots of electricity to generate BTC. \n\nAnd it's not same, BTC is limited while $ printing is unlimited.", + "body_length": 116, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 3, + "created": "2016-07-14T13:56:51", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-24T09:16:12", + "last_update": "2016-07-14T13:56:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gregory-f", + "parent_permlink": "re-owdy-re-donkeypong-still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy-20160711t145402951z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gregory-f-re-owdy-re-donkeypong-still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy-20160714t135648692z", + "post_id": 110782, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Still Confused by Steem, Steem Dollars, and Steem Power? The Power Plant Analogy", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@donkeypong/still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy#@vilivolcini/re-gregory-f-re-owdy-re-donkeypong-still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy-20160714t135648692z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 182635807275, + "rshares": 552977552, + "voter": "ardenyham" + }, + { + "percent": "10000", + "reputation": 1060850354, + "rshares": 234193155, + "voter": "phare" + } + ], + "author": "phare", + "author_reputation": 1060850354, + "beneficiaries": [], + "body": "I have following msg: No withnesses configure! Please add withness names and private keys...\nBut my configurations looks like this:\n\n# name of witness controlled by this node (e.g. initwitness )\n# witness = \"phare\"\n\n# name of miner and its private key (e.g. [\"account\",\"WIF PRIVATE KEY\"] )\n# miner = [\"phare\",\"5---------------------M\"]\n\nWhat is wrong?", + "body_length": 351, + "cashout_time": "1969-12-31T23:59:59", + "category": "steem", + "children": 1, + "created": "2016-07-14T08:29:30", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "2016-08-23T04:37:48", + "last_update": "2016-07-14T08:29:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 787170707, + "parent_author": "gregory-f", + "parent_permlink": "re-jerome-colley-where-is-my-wif-key-located-20160610t180014042z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gregory-f-re-jerome-colley-where-is-my-wif-key-located-20160714t082929642z", + "post_id": 107279, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Where Is My WIF Key located?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@jerome-colley/where-is-my-wif-key-located#@phare/re-gregory-f-re-jerome-colley-where-is-my-wif-key-located-20160714t082929642z" + }, + { + "active_votes": [], + "author": "krystle", + "author_reputation": 5183116321161, + "beneficiaries": [], + "body": "Hello and thank you gregory-f I have a few ideas and I'm just working on my first piece to get up hopefully tonight if not tomorrow :)", + "body_length": 134, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-14T07:36:51", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-18T07:15:21", + "last_update": "2016-07-14T07:36:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gregory-f", + "parent_permlink": "re-krystle-hey-i-m-krystle-20160713t172656975z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gregory-f-re-krystle-hey-i-m-krystle-20160714t073652904z", + "post_id": 106862, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hey I'm Krystle", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@krystle/hey-i-m-krystle#@krystle/re-gregory-f-re-krystle-hey-i-m-krystle-20160714t073652904z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 3444102146490, + "rshares": 12717798013, + "voter": "gregory-f" + }, + { + "percent": "10000", + "reputation": 642608867428, + "rshares": 4729193364, + "voter": "christoryan" + } + ], + "author": "dennis-estenson", + "author_reputation": 6934111434, + "beneficiaries": [], + "body": "I concur. Since the steemit community is inviting the masses here, they must make the danger of losing your password explicit, bold, and crystal clear to the user at every step.", + "body_length": 177, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "created": "2016-07-14T00:46:18", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-24T16:55:42", + "last_update": "2016-07-14T00:46:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 17446991377, + "parent_author": "gregory-f", + "parent_permlink": "re-cryptogee-re-pfunk-a-detailed-look-at-the-account-registration-process-for-review-comment-and-suggestion-from-all-users-20160713t200045668z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gregory-f-re-cryptogee-re-pfunk-a-detailed-look-at-the-account-registration-process-for-review-comment-and-suggestion-from-all-users-20160714t004618927z", + "post_id": 103180, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A Detailed Look at The Account Registration Process for Review, Comment, and Suggestion From All Users", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@pfunk/a-detailed-look-at-the-account-registration-process-for-review-comment-and-suggestion-from-all-users#@dennis-estenson/re-gregory-f-re-cryptogee-re-pfunk-a-detailed-look-at-the-account-registration-process-for-review-comment-and-suggestion-from-all-users-20160714t004618927z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 3675954043, + "rshares": 353130674, + "voter": "lightninggears" + } + ], + "author": "dana-edwards", + "author_reputation": 87363750745142, + "beneficiaries": [], + "body": "If you know someone is targeting you specifically then would you hesitate to take them out at the best opportunity? I think in cases where you're dealing with a maniac who is killing random people, if the opportunity presents itself to take the person out how would you justify not doing so?\n\nI don't blame the cops in the instance where they are being killed. They do what they have to do in order to survive a war against them.", + "body_length": 429, + "cashout_time": "1969-12-31T23:59:59", + "category": "politics", + "children": 0, + "created": "2016-07-13T21:05:12", + "curator_payout_value": "0.000 HBD", + "depth": 5, + "json_metadata": "{\"tags\":[\"politics\"]}", + "last_payout": "2016-08-20T01:27:51", + "last_update": "2016-07-13T21:05:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 353130674, + "parent_author": "gregory-f", + "parent_permlink": "re-dana-edwards-re-gregory-f-re-stan-re-markfeuerborn-ethics-of-drone-killing-on-american-soil-20160713t202639859z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gregory-f-re-dana-edwards-re-gregory-f-re-stan-re-markfeuerborn-ethics-of-drone-killing-on-american-soil-20160713t210513034z", + "post_id": 100727, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Ethics of drone killing on American soil?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/politics/@mark.feuerborn/ethics-of-drone-killing-on-american-soil#@dana-edwards/re-gregory-f-re-dana-edwards-re-gregory-f-re-stan-re-markfeuerborn-ethics-of-drone-killing-on-american-soil-20160713t210513034z" + }, + { + "active_votes": [], + "author": "cheftony", + "author_reputation": 2676865682314, + "beneficiaries": [], + "body": "added, thank you!", + "body_length": 17, + "cashout_time": "1969-12-31T23:59:59", + "category": "steem", + "children": 0, + "created": "2016-07-13T20:29:48", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "2016-08-24T12:55:39", + "last_update": "2016-07-13T20:29:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gregory-f", + "parent_permlink": "re-cheftony-steem-mining-hashrate-and-hardware-comparison-page-20160712t214124161z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gregory-f-re-cheftony-steem-mining-hashrate-and-hardware-comparison-page-20160713t202948528z", + "post_id": 100360, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "steem mining #1 - hashrate and hardware comparison page", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@cheftony/steem-mining-hashrate-and-hardware-comparison-page#@cheftony/re-gregory-f-re-cheftony-steem-mining-hashrate-and-hardware-comparison-page-20160713t202948528z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 3444102146490, + "rshares": 12459711275, + "voter": "gregory-f" + }, + { + "percent": "10000", + "reputation": 3675954043, + "rshares": 360487563, + "voter": "lightninggears" + } + ], + "author": "dana-edwards", + "author_reputation": 87363750745142, + "beneficiaries": [], + "body": "We need in my opinion more non lethal weapons so deadly force isn't as necessary. But in this particular case where you have a mass shooter then is it unusual that the police killed him? Most mass shooters seem to get killed and if they target police it's a near certainty that they'll be killed by the police. We have seen this before and maybe the weapon is more advanced but it's the same outcome.", + "body_length": 400, + "cashout_time": "1969-12-31T23:59:59", + "category": "politics", + "children": 2, + "created": "2016-07-13T17:04:03", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"politics\"]}", + "last_payout": "2016-08-20T01:27:51", + "last_update": "2016-07-13T17:04:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 12820198838, + "parent_author": "gregory-f", + "parent_permlink": "re-stan-re-markfeuerborn-ethics-of-drone-killing-on-american-soil-20160713t141753171z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gregory-f-re-stan-re-markfeuerborn-ethics-of-drone-killing-on-american-soil-20160713t170404974z", + "post_id": 97574, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Ethics of drone killing on American soil?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/politics/@mark.feuerborn/ethics-of-drone-killing-on-american-soil#@dana-edwards/re-gregory-f-re-stan-re-markfeuerborn-ethics-of-drone-killing-on-american-soil-20160713t170404974z" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/post_with_deleted_reply.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/post_with_deleted_reply.tavern.yaml new file mode 100644 index 00000000..08df4ce2 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/post_with_deleted_reply.tavern.yaml @@ -0,0 +1,31 @@ +--- + test_name: Hivemind condenser_api.get_replies_by_last_update + + marks: + - patterntest # replies to posts of gregory-f + # reply to his clueless-user-s-guide-to-upgrading-to-steemd-0-8-x post was deleted: @criticalproof/re-gregory-f-clueless-user-s-guide-to-upgrading-to-steemd-0-8-x-20160716t124218553z + # but if it wasn't it would be on selected page right below @kiwiscorner/re-gregory-f-re-kiwiscorner-speedpaint-also-art-improvement-in-less-then-a-year-20160717t040452393z + # original overlapped pages, but that was corrected + + includes: + - !include ../../common.yaml + + stages: + - name: get_replies_by_last_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_replies_by_last_update" + params: ["bergy","re-gregory-f-re-owdy-re-donkeypong-still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy-20160719t124904368z",10] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "post_with_deleted_reply" + directory: "condenser_api_patterns/get_replies_by_last_update" \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/pre_appbase.orig.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/pre_appbase.orig.json index 2b914187..7169f19f 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/pre_appbase.orig.json +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/pre_appbase.orig.json @@ -1,94 +1,365 @@ [ + { + "active_votes": [], + "author": "abit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Sorry.. accidentally down-voted.", + "body_length": 32, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 1, + "created": "2016-05-25T11:43:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-22T11:15:54", + "last_update": "2016-05-25T11:43:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "summersolstice", + "parent_permlink": "cabbage-moths--cheap-solutions", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-summersolstice-cabbage-moths--cheap-solutions-20160525t114306407z", + "post_id": 10204, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Cabbage moths - cheap solutions?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/gardening/@summersolstice/cabbage-moths--cheap-solutions#@abit/re-summersolstice-cabbage-moths--cheap-solutions-20160525t114306407z" + }, { "active_votes": [ - { - "percent": "-100", - "reputation": 0, - "rshares": "-375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit46" - }, { "percent": "10000", "reputation": 0, - "rshares": "81125", - "voter": "roadscape" + "rshares": "119491872333", + "voter": "team" }, { "percent": "10000", "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, + "rshares": "55729365", + "voter": "summersolstice" + } + ], + "author": "team", + "author_reputation": 0, + "beneficiaries": [], + "body": "I use a time-tested tool: in 3 litr of water add pharmaceutical vial of valerian and 1 tbsp. l. liquid soap.\nA month before harvest cabbage heads on cabbage storage sprinkle ammonia. To do this, 1 vial of liquid ammonia (40 ml) should be poured into a 5-liter bucket of water and add a couple of tablespoons of liquid soap. After this treatment will not be any pests.", + "body_length": 368, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 1, + "created": "2016-05-25T09:56:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-22T11:15:54", + "last_update": "2016-05-25T09:56:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 119547601698, + "parent_author": "summersolstice", + "parent_permlink": "cabbage-moths--cheap-solutions", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-summersolstice-cabbage-moths--cheap-solutions-20160525t095650565z", + "post_id": 10168, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Cabbage moths - cheap solutions?", + "title": "", + "total_payout_value": "0.152 HBD", + "url": "/gardening/@summersolstice/cabbage-moths--cheap-solutions#@team/re-summersolstice-cabbage-moths--cheap-solutions-20160525t095650565z" + }, + { + "active_votes": [ { "percent": "10000", "reputation": 0, - "rshares": "431616594", - "voter": "acidyo" - }, + "rshares": "55729365", + "voter": "summersolstice" + } + ], + "author": "tuck-fheman", + "author_reputation": 0, + "beneficiaries": [], + "body": "Perhaps this has some helpful info : http://www.planetnatural.com/pest-problem-solver/garden-pests/cabbageworm-control/", + "body_length": 119, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 2, + "created": "2016-05-25T03:09:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-22T11:15:54", + "last_update": "2016-05-25T03:09:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 55729365, + "parent_author": "summersolstice", + "parent_permlink": "cabbage-moths--cheap-solutions", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-summersolstice-cabbage-moths--cheap-solutions-20160525t030916257z", + "post_id": 10012, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Cabbage moths - cheap solutions?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/gardening/@summersolstice/cabbage-moths--cheap-solutions#@tuck-fheman/re-summersolstice-cabbage-moths--cheap-solutions-20160525t030916257z" + }, + { + "active_votes": [], + "author": "bbqbear", + "author_reputation": 0, + "beneficiaries": [], + "body": "Cool, I will try that. Good luck fighting the butterflys!", + "body_length": 57, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 1, + "created": "2016-05-25T03:04:33", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{}", + "last_payout": "2016-08-22T11:15:54", + "last_update": "2016-05-25T03:04:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "summersolstice", + "parent_permlink": "re-bbqbear-re-summersolstice-cabbage-moths--cheap-solutions-20160525t024038713z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-summersolstice-re-bbqbear-re-summersolstice-cabbage-moths--cheap-solutions-20160525t030417408z", + "post_id": 10008, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Cabbage moths - cheap solutions?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/gardening/@summersolstice/cabbage-moths--cheap-solutions#@bbqbear/re-summersolstice-re-bbqbear-re-summersolstice-cabbage-moths--cheap-solutions-20160525t030417408z" + }, + { + "active_votes": [], + "author": "tuck-fheman", + "author_reputation": 0, + "beneficiaries": [], + "body": "> I didn\u2019t know coral snakes come in pairs.\n\nI don't know how true that is. I read it somewhere after coming across this sucker, but most sites say it's a myth. Myth or not, I'm always on the lookout since coming across this one! ;)", + "body_length": 232, + "cashout_time": "1969-12-31T23:59:59", + "category": "yard-life", + "children": 0, + "created": "2016-05-25T02:35:03", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-25T02:35:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "summersolstice", + "parent_permlink": "re-tuck-fheman-tucks-yard-life--day-2-20160525t022159382z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-summersolstice-re-tuck-fheman-tucks-yard-life--day-2-20160525t023503543z", + "post_id": 9981, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Tuck's Yard Life - Day 2", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/yard-life/@tuck-fheman/tucks-yard-life--day-2#@tuck-fheman/re-summersolstice-re-tuck-fheman-tucks-yard-life--day-2-20160525t023503543z" + }, + { + "active_votes": [], + "author": "gardenlady", + "author_reputation": 0, + "beneficiaries": [], + "body": "also, the little blue flower is plumbago. I love blue!", + "body_length": 55, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 0, + "created": "2016-05-25T02:34:06", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-25T02:34:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "summersolstice", + "parent_permlink": "re-gardenlady-this-pots-for-you-20160525t021520627z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-summersolstice-re-gardenlady-this-pots-for-you-20160525t021520627z-20160525t023414076z", + "post_id": 9980, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "This Pot's for You!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/gardening/@gardenlady/this-pots-for-you#@gardenlady/re-summersolstice-re-gardenlady-this-pots-for-you-20160525t021520627z-20160525t023414076z" + }, + { + "active_votes": [], + "author": "gardenlady", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks! I'll be at a client on thursday where we will be putting together some enormous pots that require a ton of plant material. I'll try to remember to take photos of the whole process for all the avid steemit gardeners out there :-)", + "body_length": 238, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 1, + "created": "2016-05-25T02:23:00", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-25T02:23:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "summersolstice", + "parent_permlink": "re-gardenlady-this-pots-for-you-20160525t021520627z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-summersolstice-re-gardenlady-this-pots-for-you-20160525t021520627z-20160525t022310448z", + "post_id": 9976, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "This Pot's for You!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/gardening/@gardenlady/this-pots-for-you#@gardenlady/re-summersolstice-re-gardenlady-this-pots-for-you-20160525t021520627z-20160525t022310448z" + }, + { + "active_votes": [ { "percent": "10000", "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" + "rshares": "29108149076409", + "voter": "smooth" }, { "percent": "10000", "reputation": 0, - "rshares": "58854897335", - "voter": "business" + "rshares": "52317363", + "voter": "summersolstice" }, { "percent": "10000", "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, + "rshares": "437381289", + "voter": "bbqbear" + } + ], + "author": "bbqbear", + "author_reputation": 0, + "beneficiaries": [], + "body": "Nice looking garden. If you want to try [something organic](http://www.apartmenttherapy.com/how-to-make-natural-garden-pesticides-169168) you can use water, hot pepper sauce or chili powder, and garlic with soap\\oil. Spray that on the leaves and the capsaicin is supposed to run them off. I use that and diatomacious earth powder instead of poisoning my future food. It works ok, but you have to spray it every few days and after rains. Don't forget to leave a cup of beer out for the slugs too. \n\nHow did you get the pictures to post side by side?", + "body_length": 549, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 3, + "created": "2016-05-25T02:17:27", + "curator_payout_value": "38.492 HBD", + "depth": 1, + "json_metadata": "{\"links\":[\"http:\\/\\/www.apartmenttherapy.com\\/how-to-make-natural-garden-pesticides-169168\"]}", + "last_payout": "2016-08-22T11:15:54", + "last_update": "2016-05-25T02:17:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 29108638775061, + "parent_author": "summersolstice", + "parent_permlink": "cabbage-moths--cheap-solutions", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-summersolstice-cabbage-moths--cheap-solutions-20160525t021713412z", + "post_id": 9972, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Cabbage moths - cheap solutions?", + "title": "", + "total_payout_value": "38.492 HBD", + "url": "/gardening/@summersolstice/cabbage-moths--cheap-solutions#@bbqbear/re-summersolstice-cabbage-moths--cheap-solutions-20160525t021713412z" + }, + { + "active_votes": [ { "percent": "10000", "reputation": 0, - "rshares": "244129227", - "voter": "kewpiedoll" - }, + "rshares": "56866699", + "voter": "summersolstice" + } + ], + "author": "gardenlady", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hi summersolstice- nice pics :-) bad problem :-(\n\nThe woman I work with is a very experienced vegetable gardener. I'll ask her tomorrow if she has any advice about the moths!", + "body_length": 177, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 1, + "created": "2016-05-25T01:59:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-22T11:15:54", + "last_update": "2016-05-25T01:59:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 56866699, + "parent_author": "summersolstice", + "parent_permlink": "cabbage-moths--cheap-solutions", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-summersolstice-cabbage-moths--cheap-solutions-20160525t015946815z", + "post_id": 9963, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Cabbage moths - cheap solutions?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/gardening/@summersolstice/cabbage-moths--cheap-solutions#@gardenlady/re-summersolstice-cabbage-moths--cheap-solutions-20160525t015946815z" + }, + { + "active_votes": [ { "percent": "10000", "reputation": 0, - "rshares": "1615731741", - "voter": "naturalista" + "rshares": "60837907341", + "voter": "java1959" } ], - "author": "admin", + "author": "tuck-fheman", "author_reputation": 0, "beneficiaries": [], - "body": "First Reply! Let's get this **party** started", - "body_length": 45, + "body": "Must be https://", + "body_length": 16, "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 2, - "created": "2016-03-30T19:52:30", + "category": "steemhelp", + "children": 1, + "created": "2016-05-24T23:31:09", "curator_payout_value": "0.000 HBD", "depth": 1, "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T19:52:30", + "last_payout": "2016-08-17T23:20:27", + "last_update": "2016-05-24T23:31:09", "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62423410900, - "parent_author": "steemit", - "parent_permlink": "firstpost", + "net_rshares": 60837907341, + "parent_author": "summersolstice", + "parent_permlink": "thumbnails-not-showing-up-for-pictures", "pending_payout_value": "0.000 HBD", "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 2, + "permlink": "re-summersolstice-thumbnails-not-showing-up-for-pictures-20160524t233109518z", + "post_id": 9897, "promoted": "0.000 HBD", "replies": [], - "root_title": "Welcome to Steem!", + "root_title": "Thumbnails not showing up for pictures", "title": "", "total_payout_value": "0.000 HBD", - "url": "/meta/@steemit/firstpost#@admin/firstpost" + "url": "/steemhelp/@summersolstice/thumbnails-not-showing-up-for-pictures#@tuck-fheman/re-summersolstice-thumbnails-not-showing-up-for-pictures-20160524t233109518z" } ] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/pre_appbase.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/pre_appbase.pat.json index 66f32f8c..d92ccb9c 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/pre_appbase.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/pre_appbase.pat.json @@ -1,94 +1,372 @@ [ { "active_votes": [ - { - "percent": "-100", - "reputation": 145171381514207, - "rshares": -375241, - "voter": "dantheman" - }, { "percent": "10000", - "reputation": 0, - "rshares": 5100, - "voter": "steemit46" + "reputation": 8963739580468, + "rshares": 119491872333, + "voter": "team" }, { "percent": "10000", - "reputation": 9800209121307, - "rshares": 81125, - "voter": "roadscape" - }, + "reputation": 4327154838646, + "rshares": 55729365, + "voter": "summersolstice" + } + ], + "author": "team", + "author_reputation": 8963739580468, + "beneficiaries": [], + "body": "I use a time-tested tool: in 3 litr of water add pharmaceutical vial of valerian and 1 tbsp. l. liquid soap.\nA month before harvest cabbage heads on cabbage storage sprinkle ammonia. To do this, 1 vial of liquid ammonia (40 ml) should be poured into a 5-liter bucket of water and add a couple of tablespoons of liquid soap. After this treatment will not be any pests.", + "body_length": 368, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 1, + "created": "2016-05-25T09:56:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-22T11:15:54", + "last_update": "2016-05-25T09:56:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 119547601698, + "parent_author": "summersolstice", + "parent_permlink": "cabbage-moths--cheap-solutions", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-summersolstice-cabbage-moths--cheap-solutions-20160525t095650565z", + "post_id": 13604, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Cabbage moths - cheap solutions?", + "title": "", + "total_payout_value": "0.152 HBD", + "url": "/gardening/@summersolstice/cabbage-moths--cheap-solutions#@team/re-summersolstice-cabbage-moths--cheap-solutions-20160525t095650565z" + }, + { + "active_votes": [ { "percent": "10000", - "reputation": 1172373556107, - "rshares": 425903066, - "voter": "gekko" - }, + "reputation": 4327154838646, + "rshares": 55729365, + "voter": "summersolstice" + } + ], + "author": "tuck-fheman", + "author_reputation": 147478489309626, + "beneficiaries": [], + "body": "Perhaps this has some helpful info : http://www.planetnatural.com/pest-problem-solver/garden-pests/cabbageworm-control/", + "body_length": 119, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 2, + "created": "2016-05-25T03:09:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-22T11:15:54", + "last_update": "2016-05-25T03:09:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 55729365, + "parent_author": "summersolstice", + "parent_permlink": "cabbage-moths--cheap-solutions", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-summersolstice-cabbage-moths--cheap-solutions-20160525t030916257z", + "post_id": 13375, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Cabbage moths - cheap solutions?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/gardening/@summersolstice/cabbage-moths--cheap-solutions#@tuck-fheman/re-summersolstice-cabbage-moths--cheap-solutions-20160525t030916257z" + }, + { + "active_votes": [], + "author": "bbqbear", + "author_reputation": 17814707827319, + "beneficiaries": [], + "body": "Cool, I will try that. Good luck fighting the butterflys!", + "body_length": 57, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 1, + "created": "2016-05-25T03:04:33", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{}", + "last_payout": "2016-08-22T11:15:54", + "last_update": "2016-05-25T03:04:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "summersolstice", + "parent_permlink": "re-bbqbear-re-summersolstice-cabbage-moths--cheap-solutions-20160525t024038713z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-summersolstice-re-bbqbear-re-summersolstice-cabbage-moths--cheap-solutions-20160525t030417408z", + "post_id": 13371, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Cabbage moths - cheap solutions?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/gardening/@summersolstice/cabbage-moths--cheap-solutions#@bbqbear/re-summersolstice-re-bbqbear-re-summersolstice-cabbage-moths--cheap-solutions-20160525t030417408z" + }, + { + "active_votes": [], + "author": "tuck-fheman", + "author_reputation": 147478489309626, + "beneficiaries": [], + "body": "> I didn\u2019t know coral snakes come in pairs.\n\nI don't know how true that is. I read it somewhere after coming across this sucker, but most sites say it's a myth. Myth or not, I'm always on the lookout since coming across this one! ;)", + "body_length": 232, + "cashout_time": "1969-12-31T23:59:59", + "category": "yard-life", + "children": 0, + "created": "2016-05-25T02:35:03", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-25T02:35:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "summersolstice", + "parent_permlink": "re-tuck-fheman-tucks-yard-life--day-2-20160525t022159382z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-summersolstice-re-tuck-fheman-tucks-yard-life--day-2-20160525t023503543z", + "post_id": 13342, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Tuck's Yard Life - Day 2", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/yard-life/@tuck-fheman/tucks-yard-life--day-2#@tuck-fheman/re-summersolstice-re-tuck-fheman-tucks-yard-life--day-2-20160525t023503543z" + }, + { + "active_votes": [], + "author": "gardenlady", + "author_reputation": 25112072900487, + "beneficiaries": [], + "body": "also, the little blue flower is plumbago. I love blue!", + "body_length": 55, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 0, + "created": "2016-05-25T02:34:06", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-25T02:34:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "summersolstice", + "parent_permlink": "re-gardenlady-this-pots-for-you-20160525t021520627z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-summersolstice-re-gardenlady-this-pots-for-you-20160525t021520627z-20160525t023414076z", + "post_id": 13341, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "This Pot's for You!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/gardening/@gardenlady/this-pots-for-you#@gardenlady/re-summersolstice-re-gardenlady-this-pots-for-you-20160525t021520627z-20160525t023414076z" + }, + { + "active_votes": [], + "author": "gardenlady", + "author_reputation": 25112072900487, + "beneficiaries": [], + "body": "Thanks! I'll be at a client on thursday where we will be putting together some enormous pots that require a ton of plant material. I'll try to remember to take photos of the whole process for all the avid steemit gardeners out there :-)", + "body_length": 238, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 1, + "created": "2016-05-25T02:23:00", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-25T02:23:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "summersolstice", + "parent_permlink": "re-gardenlady-this-pots-for-you-20160525t021520627z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-summersolstice-re-gardenlady-this-pots-for-you-20160525t021520627z-20160525t022310448z", + "post_id": 13336, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "This Pot's for You!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/gardening/@gardenlady/this-pots-for-you#@gardenlady/re-summersolstice-re-gardenlady-this-pots-for-you-20160525t021520627z-20160525t022310448z" + }, + { + "active_votes": [ { "percent": "10000", - "reputation": 15755437221598, - "rshares": 431616594, - "voter": "acidyo" + "reputation": 32455846463901, + "rshares": 29108149076409, + "voter": "smooth" }, { "percent": "10000", - "reputation": 1005278051807, - "rshares": 742566481, - "voter": "patrick-g" + "reputation": 4327154838646, + "rshares": 52317363, + "voter": "summersolstice" }, { "percent": "10000", - "reputation": 7967572146571, - "rshares": 58854897335, - "voter": "business" - }, + "reputation": 17814707827319, + "rshares": 437381289, + "voter": "bbqbear" + } + ], + "author": "bbqbear", + "author_reputation": 17814707827319, + "beneficiaries": [], + "body": "Nice looking garden. If you want to try [something organic](http://www.apartmenttherapy.com/how-to-make-natural-garden-pesticides-169168) you can use water, hot pepper sauce or chili powder, and garlic with soap\\oil. Spray that on the leaves and the capsaicin is supposed to run them off. I use that and diatomacious earth powder instead of poisoning my future food. It works ok, but you have to spray it every few days and after rains. Don't forget to leave a cup of beer out for the slugs too. \n\nHow did you get the pictures to post side by side?", + "body_length": 549, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 3, + "created": "2016-05-25T02:17:27", + "curator_payout_value": "38.492 HBD", + "depth": 1, + "json_metadata": "{\"links\":[\"http://www.apartmenttherapy.com/how-to-make-natural-garden-pesticides-169168\"]}", + "last_payout": "2016-08-22T11:15:54", + "last_update": "2016-05-25T02:17:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 29108638775061, + "parent_author": "summersolstice", + "parent_permlink": "cabbage-moths--cheap-solutions", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-summersolstice-cabbage-moths--cheap-solutions-20160525t021713412z", + "post_id": 13332, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Cabbage moths - cheap solutions?", + "title": "", + "total_payout_value": "38.492 HBD", + "url": "/gardening/@summersolstice/cabbage-moths--cheap-solutions#@bbqbear/re-summersolstice-cabbage-moths--cheap-solutions-20160525t021713412z" + }, + { + "active_votes": [ { "percent": "10000", - "reputation": 353432699790, - "rshares": 108855472, - "voter": "kingtylervvs" - }, + "reputation": 4327154838646, + "rshares": 56866699, + "voter": "summersolstice" + } + ], + "author": "gardenlady", + "author_reputation": 25112072900487, + "beneficiaries": [], + "body": "Hi summersolstice- nice pics :-) bad problem :-(\n\nThe woman I work with is a very experienced vegetable gardener. I'll ask her tomorrow if she has any advice about the moths!", + "body_length": 177, + "cashout_time": "1969-12-31T23:59:59", + "category": "gardening", + "children": 1, + "created": "2016-05-25T01:59:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-22T11:15:54", + "last_update": "2016-05-25T01:59:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 56866699, + "parent_author": "summersolstice", + "parent_permlink": "cabbage-moths--cheap-solutions", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-summersolstice-cabbage-moths--cheap-solutions-20160525t015946815z", + "post_id": 13320, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Cabbage moths - cheap solutions?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/gardening/@summersolstice/cabbage-moths--cheap-solutions#@gardenlady/re-summersolstice-cabbage-moths--cheap-solutions-20160525t015946815z" + }, + { + "active_votes": [ { "percent": "10000", - "reputation": 1241600128334, - "rshares": 244129227, - "voter": "kewpiedoll" - }, + "reputation": 2272340357792, + "rshares": 60837907341, + "voter": "java1959" + } + ], + "author": "tuck-fheman", + "author_reputation": 147478489309626, + "beneficiaries": [], + "body": "Must be https://", + "body_length": 16, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemhelp", + "children": 1, + "created": "2016-05-24T23:31:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-17T23:20:27", + "last_update": "2016-05-24T23:31:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 60837907341, + "parent_author": "summersolstice", + "parent_permlink": "thumbnails-not-showing-up-for-pictures", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-summersolstice-thumbnails-not-showing-up-for-pictures-20160524t233109518z", + "post_id": 13226, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Thumbnails not showing up for pictures", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemhelp/@summersolstice/thumbnails-not-showing-up-for-pictures#@tuck-fheman/re-summersolstice-thumbnails-not-showing-up-for-pictures-20160524t233109518z" + }, + { + "active_votes": [ { "percent": "10000", - "reputation": 1320262999851, - "rshares": 1615731741, - "voter": "naturalista" + "reputation": 4327154838646, + "rshares": 58004033, + "voter": "summersolstice" } ], - "author": "admin", - "author_reputation": 975371654, + "author": "donkeypong", + "author_reputation": 96486114508046, "beneficiaries": [], - "body": "First Reply! Let's get this **party** started", - "body_length": 45, + "body": "Congratulations! Your blog post is featured in the Steemit Blog Spotlight, Issue 1 (link below). The newsletter is dedicated to highlighting new and original blog content on Steemit, helping emerging bloggers get more exposure, upvotes, and payments. The newsletter's own upvote dollars are used 100% for promoting Steemit to other bloggers on the web. If you know any other good bloggers who might want to be featured, please click the link below and post a reply comment. And please keep posting more blog content!\n\nhttps://steemit.com/blogspotlight/@donkeypong/steemit-blog-spotlight-issue-1", + "body_length": 594, "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 2, - "created": "2016-03-30T19:52:30", + "category": "gardening", + "children": 0, + "created": "2016-05-21T05:30:33", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T19:52:30", + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-21T05:36:45", "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62423410900, - "parent_author": "steemit", - "parent_permlink": "firstpost", + "net_rshares": 58004033, + "parent_author": "summersolstice", + "parent_permlink": "first-harvest", "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, - "permlink": "firstpost", - "post_id": 2, + "permlink": "re-summersolstice-first-harvest-20160521t053032724z", + "post_id": 10242, "promoted": "0.000 HBD", "replies": [], - "root_title": "Welcome to Steem!", + "root_title": "First harvest", "title": "", "total_payout_value": "0.000 HBD", - "url": "/meta/@steemit/firstpost#@admin/firstpost" + "url": "/gardening/@summersolstice/first-harvest#@donkeypong/re-summersolstice-first-harvest-20160521t053032724z" } ] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/pre_appbase.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/pre_appbase.tavern.yaml index 343fdf70..f86cba3a 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/pre_appbase.tavern.yaml +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/pre_appbase.tavern.yaml @@ -2,7 +2,7 @@ test_name: Hivemind condenser_api.get_replies_by_last_update pre_appbase patterns test marks: - - patterntest + - patterntest # see abit.tavern.yaml includes: - !include ../../common.yaml @@ -18,7 +18,7 @@ jsonrpc: "2.0" id: 1 method: "call" - params: ["condenser_api", "get_replies_by_last_update", ["admin","firstpost",1]] + params: ["condenser_api", "get_replies_by_last_update", ["abit","re-summersolstice-cabbage-moths--cheap-solutions-20160525t114306407z",10]] response: status_code: 200 verify_response_with: diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/steemit.orig.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/steemit.orig.json new file mode 100644 index 00000000..24ae3ad9 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/steemit.orig.json @@ -0,0 +1,1333 @@ +[ + { + "active_votes": [], + "author": "jack8831", + "author_reputation": 0, + "beneficiaries": [], + "body": "You support fantastic system now!", + "body_length": 33, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-24T09:30:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-24T09:30:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160824t093007335z", + "post_id": 729186, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@jack8831/re-steemit-firstpost-20160824t093007335z" + }, + { + "active_votes": [ + { + "percent": "-10000", + "reputation": 0, + "rshares": "-75407549856", + "voter": "vault" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57599604", + "voter": "abanks1000" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54993432", + "voter": "landarin" + } + ], + "author": "rittr", + "author_reputation": 0, + "beneficiaries": [], + "body": "I am Comment **Number 35** on the first Steemit Poster evaaar!", + "body_length": 62, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-24T02:53:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-24T02:53:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -74429831049, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160824t025355199z", + "post_id": 726644, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@rittr/re-steemit-firstpost-20160824t025355199z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "53122308", + "voter": "mandarin99" + } + ], + "author": "future24", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you!", + "body_length": 10, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-18T03:02:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-18T03:02:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53122308, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160818t030224104z", + "post_id": 650694, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@future24/re-steemit-firstpost-20160818t030224104z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "23067571373", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "999297062", + "voter": "juurop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "823625727", + "voter": "usb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5546862495", + "voter": "tannukas6" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "692185541", + "voter": "runridefly" + } + ], + "author": "ubg", + "author_reputation": 0, + "beneficiaries": [], + "body": "You have quadruple the liquidity any of the exchanges have. \n## Just make it rain!\nhttp://i.imgur.com/Maj5zM2.gif", + "body_length": 113, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-13T14:32:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"image\":[\"http:\\/\\/i.imgur.com\\/Maj5zM2.gif\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-13T14:32:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 31823936914, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160813t143213453z", + "post_id": 585908, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@ubg/re-steemit-firstpost-20160813t143213453z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "47738566", + "voter": "alktoni" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "555987168", + "voter": "funkywanderer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45336058", + "voter": "andressilvera" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50997147", + "voter": "david.prochnow" + } + ], + "author": "flandude", + "author_reputation": 0, + "beneficiaries": [], + "body": "http://i.imgsafe.org/d01598860e.jpg", + "body_length": 35, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-11T22:53:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"image\":[\"http:\\/\\/i.imgsafe.org\\/d01598860e.jpg\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-11T22:53:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 700058939, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160811t225325571z", + "post_id": 563725, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@flandude/re-steemit-firstpost-20160811t225325571z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "74273734", + "voter": "bitmaxt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56152551", + "voter": "lovetosteemit" + } + ], + "author": "deanliu", + "author_reputation": 0, + "beneficiaries": [], + "body": "is this post truly the time zero, the origin, the big bang of all?", + "body_length": 66, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-10T08:33:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-10T08:33:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 130426285, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160810t083336206z", + "post_id": 537479, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@deanliu/re-steemit-firstpost-20160810t083336206z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "90409341", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58727187", + "voter": "rezrez" + } + ], + "author": "jelloducky", + "author_reputation": 0, + "beneficiaries": [], + "body": "This platform is inspiring, thank you so much!", + "body_length": 46, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-07T21:53:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-07T21:53:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 149136528, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160807t215340468z", + "post_id": 498164, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@jelloducky/re-steemit-firstpost-20160807t215340468z" + }, + { + "active_votes": [], + "author": "rednetkjh", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service", + "body_length": 69, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-04T06:16:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"links\":[\"https:\\/\\/steemit.com\\/bitcoin\\/@rednetkjh\\/bitcoin-chart-analysis-service\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-04T06:16:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160804t061605576z", + "post_id": 440665, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@rednetkjh/re-steemit-firstpost-20160804t061605576z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "2725768", + "voter": "cire81" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154885141", + "voter": "lorddominik007" + } + ], + "author": "imarealboy777", + "author_reputation": 0, + "beneficiaries": [], + "body": "Vesting , vesting 1 2 3 .", + "body_length": 25, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-01T23:20:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-01T23:20:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 157610909, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160801t232001768z", + "post_id": 401002, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@imarealboy777/re-steemit-firstpost-20160801t232001768z" + }, + { + "active_votes": [ + { + "percent": "-10000", + "reputation": 0, + "rshares": "-336740570", + "voter": "dtbahoney" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52272448", + "voter": "edbriv" + } + ], + "author": "edbriv", + "author_reputation": 0, + "beneficiaries": [], + "body": "GO STEEM !!! go!!!", + "body_length": 18, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-01T18:12:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-01T18:12:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -284468122, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160801t184846033z", + "post_id": 395733, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@edbriv/re-steemit-firstpost-20160801t184846033z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "7413824", + "voter": "cire81" + } + ], + "author": "bestmalik", + "author_reputation": 0, + "beneficiaries": [], + "body": "GO STEEM !!!", + "body_length": 12, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:57:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-26T03:57:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 7413824, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160726t035722561z", + "post_id": 264599, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@bestmalik/re-steemit-firstpost-20160726t035722561z" + }, + { + "active_votes": [], + "author": "lenerdie", + "author_reputation": 0, + "beneficiaries": [], + "body": "Let's get crazy! happy steemit to everybody!", + "body_length": 44, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:50:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-26T03:50:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160726t035056026z", + "post_id": 264501, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@lenerdie/re-steemit-firstpost-20160726t035056026z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "348852497", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "247328995", + "voter": "adinda" + } + ], + "author": "kamvreto", + "author_reputation": 0, + "beneficiaries": [], + "body": "old post, starting the steemit like today.\nmy quote of the day \"Anyone can sell their STEEM for cash or vest it to boost their voting power.\"", + "body_length": 141, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-25T22:20:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-25T22:20:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 977987362, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160725t221949749z", + "post_id": 259905, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160725t221949749z" + }, + { + "active_votes": [], + "author": "zhuvazhuva", + "author_reputation": 0, + "beneficiaries": [], + "body": "\u041f\u0440\u0438\u0432\u0435\u0442!", + "body_length": 7, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-23T13:03:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-23T13:03:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160723t130259286z", + "post_id": 214663, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@zhuvazhuva/re-steemit-firstpost-20160723t130259286z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "167168344", + "voter": "yarike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35874847", + "voter": "pr3ttyp3rf3ct" + } + ], + "author": "kamvreto", + "author_reputation": 0, + "beneficiaries": [], + "body": "happy steeming all !!", + "body_length": 21, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-22T22:53:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-22T22:53:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 595502250, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160722t225246211z", + "post_id": 206329, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160722t225246211z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "689526018", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46092586", + "voter": "matt876" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "patrick-g", + "author_reputation": 0, + "beneficiaries": [], + "body": "You can also vote on your posts if you want.:) As in when you reply to other posts. Those are posts you can vote yourself up on.... :)", + "body_length": 134, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-22T20:10:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-22T20:10:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 787771629, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160722t201007967z", + "post_id": 203716, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@patrick-g/re-steemit-firstpost-20160722t201007967z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "689526018", + "voter": "patrick-g" + } + ], + "author": "sictransitgloria", + "author_reputation": 0, + "beneficiaries": [], + "body": "Go Steem!", + "body_length": 9, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-21T23:37:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-21T23:37:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 689526018, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160721t233702742z", + "post_id": 189812, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@sictransitgloria/re-steemit-firstpost-20160721t233702742z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "689526018", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "145914460", + "voter": "allmonitors" + } + ], + "author": "gekko", + "author_reputation": 0, + "beneficiaries": [], + "body": "I leave my mark here in mythical post 8]", + "body_length": 40, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-21T22:39:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-21T22:39:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1261343544, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160721t223937736z", + "post_id": 189029, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@gekko/re-steemit-firstpost-20160721t223937736z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "231619534", + "voter": "eggstraordinair" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + } + ], + "author": "kewpiedoll", + "author_reputation": 0, + "beneficiaries": [], + "body": "Why did @ned flag this post?", + "body_length": 28, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 4, + "created": "2016-07-20T21:01:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"users\":[\"ned\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-20T21:01:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1062147701, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160720t210201326z", + "post_id": 166558, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@kewpiedoll/re-steemit-firstpost-20160720t210201326z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "25204741266", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "kingtylervvs", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you for posting. We all LOVE steem!\n\nI up-voted you too... BTW, should steemit let us steemers advertise using steem? Be sure to tell everyone you know to come vote here at: https://steemit.com/steemit/@kingtylervvs/if-steemit-ever-does-decide-to-advertise-there-is-only-1-way-it-could-work-in-my-opinion-debate\n\nThis is a democratic community decision.<br><img src=\"http://www.animatedimages.org/data/media/75/animated-train-image-0018.gif\" width=\"145\" height=\"93\"/>\n<img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/>\n<img src=\"https://steem.io/images/steem.png\" width=\"140\" height=\"160\"/>", + "body_length": 5082, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 1, + "created": "2016-07-20T12:11:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"image\":[\"http:\\/\\/www.animatedimages.org\\/data\\/media\\/75\\/animated-train-image-0018.gif\",\"http:\\/\\/2.bp.blogspot.com\\/-TEzRcgPOwzg\\/U9TQY7gafSI\\/AAAAAAAAAoE\\/mcn0ax6a1Tk\\/s1600\\/Coin-1.gif\",\"https:\\/\\/steem.io\\/images\\/steem.png\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-20T12:11:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26190175100, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160720t121101482z", + "post_id": 157998, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.039 HBD", + "url": "/meta/@steemit/firstpost#@kingtylervvs/re-steemit-firstpost-20160720t121101482z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "732150442", + "voter": "artific" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17012406247", + "voter": "jennamarbles" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66705408", + "voter": "hipsterjesus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51109965", + "voter": "f1111111" + } + ], + "author": "jennamarbles", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hello @steemit, I'm asking you to support my idea, in a new development STEEM. It will attract tens of thousands of people: https://steemit.com/openheart/@jennamarbles/first-steem-crowdfunding-we-can-make-this-world-better", + "body_length": 222, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-19T21:07:48", + "curator_payout_value": "0.003 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"users\":[\"steemit\"],\"links\":[\"https:\\/\\/steemit.com\\/openheart\\/@jennamarbles\\/first-steem-crowdfunding-we-can-make-this-world-better\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-20T08:35:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 18569578234, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160719t210752086z", + "post_id": 145129, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.024 HBD", + "url": "/meta/@steemit/firstpost#@jennamarbles/re-steemit-firstpost-20160719t210752086z" + }, + { + "active_votes": [], + "author": "gopher", + "author_reputation": 0, + "beneficiaries": [], + "body": "http://steem.com/@bittrex/transfers how this user can have these tranfers without any activity?", + "body_length": 95, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 1, + "created": "2016-07-18T19:58:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"links\":[\"http:\\/\\/steem.com\\/@bittrex\\/transfers\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-18T19:58:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160718t195806340z", + "post_id": 125794, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@gopher/re-steemit-firstpost-20160718t195806340z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "724886327", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58854897335", + "voter": "business" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "628198247", + "voter": "graystone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "256298401739", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28483434", + "voter": "gjhi4552201" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226779353", + "voter": "steg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51109965", + "voter": "f1111111" + } + ], + "author": "business", + "author_reputation": 0, + "beneficiaries": [], + "body": "Welcome to steemit, @steemit.", + "body_length": 29, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-13T08:29:15", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-13T08:29:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 316866774269, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160713t082910980z", + "post_id": 66957, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.036 HBD", + "url": "/meta/@steemit/firstpost#@business/re-steemit-firstpost-20160713t082910980z" + }, + { + "active_votes": [ + { + "percent": "-100", + "reputation": 0, + "rshares": "-376603", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "903854", + "voter": "mr11acdee" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23446", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "724886327", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60031995282", + "voter": "business" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64967241", + "voter": "staceyjatkinson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "red", + "author_reputation": 0, + "beneficiaries": [], + "body": "Did you know you can earn STEEM by commenting on posts?", + "body_length": 55, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "created": "2016-04-06T19:22:42", + "curator_payout_value": "0.100 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-04-06T19:22:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 60946052021, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "steemit-firstpost-2", + "post_id": 4, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Did you Know?", + "total_payout_value": "0.100 HBD", + "url": "/meta/@steemit/firstpost#@red/steemit-firstpost-2" + }, + { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2213400", + "voter": "proskynneo" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "936400", + "voter": "ned" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "0", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58854897335", + "voter": "business" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "239342379", + "voter": "kewpiedoll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52153025", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "naumovich" + } + ], + "author": "proskynneo", + "author_reputation": 0, + "beneficiaries": [], + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "body_length": 156, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-03-31T13:54:33", + "curator_payout_value": "1.059 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-31T13:54:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 59892484261, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "steemit-firstpost-1", + "post_id": 3, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Excited!", + "total_payout_value": "1.058 HBD", + "url": "/meta/@steemit/firstpost#@proskynneo/steemit-firstpost-1" + }, + { + "active_votes": [ + { + "percent": "-100", + "reputation": 0, + "rshares": "-375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit46" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81125", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "431616594", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58854897335", + "voter": "business" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "244129227", + "voter": "kewpiedoll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1615731741", + "voter": "naturalista" + } + ], + "author": "admin", + "author_reputation": 0, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "body_length": 45, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "created": "2016-03-30T19:52:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62423410900, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 2, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@admin/firstpost" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/steemit.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/steemit.pat.json new file mode 100644 index 00000000..fe682be3 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/steemit.pat.json @@ -0,0 +1,1339 @@ +[ + { + "active_votes": [], + "author": "jack8831", + "author_reputation": 4181598053141, + "beneficiaries": [], + "body": "You support fantastic system now!", + "body_length": 33, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-24T09:30:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-24T09:30:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160824t093007335z", + "post_id": 964406, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@jack8831/re-steemit-firstpost-20160824t093007335z" + }, + { + "active_votes": [ + { + "percent": "-10000", + "reputation": 2369366055877, + "rshares": -75407549856, + "voter": "vault" + }, + { + "percent": "10000", + "reputation": 1228265260257, + "rshares": 865125771, + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 5036163586, + "rshares": 57599604, + "voter": "abanks1000" + }, + { + "percent": "10000", + "reputation": -58629858779, + "rshares": 54993432, + "voter": "landarin" + } + ], + "author": "rittr", + "author_reputation": 1228265260257, + "beneficiaries": [], + "body": "I am Comment **Number 35** on the first Steemit Poster evaaar!", + "body_length": 62, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-24T02:53:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-24T02:53:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -74429831049, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160824t025355199z", + "post_id": 961146, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@rittr/re-steemit-firstpost-20160824t025355199z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 2102999178, + "rshares": 53122308, + "voter": "mandarin99" + } + ], + "author": "future24", + "author_reputation": 3740136030964, + "beneficiaries": [], + "body": "Thank you!", + "body_length": 10, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-18T03:02:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-18T03:02:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53122308, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160818t030224104z", + "post_id": 864413, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@future24/re-steemit-firstpost-20160818t030224104z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": -910520517353, + "rshares": 23067571373, + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 310950586, + "rshares": 999297062, + "voter": "juurop" + }, + { + "percent": "10000", + "reputation": 524273507, + "rshares": 823625727, + "voter": "usb" + }, + { + "percent": "10000", + "reputation": 3394759517, + "rshares": 5546862495, + "voter": "tannukas6" + }, + { + "percent": "10000", + "reputation": 1514863965, + "rshares": 694394716, + "voter": "tox" + }, + { + "percent": "10000", + "reputation": 2516108074649, + "rshares": 692185541, + "voter": "runridefly" + } + ], + "author": "ubg", + "author_reputation": -910520517353, + "beneficiaries": [], + "body": "You have quadruple the liquidity any of the exchanges have. \n## Just make it rain!\nhttp://i.imgur.com/Maj5zM2.gif", + "body_length": 113, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-13T14:32:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"image\":[\"http://i.imgur.com/Maj5zM2.gif\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-13T14:32:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 31823936914, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160813t143213453z", + "post_id": 782948, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@ubg/re-steemit-firstpost-20160813t143213453z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 8652306644, + "rshares": 47738566, + "voter": "alktoni" + }, + { + "percent": "10000", + "reputation": 364872562916, + "rshares": 555987168, + "voter": "funkywanderer" + }, + { + "percent": "10000", + "reputation": 2852613092773, + "rshares": 45336058, + "voter": "andressilvera" + }, + { + "percent": "10000", + "reputation": 97476072754, + "rshares": 50997147, + "voter": "david.prochnow" + } + ], + "author": "flandude", + "author_reputation": 3803717948969, + "beneficiaries": [], + "body": "http://i.imgsafe.org/d01598860e.jpg", + "body_length": 35, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-11T22:53:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"image\":[\"http://i.imgsafe.org/d01598860e.jpg\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-11T22:53:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 700058939, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160811t225325571z", + "post_id": 754693, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@flandude/re-steemit-firstpost-20160811t225325571z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 1056393690, + "rshares": 74273734, + "voter": "bitmaxt" + }, + { + "percent": "10000", + "reputation": 78138793415, + "rshares": 56152551, + "voter": "lovetosteemit" + } + ], + "author": "deanliu", + "author_reputation": 6467956247739, + "beneficiaries": [], + "body": "is this post truly the time zero, the origin, the big bang of all?", + "body_length": 66, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-10T08:33:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-10T08:33:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 130426285, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160810t083336206z", + "post_id": 721016, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@deanliu/re-steemit-firstpost-20160810t083336206z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 415861172879, + "rshares": 90409341, + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 1015530010, + "rshares": 58727187, + "voter": "rezrez" + } + ], + "author": "jelloducky", + "author_reputation": 415861172879, + "beneficiaries": [], + "body": "This platform is inspiring, thank you so much!", + "body_length": 46, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-07T21:53:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-07T21:53:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 149136528, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160807t215340468z", + "post_id": 670574, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@jelloducky/re-steemit-firstpost-20160807t215340468z" + }, + { + "active_votes": [], + "author": "rednetkjh", + "author_reputation": -577089724709, + "beneficiaries": [], + "body": "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service", + "body_length": 69, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-04T06:16:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"links\":[\"https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-04T06:16:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160804t061605576z", + "post_id": 596138, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@rednetkjh/re-steemit-firstpost-20160804t061605576z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 97517122081, + "rshares": 2725768, + "voter": "cire81" + }, + { + "percent": "10000", + "reputation": 1648377040631, + "rshares": 154885141, + "voter": "lorddominik007" + } + ], + "author": "imarealboy777", + "author_reputation": 647464973800, + "beneficiaries": [], + "body": "Vesting , vesting 1 2 3 .", + "body_length": 25, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-01T23:20:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-01T23:20:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 157610909, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160801t232001768z", + "post_id": 547508, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@imarealboy777/re-steemit-firstpost-20160801t232001768z" + }, + { + "active_votes": [ + { + "percent": "-10000", + "reputation": 17535933356, + "rshares": -336740570, + "voter": "dtbahoney" + }, + { + "percent": "10000", + "reputation": 447853669279, + "rshares": 52272448, + "voter": "edbriv" + } + ], + "author": "edbriv", + "author_reputation": 447853669279, + "beneficiaries": [], + "body": "GO STEEM !!! go!!!", + "body_length": 18, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-08-01T18:12:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-08-01T18:12:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -284468122, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160801t184846033z", + "post_id": 540797, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@edbriv/re-steemit-firstpost-20160801t184846033z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 97517122081, + "rshares": 7413824, + "voter": "cire81" + } + ], + "author": "bestmalik", + "author_reputation": 28131790010, + "beneficiaries": [], + "body": "GO STEEM !!!", + "body_length": 12, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:57:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-26T03:57:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 7413824, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160726t035722561z", + "post_id": 366098, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@bestmalik/re-steemit-firstpost-20160726t035722561z" + }, + { + "active_votes": [], + "author": "lenerdie", + "author_reputation": 1577074721663, + "beneficiaries": [], + "body": "Let's get crazy! happy steemit to everybody!", + "body_length": 44, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:50:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-26T03:50:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160726t035056026z", + "post_id": 365968, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@lenerdie/re-steemit-firstpost-20160726t035056026z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": -505268709325, + "rshares": 381805870, + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 14430883217, + "rshares": 348852497, + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 95481013815, + "rshares": 247328995, + "voter": "adinda" + } + ], + "author": "kamvreto", + "author_reputation": 14430883217, + "beneficiaries": [], + "body": "old post, starting the steemit like today.\nmy quote of the day \"Anyone can sell their STEEM for cash or vest it to boost their voting power.\"", + "body_length": 141, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-25T22:20:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-25T22:20:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 977987362, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160725t221949749z", + "post_id": 359333, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160725t221949749z" + }, + { + "active_votes": [], + "author": "zhuvazhuva", + "author_reputation": 131860560605, + "beneficiaries": [], + "body": "\u041f\u0440\u0438\u0432\u0435\u0442!", + "body_length": 7, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-23T13:03:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-23T13:03:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160723t130259286z", + "post_id": 296193, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@zhuvazhuva/re-steemit-firstpost-20160723t130259286z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 14430883217, + "rshares": 392459059, + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 175326040775, + "rshares": 167168344, + "voter": "yarike" + }, + { + "percent": "10000", + "reputation": 276109410016, + "rshares": 35874847, + "voter": "pr3ttyp3rf3ct" + } + ], + "author": "kamvreto", + "author_reputation": 14430883217, + "beneficiaries": [], + "body": "happy steeming all !!", + "body_length": 21, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-22T22:53:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-22T22:53:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 595502250, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160722t225246211z", + "post_id": 284527, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160722t225246211z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 1005278051807, + "rshares": 689526018, + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 326289513, + "rshares": 46092586, + "voter": "matt876" + }, + { + "percent": "10000", + "reputation": 9113317076, + "rshares": 52153025, + "voter": "f1111111" + } + ], + "author": "patrick-g", + "author_reputation": 1005278051807, + "beneficiaries": [], + "body": "You can also vote on your posts if you want.:) As in when you reply to other posts. Those are posts you can vote yourself up on.... :)", + "body_length": 134, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-22T20:10:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-22T20:10:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 787771629, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160722t201007967z", + "post_id": 280969, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@patrick-g/re-steemit-firstpost-20160722t201007967z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 1005278051807, + "rshares": 689526018, + "voter": "patrick-g" + } + ], + "author": "sictransitgloria", + "author_reputation": 281653583054, + "beneficiaries": [], + "body": "Go Steem!", + "body_length": 9, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-21T23:37:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-21T23:37:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 689526018, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160721t233702742z", + "post_id": 261571, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@sictransitgloria/re-steemit-firstpost-20160721t233702742z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 1172373556107, + "rshares": 425903066, + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 1005278051807, + "rshares": 689526018, + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 7803764965401, + "rshares": 145914460, + "voter": "allmonitors" + } + ], + "author": "gekko", + "author_reputation": 1172373556107, + "beneficiaries": [], + "body": "I leave my mark here in mythical post 8]", + "body_length": 40, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-21T22:39:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-21T22:39:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1261343544, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160721t223937736z", + "post_id": 260426, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@gekko/re-steemit-firstpost-20160721t223937736z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 1005278051807, + "rshares": 707206172, + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 36999073763, + "rshares": 231619534, + "voter": "eggstraordinair" + }, + { + "percent": "10000", + "reputation": 7803764965401, + "rshares": 123321995, + "voter": "allmonitors" + } + ], + "author": "kewpiedoll", + "author_reputation": 1241600128334, + "beneficiaries": [], + "body": "Why did @ned flag this post?", + "body_length": 28, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 4, + "created": "2016-07-20T21:01:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"users\":[\"ned\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-20T21:01:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1062147701, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160720t210201326z", + "post_id": 229482, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@kewpiedoll/re-steemit-firstpost-20160720t210201326z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 11765473490257, + "rshares": 25204741266, + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 1005278051807, + "rshares": 707206172, + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 29008237643, + "rshares": 226074637, + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 9113317076, + "rshares": 52153025, + "voter": "f1111111" + } + ], + "author": "kingtylervvs", + "author_reputation": 353432699790, + "beneficiaries": [], + "body": "Thank you for posting. We all LOVE steem!\n\nI up-voted you too... BTW, should steemit let us steemers advertise using steem? Be sure to tell everyone you know to come vote here at: https://steemit.com/steemit/@kingtylervvs/if-steemit-ever-does-decide-to-advertise-there-is-only-1-way-it-could-work-in-my-opinion-debate\n\nThis is a democratic community decision.<br><img src=\"http://www.animatedimages.org/data/media/75/animated-train-image-0018.gif\" width=\"145\" height=\"93\"/>\n<img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/><img src=\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\" width=\"14\" height=\"16\"/>\n<img src=\"https://steem.io/images/steem.png\" width=\"140\" height=\"160\"/>", + "body_length": 5082, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 1, + "created": "2016-07-20T12:11:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"image\":[\"http://www.animatedimages.org/data/media/75/animated-train-image-0018.gif\",\"http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif\",\"https://steem.io/images/steem.png\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-20T12:11:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26190175100, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160720t121101482z", + "post_id": 217597, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.039 HBD", + "url": "/meta/@steemit/firstpost#@kingtylervvs/re-steemit-firstpost-20160720t121101482z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 1005278051807, + "rshares": 707206172, + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 777812727227, + "rshares": 732150442, + "voter": "artific" + }, + { + "percent": "10000", + "reputation": 4558720822431, + "rshares": 17012406247, + "voter": "jennamarbles" + }, + { + "percent": "10000", + "reputation": 90331626280, + "rshares": 66705408, + "voter": "hipsterjesus" + }, + { + "percent": "10000", + "reputation": 9113317076, + "rshares": 51109965, + "voter": "f1111111" + } + ], + "author": "jennamarbles", + "author_reputation": 4558720822431, + "beneficiaries": [], + "body": "Hello @steemit, I'm asking you to support my idea, in a new development STEEM. It will attract tens of thousands of people: https://steemit.com/openheart/@jennamarbles/first-steem-crowdfunding-we-can-make-this-world-better", + "body_length": 222, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-19T21:07:48", + "curator_payout_value": "0.003 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"users\":[\"steemit\"],\"links\":[\"https://steemit.com/openheart/@jennamarbles/first-steem-crowdfunding-we-can-make-this-world-better\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-20T08:35:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 18569578234, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160719t210752086z", + "post_id": 199181, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.024 HBD", + "url": "/meta/@steemit/firstpost#@jennamarbles/re-steemit-firstpost-20160719t210752086z" + }, + { + "active_votes": [], + "author": "gopher", + "author_reputation": 3871208629, + "beneficiaries": [], + "body": "http://steem.com/@bittrex/transfers how this user can have these tranfers without any activity?", + "body_length": 95, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 1, + "created": "2016-07-18T19:58:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"],\"links\":[\"http://steem.com/@bittrex/transfers\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-18T19:58:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160718t195806340z", + "post_id": 172415, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@gopher/re-steemit-firstpost-20160718t195806340z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 1005278051807, + "rshares": 724886327, + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 7967572146571, + "rshares": 58854897335, + "voter": "business" + }, + { + "percent": "10000", + "reputation": 712701798830, + "rshares": 628198247, + "voter": "graystone" + }, + { + "percent": "10000", + "reputation": 1059790037173, + "rshares": 256298401739, + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 3798781589, + "rshares": 28483434, + "voter": "gjhi4552201" + }, + { + "percent": "10000", + "reputation": -217921383111, + "rshares": 226779353, + "voter": "steg" + }, + { + "percent": "10000", + "reputation": 221607742, + "rshares": 54017869, + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 9113317076, + "rshares": 51109965, + "voter": "f1111111" + } + ], + "author": "business", + "author_reputation": 7967572146571, + "beneficiaries": [], + "body": "Welcome to steemit, @steemit.", + "body_length": 29, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-13T08:29:15", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-13T08:29:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 316866774269, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160713t082910980z", + "post_id": 92903, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.036 HBD", + "url": "/meta/@steemit/firstpost#@business/re-steemit-firstpost-20160713t082910980z" + }, + { + "active_votes": [ + { + "percent": "-100", + "reputation": 145171381514207, + "rshares": -376603, + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 190869539046, + "rshares": 903854, + "voter": "mr11acdee" + }, + { + "percent": "100", + "reputation": 1993860928264, + "rshares": 1441, + "voter": "red" + }, + { + "percent": "10000", + "reputation": 89703349977794, + "rshares": 23446, + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 1005278051807, + "rshares": 724886327, + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 7967572146571, + "rshares": 60031995282, + "voter": "business" + }, + { + "percent": "10000", + "reputation": 1193366475012, + "rshares": 71498008, + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": 64967241, + "voter": "staceyjatkinson" + }, + { + "percent": "10000", + "reputation": 9113317076, + "rshares": 52153025, + "voter": "f1111111" + } + ], + "author": "red", + "author_reputation": 1993860928264, + "beneficiaries": [], + "body": "Did you know you can earn STEEM by commenting on posts?", + "body_length": 55, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "created": "2016-04-06T19:22:42", + "curator_payout_value": "0.100 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-04-06T19:22:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 60946052021, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-2", + "post_id": 4, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Did you Know?", + "total_payout_value": "0.100 HBD", + "url": "/meta/@steemit/firstpost#@red/steemit-firstpost-2" + }, + { + "active_votes": [ + { + "percent": "100", + "reputation": 145171381514207, + "rshares": 375241, + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 4152367932922, + "rshares": 2213400, + "voter": "proskynneo" + }, + { + "percent": "100", + "reputation": 13270505121655, + "rshares": 936400, + "voter": "ned" + }, + { + "percent": "3301", + "reputation": 2902053059801, + "rshares": 0, + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 1005278051807, + "rshares": 742566481, + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 7967572146571, + "rshares": 58854897335, + "voter": "business" + }, + { + "percent": "10000", + "reputation": 1241600128334, + "rshares": 239342379, + "voter": "kewpiedoll" + }, + { + "percent": "10000", + "reputation": 9113317076, + "rshares": 52153025, + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": 0, + "voter": "naumovich" + } + ], + "author": "proskynneo", + "author_reputation": 4152367932922, + "beneficiaries": [], + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "body_length": 156, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-03-31T13:54:33", + "curator_payout_value": "1.059 HBD", + "depth": 1, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-31T13:54:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 59892484261, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-1", + "post_id": 3, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Excited!", + "total_payout_value": "1.058 HBD", + "url": "/meta/@steemit/firstpost#@proskynneo/steemit-firstpost-1" + }, + { + "active_votes": [ + { + "percent": "-100", + "reputation": 145171381514207, + "rshares": -375241, + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": 5100, + "voter": "steemit46" + }, + { + "percent": "10000", + "reputation": 9800209121307, + "rshares": 81125, + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 1172373556107, + "rshares": 425903066, + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 15755437221598, + "rshares": 431616594, + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 1005278051807, + "rshares": 742566481, + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 7967572146571, + "rshares": 58854897335, + "voter": "business" + }, + { + "percent": "10000", + "reputation": 353432699790, + "rshares": 108855472, + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 1241600128334, + "rshares": 244129227, + "voter": "kewpiedoll" + }, + { + "percent": "10000", + "reputation": 1320262999851, + "rshares": 1615731741, + "voter": "naturalista" + } + ], + "author": "admin", + "author_reputation": 975371654, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "body_length": 45, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "created": "2016-03-30T19:52:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62423410900, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 2, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@admin/firstpost" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/steemit.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/steemit.tavern.yaml new file mode 100644 index 00000000..8b46d830 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/steemit.tavern.yaml @@ -0,0 +1,28 @@ +--- + test_name: Hivemind condenser_api.get_replies_by_last_update patterns test + + marks: + - patterntest + + includes: + - !include ../../common.yaml + + stages: + - name: get_replies_by_last_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_replies_by_last_update" + params: ["steemit","",100] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "steemit" + directory: "condenser_api_patterns/get_replies_by_last_update" \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/top_post.orig.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/top_post.orig.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/top_post.orig.json @@ -0,0 +1 @@ +[] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/top_post.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/top_post.pat.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/top_post.pat.json @@ -0,0 +1 @@ +[] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/top_post.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/top_post.tavern.yaml new file mode 100644 index 00000000..ef2cf7e2 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/top_post.tavern.yaml @@ -0,0 +1,28 @@ +--- + test_name: Hivemind condenser_api.get_replies_by_last_update + + marks: + - patterntest # since permlink is given call tries to look for parent post to get blogger account, but this is top post, so blogger is effectively NULL + + includes: + - !include ../../common.yaml + + stages: + - name: get_replies_by_last_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_replies_by_last_update" + params: ["gregory-f","the-facebook-strikes-back",10] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "top_post" + directory: "condenser_api_patterns/get_replies_by_last_update" \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/truncated.orig.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/truncated.orig.json new file mode 100644 index 00000000..58806406 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/truncated.orig.json @@ -0,0 +1,1574 @@ +[ + { + "active_votes": [], + "author": "chitty", + "author_reputation": 0, + "beneficiaries": [], + "body": "But this i", + "body_length": 279, + "cashout_time": "2016-09-16T15:31:24", + "category": "steemit", + "children": 0, + "created": "2016-09-15T18:52:09", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T18:52:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t184349883z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z", + "post_id": 960531, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z" + }, + { + "active_votes": [], + "author": "woman-onthe-wing", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks ver", + "body_length": 17, + "cashout_time": "2016-09-16T01:44:18", + "category": "introducemyself", + "children": 0, + "created": "2016-09-15T15:04:09", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introducemyself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T15:04:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t071444722z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z", + "post_id": 958542, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Introduction post - Gold at the end of the rainbow... On the Emerald Isle", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introducemyself/@woman-onthe-wing/introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle#@woman-onthe-wing/re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1000247174970", + "voter": "liondani" + } + ], + "author": "chitty", + "author_reputation": 0, + "beneficiaries": [], + "body": "This is tr", + "body_length": 311, + "cashout_time": "2016-09-16T15:31:24", + "category": "steemit", + "children": 2, + "created": "2016-09-15T14:21:09", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T14:21:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1000247174970, + "parent_author": "gtg", + "parent_permlink": "re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t141551322z", + "pending_payout_value": "0.275 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z", + "post_id": 958150, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z" + }, + { + "active_votes": [], + "author": "arcange", + "author_reputation": 0, + "beneficiaries": [], + "body": "Lol. You'r", + "body_length": 104, + "cashout_time": "2016-09-16T13:44:39", + "category": "stats", + "children": 1, + "created": "2016-09-15T13:24:15", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T13:24:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "post_id": 957646, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z" + }, + { + "active_votes": [], + "author": "arcange", + "author_reputation": 0, + "beneficiaries": [], + "body": "That's the", + "body_length": 60, + "cashout_time": "2016-09-16T13:44:39", + "category": "stats", + "children": 3, + "created": "2016-09-15T13:06:18", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T13:06:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "post_id": 957511, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z" + }, + { + "active_votes": [], + "author": "gamer00", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you!", + "body_length": 10, + "cashout_time": "2016-09-16T03:45:30", + "category": "introducemyself", + "children": 0, + "created": "2016-09-15T07:54:42", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introducemyself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T07:54:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t071902704z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z", + "post_id": 956069, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hi! I'm Jaro and this is my introductory verification post!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introducemyself/@gamer00/hi-i-m-jaro-and-this-is-my-introductory-verification-post#@gamer00/re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z" + }, + { + "active_votes": [], + "author": "lilmisjenn", + "author_reputation": 0, + "beneficiaries": [], + "body": "See there ", + "body_length": 172, + "cashout_time": "2016-09-26T08:08:21", + "category": "food", + "children": 0, + "created": "2016-09-01T14:18:48", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-01T14:18:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160829t070902349z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z", + "post_id": 823649, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Do you have a drinking problem??", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "28864035808", + "voter": "noaommerrr" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-100075931", + "voter": "cheetah20" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-123906339", + "voter": "cheetah19" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-99152161", + "voter": "cheetah21" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-99151476", + "voter": "cheetah22" + } + ], + "author": "itay", + "author_reputation": 0, + "beneficiaries": [], + "body": "I upvoted ", + "body_length": 13, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 0, + "created": "2016-08-31T17:00:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-31T17:00:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 28441749901, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-witness-gtg", + "post_id": 814638, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@itay/re-witness-gtg" + }, + { + "active_votes": [], + "author": "melissarhiann", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hi and tha", + "body_length": 100, + "cashout_time": "2016-09-26T08:42:15", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-31T02:16:54", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-31T02:16:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-melissarhiann-lasting-impression-20160826t083943073z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z", + "post_id": 808051, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Lasting Impression", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@melissarhiann/lasting-impression#@melissarhiann/re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z" + }, + { + "active_votes": [], + "author": "djm34", + "author_reputation": 0, + "beneficiaries": [], + "body": "actually I", + "body_length": 138, + "cashout_time": "2016-09-30T17:29:27", + "category": "steem", + "children": 1, + "created": "2016-08-30T17:06:09", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-30T17:07:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z", + "post_id": 802893, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[Bounty] Community bounty for open source GPU miner.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@djm34/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "10013306404", + "voter": "richman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13209570416", + "voter": "carlidos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53474677", + "voter": "riv" + } + ], + "author": "complexring", + "author_reputation": 0, + "beneficiaries": [], + "body": "I don't se", + "body_length": 225, + "cashout_time": "2016-09-30T17:29:27", + "category": "steem", + "children": 3, + "created": "2016-08-30T16:40:03", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"],\"users\":[\"djm34\",\"picokernel\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-30T16:40:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 23276351497, + "parent_author": "gtg", + "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z", + "post_id": 802611, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[Bounty] Community bounty for open source GPU miner.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@complexring/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z" + }, + { + "active_votes": [], + "author": "emsenn", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks! I'", + "body_length": 123, + "cashout_time": "2016-09-29T22:31:27", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-29T22:45:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-29T22:45:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t213519226z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z", + "post_id": 794736, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Introducing Myself: Bitcoin Early Adopter, Content Producer & Designer", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@emsenn/introducing-myself-bitcoin-early-adopter-content-producer-and-designer#@emsenn/re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z" + }, + { + "active_votes": [], + "author": "lilmisjenn", + "author_reputation": 0, + "beneficiaries": [], + "body": "It took me", + "body_length": 498, + "cashout_time": "2016-09-26T08:08:21", + "category": "food", + "children": 2, + "created": "2016-08-28T11:46:00", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T11:46:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-lilmisjenn-do-you-have-a-drinking-problem-20160826t085857261z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z", + "post_id": 776630, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Do you have a drinking problem??", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z" + }, + { + "active_votes": [], + "author": "timcliff", + "author_reputation": 0, + "beneficiaries": [], + "body": "I've been ", + "body_length": 367, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 1, + "created": "2016-08-27T15:51:15", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T15:51:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", + "post_id": 767624, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z" + }, + { + "active_votes": [], + "author": "timcliff", + "author_reputation": 0, + "beneficiaries": [], + "body": "Is there a", + "body_length": 74, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 3, + "created": "2016-08-27T14:13:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T14:13:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "post_id": 766749, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z" + }, + { + "active_votes": [], + "author": "eternalmoon", + "author_reputation": 0, + "beneficiaries": [], + "body": "I wanted t", + "body_length": 122, + "cashout_time": "2016-09-26T09:23:57", + "category": "aboutme", + "children": 1, + "created": "2016-08-27T04:15:48", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"aboutme\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T04:15:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-eternalmoon-this-is-my-about-me-entry-enjoy-20160826t094835368z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z", + "post_id": 763016, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "This is my about me entry (: Enjoy~", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/aboutme/@eternalmoon/this-is-my-about-me-entry-enjoy#@eternalmoon/re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z" + }, + { + "active_votes": [], + "author": "ania", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you ", + "body_length": 20, + "cashout_time": "2016-09-26T21:18:18", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T21:16:45", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T21:16:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-ania-hello-world-20160826t185305711z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", + "post_id": 759894, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@ania/hello-world#@ania/re-gtg-re-ania-hello-world-20160826t211629005z" + }, + { + "active_votes": [], + "author": "orcish", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you ", + "body_length": 12, + "cashout_time": "2016-09-27T01:07:09", + "category": "zee", + "children": 0, + "created": "2016-08-26T18:58:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"zee\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T18:58:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-orcish-my-introduction-20160826t080607987z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-orcish-my-introduction-20160826t185829224z", + "post_id": 758311, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "My Introduction", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/zee/@orcish/my-introduction#@orcish/re-gtg-re-orcish-my-introduction-20160826t185829224z" + }, + { + "active_votes": [], + "author": "bumblebrii", + "author_reputation": 0, + "beneficiaries": [], + "body": "Oh yes of ", + "body_length": 220, + "cashout_time": "2016-09-26T08:05:57", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T18:20:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T18:20:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", + "post_id": 757931, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "About me", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@bumblebrii/about-me#@bumblebrii/re-gtg-re-bumblebrii-about-me-20160826t182001959z" + }, + { + "active_votes": [], + "author": "mynomadicyear", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hi gtg, th", + "body_length": 33, + "cashout_time": "2016-09-26T16:08:51", + "category": "travel", + "children": 0, + "created": "2016-08-26T13:29:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T13:29:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-mynomadicyear-16-months-out-of-a-suitcase-20160826t090811525z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z", + "post_id": 754968, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "16 Months Out Of A Suitcase", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/travel/@mynomadicyear/16-months-out-of-a-suitcase#@mynomadicyear/re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z" + }, + { + "active_votes": [], + "author": "seasoul", + "author_reputation": 0, + "beneficiaries": [], + "body": "thankyou! ", + "body_length": 21, + "cashout_time": "2016-09-25T19:26:21", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T11:37:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T11:37:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-seasoul-aboutme-20160826t095320794z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-seasoul-aboutme-20160826t113727450z", + "post_id": 754013, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Aboutme", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@seasoul/aboutme#@seasoul/re-gtg-re-seasoul-aboutme-20160826t113727450z" + }, + { + "active_votes": [], + "author": "mammasitta", + "author_reputation": 0, + "beneficiaries": [], + "body": "I think yo", + "body_length": 74, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 0, + "created": "2016-08-26T05:27:15", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-26T05:27:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-witness-gtg-20160826t052714859z", + "post_id": 751872, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@mammasitta/re-gtg-witness-gtg-20160826t052714859z" + }, + { + "active_votes": [], + "author": "gtg", + "author_reputation": 3920426655270, + "beneficiaries": [], + "body": "I encourag", + "body_length": 140, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 0, + "created": "2016-08-21T13:12:45", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https:\\/\\/steemit.chat\\/channel\\/mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-21T13:12:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", + "post_id": 693986, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z" + }, + { + "active_votes": [], + "author": "gary-smith", + "author_reputation": 0, + "beneficiaries": [], + "body": "so frustra", + "body_length": 105, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 0, + "created": "2016-08-21T12:52:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-21T12:52:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", + "post_id": 693858, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z" + }, + { + "active_votes": [], + "author": "abit", + "author_reputation": 0, + "beneficiaries": [], + "body": "The privat", + "body_length": 212, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-18T03:32:12", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T03:32:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z", + "post_id": 650924, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@abit/re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z" + }, + { + "active_votes": [], + "author": "okay", + "author_reputation": 0, + "beneficiaries": [], + "body": "`gtg said:", + "body_length": 714, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T12:06:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https:\\/\\/steemit.com\\/witness-category\\/@okay\\/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T12:06:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z", + "post_id": 640215, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@okay/re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z" + }, + { + "active_votes": [], + "author": "mammasitta", + "author_reputation": 0, + "beneficiaries": [], + "body": "I just saw", + "body_length": 87, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T07:03:33", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T07:03:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z", + "post_id": 637902, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@mammasitta/re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z" + }, + { + "active_votes": [], + "author": "dajohns1420", + "author_reputation": 0, + "beneficiaries": [], + "body": "I wish I w", + "body_length": 68, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T04:00:42", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T04:00:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z", + "post_id": 636638, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dajohns1420/re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z" + }, + { + "active_votes": [], + "author": "dr2073", + "author_reputation": 0, + "beneficiaries": [], + "body": "Really goo", + "body_length": 385, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T02:12:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T02:12:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z", + "post_id": 635741, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dr2073/re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z" + }, + { + "active_votes": [ + { + "percent": "5000", + "reputation": 0, + "rshares": "3273182637316", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1446333470877", + "voter": "steemychicken1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49042313956", + "voter": "full-steem-ahead" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9767505930", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "848329794", + "voter": "johnerminer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39798145914", + "voter": "gtg" + } + ], + "author": "wackou", + "author_reputation": 0, + "beneficiaries": [], + "body": "great post", + "body_length": 1694, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T21:28:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"http:\\/\\/digitalgaia.io\\/backbone.html\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T21:28:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 4818972403787, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "6.136 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z", + "post_id": 632723, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@wackou/re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "19467531428", + "voter": "ausbitbank" + } + ], + "author": "jesta", + "author_reputation": 0, + "beneficiaries": [], + "body": "That's awe", + "body_length": 101, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T20:31:06", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T20:31:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 19467531428, + "parent_author": "gtg", + "parent_permlink": "re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t201857176z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z", + "post_id": 632008, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "43533730799", + "voter": "brandonp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52397603", + "voter": "doze49" + } + ], + "author": "brandonp", + "author_reputation": 0, + "beneficiaries": [], + "body": "Reading st", + "body_length": 89, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T20:01:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T20:01:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 43586128402, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.024 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z", + "post_id": 631654, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@brandonp/re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z" + }, + { + "active_votes": [], + "author": "thecryptofiend", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks for", + "body_length": 55, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T19:31:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:31:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z", + "post_id": 631312, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thecryptofiend/re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "6327910390022", + "voter": "wackou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9559686655", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "829049571", + "voter": "johnerminer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "38432804053", + "voter": "gtg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19873104999", + "voter": "ausbitbank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44706057470", + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31463628969", + "voter": "mibenkito" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14083166401", + "voter": "someguy123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52918124", + "voter": "xomtux" + } + ], + "author": "jesta", + "author_reputation": 0, + "beneficiaries": [], + "body": "I love the", + "body_length": 1005, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 2, + "created": "2016-08-16T19:11:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:11:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6486910806264, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "9.966 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z", + "post_id": 631058, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z" + }, + { + "active_votes": [], + "author": "thebluepanda", + "author_reputation": 0, + "beneficiaries": [], + "body": "i was chec", + "body_length": 151, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T19:08:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:08:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z", + "post_id": 631016, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thebluepanda/re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z" + }, + { + "active_votes": [], + "author": "someguy123", + "author_reputation": 0, + "beneficiaries": [], + "body": "I can tell", + "body_length": 157, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T18:52:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T18:52:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z", + "post_id": 630835, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@someguy123/re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z" + }, + { + "active_votes": [], + "author": "vishal1", + "author_reputation": 0, + "beneficiaries": [], + "body": "THis is so", + "body_length": 23, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T18:12:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"users\":[\"gtg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T18:12:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z", + "post_id": 630198, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@vishal1/re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "910501669843", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4179624293", + "voter": "dennygalindo" + } + ], + "author": "dennygalindo", + "author_reputation": 0, + "beneficiaries": [], + "body": "Gamificati", + "body_length": 677, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit-ideas", + "children": 0, + "created": "2016-08-15T14:15:42", + "curator_payout_value": "0.198 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-ideas\"],\"users\":[\"dantheman\"],\"links\":[\"https:\\/\\/steemit.com\\/steem\\/@dantheman\\/curation-rewards-and-voting-incentive\"]}", + "last_payout": "2016-09-15T07:07:00", + "last_update": "2016-08-15T14:16:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 914681294136, + "parent_author": "gtg", + "parent_permlink": "re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t123329115z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z", + "post_id": 613314, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "DON'T REMOVE Curation Rewards! Just stop them when the post reach the trending page !!!", + "title": "", + "total_payout_value": "0.601 HBD", + "url": "/steemit-ideas/@liondani/don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page#@dennygalindo/re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1374704925", + "voter": "earnest" + } + ], + "author": "iaco", + "author_reputation": 0, + "beneficiaries": [], + "body": "As the com", + "body_length": 269, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 1, + "created": "2016-08-05T16:12:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-05T16:12:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1374704925, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-witness-gtg-20160805t161219379z", + "post_id": 465280, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@iaco/re-gtg-witness-gtg-20160805t161219379z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "769829319629", + "voter": "steemship" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9767505930", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "848329794", + "voter": "johnerminer" + } + ], + "author": "cire81", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you ", + "body_length": 156, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 2, + "created": "2016-08-05T15:45:27", + "curator_payout_value": "0.216 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-05T15:45:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 780445155353, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-witness-gtg-20160805t154528701z", + "post_id": 464773, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.650 HBD", + "url": "/witness-category/@gtg/witness-gtg#@cire81/re-gtg-witness-gtg-20160805t154528701z" + }, + { + "active_votes": [], + "author": "mefisto", + "author_reputation": 0, + "beneficiaries": [], + "body": "Kryterium ", + "body_length": 534, + "cashout_time": "1969-12-31T23:59:59", + "category": "polish", + "children": 0, + "created": "2016-08-03T12:56:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"polish\"]}", + "last_payout": "2016-09-03T03:24:06", + "last_update": "2016-08-03T12:58:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t123936611z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z", + "post_id": 427686, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[PL] Czy polska spo\u0142eczno\u015b\u0107 powinna mie\u0107 swojego delegata (witness) ?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/polish/@mefisto/pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness#@mefisto/re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z" + }, + { + "active_votes": [], + "author": "edu-lopov", + "author_reputation": 0, + "beneficiaries": [], + "body": "Welcome to", + "body_length": 27, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-04T18:22:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-04T18:22:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160704t182251522z", + "post_id": 38463, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@edu-lopov/re-gtg-hello-world-20160704t182251522z" + }, + { + "active_votes": [], + "author": "amartinezque", + "author_reputation": 0, + "beneficiaries": [], + "body": "Cats, huma", + "body_length": 84, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T22:45:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T22:45:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t224527020z", + "post_id": 37179, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@amartinezque/re-gtg-hello-world-20160703t224527020z" + }, + { + "active_votes": [], + "author": "trogdor", + "author_reputation": 0, + "beneficiaries": [], + "body": "Nice, I un", + "body_length": 55, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T17:51:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T17:51:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t175141501z", + "post_id": 36953, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@trogdor/re-gtg-hello-world-20160703t175141501z" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/truncated.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/truncated.pat.json new file mode 100644 index 00000000..d6436eec --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/truncated.pat.json @@ -0,0 +1,1574 @@ +[ + { + "active_votes": [], + "author": "chitty", + "author_reputation": 37454101478493, + "beneficiaries": [], + "body": "But this i", + "body_length": 279, + "cashout_time": "2016-09-22T18:52:09", + "category": "steemit", + "children": 0, + "created": "2016-09-15T18:52:09", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T18:52:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t184349883z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z", + "post_id": 1257321, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z" + }, + { + "active_votes": [], + "author": "woman-onthe-wing", + "author_reputation": 649104115637, + "beneficiaries": [], + "body": "Thanks ver", + "body_length": 17, + "cashout_time": "2016-09-22T15:04:09", + "category": "introducemyself", + "children": 0, + "created": "2016-09-15T15:04:09", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introducemyself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T15:04:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t071444722z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z", + "post_id": 1254888, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Introduction post - Gold at the end of the rainbow... On the Emerald Isle", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introducemyself/@woman-onthe-wing/introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle#@woman-onthe-wing/re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 36749432321730, + "rshares": 1000247174970, + "voter": "liondani" + } + ], + "author": "chitty", + "author_reputation": 37454101478493, + "beneficiaries": [], + "body": "This is tr", + "body_length": 311, + "cashout_time": "2016-09-22T14:21:09", + "category": "steemit", + "children": 2, + "created": "2016-09-15T14:21:09", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T14:21:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1000247174970, + "parent_author": "gtg", + "parent_permlink": "re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t141551322z", + "pending_payout_value": "0.271 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z", + "post_id": 1254372, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z" + }, + { + "active_votes": [], + "author": "arcange", + "author_reputation": 2620486879029, + "beneficiaries": [], + "body": "Lol. You'r", + "body_length": 104, + "cashout_time": "2016-09-22T13:24:15", + "category": "stats", + "children": 1, + "created": "2016-09-15T13:24:15", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T13:24:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "post_id": 1253741, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z" + }, + { + "active_votes": [], + "author": "arcange", + "author_reputation": 2620486879029, + "beneficiaries": [], + "body": "That's the", + "body_length": 60, + "cashout_time": "2016-09-22T13:06:18", + "category": "stats", + "children": 3, + "created": "2016-09-15T13:06:18", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T13:06:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "post_id": 1253573, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z" + }, + { + "active_votes": [], + "author": "gamer00", + "author_reputation": 93238678837, + "beneficiaries": [], + "body": "Thank you!", + "body_length": 10, + "cashout_time": "2016-09-22T07:54:42", + "category": "introducemyself", + "children": 0, + "created": "2016-09-15T07:54:42", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introducemyself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T07:54:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t071902704z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z", + "post_id": 1251775, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hi! I'm Jaro and this is my introductory verification post!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introducemyself/@gamer00/hi-i-m-jaro-and-this-is-my-introductory-verification-post#@gamer00/re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z" + }, + { + "active_votes": [], + "author": "lilmisjenn", + "author_reputation": 1871240031576, + "beneficiaries": [], + "body": "See there ", + "body_length": 172, + "cashout_time": "2016-09-08T14:18:48", + "category": "food", + "children": 0, + "created": "2016-09-01T14:18:48", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-01T14:18:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160829t070902349z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z", + "post_id": 1084795, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Do you have a drinking problem??", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 1118904717803, + "rshares": 28864035808, + "voter": "noaommerrr" + }, + { + "percent": "-10000", + "reputation": 3709071791, + "rshares": -100075931, + "voter": "cheetah20" + }, + { + "percent": "-10000", + "reputation": 55522787, + "rshares": -123906339, + "voter": "cheetah19" + }, + { + "percent": "-10000", + "reputation": 59371692, + "rshares": -99152161, + "voter": "cheetah21" + }, + { + "percent": "-10000", + "reputation": 856945350, + "rshares": -99151476, + "voter": "cheetah22" + } + ], + "author": "itay", + "author_reputation": 3542054613209, + "beneficiaries": [], + "body": "I upvoted ", + "body_length": 13, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 0, + "created": "2016-08-31T17:00:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-31T17:00:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 28441749901, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-witness-gtg", + "post_id": 1073192, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@itay/re-witness-gtg" + }, + { + "active_votes": [], + "author": "melissarhiann", + "author_reputation": 863088709, + "beneficiaries": [], + "body": "Hi and tha", + "body_length": 100, + "cashout_time": "2016-09-07T02:16:54", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-31T02:16:54", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-31T02:16:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-melissarhiann-lasting-impression-20160826t083943073z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z", + "post_id": 1065123, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Lasting Impression", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@melissarhiann/lasting-impression#@melissarhiann/re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z" + }, + { + "active_votes": [], + "author": "djm34", + "author_reputation": 6053064579803, + "beneficiaries": [], + "body": "actually I", + "body_length": 138, + "cashout_time": "2016-09-06T17:06:09", + "category": "steem", + "children": 1, + "created": "2016-08-30T17:06:09", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-30T17:07:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z", + "post_id": 1058489, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[Bounty] Community bounty for open source GPU miner.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@djm34/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 15854806148148, + "rshares": 10013306404, + "voter": "richman" + }, + { + "percent": "10000", + "reputation": 12468455070375, + "rshares": 13209570416, + "voter": "carlidos" + }, + { + "percent": "10000", + "reputation": 291915319, + "rshares": 53474677, + "voter": "riv" + } + ], + "author": "complexring", + "author_reputation": 59074616588451, + "beneficiaries": [], + "body": "I don't se", + "body_length": 225, + "cashout_time": "2016-09-06T16:40:03", + "category": "steem", + "children": 3, + "created": "2016-08-30T16:40:03", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"],\"users\":[\"djm34\",\"picokernel\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-30T16:40:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 23276351497, + "parent_author": "gtg", + "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", + "pending_payout_value": "0.010 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z", + "post_id": 1058136, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[Bounty] Community bounty for open source GPU miner.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@complexring/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z" + }, + { + "active_votes": [], + "author": "emsenn", + "author_reputation": 325149909341, + "beneficiaries": [], + "body": "Thanks! I'", + "body_length": 123, + "cashout_time": "2016-09-05T22:45:33", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-29T22:45:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-29T22:45:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t213519226z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z", + "post_id": 1048130, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Introducing Myself: Bitcoin Early Adopter, Content Producer & Designer", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@emsenn/introducing-myself-bitcoin-early-adopter-content-producer-and-designer#@emsenn/re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z" + }, + { + "active_votes": [], + "author": "lilmisjenn", + "author_reputation": 1871240031576, + "beneficiaries": [], + "body": "It took me", + "body_length": 498, + "cashout_time": "2016-09-04T11:46:00", + "category": "food", + "children": 2, + "created": "2016-08-28T11:46:00", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T11:46:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-lilmisjenn-do-you-have-a-drinking-problem-20160826t085857261z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z", + "post_id": 1025459, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Do you have a drinking problem??", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z" + }, + { + "active_votes": [], + "author": "timcliff", + "author_reputation": 3731142865186, + "beneficiaries": [], + "body": "I've been ", + "body_length": 367, + "cashout_time": "2016-09-03T15:51:15", + "category": "mining", + "children": 1, + "created": "2016-08-27T15:51:15", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T15:51:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", + "post_id": 1014252, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z" + }, + { + "active_votes": [], + "author": "timcliff", + "author_reputation": 3731142865186, + "beneficiaries": [], + "body": "Is there a", + "body_length": 74, + "cashout_time": "2016-09-03T14:13:18", + "category": "mining", + "children": 3, + "created": "2016-08-27T14:13:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T14:13:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "post_id": 1013122, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z" + }, + { + "active_votes": [], + "author": "eternalmoon", + "author_reputation": 1118053115, + "beneficiaries": [], + "body": "I wanted t", + "body_length": 122, + "cashout_time": "2016-09-03T04:15:48", + "category": "aboutme", + "children": 1, + "created": "2016-08-27T04:15:48", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"aboutme\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T04:15:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-eternalmoon-this-is-my-about-me-entry-enjoy-20160826t094835368z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z", + "post_id": 1008516, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "This is my about me entry (: Enjoy~", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/aboutme/@eternalmoon/this-is-my-about-me-entry-enjoy#@eternalmoon/re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z" + }, + { + "active_votes": [], + "author": "ania", + "author_reputation": 2902526262, + "beneficiaries": [], + "body": "Thank you ", + "body_length": 20, + "cashout_time": "2016-09-02T21:16:45", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T21:16:45", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T21:16:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-ania-hello-world-20160826t185305711z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", + "post_id": 1004255, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@ania/hello-world#@ania/re-gtg-re-ania-hello-world-20160826t211629005z" + }, + { + "active_votes": [], + "author": "orcish", + "author_reputation": 5766569295559, + "beneficiaries": [], + "body": "Thank you ", + "body_length": 12, + "cashout_time": "2016-09-02T18:58:27", + "category": "zee", + "children": 0, + "created": "2016-08-26T18:58:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"zee\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T18:58:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-orcish-my-introduction-20160826t080607987z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-orcish-my-introduction-20160826t185829224z", + "post_id": 1002117, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "My Introduction", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/zee/@orcish/my-introduction#@orcish/re-gtg-re-orcish-my-introduction-20160826t185829224z" + }, + { + "active_votes": [], + "author": "bumblebrii", + "author_reputation": 982295094, + "beneficiaries": [], + "body": "Oh yes of ", + "body_length": 220, + "cashout_time": "2016-09-02T18:20:12", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T18:20:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T18:20:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", + "post_id": 1001581, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "About me", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@bumblebrii/about-me#@bumblebrii/re-gtg-re-bumblebrii-about-me-20160826t182001959z" + }, + { + "active_votes": [], + "author": "mynomadicyear", + "author_reputation": 440443889183, + "beneficiaries": [], + "body": "Hi gtg, th", + "body_length": 33, + "cashout_time": "2016-09-02T13:29:27", + "category": "travel", + "children": 0, + "created": "2016-08-26T13:29:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T13:29:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-mynomadicyear-16-months-out-of-a-suitcase-20160826t090811525z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z", + "post_id": 997617, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "16 Months Out Of A Suitcase", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/travel/@mynomadicyear/16-months-out-of-a-suitcase#@mynomadicyear/re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z" + }, + { + "active_votes": [], + "author": "seasoul", + "author_reputation": 130859003332, + "beneficiaries": [], + "body": "thankyou! ", + "body_length": 21, + "cashout_time": "2016-09-02T11:37:33", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T11:37:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T11:37:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-seasoul-aboutme-20160826t095320794z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-seasoul-aboutme-20160826t113727450z", + "post_id": 996383, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Aboutme", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@seasoul/aboutme#@seasoul/re-gtg-re-seasoul-aboutme-20160826t113727450z" + }, + { + "active_votes": [], + "author": "mammasitta", + "author_reputation": 5571311902261, + "beneficiaries": [], + "body": "I think yo", + "body_length": 74, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 0, + "created": "2016-08-26T05:27:15", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-26T05:27:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-witness-gtg-20160826t052714859z", + "post_id": 993506, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@mammasitta/re-gtg-witness-gtg-20160826t052714859z" + }, + { + "active_votes": [], + "author": "gtg", + "author_reputation": 3924899966690, + "beneficiaries": [], + "body": "I encourag", + "body_length": 140, + "cashout_time": "2016-08-28T13:12:45", + "category": "mining", + "children": 0, + "created": "2016-08-21T13:12:45", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.chat/channel/mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-21T13:12:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", + "post_id": 919652, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z" + }, + { + "active_votes": [], + "author": "gary-smith", + "author_reputation": 1199373674648, + "beneficiaries": [], + "body": "so frustra", + "body_length": 105, + "cashout_time": "2016-08-28T12:52:06", + "category": "mining", + "children": 0, + "created": "2016-08-21T12:52:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-21T12:52:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", + "post_id": 919497, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z" + }, + { + "active_votes": [], + "author": "abit", + "author_reputation": 20297981245452, + "beneficiaries": [], + "body": "The privat", + "body_length": 212, + "cashout_time": "2016-08-25T03:32:12", + "category": "witness-category", + "children": 0, + "created": "2016-08-18T03:32:12", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T03:32:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z", + "post_id": 864739, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@abit/re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z" + }, + { + "active_votes": [], + "author": "okay", + "author_reputation": 15517908096, + "beneficiaries": [], + "body": "`gtg said:", + "body_length": 714, + "cashout_time": "2016-08-24T12:06:03", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T12:06:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T12:06:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z", + "post_id": 851273, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@okay/re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z" + }, + { + "active_votes": [], + "author": "mammasitta", + "author_reputation": 5571311902261, + "beneficiaries": [], + "body": "I just saw", + "body_length": 87, + "cashout_time": "2016-08-24T07:03:33", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T07:03:33", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T07:03:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z", + "post_id": 848378, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@mammasitta/re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z" + }, + { + "active_votes": [], + "author": "dajohns1420", + "author_reputation": 654546773339, + "beneficiaries": [], + "body": "I wish I w", + "body_length": 68, + "cashout_time": "2016-08-24T04:00:42", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T04:00:42", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T04:00:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z", + "post_id": 846743, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dajohns1420/re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z" + }, + { + "active_votes": [], + "author": "dr2073", + "author_reputation": 167437582424, + "beneficiaries": [], + "body": "Really goo", + "body_length": 385, + "cashout_time": "2016-08-24T02:12:48", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T02:12:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T02:12:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z", + "post_id": 845579, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dr2073/re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z" + }, + { + "active_votes": [ + { + "percent": "5000", + "reputation": 9800209121307, + "rshares": 3273182637316, + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 12481332844017, + "rshares": 1446333470877, + "voter": "steemychicken1" + }, + { + "percent": "10000", + "reputation": 3991861275580, + "rshares": 49042313956, + "voter": "full-steem-ahead" + }, + { + "percent": "10000", + "reputation": 1444446898291, + "rshares": 9767505930, + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 37159422493, + "rshares": 848329794, + "voter": "johnerminer" + }, + { + "percent": "10000", + "reputation": 3924899966690, + "rshares": 39798145914, + "voter": "gtg" + } + ], + "author": "wackou", + "author_reputation": 3894279128605, + "beneficiaries": [], + "body": "great post", + "body_length": 1694, + "cashout_time": "2016-08-23T21:28:48", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T21:28:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"http://digitalgaia.io/backbone.html\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T21:28:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 4818972403787, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "6.160 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z", + "post_id": 841765, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@wackou/re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 8017093633272, + "rshares": 19467531428, + "voter": "ausbitbank" + } + ], + "author": "jesta", + "author_reputation": 38947133984552, + "beneficiaries": [], + "body": "That's awe", + "body_length": 101, + "cashout_time": "2016-08-23T20:31:06", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T20:31:06", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T20:31:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 19467531428, + "parent_author": "gtg", + "parent_permlink": "re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t201857176z", + "pending_payout_value": "0.012 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z", + "post_id": 840868, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 2733362192608, + "rshares": 43533730799, + "voter": "brandonp" + }, + { + "percent": "10000", + "reputation": 6483658953, + "rshares": 52397603, + "voter": "doze49" + } + ], + "author": "brandonp", + "author_reputation": 2733362192608, + "beneficiaries": [], + "body": "Reading st", + "body_length": 89, + "cashout_time": "2016-08-23T20:01:27", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T20:01:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T20:01:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 43586128402, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.024 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z", + "post_id": 840412, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@brandonp/re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z" + }, + { + "active_votes": [], + "author": "thecryptofiend", + "author_reputation": 16234753830016, + "beneficiaries": [], + "body": "Thanks for", + "body_length": 55, + "cashout_time": "2016-08-23T19:31:06", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T19:31:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:31:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z", + "post_id": 839953, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thecryptofiend/re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 3894279128605, + "rshares": 6327910390022, + "voter": "wackou" + }, + { + "percent": "10000", + "reputation": 1444446898291, + "rshares": 9559686655, + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 37159422493, + "rshares": 829049571, + "voter": "johnerminer" + }, + { + "percent": "10000", + "reputation": 3924899966690, + "rshares": 38432804053, + "voter": "gtg" + }, + { + "percent": "10000", + "reputation": 8017093633272, + "rshares": 19873104999, + "voter": "ausbitbank" + }, + { + "percent": "10000", + "reputation": 161079803820, + "rshares": 44706057470, + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 15739430465359, + "rshares": 31463628969, + "voter": "mibenkito" + }, + { + "percent": "10000", + "reputation": 18890223518661, + "rshares": 14083166401, + "voter": "someguy123" + }, + { + "percent": "10000", + "reputation": 7805684953, + "rshares": 52918124, + "voter": "xomtux" + } + ], + "author": "jesta", + "author_reputation": 38947133984552, + "beneficiaries": [], + "body": "I love the", + "body_length": 1005, + "cashout_time": "2016-08-23T19:11:06", + "category": "witness-category", + "children": 2, + "created": "2016-08-16T19:11:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:11:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6486910806264, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "9.970 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z", + "post_id": 839626, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z" + }, + { + "active_votes": [], + "author": "thebluepanda", + "author_reputation": 7564464865541, + "beneficiaries": [], + "body": "i was chec", + "body_length": 151, + "cashout_time": "2016-08-23T19:08:06", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T19:08:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:08:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z", + "post_id": 839578, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thebluepanda/re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z" + }, + { + "active_votes": [], + "author": "someguy123", + "author_reputation": 18890223518661, + "beneficiaries": [], + "body": "I can tell", + "body_length": 157, + "cashout_time": "2016-08-23T18:52:48", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T18:52:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T18:52:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z", + "post_id": 839328, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@someguy123/re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z" + }, + { + "active_votes": [], + "author": "vishal1", + "author_reputation": -291550544386, + "beneficiaries": [], + "body": "THis is so", + "body_length": 23, + "cashout_time": "2016-08-23T18:12:21", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T18:12:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"users\":[\"gtg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T18:12:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z", + "post_id": 838553, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@vishal1/re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 36749432321730, + "rshares": 910501669843, + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 1959446497877, + "rshares": 4179624293, + "voter": "dennygalindo" + } + ], + "author": "dennygalindo", + "author_reputation": 1959446497877, + "beneficiaries": [], + "body": "Gamificati", + "body_length": 677, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit-ideas", + "children": 0, + "created": "2016-08-15T14:15:42", + "curator_payout_value": "0.198 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-ideas\"],\"users\":[\"dantheman\"],\"links\":[\"https://steemit.com/steem/@dantheman/curation-rewards-and-voting-incentive\"]}", + "last_payout": "2016-09-15T07:07:00", + "last_update": "2016-08-15T14:16:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 914681294136, + "parent_author": "gtg", + "parent_permlink": "re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t123329115z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z", + "post_id": 817208, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "DON'T REMOVE Curation Rewards! Just stop them when the post reach the trending page !!!", + "title": "", + "total_payout_value": "0.601 HBD", + "url": "/steemit-ideas/@liondani/don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page#@dennygalindo/re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": -2314406420479, + "rshares": 1374704925, + "voter": "earnest" + } + ], + "author": "iaco", + "author_reputation": 21756574883, + "beneficiaries": [], + "body": "As the com", + "body_length": 269, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 1, + "created": "2016-08-05T16:12:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-05T16:12:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1374704925, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-witness-gtg-20160805t161219379z", + "post_id": 627877, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@iaco/re-gtg-witness-gtg-20160805t161219379z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 41145563244589, + "rshares": 769829319629, + "voter": "steemship" + }, + { + "percent": "10000", + "reputation": 1444446898291, + "rshares": 9767505930, + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 37159422493, + "rshares": 848329794, + "voter": "johnerminer" + } + ], + "author": "cire81", + "author_reputation": 97517122081, + "beneficiaries": [], + "body": "Thank you ", + "body_length": 156, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 2, + "created": "2016-08-05T15:45:27", + "curator_payout_value": "0.216 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-05T15:45:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 780445155353, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-witness-gtg-20160805t154528701z", + "post_id": 627215, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.650 HBD", + "url": "/witness-category/@gtg/witness-gtg#@cire81/re-gtg-witness-gtg-20160805t154528701z" + }, + { + "active_votes": [], + "author": "mefisto", + "author_reputation": 17071371161, + "beneficiaries": [], + "body": "Kryterium ", + "body_length": 534, + "cashout_time": "1969-12-31T23:59:59", + "category": "polish", + "children": 0, + "created": "2016-08-03T12:56:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"polish\"]}", + "last_payout": "2016-09-03T03:24:06", + "last_update": "2016-08-03T12:58:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t123936611z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z", + "post_id": 580103, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[PL] Czy polska spo\u0142eczno\u015b\u0107 powinna mie\u0107 swojego delegata (witness) ?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/polish/@mefisto/pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness#@mefisto/re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z" + }, + { + "active_votes": [], + "author": "edu-lopov", + "author_reputation": 1628821936541, + "beneficiaries": [], + "body": "Welcome to", + "body_length": 27, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-04T18:22:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-04T18:22:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160704t182251522z", + "post_id": 53542, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@edu-lopov/re-gtg-hello-world-20160704t182251522z" + }, + { + "active_votes": [], + "author": "amartinezque", + "author_reputation": 11952915931943, + "beneficiaries": [], + "body": "Cats, huma", + "body_length": 84, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T22:45:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T22:45:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160703t224527020z", + "post_id": 51824, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@amartinezque/re-gtg-hello-world-20160703t224527020z" + }, + { + "active_votes": [], + "author": "trogdor", + "author_reputation": 12494904871301, + "beneficiaries": [], + "body": "Nice, I un", + "body_length": 55, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T17:51:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T17:51:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160703t175141501z", + "post_id": 51479, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@trogdor/re-gtg-hello-world-20160703t175141501z" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/truncated.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/truncated.tavern.yaml new file mode 100644 index 00000000..a30d0317 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/truncated.tavern.yaml @@ -0,0 +1,28 @@ +--- + test_name: Hivemind condenser_api.get_replies_by_last_update limit 100 patterns test + + marks: + - patterntest + + includes: + - !include ../../common.yaml + + stages: + - name: get_replies_by_last_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_replies_by_last_update" + params: ["gtg","",100,10] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "truncated" + directory: "condenser_api_patterns/get_replies_by_last_update" \ No newline at end of file -- GitLab