diff --git a/hive/db/sql_scripts/community_helpers.sql b/hive/db/sql_scripts/community_helpers.sql new file mode 100644 index 0000000000000000000000000000000000000000..dbed417db49dc92aecd9af8eb74b52d5d4d500a3 --- /dev/null +++ b/hive/db/sql_scripts/community_helpers.sql @@ -0,0 +1,40 @@ +DROP FUNCTION IF EXISTS set_community_role_or_title; +CREATE OR REPLACE FUNCTION set_community_role_or_title(_community_id hive_posts.community_id%TYPE, _account_id hive_posts.author_id%TYPE, _role_id integer, _title varchar(140), _created_at timestamp) +RETURNS bool +LANGUAGE plpgsql +as + $$ +declare + __subscription_id INTEGER; + __role_id SMALLINT; +BEGIN + SELECT id INTO __subscription_id FROM hive_subscriptions WHERE account_id = _account_id AND community_id = _community_id; + + if _role_id IS NOT NULL THEN + SELECT role_id INTO __role_id FROM hive_roles WHERE account_id = _account_id AND community_id = _community_id; + --raise '%aa', __subscription_id; + -- We don't allow setting a higher role than the current one if you aren't subscribed + IF __subscription_id IS NULL AND ((__role_id IS NOT NULL AND __role_id < _role_id ) OR __role_id IS NULL) THEN + return false; + END IF; + ELSE + IF __subscription_id IS NULL THEN + return false; + END IF; + end if; + + IF _role_id IS NOT NULL AND _title IS NULL THEN + INSERT INTO hive_roles(account_id, community_id, role_id, created_at) + VALUES (_account_id, _community_id, _role_id, _created_at) + ON CONFLICT (account_id, community_id) + DO UPDATE SET role_id = _role_id; + ELSIF _title IS NOT NULL AND _role_id IS NULL THEN + INSERT INTO hive_roles(account_id, community_id, title, created_at) + VALUES (_account_id, _community_id, _title, _created_at) + ON CONFLICT (account_id, community_id) + DO UPDATE SET title = _title; + END IF; + + RETURN TRUE; +END; +$$; \ No newline at end of file diff --git a/hive/db/sql_scripts/db_upgrade.sh b/hive/db/sql_scripts/db_upgrade.sh index 8754b63f57e92a665ab11651af83628c0448cee3..4684b6f6b5593cf7f044af27f28c3e8525625444 100755 --- a/hive/db/sql_scripts/db_upgrade.sh +++ b/hive/db/sql_scripts/db_upgrade.sh @@ -75,6 +75,7 @@ for sql in upgrade/assert_public_schema.sql \ follows.sql \ is_superuser.sql \ update_hive_blocks_consistency_flag.sql \ + community_helpers.sql \ update_table_statistics.sql # Must be last do diff --git a/hive/indexer/community.py b/hive/indexer/community.py index cd92f064deedf2e7fa2823724437cd5e68cb1518..71ae7900f683edb0f03a961cca2ed4f13066456e 100644 --- a/hive/indexer/community.py +++ b/hive/indexer/community.py @@ -195,15 +195,15 @@ class Community: """Get user role within a specific community.""" return ( - DB.query_one( - """SELECT role_id FROM hive_roles + DB.query_one( + """SELECT role_id FROM hive_roles WHERE community_id = :community_id AND account_id = :account_id LIMIT 1""", - community_id=community_id, - account_id=account_id, - ) - or Role.guest.value + community_id=community_id, + account_id=account_id, + ) + or Role.guest.value ) @classmethod @@ -369,24 +369,22 @@ class CommunityOp: # Account-level actions elif action == 'setRole': - DB.query( - """INSERT INTO hive_roles - (account_id, community_id, role_id, created_at) - VALUES (:account_id, :community_id, :role_id, :date) - ON CONFLICT (account_id, community_id) - DO UPDATE SET role_id = :role_id """, + subscribed = DB.query_one( + """SELECT * FROM set_community_role_or_title(:community_id, :account_id, :role_id, NULL::varchar, CAST(:date AS timestamp ))""", **params, ) + if not subscribed: + log.info("set role failed account '%s' must be subscribed to the community", params['account']) + return self._notify('set_role', payload=Role(self.role_id).name) elif action == 'setUserTitle': - DB.query( - """INSERT INTO hive_roles - (account_id, community_id, title, created_at) - VALUES (:account_id, :community_id, :title, :date) - ON CONFLICT (account_id, community_id) - DO UPDATE SET title = :title""", + subscribed = DB.query_one( + """SELECT * FROM set_community_role_or_title(:community_id, :account_id, NULL::integer , :title, CAST(:date AS timestamp ))""", **params, ) + if not subscribed: + log.info("set role failed account '%s' must be subscribed to the community", params['account']) + return self._notify('set_label', payload=self.title) # Post-level actions diff --git a/mock_data/block_data/community_op/flow.txt b/mock_data/block_data/community_op/flow.txt index 2e087cd58e4996ee1acf944370e409d6a462da80..c9a070d6ed8fa864871315dd2b123417acee34e7 100644 --- a/mock_data/block_data/community_op/flow.txt +++ b/mock_data/block_data/community_op/flow.txt @@ -5,309 +5,358 @@ account_create_operation( `hive-135485` ) account_create_operation( `hive-117600` ) account_create_operation( `hive-165317` ) account_create_operation( `hive-186669` ) -account_create_operation( `hive-157439` ) -account_create_operation( `hive-198723` ) -account_create_operation( `hive-167892` ) account_create_operation( `hive-103459` ) account_create_operation( `hive-188204` ) account_create_operation( `hive-149232` ) account_create_operation( `hive-104647` ) -comment_operation( `hive-135485`, `test-safari`, `secrets1`) -comment_operation( `hive-135485`, `test-safari`, `secrets2`) -transfer_opearation( `test-safari`, `null`, `0.010666 HBD`, `@test-safari/secrets2` ) - post promotion (with bad amount precision to see what happens - rounding occurs) -comment_operation( `hive-117600`, `test-safari`, `secrets3`) -comment_operation( `hive-117600`, `test-safari`, `secrets4`) -comment_operation( `hive-117600`, `test-safari`, `secrets5`) -comment_operation( `hive-117600`, `test-safari`, `secrets6`) -custom_json_operation("[\"setRole\",{\"community\":\"hive-135485\",\"account\":\"test-safari\",\"role\":\"admin\"}]") -comment_operation( `test-safari`, `muted-and-recreated`) -comment_operation( `test-safari`, `muted-and-edited`) +account_create_operation( `hive-186713` ) +account_create_operation( `hive-157439` ) +account_create_operation( `hive-198723` ) +account_create_operation( `hive-167892` ) +comment_operation( `hive-135485`, `test-safari`,`secrets1`) +comment_operation( `hive-135485`, `test-safari`,`secrets2`) +transfer_operation( `test-safari`, `null`, `0.010666 HBD`, `@test-safari/secrets2` ) +comment_operation( `hive-117600`, `test-safari`,`secrets3`) +comment_operation( `hive-117600`, `test-safari`,`secrets4`) +comment_operation( `hive-117600`, `test-safari`,`secrets5`) +comment_operation( `hive-117600`, `test-safari`,`secrets6`) +custom_json_operation("test-safari" -> "[\"subscribe\", {\"community\": \"hive-135485\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-135485\", \"account\": \"test-safari\", \"role\": \"admin\"}]") +comment_operation( `hive-117600`, `test-safari`,`muted-and-recreated`) +comment_operation( `hive-117600`, `test-safari`,`muted-and-edited`) ***block 4998002*** -custom_json_operation("[\"updateProps\",{\"community\":\"hive-135485\",\"props\":{\"title\":\"World News\",\"about\":\"A place for major news from around the world.\",\"is_nsfw\":true,\"description\":\"\",\"flag_text\":\"\"}}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-135485\",\"account\":\"blocktrades\",\"role\":\"mod\"}]") -custom_json_operation("[\"setUserTitle\",{\"community\":\"hive-135485\",\"account\":\"test-safari\",\"title\":\"Bill Gates\"}]") -custom_json_operation("[\"subscribe\",{\"community\":\"hive-135485\"}]") -custom_json_operation("[\"unsubscribe\",{\"community\":\"hive-135485\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-135485\",\"account\":\"test-safari\",\"permlink\":\"secrets1\",\"notes\":\"spamming\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-135485\",\"account\":\"test-safari\",\"permlink\":\"secrets1\",\"notes\":\"testibgn\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-safari\",\"permlink\":\"secrets1\"}]") -custom_json_operation("[\"unpinPost\",{\"community\":\"hive-135485\",\"account\":\"test-safari\",\"permlink\":\"secrets1\"}]") -custom_json_operation("[\"flagPost\",{\"community\":\"hive-135485\",\"account\":\"test-safari\",\"permlink\":\"secrets1\",\"notes\":\"This is not a kitten..\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-157439\",\"account\":\"test-safari\",\"role\":\"admin\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-198723\",\"account\":\"test-safari\",\"role\":\"admin\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-167892\",\"account\":\"test-safari\",\"role\":\"admin\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"role\":\"muted\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-167892\",\"account\":\"alice\",\"role\":\"muted\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-186713\",\"account\":\"steemit\",\"role\":\"muted\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"role\":\"member\"}]") -custom_json_operation("[\"subscribe\",{\"community\":\"hive-171487\"}]") -custom_json_operation("[\"subscribe\",{\"community\":\"hive-157439\"}]") -custom_json_operation("[\"subscribe\",{\"community\":\"hive-198723\"}]") +custom_json_operation("[\"updateProps\",{\"community\":\"hive-135485\",\"props\":{\"title\": \"World News\", \"about\": \"A place for major news from around the world.\", \"is_nsfw\": true, \"description\": \"\", \"flag_text\": \"\"}}]") +custom_json_operation("blocktrades" -> "[\"subscribe\", {\"community\": \"hive-135485\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-135485\", \"account\": \"blocktrades\", \"role\": \"mod\"}]") +custom_json_operation("test-safari" -> "[\"subscribe\", {\"community\": \"hive-171487\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-171487\", \"account\": \"test-safari\", \"role\": \"mod\"}]") +custom_json_operation("test-safari" -> "[\"subscribe\", {\"community\": \"hive-157439\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-157439\", \"account\": \"test-safari\", \"role\": \"mod\"}]") +custom_json_operation("test-safari" -> "[\"subscribe\", {\"community\": \"hive-198723\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-198723\", \"account\": \"test-safari\", \"role\": \"mod\"}]") +custom_json_operation("test-safari" -> "[\"subscribe\", {\"community\": \"hive-135485\"}]") +custom_json_operation("[\"setUserTitle\", {\"community\": \"hive-135485\", \"account\": \"test-safari\", \"title\": \"Bill Gates\"}]") +custom_json_operation("test-safari" -> "[\"unsubscribe\", {\"community\": \"hive-135485\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-135485\", \"account\": \"test-safari\", \"permlink\": \"secrets1\", \"notes\": \"spamming\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-135485\", \"account\": \"test-safari\", \"permlink\": \"secrets1\", \"notes\": \"testibgn\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-safari\", \"permlink\": \"secrets1\"}]") +custom_json_operation("[\"unpinPost\", {\"community\": \"hive-135485\", \"account\": \"test-safari\", \"permlink\": \"secrets1\"}]") +custom_json_operation("[\"flagPost\", {\"community\": \"hive-135485\", \"account\": \"test-safari\", \"permlink\": \"secrets1\", \"notes\": \"This is not a kitten..\"}]") +custom_json_operation("[\"updateProps\",{\"community\":\"hive-186713\",\"props\":{\"title\": \"Test group\", \"about\": \"this is about field\", \"description\": \"this is description\nsecond line of description\", \"lang\": \"pl\", \"flag_text\": \"first rule\nsecond rule\nthird rule\nand the last rule\", \"is_nsfw\": true}}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-198723\", \"account\": \"steemit\", \"role\": \"muted\"}]") +transfer_operation( `hive-186713`, `"{\"profile\":{\"name\":\"from account\",\"about\":\"about from account\",\"cover_image\":\"\",\"profile_image\":\"https://images.ecency.com/DQmRmugfsA3arLWs2Fh3VncMo4VPsmWUWY9r5GaWKA2k1XN/images.jpeg\",\"website\":\"\",\"location\":\"\",\"version\":2}}"`, `test-safari`) +custom_json_operation("[\"setRole\", {\"community\": \"hive-157439\", \"account\": \"test-safari\", \"role\": \"admin\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-198723\", \"account\": \"test-safari\", \"role\": \"admin\"}]") +custom_json_operation("test-safari" -> "[\"subscribe\", {\"community\": \"hive-167892\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-167892\", \"account\": \"test-safari\", \"role\": \"admin\"}]") +custom_json_operation("alice" -> "[\"subscribe\", {\"community\": \"hive-198723\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"role\": \"member\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-167892\", \"account\": \"alice\", \"role\": \"muted\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"role\": \"muted\"}]") +custom_json_operation("alice" -> "[\"subscribe\", {\"community\": \"hive-157439\"}]") +custom_json_operation("alice" -> "[\"subscribe\", {\"community\": \"hive-171487\"}]") ***block 4998003*** -custom_json_operation("[\"setRole\",{\"community\":\"hive-171488\",\"account\":\"test-safari\",\"role\":\"admin\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-171487\",\"account\":\"test-safari\",\"role\":\"admin\"}]") -custom_json_operation("[\"updateProps\",{\"community\":\"hive-171488\",\"props\":{\"title\":\"Hello\",\"about\":\"Nothing.\",\"is_nsfw\":true,\"description\":\"Nothing\",\"flag_text\":\"Lol\"}}]") -custom_json_operation("[\"updateProps\",{\"community\":\"hive-171487\",\"props\":{\"title\":\"Banana\",\"about\":\"Banana-nothing.\",\"is_nsfw\":true,\"description\":\"Cherry\",\"flag_text\":\"Lemon\"}}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-117600\",\"account\":\"test-safari\",\"role\":\"admin\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-117600\",\"account\":\"roadscape\",\"role\":\"admin\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-117600\",\"account\":\"gtg\",\"role\":\"member\"}]") -comment_operation( `hive-186713`, `test-safari`, `parent-post-for-muted-steemit`) -comment_operation( `hive-186713`, `steemit`, `muted-in-this-community`) -comment_operation( `hive-171487`, `test-safari`, `please-comment-hive1`) -comment_operation( `hive-171487`, `test-safari`, `please-comment-hive1-02`) -comment_operation( `hive-171487`, `test-safari`, `please-comment-hive1-03`) -comment_operation( `hive-157439`, `test-safari`, `please-comment-hive2`) -comment_operation( `hive-157439`, `test-safari`, `please-comment-hive2-02`) -comment_operation( `hive-157439`, `test-safari`, `please-comment-hive2-03`) -comment_operation( `hive-198723`, `test-safari`, `please-comment-hive3`) -comment_operation( `hive-198723`, `test-safari`, `please-comment-hive3-02`) -comment_operation( `hive-198723`, `test-safari`, `please-comment-hive3-03`) -comment_operation( `hive-171487`, `alice`, `My-first-post-hive-1`) -comment_operation( `hive-157439`, `alice`, `My-first-post-hive-2`) -comment_operation( `hive-198723`, `alice`, `My-first-post-hive-3`) +comment_operation( `hive-171487`, `test-safari`,`please-comment-hive1`) +comment_operation( `hive-171487`, `test-safari`,`please-comment-hive1-02`) +comment_operation( `hive-198723`, `steemit`,`muted-in-this-community`) +comment_operation( `hive-198723`, `test-safari`,`parent-post-for-muted-steemit`) +comment_operation( `hive-171487`, `test-safari`,`please-comment-hive1-03`) +comment_operation( `hive-157439`, `test-safari`,`please-comment-hive2`) +comment_operation( `hive-157439`, `test-safari`,`please-comment-hive2-02`) +comment_operation( `hive-157439`, `test-safari`,`please-comment-hive2-03`) +comment_operation( `hive-198723`, `test-safari`,`please-comment-hive3`) +comment_operation( `hive-198723`, `test-safari`,`please-comment-hive3-02`) +comment_operation( `hive-198723`, `test-safari`,`please-comment-hive3-03`) +comment_operation( `hive-171487`, `alice`,`My-first-post-hive-1`) +comment_operation( `hive-157439`, `alice`,`My-first-post-hive-2`) +comment_operation( `hive-198723`, `alice`,`My-first-post-hive-3`) +custom_json_operation("alice" -> "[\"subscribe\", {\"community\": \"hive-171488\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-171488\", \"account\": \"test-safari\", \"role\": \"admin\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-171487\", \"account\": \"test-safari\", \"role\": \"admin\"}]") +custom_json_operation("[\"updateProps\",{\"community\":\"hive-171488\",\"props\":{\"title\": \"Hello\", \"about\": \"Nothing.\", \"is_nsfw\": true, \"description\": \"Nothing\", \"flag_text\": \"Lol\"}}]") +custom_json_operation("[\"updateProps\",{\"community\":\"hive-171487\",\"props\":{\"title\": \"Banana\", \"about\": \"Banana-nothing.\", \"is_nsfw\": true, \"description\": \"Cherry\", \"flag_text\": \"Lemon\"}}]") +custom_json_operation("test-safari" -> "[\"subscribe\", {\"community\": \"hive-117600\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-117600\", \"account\": \"test-safari\", \"role\": \"admin\"}]") +custom_json_operation("roadscape" -> "[\"subscribe\", {\"community\": \"hive-117600\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-117600\", \"account\": \"roadscape\", \"role\": \"mod\"}]") +custom_json_operation("gtg" -> "[\"subscribe\", {\"community\": \"hive-117600\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-117600\", \"account\": \"gtg\", \"role\": \"member\"}]") ***block 4998004*** -comment_operation(`steemit`, `comment-to-please-comment-hive1`) -comment_operation(`alice`, `comment-to-please-comment-hive1`) -comment_operation(`alice`, `comment-to-please-comment-hive1-02`) -comment_operation(`alice`, `comment-to-please-comment-hive1-03`) -comment_operation(`alice`, `comment-to-please-comment-hive2`) -comment_operation(`alice`, `comment-to-please-comment-hive2-02`) -comment_operation(`alice`, `comment-to-please-comment-hive2-03`) -comment_operation(`alice`, `comment-to-please-comment-hive3`) -comment_operation(`alice`, `comment-to-please-comment-hive3-02`) -comment_operation(`alice`, `comment-to-please-comment-hive3-03`) -comment_operation( `hive-171487`, `alice`, `My-second-post-hive1`) -comment_operation( `hive-157439`, `alice`, `My-second-post-hive2`) -comment_operation( `hive-198723`, `alice`, `My-second-post-hive3`) -comment_operation( `hive-171487`, `alice`, `My-third-post-hive1`) -comment_operation( `hive-157439`, `alice`, `My-third-post-hive2`) -comment_operation( `hive-198723`, `alice`, `My-third-post-hive3`) -custom_json_operation("[\"mutePost\",{\"community\":\"hive-135485\",\"account\":\"test-safari\",\"permlink\":\"secrets1\",\"notes\":\"secrets1 are a spam\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-135485\",\"account\":\"test-safari\",\"permlink\":\"secrets2\",\"notes\":\"secrets2 are a spam\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-117600\",\"account\":\"test-safari\",\"permlink\":\"secrets5\",\"notes\":\"secret5 are a spam\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-135485\",\"account\":\"test-safari\",\"permlink\":\"secrets2\",\"notes\":\"secrets1 are a spam, but I love them\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-117600\",\"account\":\"test-safari\",\"permlink\":\"muted-and-recreated\",\"notes\":\"Test\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-117600\",\"account\":\"test-safari\",\"permlink\":\"muted-and-edited\",\"notes\":\"Test\"}]") -delete_comment_operation(`test-safari`, `muted-and-recreated`) -comment_operation( `hive-117600`, `test-safari`, `muted-and-recreated`) -comment_operation( `hive-117600`, `test-safari`, `muted-and-edited`) +comment_operation( `please-comment-hive1`, `alice`,`comment-to-please-comment-hive1`) +comment_operation( `parent-post-for-muted-steemit`, `steemit`,`comment-to-post-in-community-muted`) +comment_operation( `please-comment-hive1-02`, `alice`,`comment-to-please-comment-hive1-02`) +comment_operation( `please-comment-hive1-03`, `alice`,`comment-to-please-comment-hive1-03`) +comment_operation( `please-comment-hive2`, `alice`,`comment-to-please-comment-hive2`) +comment_operation( `please-comment-hive2-02`, `alice`,`comment-to-please-comment-hive2-02`) +comment_operation( `please-comment-hive2-03`, `alice`,`comment-to-please-comment-hive2-03`) +comment_operation( `please-comment-hive3`, `alice`,`comment-to-please-comment-hive3`) +comment_operation( `please-comment-hive3-02`, `alice`,`comment-to-please-comment-hive3-02`) +comment_operation( `please-comment-hive3-03`, `alice`,`comment-to-please-comment-hive3-03`) +comment_operation( `hive-171487`, `alice`,`My-second-post-hive1`) +comment_operation( `hive-157439`, `alice`,`My-second-post-hive2`) +comment_operation( `hive-198723`, `alice`,`My-second-post-hive3`) +comment_operation( `My-second-post-hive1`, `test-safari`,`comment-My-second-post-hive1`) +comment_operation( `My-second-post-hive2`, `test-safari`,`comment-My-second-post-hive2`) +comment_operation( `My-second-post-hive3`, `test-safari`,`comment-My-second-post-hive3`) +comment_operation( `hive-171487`, `alice`,`My-third-post-hive1`) +comment_operation( `hive-157439`, `alice`,`My-third-post-hive2`) +comment_operation( `hive-198723`, `alice`,`My-third-post-hive3`) +custom_json_operation("[\"mutePost\", {\"community\": \"hive-135485\", \"account\": \"test-safari\", \"permlink\": \"secrets1\", \"notes\": \"secrets1 are a spam\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-135485\", \"account\": \"test-safari\", \"permlink\": \"secrets2\", \"notes\": \"secrets2 are a spam\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-117600\", \"account\": \"test-safari\", \"permlink\": \"secrets5\", \"notes\": \"secret5 are a spam\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-135485\", \"account\": \"test-safari\", \"permlink\": \"secrets2\", \"notes\": \"secrets1 are a spam, but I love them\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-117600\", \"account\": \"test-safari\", \"permlink\": \"muted-and-recreated\", \"notes\": \"Test\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-117600\", \"account\": \"test-safari\", \"permlink\": \"muted-and-edited\", \"notes\": \"Test\"}]") +delete_comment_operation( `test-safari`, `muted-and-recreated`) +comment_operation( `hive-117600`, `test-safari`,`muted-and-recreated`) +comment_operation( `hive-117600`, `test-safari`,`muted-and-edited`) ***block 4998005*** -custom_json_operation("[\"mutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"comment-to-please-comment-hive1\",\"notes\":\"first muted comment\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"comment-to-please-comment-hive2\",\"notes\":\"first muted comment\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"comment-to-please-comment-hive3\",\"notes\":\"first muted comment\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"comment-to-please-comment-hive1-02\",\"notes\":\"first muted comment\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"comment-to-please-comment-hive2-02\",\"notes\":\"first muted comment\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"comment-to-please-comment-hive3-02\",\"notes\":\"first muted comment\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"My-first-post-hive3\",\"notes\":\"first muted post\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"My-first-post-hive2\",\"notes\":\"first muted post\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"My-first-post-hive1\",\"notes\":\"first muted post\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"My-second-post-hive3\",\"notes\":\"second muted post\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"My-second-post-hive2\",\"notes\":\"second muted post\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"My-second-post-hive1\",\"notes\":\"second muted post\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-117600\",\"account\":\"test-safari\",\"permlink\":\"secrets3\"}]") -custom_json_operation("[\"unpinPost\",{\"community\":\"hive-117600\",\"account\":\"test-safari\",\"permlink\":\"secrets3\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-117600\",\"account\":\"test-safari\",\"permlink\":\"secrets4\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-117600\",\"account\":\"test-safari\",\"permlink\":\"secrets5\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"comment-to-please-comment-hive1\", \"notes\": \"first muted comment\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"comment-to-please-comment-hive2\", \"notes\": \"first muted comment2\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"comment-to-please-comment-hive3\", \"notes\": \"first muted comment3\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"comment-to-please-comment-hive1-02\", \"notes\": \"first muted comment01\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"comment-to-please-comment-hive2-02\", \"notes\": \"first muted comment02\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"comment-to-please-comment-hive3-02\", \"notes\": \"first muted comment03\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"My-first-post-hive-3\", \"notes\": \"first muted post-3\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"My-first-post-hive-2\", \"notes\": \"first muted post-2\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"My-first-post-hive-1\", \"notes\": \"first muted post-1\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"My-second-post-hive3\", \"notes\": \"second muted post-03\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"My-second-post-hive2\", \"notes\": \"second muted post-02\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"My-second-post-hive1\", \"notes\": \"second muted post-01\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-117600\", \"account\": \"test-safari\", \"permlink\": \"secrets3\"}]") +custom_json_operation("[\"unpinPost\", {\"community\": \"hive-117600\", \"account\": \"test-safari\", \"permlink\": \"secrets3\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-117600\", \"account\": \"test-safari\", \"permlink\": \"secrets4\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-117600\", \"account\": \"test-safari\", \"permlink\": \"secrets5\"}]") ***block 4998006*** -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"comment-to-please-comment-hive1\",\"notes\":\"Unmuted her first comment\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"comment-to-please-comment-hive2\",\"notes\":\"Unmuted her first comment\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"comment-to-please-comment-hive3\",\"notes\":\"Unmuted her first comment\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"My-first-post-hive-3\",\"notes\":\"Unmuted her first post\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"My-first-post-hive-2\",\"notes\":\"Unmuted her first post\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"My-first-post-hive-1\",\"notes\":\"Unmuted her first post\"}]") -custom_json_operation("[\"flagPost\",{\"community\":\"hive-117600\",\"account\":\"test-safari\",\"permlink\":\"secrets5\",\"notes\":\"secrets5 are boring\"}]") -custom_json_operation("[\"flagPost\",{\"community\":\"hive-117600\",\"account\":\"test-safari\",\"permlink\":\"secrets6\",\"notes\":\"secrets5 are stupid\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"comment-to-please-comment-hive1\", \"notes\": \"Unmuted her first comment-hive1\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"comment-to-please-comment-hive2\", \"notes\": \"Unmuted her first comment-hive2\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"comment-to-please-comment-hive3\", \"notes\": \"Unmuted her first comment-hive3\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"My-first-post-hive-3\", \"notes\": \"Unmuted her first post-hive-3\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"My-first-post-hive-2\", \"notes\": \"Unmuted her first post-hive-2\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"My-first-post-hive-1\", \"notes\": \"Unmuted her first post-hive-1\"}]") +custom_json_operation("[\"flagPost\", {\"community\": \"hive-117600\", \"account\": \"test-safari\", \"permlink\": \"secrets5\", \"notes\": \"secrets5 are boring\"}]") +custom_json_operation("[\"flagPost\", {\"community\": \"hive-117600\", \"account\": \"test-safari\", \"permlink\": \"secrets6\", \"notes\": \"secrets5 are stupid\"}]") ***block 4998007*** -custom_json_operation("[\"setRole\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"role\":\"muted\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"role\":\"muted\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"role\":\"muted\"}]") -custom_json_operation("test-safari" -> "[\"subscribe\",{\"community\":\"hive-171487\"}]") -custom_json_operation("test-safari" -> "[\"subscribe\",{\"community\":\"hive-171488\"}]") -custom_json_operation("test-safari" -> "[\"subscribe\",{\"community\":\"hive-135485\"}]") -custom_json_operation("test-safari" -> "[\"subscribe\",{\"community\":\"hive-117600\"}]") -custom_json_operation("test-safari" -> "[\"subscribe\",{\"community\":\"hive-165317\"}]") -custom_json_operation("gtg" -> "[\"subscribe\",{\"community\":\"hive-171487\"}]") -custom_json_operation("gtg" -> "[\"subscribe\",{\"community\":\"hive-171488\"}]") -custom_json_operation("gtg" -> "[\"subscribe\",{\"community\":\"hive-135485\"}]") -custom_json_operation("gtg" -> "[\"subscribe\",{\"community\":\"hive-186669\"}]") -custom_json_operation("gtg" -> "[\"subscribe\",{\"community\":\"hive-103459\"}]") -custom_json_operation("roadscape" -> "[\"subscribe\",{\"community\":\"hive-171487\"}]") -custom_json_operation("roadscape" -> "[\"subscribe\",{\"community\":\"hive-171488\"}]") -custom_json_operation("roadscape" -> "[\"subscribe\",{\"community\":\"hive-135485\"}]") -custom_json_operation("roadscape" -> "[\"subscribe\",{\"community\":\"hive-186669\"}]") -custom_json_operation("roadscape" -> "[\"subscribe\",{\"community\":\"hive-104647\"}]") +comment_operation( `hive-171487`, `alice`,`My-first-post-hive-1`) +comment_operation( `hive-157439`, `alice`,`My-first-post-hive-2`) +comment_operation( `hive-198723`, `alice`,`My-first-post-hive-3`) +comment_operation( `My-first-post-hive-1`, `test-safari`,`comment-My-first-post-hive-1`) +comment_operation( `My-first-post-hive-2`, `test-safari`,`comment-My-first-post-hive-2`) +comment_operation( `My-first-post-hive-3`, `test-safari`,`comment-My-first-post-hive-3`) +custom_json_operation("[\"setRole\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"role\": \"muted\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"role\": \"muted\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"role\": \"muted\"}]") +custom_json_operation("test-safari" -> "[\"subscribe\", {\"community\": \"hive-171487\"}]") +custom_json_operation("test-safari" -> "[\"subscribe\", {\"community\": \"hive-171488\"}]") +custom_json_operation("test-safari" -> "[\"subscribe\", {\"community\": \"hive-135485\"}]") +custom_json_operation("test-safari" -> "[\"subscribe\", {\"community\": \"hive-117600\"}]") +custom_json_operation("test-safari" -> "[\"subscribe\", {\"community\": \"hive-165317\"}]") +custom_json_operation("gtg" -> "[\"subscribe\", {\"community\": \"hive-171487\"}]") +custom_json_operation("gtg" -> "[\"subscribe\", {\"community\": \"hive-171488\"}]") +custom_json_operation("gtg" -> "[\"subscribe\", {\"community\": \"hive-135485\"}]") +custom_json_operation("gtg" -> "[\"subscribe\", {\"community\": \"hive-186669\"}]") +custom_json_operation("gtg" -> "[\"subscribe\", {\"community\": \"hive-103459\"}]") +custom_json_operation("roadscape" -> "[\"subscribe\", {\"community\": \"hive-171487\"}]") +custom_json_operation("roadscape" -> "[\"subscribe\", {\"community\": \"hive-171488\"}]") +custom_json_operation("roadscape" -> "[\"subscribe\", {\"community\": \"hive-135485\"}]") +custom_json_operation("roadscape" -> "[\"subscribe\", {\"community\": \"hive-186669\"}]") +custom_json_operation("roadscape" -> "[\"subscribe\", {\"community\": \"hive-104647\"}]") ***block 4998008*** -comment_operation( `hive-171487`, `alice`, `First-after-muted-post-hive1`) -comment_operation( `hive-157439`, `alice`, `First-after-muted-post-hive2`) -comment_operation( `hive-198723`, `alice`, `First-after-muted-post-hive3`) -comment_operation( `hive-171487`, `alice`, `Second-after-muted-post-hive1`) -comment_operation( `hive-157439`, `alice`, `Second-after-muted-post-hive2`) -comment_operation( `hive-198723`, `alice`, `Second-after-muted-post-hive3`) -comment_operation( `hive-171487`, `alice`, `Third-after-muted-post-hive1`) -comment_operation( `hive-157439`, `alice`, `Third-after-muted-post-hive2`) -comment_operation( `hive-198723`, `alice`, `Third-after-muted-post-hive3`) -comment_operation( `alice`, `after-muted-comment-to-please-comment-hive1`) -comment_operation( `alice`, `after-muted-comment-to-please-comment-hive1-02`) -comment_operation( `alice`, `after-muted-comment-to-please-comment-hive1-03`) -comment_operation( `alice`, `after-muted-comment-to-please-comment-hive2`) -comment_operation( `alice`, `after-muted-comment-to-please-comment-hive2-02`) -comment_operation( `alice`, `after-muted-comment-to-please-comment-hive2-03`) -comment_operation( `alice`, `after-muted-comment-to-please-comment-hive3`) -comment_operation( `alice`, `after-muted-comment-to-please-comment-hive3-02`) -comment_operation( `alice`, `after-muted-comment-to-please-comment-hive3-03`) -custom_json_operation("good-karma" -> "[\"subscribe\",{\"community\":\"hive-171487\"}]") -custom_json_operation("good-karma" -> "[\"subscribe\",{\"community\":\"hive-171488\"}]") -custom_json_operation("good-karma" -> "[\"subscribe\",{\"community\":\"hive-135485\"}]") -custom_json_operation("good-karma" -> "[\"subscribe\",{\"community\":\"hive-117600\"}]") -custom_json_operation("good-karma" -> "[\"subscribe\",{\"community\":\"hive-165317\"}]") -custom_json_operation("good-karma" -> "[\"subscribe\",{\"community\":\"hive-186669\"}]") -custom_json_operation("good-karma" -> "[\"subscribe\",{\"community\":\"hive-103459\"}]") -custom_json_operation("good-karma" -> "[\"subscribe\",{\"community\":\"hive-188204\"}]") -custom_json_operation("good-karma" -> "[\"subscribe\",{\"community\":\"hive-149232\"}]") -custom_json_operation("good-karma" -> "[\"subscribe\",{\"community\":\"hive-104647\"}]") -comment_operation( `test-creator`, `introduce` ) -comment_operation( `hive-135485`, `test-creator`, `introduce` ) //post edit that changes it to community post - is that legal? (expected to not show as community post) -comment_operation( `hive-135485`, `test-creator`, `first-post` ) -comment_operation( `hive-135485`, `test-creator`, `reblogged-post` ) -comment_operation( `hive-135485`, `test-creator`, `muted-post` ) -comment_operation( `hive-135485`, `test-creator`, `pinned-post` ) -comment_operation( `hive-135485`, `test-creator`, `pinpost1` ) -comment_vote_operation( `alice` -> `test-creator`, `pinpost1`, 0.003 HBD ) -comment_operation( `hive-135485`, `test-creator`, `pinpost2` ) -comment_operation( `hive-135485`, `test-creator`, `nonpinpost1` ) -comment_vote_operation( `alice` -> `test-creator`, `nonpinpost1`, 0.004 HBD ) -comment_operation( `hive-135485`, `test-creator`, `pinpost3` ) -comment_operation( `hive-135485`, `test-creator`, `pinpost4` ) -comment_operation( `hive-135485`, `test-creator`, `nonpinpost2` ) -comment_operation( `hive-135485`, `test-creator`, `pinpost5` ) -comment_vote_operation( `alice` -> `test-creator`, `pinpost5`, 0.001 HBD ) -comment_operation( `hive-135485`, `test-creator`, `pinpost6` ) -comment_operation( `hive-135485`, `test-creator`, `pinpost7` ) -comment_operation( `hive-135485`, `test-creator`, `pinpost8` ) -comment_operation( `hive-135485`, `test-creator`, `pinpost9` ) -comment_operation( `hive-135485`, `test-creator`, `pinpost10` ) -comment_operation( `hive-135485`, `test-creator`, `pinpost11` ) -comment_vote_operation( `alice` -> `test-creator`, `pinpost11`, 0.005 HBD ) -comment_operation( `hive-135485`, `test-creator`, `pinpost12` ) -comment_operation( `hive-135485`, `test-creator`, `nonpinpost3` ) -comment_vote_operation( `alice` -> `test-creator`, `nonpinpost3`, 0.002 HBD ) -comment_operation( `test-creator`, `re-community-135485-comment` reply to `test-creator`, `secrets1` ) -comment_operation( `test-creator`, `re-re-community-135485-comment` reply to `test-creator`, `re-community-135485-comment` ) -custom_json_operation("[\"mutePost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"muted-post\",\"notes\":\"nothing special\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"pinned-post\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"pinpost1\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"pinpost2\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"pinpost3\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"pinpost4\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"pinpost5\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"pinpost6\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"pinpost7\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"pinpost8\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"pinpost9\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"pinpost10\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"pinpost11\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"test-creator\",\"permlink\":\"pinpost12\"}]") +comment_operation( `hive-171487`, `alice`,`First-after-muted-post-hive1`) +comment_operation( `hive-157439`, `alice`,`First-after-muted-post-hive2`) +comment_operation( `hive-198723`, `alice`,`First-after-muted-post-hive3`) +comment_operation( `hive-171487`, `alice`,`Second-after-muted-post-hive1`) +comment_operation( `hive-157439`, `alice`,`Second-after-muted-post-hive2`) +comment_operation( `hive-198723`, `alice`,`Second-after-muted-post-hive3`) +comment_operation( `hive-171487`, `alice`,`Third-after-muted-post-hive1`) +comment_operation( `hive-157439`, `alice`,`Third-after-muted-post-hive2`) +comment_operation( `hive-198723`, `alice`,`Third-after-muted-post-hive3`) +comment_operation( `please-comment-hive1`, `alice`,`after-muted-comment-to-please-comment-hive1`) +comment_operation( `please-comment-hive1-02`, `alice`,`after-muted-comment-to-please-comment-hive1-02`) +comment_operation( `please-comment-hive1-03`, `alice`,`after-muted-comment-to-please-comment-hive1-03`) +comment_operation( `please-comment-hive2`, `alice`,`after-muted-comment-to-please-comment-hive2`) +comment_operation( `please-comment-hive2-02`, `alice`,`after-muted-comment-to-please-comment-hive2-02`) +comment_operation( `please-comment-hive2-03`, `alice`,`after-muted-comment-to-please-comment-hive2-03`) +comment_operation( `please-comment-hive3`, `alice`,`after-muted-comment-to-please-comment-hive3`) +comment_operation( `please-comment-hive3-02`, `alice`,`after-muted-comment-to-please-comment-hive3-02`) +comment_operation( `please-comment-hive3-03`, `alice`,`after-muted-comment-to-please-comment-hive3-03`) +custom_json_operation("good-karma" -> "[\"subscribe\", {\"community\": \"hive-171487\"}]") +custom_json_operation("good-karma" -> "[\"subscribe\", {\"community\": \"hive-171488\"}]") +custom_json_operation("good-karma" -> "[\"subscribe\", {\"community\": \"hive-135485\"}]") +custom_json_operation("good-karma" -> "[\"subscribe\", {\"community\": \"hive-117600\"}]") +custom_json_operation("good-karma" -> "[\"subscribe\", {\"community\": \"hive-165317\"}]") +custom_json_operation("good-karma" -> "[\"subscribe\", {\"community\": \"hive-186669\"}]") +custom_json_operation("good-karma" -> "[\"subscribe\", {\"community\": \"hive-103459\"}]") +custom_json_operation("good-karma" -> "[\"subscribe\", {\"community\": \"hive-188204\"}]") +custom_json_operation("good-karma" -> "[\"subscribe\", {\"community\": \"hive-149232\"}]") +custom_json_operation("good-karma" -> "[\"subscribe\", {\"community\": \"hive-104647\"}]") +comment_operation( ``, `test-creator`,`introduce`) +comment_operation( `hive-135485`, `test-creator`,`introduce`) +comment_operation( `hive-135485`, `test-creator`,`first-post`) +comment_operation( `hive-135485`, `test-creator`,`reblogged-post`) +comment_operation( `hive-135485`, `test-creator`,`muted-post`) +comment_operation( `hive-135485`, `test-creator`,`pinned-post`) +comment_operation( `hive-135485`, `test-creator`,`pinpost1`) +delete_comment_operation(`alice` -> `test-creator`, `pinpost1`, `300`) +comment_operation( `hive-135485`, `test-creator`,`pinpost2`) +comment_operation( `hive-135485`, `test-creator`,`nonpinpost1`) +delete_comment_operation(`alice` -> `test-creator`, `nonpinpost1`, `400`) +comment_operation( `hive-135485`, `test-creator`,`pinpost3`) +comment_operation( `hive-135485`, `test-creator`,`pinpost4`) +comment_operation( `hive-135485`, `test-creator`,`nonpinpost2`) +comment_operation( `hive-135485`, `test-creator`,`pinpost5`) +delete_comment_operation(`alice` -> `test-creator`, `pinpost5`, `100`) +comment_operation( `hive-135485`, `test-creator`,`pinpost6`) +comment_operation( `hive-135485`, `test-creator`,`pinpost7`) +comment_operation( `hive-135485`, `test-creator`,`pinpost8`) +comment_operation( `hive-135485`, `test-creator`,`pinpost9`) +comment_operation( `hive-135485`, `test-creator`,`pinpost10`) +comment_operation( `hive-135485`, `test-creator`,`pinpost11`) +delete_comment_operation(`alice` -> `test-creator`, `pinpost11`, `500`) +comment_operation( `hive-135485`, `test-creator`,`pinpost12`) +comment_operation( `hive-135485`, `test-creator`,`nonpinpost3`) +delete_comment_operation(`alice` -> `test-creator`, `nonpinpost3`, `200`) +comment_operation( `secrets1`, `test-creator`,`re-community-135485-comment`) +comment_operation( `re-community-135485-comment`, `test-creator`,`re-re-community-135485-comment`) +custom_json_operation("[\"mutePost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"muted-post\", \"notes\": \"nothing special\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"pinned-post\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"pinpost1\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"pinpost2\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"pinpost3\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"pinpost4\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"pinpost5\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"pinpost6\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"pinpost7\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"pinpost8\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"pinpost9\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"pinpost10\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"pinpost11\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"test-creator\", \"permlink\": \"pinpost12\"}]") ***block 4998009*** -custom_json_operation("[\"mutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"after-muted-comment-to-please-comment-hive1\",\"notes\":\"I hate first comments!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"after-muted-comment-to-please-comment-hive2\",\"notes\":\"I hate first comments!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"after-muted-comment-to-please-comment-hive3\",\"notes\":\"I hate first comments!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"after-muted-comment-to-please-comment-hive1-02\",\"notes\":\"I hate second comments too!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"after-muted-comment-to-please-comment-hive2-02\",\"notes\":\"I hate second comments too!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"after-muted-comment-to-please-comment-hive3-03\",\"notes\":\"I hate second comments too!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"First-after-muted-post-hive1\",\"notes\":\"I hate first posts!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"First-after-muted-post-hive2\",\"notes\":\"I hate first posts!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"First-after-muted-post-hive3\",\"notes\":\"I hate first posts!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"Second-after-muted-post-hive1\",\"notes\":\"I hate second posts too!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"Second-after-muted-post-hive2\",\"notes\":\"I hate second posts too!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"Second-after-muted-post-hive3\",\"notes\":\"I hate second posts too!\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-117600\",\"account\":\"good-karma\",\"role\":\"admin\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-117600\",\"account\":\"abit\",\"role\":\"admin\"}]") -comment_operation( `hive-117600`, `abit`, `anaconda01`) -custom_json_operation("[\"pinPost\",{\"community\":\"hive-117600\",\"account\":\"abit\",\"permlink\":\"anaconda01\"}]") -comment_operation( `hive-117600`, `abit`, `anaconda02`) -custom_json_operation("[\"pinPost\",{\"community\":\"hive-117600\",\"account\":\"abit\",\"permlink\":\"anaconda02\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-188204\", \"account\": \"gtg\", \"role\": \"muted\"}]") +custom_json_operation("agartha" -> "[\"subscribe\", {\"community\": \"hive-186669\"}]") +custom_json_operation("alice" -> "[\"subscribe\", {\"community\": \"hive-165317\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"after-muted-comment-to-please-comment-hive1\", \"notes\": \"I hate first comments-hive1!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"after-muted-comment-to-please-comment-hive2\", \"notes\": \"I hate first comments-hive2!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"after-muted-comment-to-please-comment-hive3\", \"notes\": \"I hate first comments-hive3!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"after-muted-comment-to-please-comment-hive1-02\", \"notes\": \"I hate second comments too-hive1!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"after-muted-comment-to-please-comment-hive2-02\", \"notes\": \"I hate second comments too-hive2!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"after-muted-comment-to-please-comment-hive3-02\", \"notes\": \"I hate second comments too-hive3!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"First-after-muted-post-hive1\", \"notes\": \"I hate first posts-hive1!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"First-after-muted-post-hive2\", \"notes\": \"I hate first posts-hive2!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"First-after-muted-post-hive3\", \"notes\": \"I hate first posts-hive3!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"Second-after-muted-post-hive1\", \"notes\": \"I hate second posts too-hive1!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"Second-after-muted-post-hive2\", \"notes\": \"I hate second posts too-hive2!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"Second-after-muted-post-hive3\", \"notes\": \"I hate second posts too-hive3!\"}]") +custom_json_operation("good-karma" -> "[\"subscribe\", {\"community\": \"hive-117600\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-117600\", \"account\": \"good-karma\", \"role\": \"admin\"}]") +custom_json_operation("abit" -> "[\"subscribe\", {\"community\": \"hive-117600\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-117600\", \"account\": \"abit\", \"role\": \"admin\"}]") +comment_operation( `hive-117600`, `abit`,`anaconda01`) +custom_json_operation("[\"pinPost\", {\"community\": \"hive-117600\", \"account\": \"abit\", \"permlink\": \"anaconda01\"}]") +comment_operation( `hive-117600`, `abit`,`anaconda02`) +custom_json_operation("[\"pinPost\", {\"community\": \"hive-117600\", \"account\": \"abit\", \"permlink\": \"anaconda02\"}]") ***block 4998010*** -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"after-muted-comment-to-please-comment-hive1\",\"notes\":\"Unmute first comment\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"after-muted-comment-to-please-comment-hive2\",\"notes\":\"Unmute first comment\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"after-muted-comment-to-please-comment-hive3\",\"notes\":\"Unmute first comment\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"First-after-muted-post-hive1\",\"notes\":\"Unmute first post\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"First-after-muted-post-hive2\",\"notes\":\"Unmute first post\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"First-after-muted-post-hive3\",\"notes\":\"Unmute first post\"}]") -comment_operation( `hive-117600`, `good-karma`, `spider01`) -custom_json_operation("[\"pinPost\",{\"community\":\"hive-117600\",\"account\":\"good-karma\",\"permlink\":\"spider01\"}]") -comment_operation( `hive-117600`, `good-karma`, `spider02`) -custom_json_operation("[\"pinPost\",{\"community\":\"hive-117600\",\"account\":\"good-karma\",\"permlink\":\"spider02\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-117600\",\"account\":\"good-karma\",\"permlink\":\"spider02\",\"notes\":\"I hate spiders 02\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-117600\",\"account\":\"good-karma\",\"permlink\":\"spider01\",\"notes\":\"I hate spiders 01\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-117600\",\"account\":\"good-karma\",\"permlink\":\"spider01\",\"notes\":\"I hate spiders 02, but they are funny\"}]") +custom_json_operation("alice" -> "[\"subscribe\", {\"community\": \"hive-188204\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-188204\", \"account\": \"alice\", \"role\": \"mod\"}]") +custom_json_operation("camilla" -> "[\"subscribe\", {\"community\": \"hive-165317\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"after-muted-comment-to-please-comment-hive1\", \"notes\": \"Unmute first comment hive1\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"after-muted-comment-to-please-comment-hive2\", \"notes\": \"Unmute first comment hive2\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"after-muted-comment-to-please-comment-hive3\", \"notes\": \"Unmute first comment hive3\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"First-after-muted-post-hive1\", \"notes\": \"Unmute first post hive1\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"First-after-muted-post-hive2\", \"notes\": \"Unmute first post hive2\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"First-after-muted-post-hive3\", \"notes\": \"Unmute first post hive3\"}]") +comment_operation( `hive-117600`, `good-karma`,`spider01`) +custom_json_operation("[\"pinPost\", {\"community\": \"hive-117600\", \"account\": \"good-karma\", \"permlink\": \"spider01\"}]") +comment_operation( `hive-117600`, `good-karma`,`spider02`) +custom_json_operation("[\"pinPost\", {\"community\": \"hive-117600\", \"account\": \"good-karma\", \"permlink\": \"spider02\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-117600\", \"account\": \"good-karma\", \"permlink\": \"spider02\", \"notes\": \"I hate spiders 02\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-117600\", \"account\": \"good-karma\", \"permlink\": \"spider01\", \"notes\": \"I hate spiders 01\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-117600\", \"account\": \"good-karma\", \"permlink\": \"spider01\", \"notes\": \"I hate spiders 02, but they are funny\"}]") ***block 4998011*** -custom_json_operation("[\"setRole\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"role\":\"member\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"role\":\"member\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"role\":\"member\"}]") -custom_json_operation("[\"setRole\",{\"community\":\"hive-135485\",\"account\":\"blocktrades\",\"role\":\"admin\"}]") -comment_operation( `hive-135485`, `blocktrades`, `crocodile01`) -comment_vote_operation( `alice` -> `blocktrades`, `crocodile01`, 0.004 HBD ) -comment_operation( `hive-135485`, `blocktrades`, `crocodile02`) -comment_operation( `hive-135485`, `ignoerall`, `regular-post`) -comment_vote_operation( `alice` -> `ignoreall`, `regular-post`, 0.001 HBD ) -comment_operation( `hive-135485`, `blocktrades`, `crocodile03`) -custom_json_operation("[\"mutePost\",{\"community\":\"hive-135485\",\"account\":\"blocktrades\",\"permlink\":\"crocodile01\",\"notes\":\"I hate crocodiles 01\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-135485\",\"account\":\"blocktrades\",\"permlink\":\"crocodile02\",\"notes\":\"I hate crocodiles 02\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-135485\",\"account\":\"blocktrades\",\"permlink\":\"crocodile03\",\"notes\":\"I hate crocodiles 03\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-135485\",\"account\":\"blocktrades\",\"permlink\":\"crocodile03\",\"notes\":\"I hate crocodiles 03, but they are cool\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"blocktrades\",\"permlink\":\"crocodile02\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"blocktrades\",\"permlink\":\"crocodile03\"}]") -comment_operation( `hive-135485`, `blocktrades`, `elephant01`) +custom_json_operation("agartha" -> "[\"subscribe\", {\"community\": \"hive-188204\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-188204\", \"account\": \"agartha\", \"role\": \"admin\"}]") +custom_json_operation("abit" -> "[\"subscribe\", {\"community\": \"hive-186669\"}]") +custom_json_operation("gtg" -> "[\"subscribe\", {\"community\": \"hive-165317\"}]") +custom_json_operation("abit" -> "[\"subscribe\", {\"community\": \"hive-165317\"}]") +custom_json_operation("alice" -> "[\"subscribe\", {\"community\": \"hive-171487\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"role\": \"member\"}]") +custom_json_operation("alice" -> "[\"subscribe\", {\"community\": \"hive-157439\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"role\": \"member\"}]") +custom_json_operation("alice" -> "[\"subscribe\", {\"community\": \"hive-198723\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"role\": \"member\"}]") +custom_json_operation("blocktrades" -> "[\"subscribe\", {\"community\": \"hive-157439\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-135485\", \"account\": \"blocktrades\", \"role\": \"admin\"}]") +comment_operation( `hive-135485`, `blocktrades`,`crocodile01`) +delete_comment_operation(`alice` -> `blocktrades`, `crocodile01`, `400`) +comment_operation( `hive-135485`, `blocktrades`,`crocodile02`) +comment_operation( `hive-135485`, `ignoreall`,`regular-post`) +delete_comment_operation(`alice` -> `ignoreall`, `regular-post`, `100`) +comment_operation( `hive-135485`, `blocktrades`,`crocodile03`) +custom_json_operation("[\"mutePost\", {\"community\": \"hive-135485\", \"account\": \"blocktrades\", \"permlink\": \"crocodile01\", \"notes\": \"I hate crocodiles 01\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-135485\", \"account\": \"blocktrades\", \"permlink\": \"crocodile02\", \"notes\": \"I hate crocodiles 02\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-135485\", \"account\": \"blocktrades\", \"permlink\": \"crocodile03\", \"notes\": \"I hate crocodiles 03\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-135485\", \"account\": \"blocktrades\", \"permlink\": \"crocodile03\", \"notes\": \"I hate crocodiles 03, but they are cool\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"blocktrades\", \"permlink\": \"crocodile02\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"blocktrades\", \"permlink\": \"crocodile03\"}]") +comment_operation( `hive-135485`, `blocktrades`,`elephant01`) ***block 4998012*** -comment_operation( `hive-171487`, `alice`, `First-after-member-post-hive1`) -comment_operation( `hive-135485`, `agartha`, `regular-post`) -comment_vote_operation( `ignoreall` -> `agartha`, `regular-post`, 0.002 HBD ) -comment_operation( `hive-157439`, `alice`, `First-after-member-post-hive2`) -comment_operation( `hive-198723`, `alice`, `First-after-member-post-hive3`) -comment_operation( `hive-171487`, `alice`, `Second-after-member-post-hive1`) -comment_operation( `hive-157439`, `alice`, `Second-after-member-post-hive2`) -comment_operation( `hive-198723`, `alice`, `Second-after-member-post-hive3`) -comment_operation( `hive-171487`, `alice`, `Third-after-member-post-hive1`) -comment_operation( `hive-157439`, `alice`, `Third-after-member-post-hive2`) -comment_operation( `hive-198723`, `alice`, `Third-after-member-post-hive3`) -comment_operation( `alice`, `after-member-comment-to-please-comment-hive1`) -comment_operation( `alice`, `after-member-comment-to-please-comment-hive1-02`) -comment_operation( `alice`, `after-member-comment-to-please-comment-hive1-03`) -comment_operation( `alice`, `after-member-comment-to-please-comment-hive2`) -comment_operation( `alice`, `after-member-comment-to-please-comment-hive2-02`) -comment_operation( `alice`, `after-member-comment-to-please-comment-hive2-03`) -comment_operation( `alice`, `after-member-comment-to-please-comment-hive3`) -comment_operation( `alice`, `after-member-comment-to-please-comment-hive3-02`) -comment_operation( `alice`, `after-member-comment-to-please-comment-hive3-03`) -custom_json_operation("[\"pinPost\",{\"community\":\"hive-117600\",\"account\":\"test-safari\",\"permlink\":\"secrets6\"}]") -delete_comment_operation(`test-safari`, `secrets3`) -custom_json_operation("[\"mutePost\",{\"community\":\"hive-117600\",\"account\":\"test-safari\",\"permlink\":\"secrets6\",\"notes\":\"I don't like it\"}]") -delete_comment_operation(`test-safari`, `secrets6`) -custom_json_operation("[\"mutePost\",{\"community\":\"hive-135485\",\"account\":\"blocktrades\",\"permlink\":\"elephant01\",\"notes\":\"I don't like elephants\"}]") -custom_json_operation("[\"pinPost\",{\"community\":\"hive-135485\",\"account\":\"blocktrades\",\"permlink\":\"elephant01\"}]") +custom_json_operation("camilla" -> "[\"subscribe\", {\"community\": \"hive-188204\"}]") +custom_json_operation("[\"setRole\", {\"community\": \"hive-188204\", \"account\": \"camilla\", \"role\": \"owner\"}]") +custom_json_operation("abit" -> "[\"subscribe\", {\"community\": \"hive-188204\"}]") +custom_json_operation("agartha" -> "[\"subscribe\", {\"community\": \"hive-165317\"}]") +comment_operation( `hive-171487`, `alice`,`First-after-member-post-hive1`) +comment_operation( `hive-135485`, `agartha`,`regular-post`) +delete_comment_operation(`ignoreall` -> `agartha`, `regular-post`, `200`) +comment_operation( `hive-157439`, `alice`,`First-after-member-post-hive2`) +comment_operation( `hive-198723`, `alice`,`First-after-member-post-hive3`) +comment_operation( `hive-171487`, `alice`,`Second-after-member-post-hive1`) +comment_operation( `hive-157439`, `alice`,`Second-after-member-post-hive2`) +comment_operation( `hive-198723`, `alice`,`Second-after-member-post-hive3`) +comment_operation( `hive-171487`, `alice`,`Third-after-member-post-hive1`) +comment_operation( `hive-157439`, `alice`,`Third-after-member-post-hive2`) +comment_operation( `hive-198723`, `alice`,`Third-after-member-post-hive3`) +comment_operation( `please-comment-hive1`, `alice`,`after-member-comment-to-please-comment-hive1`) +comment_operation( `please-comment-hive1-02`, `alice`,`after-member-comment-to-please-comment-hive1-02`) +comment_operation( `please-comment-hive1-03`, `alice`,`after-member-comment-to-please-comment-hive1-03`) +comment_operation( `please-comment-hive2`, `alice`,`after-member-comment-to-please-comment-hive2`) +comment_operation( `please-comment-hive2-02`, `alice`,`after-member-comment-to-please-comment-hive2-02`) +comment_operation( `please-comment-hive2-03`, `alice`,`after-member-comment-to-please-comment-hive2-03`) +comment_operation( `please-comment-hive3`, `alice`,`after-member-comment-to-please-comment-hive3`) +comment_operation( `please-comment-hive3-02`, `alice`,`after-member-comment-to-please-comment-hive3-02`) +comment_operation( `please-comment-hive3-03`, `alice`,`after-member-comment-to-please-comment-hive3-03`) +custom_json_operation("[\"pinPost\", {\"community\": \"hive-117600\", \"account\": \"test-safari\", \"permlink\": \"secrets6\"}]") +delete_comment_operation( `test-safari`, `secrets3`) +custom_json_operation("[\"mutePost\", {\"community\": \"hive-117600\", \"account\": \"test-safari\", \"permlink\": \"secrets6\", \"notes\": \"I dont like it\"}]") +delete_comment_operation( `test-safari`, `secrets6`) +custom_json_operation("[\"mutePost\", {\"community\": \"hive-135485\", \"account\": \"blocktrades\", \"permlink\": \"elephant01\", \"notes\": \"I don't like elephants\"}]") +custom_json_operation("[\"pinPost\", {\"community\": \"hive-135485\", \"account\": \"blocktrades\", \"permlink\": \"elephant01\"}]") ***block 4998013*** -custom_json_operation("[\"mutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"after-member-comment-to-please-comment-hive1\",\"notes\":\"I hate first comments!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"after-member-comment-to-please-comment-hive2\",\"notes\":\"I hate first comments!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"after-member-comment-to-please-comment-hive3\",\"notes\":\"I hate first comments!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"after-member-comment-to-please-comment-hive1-02\",\"notes\":\"I hate second comments too!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"after-member-comment-to-please-comment-hive2-02\",\"notes\":\"I hate second comments too!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"after-member-comment-to-please-comment-hive3-02\",\"notes\":\"I hate second comments too!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"First-after-member-post-hive1\",\"notes\":\"I hate first posts!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"First-after-member-post-hive2\",\"notes\":\"I hate first posts!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"First-after-member-post-hive3\",\"notes\":\"I hate first posts!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"Second-after-member-post-hive1\",\"notes\":\"I hate second posts too!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"Second-after-member-post-hive2\",\"notes\":\"I hate second posts too!\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"Second-after-member-post-hive3\",\"notes\":\"I hate second posts too!\"}]") -custom_json_operation("gtg" -> "[\"unsubscribe\",{\"community\":\"hive-103459\"}]") -custom_json_operation("good-karma" -> "[\"unsubscribe\",{\"community\":\"hive-103459\"}]") -delete_comment_operation(`blocktrades`, `elephant01`) +custom_json_operation("[\"mutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"after-member-comment-to-please-comment-hive1\", \"notes\": \"I hate first comments hive1-!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"after-member-comment-to-please-comment-hive2\", \"notes\": \"I hate first comments hive2-!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"after-member-comment-to-please-comment-hive3\", \"notes\": \"I hate first comments hive3-!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"after-member-comment-to-please-comment-hive1-02\", \"notes\": \"I hate second comments too hive1-!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"after-member-comment-to-please-comment-hive2-02\", \"notes\": \"I hate second comments too hive2-!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"after-member-comment-to-please-comment-hive3-02\", \"notes\": \"I hate second comments too hive3-!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"First-after-member-post-hive1\", \"notes\": \"hive1 I hate first posts!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"First-after-member-post-hive2\", \"notes\": \"hive2 I hate first posts!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"First-after-member-post-hive3\", \"notes\": \"hive3 I hate first posts!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"Second-after-member-post-hive1\", \"notes\": \"hive1 I hate second posts too!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"Second-after-member-post-hive2\", \"notes\": \"hive2 I hate second posts too!\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"Second-after-member-post-hive3\", \"notes\": \"hive3 I hate second posts too!\"}]") +custom_json_operation("gtg" -> "[\"unsubscribe\", {\"community\": \"hive-103459\"}]") +custom_json_operation("good-karma" -> "[\"unsubscribe\", {\"community\": \"hive-103459\"}]") +delete_comment_operation( `blocktrades`, `elephant01`) ***block 4998014*** -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"after-member-comment-to-please-comment-hive1\",\"notes\":\"Unmute first comment\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"after-member-comment-to-please-comment-hive2\",\"notes\":\"Unmute first comment\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"after-member-comment-to-please-comment-hive3\",\"notes\":\"Unmute first comment\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"permlink\":\"First-after-member-post-hive1\",\"notes\":\"Unmute first post\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"permlink\":\"First-after-member-post-hive2\",\"notes\":\"Unmute first post\"}]") -custom_json_operation("[\"unmutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"First-after-member-post-hive3\",\"notes\":\"Unmute first post\"}]") +comment_operation( `hive-171487`, `alice`,`Second-after-member-post-hive1`) +comment_operation( `hive-157439`, `alice`,`Second-after-member-post-hive2`) +comment_operation( `hive-198723`, `alice`,`Second-after-member-post-hive3`) +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"after-member-comment-to-please-comment-hive1\", \"notes\": \"hive1 Unmute first comment\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"after-member-comment-to-please-comment-hive2\", \"notes\": \"hive2 Unmute first comment\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"after-member-comment-to-please-comment-hive3\", \"notes\": \"hive3 Unmute first comment\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-171487\", \"account\": \"alice\", \"permlink\": \"First-after-member-post-hive1\", \"notes\": \"hive1 Unmute first post\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-157439\", \"account\": \"alice\", \"permlink\": \"First-after-member-post-hive2\", \"notes\": \"hive2 Unmute first post\"}]") +custom_json_operation("[\"unmutePost\", {\"community\": \"hive-198723\", \"account\": \"alice\", \"permlink\": \"First-after-member-post-hive3\", \"notes\": \"hive3 Unmute first post\"}]") ***block 5000010*** -custom_json_operation("[\"mutePost\",{\"community\":\"hive-135485\",\"account\":\"blocktrades\",\"permlink\":\"elephant01\",\"notes\":\"Muting deleted post\"}]") -custom_json_operation("[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"agartha\",\"permlink\":\"regular-post\",\"notes\":\"Muting community post of different community\"}]") \ No newline at end of file +custom_json_operation("[\"mutePost\", {\"community\": \"hive-135485\", \"account\": \"blocktrades\", \"permlink\": \"elephant01\", \"notes\": \"Muting deleted post\"}]") +custom_json_operation("[\"mutePost\", {\"community\": \"hive-198723\", \"account\": \"agartha\", \"permlink\": \"regular-post\", \"notes\": \"Muting community post of different community\"}]") diff --git a/mock_data/block_data/community_op/mock_block_data_community.json b/mock_data/block_data/community_op/mock_block_data_community.json index 2ce026a1dfcfd266c3f02288f023bcb1f519cf92..0b71bd5628742864a8dd4c7a46ad8ee4446be9b4 100644 --- a/mock_data/block_data/community_op/mock_block_data_community.json +++ b/mock_data/block_data/community_op/mock_block_data_community.json @@ -647,6 +647,17 @@ "json_metadata": "{}" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "test-safari" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-135485\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -708,6 +719,17 @@ "json": "[\"updateProps\",{\"community\":\"hive-135485\",\"props\":{\"title\":\"World News\",\"about\":\"A place for major news from around the world.\",\"is_nsfw\":true,\"description\":\"\",\"flag_text\":\"\"}}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "blocktrades" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-135485\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -719,6 +741,17 @@ "json": "[\"setRole\",{\"community\":\"hive-135485\",\"account\":\"blocktrades\",\"role\":\"mod\"}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "test-safari" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-171487\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -730,6 +763,17 @@ "json": "[\"setRole\",{\"community\":\"hive-171487\",\"account\":\"test-safari\",\"role\":\"mod\"}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "test-safari" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-157439\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -741,6 +785,17 @@ "json": "[\"setRole\",{\"community\":\"hive-157439\",\"account\":\"test-safari\",\"role\":\"mod\"}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "test-safari" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-198723\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -760,7 +815,7 @@ "test-safari" ], "id": "community", - "json": "[\"setUserTitle\",{\"community\":\"hive-135485\",\"account\":\"test-safari\",\"title\":\"Bill Gates\"}]" + "json": "[\"subscribe\",{\"community\":\"hive-135485\"}]" } }, { @@ -771,7 +826,7 @@ "test-safari" ], "id": "community", - "json": "[\"subscribe\",{\"community\":\"hive-135485\"}]" + "json": "[\"setUserTitle\",{\"community\":\"hive-135485\",\"account\":\"test-safari\",\"title\":\"Bill Gates\"}]" } }, { @@ -893,6 +948,17 @@ "json": "[\"setRole\",{\"community\":\"hive-198723\",\"account\":\"test-safari\",\"role\":\"admin\"}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "test-safari" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-167892\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -909,10 +975,10 @@ "value": { "required_auths": [], "required_posting_auths": [ - "hive-198723" + "alice" ], "id": "community", - "json": "[\"setRole\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"role\":\"member\"}]" + "json": "[\"subscribe\",{\"community\":\"hive-198723\"}]" } }, { @@ -920,10 +986,10 @@ "value": { "required_auths": [], "required_posting_auths": [ - "hive-167892" + "hive-198723" ], "id": "community", - "json": "[\"setRole\",{\"community\":\"hive-167892\",\"account\":\"alice\",\"role\":\"muted\"}]" + "json": "[\"setRole\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"role\":\"member\"}]" } }, { @@ -931,10 +997,10 @@ "value": { "required_auths": [], "required_posting_auths": [ - "hive-171487" + "hive-167892" ], "id": "community", - "json": "[\"setRole\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"role\":\"muted\"}]" + "json": "[\"setRole\",{\"community\":\"hive-167892\",\"account\":\"alice\",\"role\":\"muted\"}]" } }, { @@ -942,12 +1008,12 @@ "value": { "required_auths": [], "required_posting_auths": [ - "alice" + "hive-171487" ], "id": "community", - "json": "[\"subscribe\",{\"community\":\"hive-157439\"}]" + "json": "[\"setRole\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"role\":\"muted\"}]" } - }, + }, { "type": "custom_json_operation", "value": { @@ -956,7 +1022,7 @@ "alice" ], "id": "community", - "json": "[\"subscribe\",{\"community\":\"hive-198723\"}]" + "json": "[\"subscribe\",{\"community\":\"hive-157439\"}]" } }, { @@ -1149,6 +1215,17 @@ "json_metadata": "{}" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "alice" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-171488\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -1193,6 +1270,17 @@ "json": "[\"updateProps\",{\"community\":\"hive-171487\",\"props\":{\"title\":\"Banana\",\"about\":\"Banana-nothing.\",\"is_nsfw\":true,\"description\":\"Cherry\",\"flag_text\":\"Lemon\"}}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "test-safari" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-117600\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -1204,6 +1292,17 @@ "json": "[\"setRole\",{\"community\":\"hive-117600\",\"account\":\"test-safari\",\"role\":\"admin\"}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "roadscape" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-117600\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -1215,6 +1314,17 @@ "json": "[\"setRole\",{\"community\":\"hive-117600\",\"account\":\"roadscape\",\"role\":\"mod\"}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "gtg" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-117600\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -1465,6 +1575,7 @@ "json_metadata": "{}" } }, + { "type": "custom_json_operation", "value": { @@ -3117,6 +3228,17 @@ "json": "[\"mutePost\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"permlink\":\"Second-after-muted-post-hive3\",\"notes\":\"I hate second posts too-hive3!\"}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "good-karma" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-117600\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -3128,6 +3250,17 @@ "json": "[\"setRole\",{\"community\":\"hive-117600\",\"account\":\"good-karma\",\"role\":\"admin\"}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "abit" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-117600\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -3196,6 +3329,17 @@ "ref_block_prefix": 1, "expiration": "2020-03-23T12:17:00", "operations": [ + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "alice" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-188204\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -3374,6 +3518,17 @@ "ref_block_prefix": 1, "expiration": "2020-03-23T12:17:00", "operations": [ + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "agartha" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-188204\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -3418,6 +3573,17 @@ "json": "[\"subscribe\",{\"community\":\"hive-165317\"}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "alice" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-171487\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -3429,6 +3595,17 @@ "json": "[\"setRole\",{\"community\":\"hive-171487\",\"account\":\"alice\",\"role\":\"member\"}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "alice" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-157439\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -3440,6 +3617,17 @@ "json": "[\"setRole\",{\"community\":\"hive-157439\",\"account\":\"alice\",\"role\":\"member\"}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "alice" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-198723\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -3451,6 +3639,17 @@ "json": "[\"setRole\",{\"community\":\"hive-198723\",\"account\":\"alice\",\"role\":\"member\"}]" } }, + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "blocktrades" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-157439\"}]" + } + }, { "type": "custom_json_operation", "value": { @@ -3617,6 +3816,17 @@ "ref_block_prefix": 1, "expiration": "2020-03-23T12:17:00", "operations": [ + { + "type": "custom_json_operation", + "value": { + "required_auths": [], + "required_posting_auths": [ + "camilla" + ], + "id": "community", + "json": "[\"subscribe\",{\"community\":\"hive-188204\"}]" + } + }, { "type": "custom_json_operation", "value": { diff --git a/scripts/mocks_to_flow.py b/scripts/mocks_to_flow.py new file mode 100644 index 0000000000000000000000000000000000000000..34e6f9395deb1ae66387dc410887d6ede9e118b0 --- /dev/null +++ b/scripts/mocks_to_flow.py @@ -0,0 +1,54 @@ +# This script parses a json mock file and outputs a flow.txt file +import json + +def parse_custom_json(op): + data = json.loads(op['json'].replace('\n', r'\n')) + if data[0] == 'subscribe' or data[0] == 'unsubscribe': + account = op['required_posting_auths'][0] + return r'custom_json_operation("%s" -> "%s")' % (account, json.dumps(data).replace('"', r'\"')) + elif data[0] == 'updateProps': + props = json.dumps(data[1]['props']).replace('"', r'\"') + return r'custom_json_operation("[\"updateProps\",{\"community\":\"%s\",\"props\":%s}]")' % (data[1]['community'], props) + else: + return 'custom_json_operation("%s")' % (json.dumps(data).replace('"', r'\"')) + + +def parse_op(op): + if op['type'] == 'account_create_operation': + return 'account_create_operation( `{}` )'.format(op['value']['new_account_name']) + elif op['type'] == 'comment_operation': + return 'comment_operation( `{}`, `{}`,`{}`)'.format(op['value']['parent_permlink'], op['value']['author'], op['value']['permlink']) + elif op['type'] == 'transfer_operation': + return 'transfer_operation( `{}`, `{}`, `{}`, `{}` )'.format(op['value']['from'], op['value']['to'], op['value']['amount'], op['value']['memo']) + elif op['type'] == 'custom_json_operation': + return parse_custom_json(op['value']) + elif op['type'] == 'custom_json_operation': + return parse_custom_json(op['value']) + elif op['type'] == 'account_update2_operation': + json_metadata = json.dumps(op['value']['json_metadata'].replace('\n', '\\n')).replace('"', '\"') + return 'transfer_operation( `{}`, `{}`, `{}`)'.format(op['value']['account'], json_metadata, op['value']['posting_json_metadata']) + elif op['type'] == 'delete_comment_operation': + return 'delete_comment_operation( `{}`, `{}`)'.format(op['value']['author'], op['value']['permlink']) + elif op['type'] == 'vote_operation': + return 'delete_comment_operation(`{}` -> `{}`, `{}`, `{}`)'.format(op['value']['voter'], op['value']['author'], op['value']['permlink'], op['value']['weight']) + else: + raise 'operation type not known' + +if __name__ == "__main__": + import argparse + + parser = argparse.ArgumentParser() + + parser.add_argument("file", type=str, help="Path of the mock file") + + args = parser.parse_args() + + f = open(args.file) + data = json.load(f) + flow_str = '' + for block_id in data: + flow_str += '***block {}***\n'.format(block_id) + operations = data[block_id]['transactions'][0]['operations'] + for op in operations: + flow_str += parse_op(op) + '\n' + print(flow_str) \ No newline at end of file