radiator 0.4.7 → 0.4.8.pre.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -7
  3. data/Rakefile +50 -20
  4. data/lib/radiator.rb +3 -1
  5. data/lib/radiator/api.rb +83 -10
  6. data/lib/radiator/bridge.rb +34 -0
  7. data/lib/radiator/chain_config.rb +9 -2
  8. data/lib/radiator/database_api.rb +1 -1
  9. data/lib/radiator/follow_api.rb +1 -1
  10. data/lib/radiator/market_history_api.rb +1 -1
  11. data/lib/radiator/operation.rb +3 -2
  12. data/lib/radiator/operation_types.rb +43 -27
  13. data/lib/radiator/ssc/base_steem_smart_contract_rpc.rb +1 -1
  14. data/lib/radiator/stream.rb +15 -6
  15. data/lib/radiator/transaction.rb +28 -1
  16. data/lib/radiator/type/amount.rb +26 -51
  17. data/lib/radiator/type/price.rb +2 -2
  18. data/lib/radiator/version.rb +1 -1
  19. data/radiator.gemspec +13 -11
  20. data/test/fixtures/empty.json +1 -0
  21. data/test/fixtures/error.json +29 -0
  22. data/test/fixtures/follow_api_get_followers.json +1 -0
  23. data/test/fixtures/get_account.json +165 -0
  24. data/test/fixtures/get_account_count.json +1 -0
  25. data/test/fixtures/get_account_references.json +1 -0
  26. data/test/fixtures/get_block.json +193 -0
  27. data/test/fixtures/get_dynamic_global_properties.json +32 -0
  28. data/test/fixtures/get_feed_history.json +684 -0
  29. data/test/fixtures/get_hardfork_version.json +1 -0
  30. data/test/fixtures/get_key_references.json +14 -0
  31. data/test/fixtures/get_stats_for_time.json +57 -0
  32. data/test/fixtures/get_vesting_delegation.json +936 -0
  33. data/test/fixtures/golos_get_dynamic_global_properties.json +32 -0
  34. data/test/fixtures/market_history_api_get_market_history_buckets.json +1 -0
  35. data/test/fixtures/market_history_api_get_order_book.json +109 -0
  36. data/test/fixtures/market_history_api_get_recent_trades.json +55 -0
  37. data/test/fixtures/market_history_api_get_ticker.json +11 -0
  38. data/test/fixtures/market_history_api_get_volume.json +1 -0
  39. data/test/fixtures/null.json +1 -0
  40. data/test/fixtures/vcr_cassettes/account_by_key_api_all_methods.yml +525 -0
  41. data/test/fixtures/vcr_cassettes/account_by_key_api_jsonrpc.yml +52 -0
  42. data/test/fixtures/vcr_cassettes/all_methods.yml +18155 -0
  43. data/test/fixtures/vcr_cassettes/api_all_methods.yml +13254 -0
  44. data/test/fixtures/vcr_cassettes/base_per_debt.yml +4946 -0
  45. data/test/fixtures/vcr_cassettes/base_per_mvest.yml +3969 -0
  46. data/test/fixtures/vcr_cassettes/block_time.yml +3322 -0
  47. data/test/fixtures/vcr_cassettes/broadcast_transaction.yml +1186 -0
  48. data/test/fixtures/vcr_cassettes/condenser_all_all_methods.yml +13297 -0
  49. data/test/fixtures/vcr_cassettes/expiration_initialize.yml +3428 -0
  50. data/test/fixtures/vcr_cassettes/find_account.yml +3681 -0
  51. data/test/fixtures/vcr_cassettes/find_block.yml +3589 -0
  52. data/test/fixtures/vcr_cassettes/find_comment.yml +11464 -0
  53. data/test/fixtures/vcr_cassettes/follow_api_jsonrpc.yml +52 -0
  54. data/test/fixtures/vcr_cassettes/get_account_count.yml +575 -0
  55. data/test/fixtures/vcr_cassettes/get_account_references.yml +608 -0
  56. data/test/fixtures/vcr_cassettes/get_accounts.yml +674 -0
  57. data/test/fixtures/vcr_cassettes/get_accounts_no_argument.yml +608 -0
  58. data/test/fixtures/vcr_cassettes/get_dynamic_global_properties.yml +661 -0
  59. data/test/fixtures/vcr_cassettes/get_feed_history.yml +1106 -0
  60. data/test/fixtures/vcr_cassettes/get_hardfork_version.yml +577 -0
  61. data/test/fixtures/vcr_cassettes/get_key_references.yml +987 -0
  62. data/test/fixtures/vcr_cassettes/get_market_history.yml +1043 -0
  63. data/test/fixtures/vcr_cassettes/get_market_history_buckets.yml +1043 -0
  64. data/test/fixtures/vcr_cassettes/get_order_book.yml +1091 -0
  65. data/test/fixtures/vcr_cassettes/get_recent_trades.yml +1043 -0
  66. data/test/fixtures/vcr_cassettes/get_ticker.yml +1047 -0
  67. data/test/fixtures/vcr_cassettes/get_trade_history.yml +1049 -0
  68. data/test/fixtures/vcr_cassettes/get_vesting_delegations.yml +523 -0
  69. data/test/fixtures/vcr_cassettes/get_volume.yml +1051 -0
  70. data/test/fixtures/vcr_cassettes/get_witness_by_account.yml +575 -0
  71. data/test/fixtures/vcr_cassettes/look_up_witnesses.yml +523 -0
  72. data/test/fixtures/vcr_cassettes/market_history_api_all_methods.yml +4373 -0
  73. data/test/fixtures/vcr_cassettes/network_broadcast_api_all_methods.yml +1288 -0
  74. data/test/fixtures/vcr_cassettes/properties.yml +3627 -0
  75. data/test/fixtures/vcr_cassettes/recover_transaction.yml +1099 -0
  76. data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info.yml +92 -0
  77. data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info_invalid.yml +90 -0
  78. data/test/fixtures/vcr_cassettes/ssc_blockchain_latest_block_info.yml +91 -0
  79. data/test/fixtures/vcr_cassettes/ssc_blockchain_transaction_info.yml +92 -0
  80. data/test/fixtures/vcr_cassettes/ssc_contracts_contract.yml +366 -0
  81. data/test/fixtures/vcr_cassettes/ssc_contracts_find.yml +91 -0
  82. data/test/fixtures/vcr_cassettes/ssc_contracts_find_one.yml +89 -0
  83. data/test/fixtures/vcr_cassettes/stream_jsonrpc.yml +8253 -0
  84. data/test/fixtures/vcr_cassettes/transaction_expiration_initialize_nil.yml +3176 -0
  85. data/test/fixtures/vcr_cassettes/transaction_jsonrpc.yml +151 -0
  86. data/test/fixtures/vcr_cassettes/unknown_chain_id.yml +3343 -0
  87. data/test/fixtures/vcr_cassettes/valid_chains.yml +3124 -0
  88. data/test/radiator/account_by_key_api_test.rb +46 -0
  89. data/test/radiator/api_test.rb +135 -0
  90. data/test/radiator/chain_stats_api_test.rb +49 -0
  91. data/test/radiator/chain_test.rb +153 -0
  92. data/test/radiator/condenser_api_test.rb +48 -0
  93. data/test/radiator/follow_api_test.rb +48 -0
  94. data/test/radiator/market_history_api_test.rb +100 -0
  95. data/test/radiator/network_broadcast_api_test.rb +48 -0
  96. data/test/radiator/operation_test.rb +117 -0
  97. data/test/radiator/ssc/blockchain_test.rb +58 -0
  98. data/test/radiator/ssc/contracts_test.rb +65 -0
  99. data/test/radiator/stream_test.rb +48 -0
  100. data/test/radiator/tag_api_test.rb +40 -0
  101. data/test/radiator/transaction_test.rb +755 -0
  102. data/test/test_helper.rb +66 -0
  103. metadata +182 -73
  104. data/.codeclimate.yml +0 -19
  105. data/.gitignore +0 -52
  106. data/.travis.yml +0 -23
  107. data/gource.sh +0 -8
  108. data/images/Anthony Martin.png +0 -0
  109. data/images/Marvin Hofmann.jpg +0 -0
  110. data/images/Marvin Hofmann.png +0 -0
  111. data/lib/steem.rb +0 -17
@@ -0,0 +1,29 @@
1
+ {
2
+ "id":1,
3
+ "error":{
4
+ "code":1,
5
+ "message":"10 assert_exception: Assert Exception\na0 != e: too few arguments passed to method\n {}\n th_a api_connection.hpp:165 call_generic",
6
+ "data":{
7
+ "code":10,
8
+ "name":"assert_exception",
9
+ "message":"Assert Exception",
10
+ "stack":[
11
+ {
12
+ "context":{
13
+ "level":"error",
14
+ "file":"api_connection.hpp",
15
+ "line":165,
16
+ "method":"call_generic",
17
+ "hostname":"",
18
+ "thread_name":"th_a",
19
+ "timestamp":"2016-08-20T18:15:07"
20
+ },
21
+ "format":"a0 != e: too few arguments passed to method",
22
+ "data":{
23
+
24
+ }
25
+ }
26
+ ]
27
+ }
28
+ }
29
+ }
@@ -0,0 +1 @@
1
+ {"id":1,"result":[{"id":"8.0.92583","follower":"a11at","following":"inertia","what":["blog"]},{"id":"8.0.39686","follower":"abarefootpoet","following":"inertia","what":["blog"]},{"id":"8.0.104952","follower":"abit","following":"inertia","what":["blog"]},{"id":"8.0.81725","follower":"alexgr","following":"inertia","what":["blog"]},{"id":"8.0.55176","follower":"alexoz","following":"inertia","what":["blog"]},{"id":"8.0.99137","follower":"andressilvera","following":"inertia","what":["blog"]},{"id":"8.0.141035","follower":"applecrisp","following":"inertia","what":["blog"]},{"id":"8.0.11607","follower":"arrowj","following":"inertia","what":["blog"]},{"id":"8.0.12425","follower":"artificial","following":"inertia","what":["blog"]},{"id":"8.0.145212","follower":"ash","following":"inertia","what":["blog"]},{"id":"8.0.12966","follower":"ausbitbank","following":"inertia","what":["blog"]},{"id":"8.0.32102","follower":"beachbum","following":"inertia","what":["blog"]},{"id":"8.0.93711","follower":"ben99","following":"inertia","what":["blog"]},{"id":"8.0.120952","follower":"benadapt","following":"inertia","what":["blog"]},{"id":"8.0.28247","follower":"bimmerhead","following":"inertia","what":["blog"]},{"id":"8.0.95505","follower":"bleepcoin","following":"inertia","what":["blog"]},{"id":"8.0.15571","follower":"bondor","following":"inertia","what":["blog"]},{"id":"8.0.57400","follower":"cashbandicoot","following":"inertia","what":["blog"]},{"id":"8.0.100127","follower":"cian.dafe","following":"inertia","what":["blog"]},{"id":"8.0.116778","follower":"condra","following":"inertia","what":["blog"]},{"id":"8.0.5965","follower":"cousteau","following":"inertia","what":["blog"]},{"id":"8.0.161981","follower":"cryptojoy.com","following":"inertia","what":["blog"]},{"id":"8.0.102614","follower":"dajohns1420","following":"inertia","what":["blog"]},{"id":"8.0.148670","follower":"davidbrogan","following":"inertia","what":["blog"]},{"id":"8.0.117953","follower":"dennygalindo","following":"inertia","what":["blog"]},{"id":"8.0.111506","follower":"digitalhound","following":"inertia","what":["blog"]},{"id":"8.0.152965","follower":"discombobulated","following":"inertia","what":["blog"]},{"id":"8.0.118278","follower":"domavila","following":"inertia","what":["blog"]},{"id":"8.0.133707","follower":"donnie","following":"inertia","what":["blog"]},{"id":"8.0.51439","follower":"e-dubby","following":"inertia","what":["blog"]},{"id":"8.0.51539","follower":"edtorrez","following":"inertia","what":["blog"]},{"id":"8.0.107246","follower":"elfremzy1985","following":"inertia","what":["blog"]},{"id":"8.0.52564","follower":"envisionva","following":"inertia","what":["blog"]},{"id":"8.0.9107","follower":"fkn","following":"inertia","what":["blog"]},{"id":"8.0.72587","follower":"forrestwillie","following":"inertia","what":["blog"]},{"id":"8.0.160223","follower":"foxxycat","following":"inertia","what":["blog"]},{"id":"8.0.150777","follower":"freshgoals","following":"inertia","what":["blog"]},{"id":"8.0.26187","follower":"future24","following":"inertia","what":["blog"]},{"id":"8.0.106860","follower":"fyrstikken","following":"inertia","what":["blog"]},{"id":"8.0.67648","follower":"gardenlady","following":"inertia","what":["blog"]},{"id":"8.0.16173","follower":"georgedonnelly","following":"inertia","what":["blog"]},{"id":"8.0.102115","follower":"gir88","following":"inertia","what":["blog"]},{"id":"8.0.24887","follower":"gonzotron","following":"inertia","what":["blog"]},{"id":"8.0.67993","follower":"greenman","following":"inertia","what":["blog"]},{"id":"8.0.133792","follower":"harand","following":"inertia","what":["blog"]},{"id":"8.0.40891","follower":"harveywoods","following":"inertia","what":["blog"]},{"id":"8.0.72866","follower":"hdphotography","following":"inertia","what":["blog"]},{"id":"8.0.154487","follower":"heretickitten","following":"inertia","what":["blog"]},{"id":"8.0.48008","follower":"inkha","following":"inertia","what":["blog"]},{"id":"8.0.129474","follower":"ivanba12","following":"inertia","what":["blog"]},{"id":"8.0.10884","follower":"jaimejean","following":"inertia","what":["blog"]},{"id":"8.0.88324","follower":"jennamarbles","following":"inertia","what":["blog"]},{"id":"8.0.80271","follower":"joelinux","following":"inertia","what":["blog"]},{"id":"8.0.91828","follower":"joseph","following":"inertia","what":["blog"]},{"id":"8.0.168035","follower":"jtstreetman","following":"inertia","what":["blog"]},{"id":"8.0.26704","follower":"juicyg","following":"inertia","what":["blog"]},{"id":"8.0.90991","follower":"kirby1","following":"inertia","what":["blog"]},{"id":"8.0.133797","follower":"klye","following":"inertia","what":["blog"]},{"id":"8.0.93961","follower":"konti","following":"inertia","what":["blog"]},{"id":"8.0.51073","follower":"kooshikoo","following":"inertia","what":["blog"]},{"id":"8.0.124737","follower":"kristina011891","following":"inertia","what":["blog"]},{"id":"8.0.78450","follower":"kryptik","following":"inertia","what":["blog"]},{"id":"8.0.73220","follower":"lapingvino","following":"inertia","what":["blog"]},{"id":"8.0.71722","follower":"liberosist","following":"inertia","what":["blog"]},{"id":"8.0.104773","follower":"lovejoy","following":"inertia","what":["blog"]},{"id":"8.0.92561","follower":"macartem","following":"inertia","what":["blog"]},{"id":"8.0.123946","follower":"malxdrakon","following":"inertia","what":["blog"]},{"id":"8.0.118475","follower":"mark-waser","following":"inertia","what":["blog"]},{"id":"8.0.51734","follower":"matherly","following":"inertia","what":["blog"]},{"id":"8.0.6855","follower":"mctiller","following":"inertia","what":["blog"]},{"id":"8.0.58118","follower":"meesterboom","following":"inertia","what":["blog"]},{"id":"8.0.90293","follower":"melawanarus","following":"inertia","what":["blog"]},{"id":"8.0.118346","follower":"mikehere","following":"inertia","what":["blog"]},{"id":"8.0.145767","follower":"mosab","following":"inertia","what":["blog"]},{"id":"8.0.7027","follower":"nastrom","following":"inertia","what":["blog"]},{"id":"8.0.95044","follower":"naturalista","following":"inertia","what":["blog"]},{"id":"8.0.51819","follower":"nexusvortex616","following":"inertia","what":["blog"]},{"id":"8.0.32354","follower":"nonlinearone","following":"inertia","what":["blog"]},{"id":"8.0.35308","follower":"patrice","following":"inertia","what":["blog"]},{"id":"8.0.143273","follower":"penguinpablo","following":"inertia","what":["blog"]},{"id":"8.0.51014","follower":"pjheinz","following":"inertia","what":["blog"]},{"id":"8.0.145072","follower":"politicasan2","following":"inertia","what":["blog"]},{"id":"8.0.90973","follower":"powmonkey","following":"inertia","what":["blog"]},{"id":"8.0.35805","follower":"randyclemens","following":"inertia","what":["blog"]},{"id":"8.0.53874","follower":"razvanelulmarin","following":"inertia","what":["blog"]},{"id":"8.0.78276","follower":"repholder","following":"inertia","what":["blog"]},{"id":"8.0.9005","follower":"ridji","following":"inertia","what":["blog"]},{"id":"8.0.150998","follower":"rook","following":"inertia","what":["blog"]},{"id":"8.0.102282","follower":"royaltiffany","following":"inertia","what":["blog"]},{"id":"8.0.70032","follower":"samupaha","following":"inertia","what":["blog"]},{"id":"8.0.5660","follower":"seb","following":"inertia","what":["blog"]},{"id":"8.0.87906","follower":"shadowspub","following":"inertia","what":["blog"]},{"id":"8.0.116079","follower":"skapaneas","following":"inertia","what":["blog"]},{"id":"8.0.163256","follower":"skyefox","following":"inertia","what":["blog"]},{"id":"8.0.106050","follower":"spookypooky","following":"inertia","what":["blog"]},{"id":"8.0.50974","follower":"steemitqa","following":"inertia","what":["blog"]},{"id":"8.0.79981","follower":"steemlinks","following":"inertia","what":["blog"]},{"id":"8.0.137698","follower":"steemreporter","following":"inertia","what":["blog"]},{"id":"8.0.78917","follower":"steemychicken1","following":"inertia","what":["blog"]},{"id":"8.0.82309","follower":"steemzine","following":"inertia","what":["blog"]}]}
@@ -0,0 +1,165 @@
1
+ {
2
+ "id":1,
3
+ "result":[
4
+ {
5
+ "id":19155,
6
+ "name":"inertia",
7
+ "owner":{
8
+ "weight_threshold":1,
9
+ "account_auths":[
10
+
11
+ ],
12
+ "key_auths":[
13
+ [
14
+ "STM7T5DRhNkp5RpiFrarPfLGXEnU6yk5jLFokfmyJThgRwtLpJuKM",
15
+ 1
16
+ ]
17
+ ]
18
+ },
19
+ "active":{
20
+ "weight_threshold":1,
21
+ "account_auths":[
22
+
23
+ ],
24
+ "key_auths":[
25
+ [
26
+ "STM8Vj2LTHrZabhxsMDfWnquBf7212YRBpkjEmhGEQ9JQpEUtcr6P",
27
+ 1
28
+ ]
29
+ ]
30
+ },
31
+ "posting":{
32
+ "weight_threshold":1,
33
+ "account_auths":[
34
+ [
35
+ "streemian",
36
+ 1
37
+ ]
38
+ ],
39
+ "key_auths":[
40
+ [
41
+ "STM5iR38ZUVWhrsSsggfCwhetnffJkDZ6b1Px9XiG4woF4DxrwVHj",
42
+ 1
43
+ ]
44
+ ]
45
+ },
46
+ "memo_key":"STM6hNw2oxZLAERBBArbLkgquM2mtpiGZoJ49Ya5267NzpoSs4NrT",
47
+ "json_metadata":"{\"git\":{\"radiator\":{\"https\":{\"type\":\"https\",\"name\":\"radiator\",\"value\":\"https://github.com/inertia186/radiator\",\"projecturl\":\"radiator\"}}},\"squeek\":{\"profilePicture\":\"https://img1.steemit.com/0x0/http://i.imgur.com/LbTz5yg.jpg\"},\"version\":\"0.0.1\",\"profile\":{\"email\":\"steemit@martin-studio.com\",\"location\":\"California\",\"timezone\":\"-7\",\"locale\":\"en_US\",\"languages\":[\"en\"],\"profile_image\":\"https://img1.steemit.com/0x0/http://i.imgur.com/LbTz5yg.jpg\",\"cover_image\":\"https://img1.steemit.com/0x0/https://i.imgur.com/0ccC6UH.png\",\"name\":\"inertia Ⓐ³\",\"about\":\"non-guru\",\"website\":\"http://inertia.freedom-blogs.com/\"}}",
48
+ "proxy":"",
49
+ "last_owner_update":"2016-10-20T21:49:27",
50
+ "last_account_update":"2016-12-02T22:31:21",
51
+ "created":"2016-07-13T06:44:33",
52
+ "mined":false,
53
+ "owner_challenged":false,
54
+ "active_challenged":false,
55
+ "last_owner_proved":"1970-01-01T00:00:00",
56
+ "last_active_proved":"1970-01-01T00:00:00",
57
+ "recovery_account":"steem",
58
+ "last_account_recovery":"2016-07-21T05:49:33",
59
+ "reset_account":"null",
60
+ "comment_count":0,
61
+ "lifetime_vote_count":0,
62
+ "post_count":1489,
63
+ "can_vote":true,
64
+ "voting_power":9929,
65
+ "last_vote_time":"2017-04-26T15:34:21",
66
+ "balance":"0.000 STEEM",
67
+ "savings_balance":"0.000 STEEM",
68
+ "sbd_balance":"0.000 SBD",
69
+ "sbd_seconds":"10232004279",
70
+ "sbd_seconds_last_update":"2017-04-25T22:10:48",
71
+ "sbd_last_interest_payment":"2017-04-21T06:16:57",
72
+ "savings_sbd_balance":"0.000 SBD",
73
+ "savings_sbd_seconds":"6420926232",
74
+ "savings_sbd_seconds_last_update":"2016-12-22T20:28:03",
75
+ "savings_sbd_last_interest_payment":"2016-12-12T06:49:42",
76
+ "savings_withdraw_requests":0,
77
+ "reward_sbd_balance":"0.248 SBD",
78
+ "reward_steem_balance":"0.000 STEEM",
79
+ "reward_vesting_balance":"423736.309617 VESTS",
80
+ "reward_vesting_steem":"204.084 STEEM",
81
+ "vesting_shares":"51666407.059646 VESTS",
82
+ "delegated_vesting_shares":"855000.000000 VESTS",
83
+ "received_vesting_shares":"3441788.425745 VESTS",
84
+ "vesting_withdraw_rate":"0.000000 VESTS",
85
+ "next_vesting_withdrawal":"1969-12-31T23:59:59",
86
+ "withdrawn":0,
87
+ "to_withdraw":0,
88
+ "withdraw_routes":0,
89
+ "curation_rewards":878595,
90
+ "posting_rewards":10115584,
91
+ "proxied_vsf_votes":[
92
+ "9981561512772",
93
+ 0,
94
+ 0,
95
+ 0
96
+ ],
97
+ "witnesses_voted_for":27,
98
+ "average_bandwidth":272926088,
99
+ "lifetime_bandwidth":"4400517000000",
100
+ "last_bandwidth_update":"2017-03-30T14:12:48",
101
+ "average_market_bandwidth":126680736,
102
+ "last_market_bandwidth_update":"2017-03-29T16:23:42",
103
+ "last_post":"2017-04-26T05:20:42",
104
+ "last_root_post":"2017-04-25T17:48:21",
105
+ "post_bandwidth":13323,
106
+ "new_average_bandwidth":"70551028916",
107
+ "new_average_market_bandwidth":"27734050257",
108
+ "vesting_balance":"0.000 STEEM",
109
+ "reputation":"85159144509014",
110
+ "transfer_history":[
111
+
112
+ ],
113
+ "market_history":[
114
+
115
+ ],
116
+ "post_history":[
117
+
118
+ ],
119
+ "vote_history":[
120
+
121
+ ],
122
+ "other_history":[
123
+
124
+ ],
125
+ "witness_votes":[
126
+ "abit",
127
+ "anyx",
128
+ "bacchist",
129
+ "bitcoiner",
130
+ "bitcoinparadise",
131
+ "boatymcboatface",
132
+ "busy.witness",
133
+ "chainsquad.com",
134
+ "charlieshrem",
135
+ "codydeeds",
136
+ "complexring",
137
+ "furion",
138
+ "fyrst-witness",
139
+ "good-karma",
140
+ "gtg",
141
+ "jesta",
142
+ "klye",
143
+ "masteryoda",
144
+ "pfunk",
145
+ "pharesim",
146
+ "proctologic",
147
+ "riverhead",
148
+ "roadscape",
149
+ "roelandp",
150
+ "smooth.witness",
151
+ "someguy123",
152
+ "teamsteem"
153
+ ],
154
+ "tags_usage":[
155
+
156
+ ],
157
+ "guest_bloggers":[
158
+
159
+ ],
160
+ "blog_category":{
161
+
162
+ }
163
+ }
164
+ ]
165
+ }
@@ -0,0 +1 @@
1
+ {"id":1,"result":70325}
@@ -0,0 +1 @@
1
+ {"id":1,"error":{"code":1,"message":"10 assert_exception: Assert Exception\nfalse: database_api::get_account_references --- Needs to be refactored for steem.\n {}\n th_a database_api.cpp:378 get_account_references","data":{"code":10,"name":"assert_exception","message":"Assert Exception","stack":[{"context":{"level":"error","file":"database_api.cpp","line":378,"method":"get_account_references","hostname":"","thread_name":"th_a","timestamp":"2016-08-19T19:16:58"},"format":"false: database_api::get_account_references --- Needs to be refactored for steem.","data":{}}]}}}
@@ -0,0 +1,193 @@
1
+ {
2
+ "id":1,
3
+ "result":{
4
+ "previous":"004d1737ddbbf344b2a765e32fb162fe656ef640",
5
+ "timestamp":"2016-09-17T15:44:15",
6
+ "witness":"joseph",
7
+ "transaction_merkle_root":"964d29863541cc9bcd18eda78f2781f404b726b4",
8
+ "extensions":[
9
+
10
+ ],
11
+ "witness_signature":"1f217441dafa45f98d9d7181eed86a413890c4104296a7998721da75063fb8cd27223e37208f524f0ae44462f1a91e3991b48e3ddecdfa55a6222307d74c809c49",
12
+ "transactions":[
13
+ {
14
+ "ref_block_num":5933,
15
+ "ref_block_prefix":2081023643,
16
+ "expiration":"2016-09-17T15:44:24",
17
+ "operations":[
18
+ [
19
+ "comment",
20
+ {
21
+ "parent_author":"steevc",
22
+ "parent_permlink":"re-rubenalexander-little-man-big-heart-original-composed-2001-ish-20160917t150742986z",
23
+ "author":"rubenalexander",
24
+ "permlink":"re-steevc-re-rubenalexander-little-man-big-heart-original-composed-2001-ish-20160917t154411980z",
25
+ "title":"",
26
+ "body":"Standard E. The partial capo is quite magical.",
27
+ "json_metadata":"{\"tags\":[\"music\"]}"
28
+ }
29
+ ]
30
+ ],
31
+ "extensions":[
32
+
33
+ ],
34
+ "signatures":[
35
+ "1f6e33cf5cbcbb3bd7ce822f7f99ce7b2095d0afe6b1bfcf50e535706f0344dcd805a02c2a8cf8cf0a3d06a0fddce47cad5b92f1d4d3740930b06e7a4b25de2f8e"
36
+ ]
37
+ },
38
+ {
39
+ "ref_block_num":5734,
40
+ "ref_block_prefix":4286768788,
41
+ "expiration":"2016-09-17T15:44:24",
42
+ "operations":[
43
+ [
44
+ "comment",
45
+ {
46
+ "parent_author":"",
47
+ "parent_permlink":"bitcoin",
48
+ "author":"endgame",
49
+ "permlink":"a-trash-meisterpiece-in-baltimore",
50
+ "title":"A Trash Meisterpiece in Baltimore",
51
+ "body":"http://i.imgur.com/L81Sbn0.jpg\n\n# Ever wonder what is really going on in Baltimore? \nWe plan to show you street level news in every neighborhood. Every Friday you can catch Meisterpiece Theatre at BaltimoreHourly.com and learn about Baltimore from on the street experts that you should know about, but that the mindless mass media rarely allows on air. This video is the first test video that will eventually lead up to the official debut of Meisterpiece Theatre at BaltimoreHourly.com. This video chronicles the trash problems in a typical Baltimore City alley.\n\nhttps://www.youtube.com/watch?v=Obgm1JB8IpI\n\nhttp://i.imgur.com/BUstSCi.png",
52
+ "json_metadata":"{\"tags\":[\"bitcoin\",\"shitpost\",\"trash\",\"minnowsunite\",\"curie\"],\"image\":[\"http://i.imgur.com/L81Sbn0.jpg\",\"https://img.youtube.com/vi/Obgm1JB8IpI/0.jpg\",\"http://i.imgur.com/BUstSCi.png\"],\"links\":[\"https://www.youtube.com/watch?v=Obgm1JB8IpI\"]}"
53
+ }
54
+ ]
55
+ ],
56
+ "extensions":[
57
+
58
+ ],
59
+ "signatures":[
60
+ "206ae870eb3d9ca08221657488ddbcff2f1a35dcf6eea7ef8ab977705f295bc5dc5ed0d1181086a36ae62d257e6a9daea2af6c87ea828c8f3b3a5445eec0eead15"
61
+ ]
62
+ },
63
+ {
64
+ "ref_block_num":5937,
65
+ "ref_block_prefix":2550599371,
66
+ "expiration":"2016-09-17T15:44:27",
67
+ "operations":[
68
+ [
69
+ "vote",
70
+ {
71
+ "voter":"ninkhisibir",
72
+ "author":"wildmanhowling",
73
+ "permlink":"the-high-wild-episode-1-first-3-parts",
74
+ "weight":10000
75
+ }
76
+ ]
77
+ ],
78
+ "extensions":[
79
+
80
+ ],
81
+ "signatures":[
82
+ "202145b29cff3a1a5e2864ee92a5fffc9c23aefadf7879849e6eab513a45fc3ed65440feaacebdc12d33161b71de288618387aee786075edb34884d82fa21fdb5c"
83
+ ]
84
+ },
85
+ {
86
+ "ref_block_num":5920,
87
+ "ref_block_prefix":2065261824,
88
+ "expiration":"2016-09-17T15:44:27",
89
+ "operations":[
90
+ [
91
+ "comment",
92
+ {
93
+ "parent_author":"natord",
94
+ "parent_permlink":"re-sulev-photography-12-having-fun-with-waterballoons-20160917t151443106z",
95
+ "author":"sulev",
96
+ "permlink":"re-natord-re-sulev-photography-12-having-fun-with-waterballoons-20160917t154317209z",
97
+ "title":"",
98
+ "body":"@@ -72,8 +72,80 @@\n post :)\n+%0AI've uploaded the 16MB version of this picture there. It's ~300KB here.\n",
99
+ "json_metadata":"{\"tags\":[\"photography\"]}"
100
+ }
101
+ ]
102
+ ],
103
+ "extensions":[
104
+
105
+ ],
106
+ "signatures":[
107
+ "1f18cab8a0305f3623b226be199113610b02b36fe3c665cbdc4853deb19ceb360530dc5617d12252d8a89b276ea8b3f5de7d0ea4f7f627096bc570a040991bfc02"
108
+ ]
109
+ },
110
+ {
111
+ "ref_block_num":5912,
112
+ "ref_block_prefix":3229765994,
113
+ "expiration":"2016-09-17T15:44:21",
114
+ "operations":[
115
+ [
116
+ "comment",
117
+ {
118
+ "parent_author":"anns",
119
+ "parent_permlink":"re-mindhunter-meme-with-the-plummeting-steem-price-the-picard-face-palm-speaks-20160917t154100614z",
120
+ "author":"mindhunter",
121
+ "permlink":"re-anns-re-mindhunter-meme-with-the-plummeting-steem-price-the-picard-face-palm-speaks-20160917t154353443z",
122
+ "title":"",
123
+ "body":"@@ -1,12 +1,19 @@\n Yes \n+indeed \n @anns - \n",
124
+ "json_metadata":"{\"tags\":[\"meme\"],\"users\":[\"anns\"],\"links\":[\"http://www.wankcoin.com/\"]}"
125
+ }
126
+ ]
127
+ ],
128
+ "extensions":[
129
+
130
+ ],
131
+ "signatures":[
132
+ "2021c420a12785e61ddb8ebf32a4decd005392d7207d8fbaa2b94fcb07d9afb85939e538b5e35144af291c13cd7f0b7641698ac5c0eb4d4c90c9828d3970825d61"
133
+ ]
134
+ },
135
+ {
136
+ "ref_block_num":5943,
137
+ "ref_block_prefix":1156824029,
138
+ "expiration":"2016-09-17T15:45:13",
139
+ "operations":[
140
+ [
141
+ "vote",
142
+ {
143
+ "voter":"murh",
144
+ "author":"steemservices",
145
+ "permlink":"help-promote-steemit-retweet-steemservices-for-steem-power",
146
+ "weight":5555
147
+ }
148
+ ]
149
+ ],
150
+ "extensions":[
151
+
152
+ ],
153
+ "signatures":[
154
+ "1f498e0151da39f74e5b1cdaca08d794464c83d7c3ff9f5f81a45544deecf83a52770c486a5e8f71e38671f25dadaa0428af9d2d053da9994f3af20ab125f1431b"
155
+ ]
156
+ },
157
+ {
158
+ "ref_block_num":5721,
159
+ "ref_block_prefix":3382185587,
160
+ "expiration":"2016-09-17T15:44:24",
161
+ "operations":[
162
+ [
163
+ "comment",
164
+ {
165
+ "parent_author":"",
166
+ "parent_permlink":"poetry",
167
+ "author":"rigaronib",
168
+ "permlink":"as-years-pass-we-begin-to-realize-that-we-ourselves-can-become-our-own-worse-nightmare",
169
+ "title":"As years pass we begin to realize that we, ourselves, can become our own worse nightmare.",
170
+ "body":"<html><center>\n<h1>In just mere moments, our lives can become null and void...shattered on the ground like glass.</h1>\n<h3>If we allow these moments to entrap us, life becomes nothing more than a chore.</h3>\n<p><br></p>\n<p><img src=\"https://s22.postimg.org/f3x4w7n5d/shattered_emotions_by_klarem_d5clnmd.jpg\" width=\"900\" height=\"837\"/></p>\n<p><a href=\"http://klarem.deviantart.com/art/Shattered-emotions-323496661\">picture source</a></p>\n<p><br></p>\n<h3><em>Sense Dulls</em></h3>\n<p>Empty&nbsp;vases,&nbsp;broken&nbsp;rose&nbsp;stems.<br>\nMissing&nbsp;treasures,&nbsp;valueless&nbsp;gems.<br>\nSpeech,&nbsp;never&nbsp;touching&nbsp;their&nbsp;tongues.<br>\nExhaling,&nbsp;gasping&nbsp;for&nbsp;breath&nbsp;without&nbsp;lungs.&nbsp;<br>\nWingless&nbsp;bird,&nbsp;flightless&nbsp;ventures.<br>\nThirsty&nbsp;nightmare,&nbsp;midnight quenchers.&nbsp;<br>\nSound,&nbsp;never&nbsp;reaching&nbsp;their&nbsp;ears.<br>\nStaked&nbsp;heart,&nbsp;scarred&nbsp;with&nbsp;bloody&nbsp;fears.<br>\nMelody's&nbsp;noise,&nbsp;without&nbsp;beat&nbsp;or&nbsp;rhythm.<br>\nEndangered&nbsp;performer,&nbsp;masked&nbsp;phantom.<br>\nAdvice,&nbsp;never&nbsp;penetrating&nbsp;their&nbsp;skulls.<br>\nLiving,&nbsp;trying&nbsp;for&nbsp;life&nbsp;until&nbsp;the&nbsp;sense&nbsp;dulls.&nbsp;</p>\n<p><br></p>\n<p><img src=\"https://s18.postimg.org/5b9ahblw9/shattered.jpg\" width=\"400\" height=\"314\"/></p>\n<p><a href=\"http://erikafarkas.com/blog/art-beat-at-the-foyer-gallery/\">picture source</a></p>\n<p><br></p>\n<h3><em>I'm a Nightmare</em></h3>\n<p>In&nbsp;these&nbsp;simple&nbsp;words,<br>\nI&nbsp;admit&nbsp;to&nbsp;what&nbsp;I'm&nbsp;feeling.<br>\nWhen,&nbsp;in&nbsp;a&nbsp;moment&nbsp;of&nbsp;intensity,<br>\nMy&nbsp;reactions&nbsp;are&nbsp;revealing.<br>\nMy&nbsp;true&nbsp;character,<br>\nWho&nbsp;I&nbsp;really&nbsp;am,<br>\nIs&nbsp;not&nbsp;what&nbsp;you&nbsp;see,<br>\nBut&nbsp;what&nbsp;you&nbsp;cannot&nbsp;imagine.<br>\nI'm&nbsp;a&nbsp;nightmare,<br>\nWalking,&nbsp;breathing,&nbsp;seeing,<br>\nBeneath&nbsp;the&nbsp;light&nbsp;of&nbsp;the&nbsp;moon.</p>\n<p><br></p>\n<p>These are rather depressing poems, but we all know these feelings. Everyone has felt these things at least once in their lives. The only way to overcome them is to rise above them.&nbsp;</p>\n<p>Don't let these feelings engulf you - purge the negativity and let in the light!</p>\n<p>And if you have found the light, find someone who hasn't and encourage them to keep searching. Fill their cup with happiness and allow your light to spill over into their life.</p>\n<p><br></p>\n<h3><br></h3>\n<h3>I hope you guys enjoyed these original poems! Both of these poems were written by my wife during her teenage years and she asked me to share them with you today.</h3>\n<h3>If you enjoyed this content, please hit that upvote and/or follow button! More is on it's way.</h3>\n<h3>Thanks for all of the support and hospitality!</h3>\n<p><br></p>\n<p><br></p>\n<p><br></p>\n<p><br></p>\n<p><a href=\"https://steemit.com/@rigaronib\"><img src=\"https://s21.postimg.org/734sb8b53/steemitlabel.jpg\"></a></p></center>\n</html>",
171
+ "json_metadata":"{\"tags\":[\"poetry\",\"story\",\"life\",\"art\",\"minnowsunite\"],\"image\":[\"https://s22.postimg.org/f3x4w7n5d/shattered_emotions_by_klarem_d5clnmd.jpg\",\"https://s18.postimg.org/5b9ahblw9/shattered.jpg\",\"https://s21.postimg.org/734sb8b53/steemitlabel.jpg\"],\"links\":[\"http://klarem.deviantart.com/art/Shattered-emotions-323496661\",\"http://erikafarkas.com/blog/art-beat-at-the-foyer-gallery/\",\"https://steemit.com/@rigaronib\"]}"
172
+ }
173
+ ],
174
+ [
175
+ "vote",
176
+ {
177
+ "voter":"rigaronib",
178
+ "author":"rigaronib",
179
+ "permlink":"as-years-pass-we-begin-to-realize-that-we-ourselves-can-become-our-own-worse-nightmare",
180
+ "weight":10000
181
+ }
182
+ ]
183
+ ],
184
+ "extensions":[
185
+
186
+ ],
187
+ "signatures":[
188
+ "2001949162398bd9b82bb0de430f6a9bd0eafa3e0f94363804cfb68cb95358fd3c0badb56e6d0a0b0224be2a032cdbe981064a17281ddf935ed9cfdae3f1320940"
189
+ ]
190
+ }
191
+ ]
192
+ }
193
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "id":1,
3
+ "result":{
4
+ "id":"2.0.0",
5
+ "head_block_number":5052216,
6
+ "head_block_id":"004d1738d48a19af169ff1c4f182b04590370d6c",
7
+ "time":"2016-09-17T15:44:15",
8
+ "current_witness":"joseph",
9
+ "total_pow":240629,
10
+ "num_pow_witnesses":101,
11
+ "virtual_supply":"163174453.307 STEEM",
12
+ "current_supply":"159069984.744 STEEM",
13
+ "confidential_supply":"0.000 STEEM",
14
+ "current_sbd_supply":"2417531.984 SBD",
15
+ "confidential_sbd_supply":"0.000 SBD",
16
+ "total_vesting_fund_steem":"150699988.193 STEEM",
17
+ "total_vesting_shares":"448330073403.051471 VESTS",
18
+ "total_reward_fund_steem":"63681.202 STEEM",
19
+ "total_reward_shares2":"562840788118518909706564551635",
20
+ "total_activity_fund_steem":"0.000 STEEM",
21
+ "total_activity_fund_shares":"2230081108444165478341401",
22
+ "sbd_interest_rate":1000,
23
+ "average_block_size":1273,
24
+ "maximum_block_size":65536,
25
+ "current_aslot":5097285,
26
+ "recent_slots_filled":"340282366920938463463374607431768207359",
27
+ "participation_count":127,
28
+ "last_irreversible_block_num":5052206,
29
+ "max_virtual_bandwidth":"5986734968066277376",
30
+ "current_reserve_ratio":20000
31
+ }
32
+ }
@@ -0,0 +1,684 @@
1
+ {
2
+ "id": 1,
3
+ "result": {
4
+ "id": "2.14.0",
5
+ "current_median_history": {
6
+ "base": "1.487 SBD",
7
+ "quote": "1.000 STEEM"
8
+ },
9
+ "price_history": [
10
+ {
11
+ "base": "1.471 SBD",
12
+ "quote": "1.000 STEEM"
13
+ },
14
+ {
15
+ "base": "1.471 SBD",
16
+ "quote": "1.000 STEEM"
17
+ },
18
+ {
19
+ "base": "1.444 SBD",
20
+ "quote": "1.000 STEEM"
21
+ },
22
+ {
23
+ "base": "1.471 SBD",
24
+ "quote": "1.000 STEEM"
25
+ },
26
+ {
27
+ "base": "1.444 SBD",
28
+ "quote": "1.000 STEEM"
29
+ },
30
+ {
31
+ "base": "1.419 SBD",
32
+ "quote": "1.000 STEEM"
33
+ },
34
+ {
35
+ "base": "1.444 SBD",
36
+ "quote": "1.000 STEEM"
37
+ },
38
+ {
39
+ "base": "1.440 SBD",
40
+ "quote": "1.000 STEEM"
41
+ },
42
+ {
43
+ "base": "1.434 SBD",
44
+ "quote": "1.000 STEEM"
45
+ },
46
+ {
47
+ "base": "1.436 SBD",
48
+ "quote": "1.000 STEEM"
49
+ },
50
+ {
51
+ "base": "1.429 SBD",
52
+ "quote": "1.000 STEEM"
53
+ },
54
+ {
55
+ "base": "1.436 SBD",
56
+ "quote": "1.000 STEEM"
57
+ },
58
+ {
59
+ "base": "1.436 SBD",
60
+ "quote": "1.000 STEEM"
61
+ },
62
+ {
63
+ "base": "1.398 SBD",
64
+ "quote": "1.000 STEEM"
65
+ },
66
+ {
67
+ "base": "1.408 SBD",
68
+ "quote": "1.000 STEEM"
69
+ },
70
+ {
71
+ "base": "1.408 SBD",
72
+ "quote": "1.000 STEEM"
73
+ },
74
+ {
75
+ "base": "1.410 SBD",
76
+ "quote": "1.000 STEEM"
77
+ },
78
+ {
79
+ "base": "1.418 SBD",
80
+ "quote": "1.000 STEEM"
81
+ },
82
+ {
83
+ "base": "1.436 SBD",
84
+ "quote": "1.000 STEEM"
85
+ },
86
+ {
87
+ "base": "1.488 SBD",
88
+ "quote": "1.000 STEEM"
89
+ },
90
+ {
91
+ "base": "1.508 SBD",
92
+ "quote": "1.000 STEEM"
93
+ },
94
+ {
95
+ "base": "1.500 SBD",
96
+ "quote": "1.000 STEEM"
97
+ },
98
+ {
99
+ "base": "1.464 SBD",
100
+ "quote": "1.000 STEEM"
101
+ },
102
+ {
103
+ "base": "1.509 SBD",
104
+ "quote": "1.000 STEEM"
105
+ },
106
+ {
107
+ "base": "1.527 SBD",
108
+ "quote": "1.000 STEEM"
109
+ },
110
+ {
111
+ "base": "1.533 SBD",
112
+ "quote": "1.000 STEEM"
113
+ },
114
+ {
115
+ "base": "1.569 SBD",
116
+ "quote": "1.000 STEEM"
117
+ },
118
+ {
119
+ "base": "1.546 SBD",
120
+ "quote": "1.000 STEEM"
121
+ },
122
+ {
123
+ "base": "1.530 SBD",
124
+ "quote": "1.000 STEEM"
125
+ },
126
+ {
127
+ "base": "1.524 SBD",
128
+ "quote": "1.000 STEEM"
129
+ },
130
+ {
131
+ "base": "1.607 SBD",
132
+ "quote": "1.000 STEEM"
133
+ },
134
+ {
135
+ "base": "1.585 SBD",
136
+ "quote": "1.000 STEEM"
137
+ },
138
+ {
139
+ "base": "1.569 SBD",
140
+ "quote": "1.000 STEEM"
141
+ },
142
+ {
143
+ "base": "1.554 SBD",
144
+ "quote": "1.000 STEEM"
145
+ },
146
+ {
147
+ "base": "1.554 SBD",
148
+ "quote": "1.000 STEEM"
149
+ },
150
+ {
151
+ "base": "1.518 SBD",
152
+ "quote": "1.000 STEEM"
153
+ },
154
+ {
155
+ "base": "1.542 SBD",
156
+ "quote": "1.000 STEEM"
157
+ },
158
+ {
159
+ "base": "1.542 SBD",
160
+ "quote": "1.000 STEEM"
161
+ },
162
+ {
163
+ "base": "1.537 SBD",
164
+ "quote": "1.000 STEEM"
165
+ },
166
+ {
167
+ "base": "1.534 SBD",
168
+ "quote": "1.000 STEEM"
169
+ },
170
+ {
171
+ "base": "1.515 SBD",
172
+ "quote": "1.000 STEEM"
173
+ },
174
+ {
175
+ "base": "1.515 SBD",
176
+ "quote": "1.000 STEEM"
177
+ },
178
+ {
179
+ "base": "1.495 SBD",
180
+ "quote": "1.000 STEEM"
181
+ },
182
+ {
183
+ "base": "1.493 SBD",
184
+ "quote": "1.000 STEEM"
185
+ },
186
+ {
187
+ "base": "1.493 SBD",
188
+ "quote": "1.000 STEEM"
189
+ },
190
+ {
191
+ "base": "1.493 SBD",
192
+ "quote": "1.000 STEEM"
193
+ },
194
+ {
195
+ "base": "1.493 SBD",
196
+ "quote": "1.000 STEEM"
197
+ },
198
+ {
199
+ "base": "1.483 SBD",
200
+ "quote": "1.000 STEEM"
201
+ },
202
+ {
203
+ "base": "1.491 SBD",
204
+ "quote": "1.000 STEEM"
205
+ },
206
+ {
207
+ "base": "1.483 SBD",
208
+ "quote": "1.000 STEEM"
209
+ },
210
+ {
211
+ "base": "1.493 SBD",
212
+ "quote": "1.000 STEEM"
213
+ },
214
+ {
215
+ "base": "1.493 SBD",
216
+ "quote": "1.000 STEEM"
217
+ },
218
+ {
219
+ "base": "1.480 SBD",
220
+ "quote": "1.000 STEEM"
221
+ },
222
+ {
223
+ "base": "1.480 SBD",
224
+ "quote": "1.000 STEEM"
225
+ },
226
+ {
227
+ "base": "1.480 SBD",
228
+ "quote": "1.000 STEEM"
229
+ },
230
+ {
231
+ "base": "1.480 SBD",
232
+ "quote": "1.000 STEEM"
233
+ },
234
+ {
235
+ "base": "1.475 SBD",
236
+ "quote": "1.000 STEEM"
237
+ },
238
+ {
239
+ "base": "1.475 SBD",
240
+ "quote": "1.000 STEEM"
241
+ },
242
+ {
243
+ "base": "1.475 SBD",
244
+ "quote": "1.000 STEEM"
245
+ },
246
+ {
247
+ "base": "1.471 SBD",
248
+ "quote": "1.000 STEEM"
249
+ },
250
+ {
251
+ "base": "1.471 SBD",
252
+ "quote": "1.000 STEEM"
253
+ },
254
+ {
255
+ "base": "1.476 SBD",
256
+ "quote": "1.000 STEEM"
257
+ },
258
+ {
259
+ "base": "1.478 SBD",
260
+ "quote": "1.000 STEEM"
261
+ },
262
+ {
263
+ "base": "1.480 SBD",
264
+ "quote": "1.000 STEEM"
265
+ },
266
+ {
267
+ "base": "1.478 SBD",
268
+ "quote": "1.000 STEEM"
269
+ },
270
+ {
271
+ "base": "1.476 SBD",
272
+ "quote": "1.000 STEEM"
273
+ },
274
+ {
275
+ "base": "1.476 SBD",
276
+ "quote": "1.000 STEEM"
277
+ },
278
+ {
279
+ "base": "1.495 SBD",
280
+ "quote": "1.000 STEEM"
281
+ },
282
+ {
283
+ "base": "1.509 SBD",
284
+ "quote": "1.000 STEEM"
285
+ },
286
+ {
287
+ "base": "1.487 SBD",
288
+ "quote": "1.000 STEEM"
289
+ },
290
+ {
291
+ "base": "1.487 SBD",
292
+ "quote": "1.000 STEEM"
293
+ },
294
+ {
295
+ "base": "1.487 SBD",
296
+ "quote": "1.000 STEEM"
297
+ },
298
+ {
299
+ "base": "1.480 SBD",
300
+ "quote": "1.000 STEEM"
301
+ },
302
+ {
303
+ "base": "1.483 SBD",
304
+ "quote": "1.000 STEEM"
305
+ },
306
+ {
307
+ "base": "1.475 SBD",
308
+ "quote": "1.000 STEEM"
309
+ },
310
+ {
311
+ "base": "1.474 SBD",
312
+ "quote": "1.000 STEEM"
313
+ },
314
+ {
315
+ "base": "1.474 SBD",
316
+ "quote": "1.000 STEEM"
317
+ },
318
+ {
319
+ "base": "1.473 SBD",
320
+ "quote": "1.000 STEEM"
321
+ },
322
+ {
323
+ "base": "1.473 SBD",
324
+ "quote": "1.000 STEEM"
325
+ },
326
+ {
327
+ "base": "1.473 SBD",
328
+ "quote": "1.000 STEEM"
329
+ },
330
+ {
331
+ "base": "1.473 SBD",
332
+ "quote": "1.000 STEEM"
333
+ },
334
+ {
335
+ "base": "1.487 SBD",
336
+ "quote": "1.000 STEEM"
337
+ },
338
+ {
339
+ "base": "1.475 SBD",
340
+ "quote": "1.000 STEEM"
341
+ },
342
+ {
343
+ "base": "1.469 SBD",
344
+ "quote": "1.000 STEEM"
345
+ },
346
+ {
347
+ "base": "1.467 SBD",
348
+ "quote": "1.000 STEEM"
349
+ },
350
+ {
351
+ "base": "1.468 SBD",
352
+ "quote": "1.000 STEEM"
353
+ },
354
+ {
355
+ "base": "1.469 SBD",
356
+ "quote": "1.000 STEEM"
357
+ },
358
+ {
359
+ "base": "1.469 SBD",
360
+ "quote": "1.000 STEEM"
361
+ },
362
+ {
363
+ "base": "1.469 SBD",
364
+ "quote": "1.000 STEEM"
365
+ },
366
+ {
367
+ "base": "1.468 SBD",
368
+ "quote": "1.000 STEEM"
369
+ },
370
+ {
371
+ "base": "1.468 SBD",
372
+ "quote": "1.000 STEEM"
373
+ },
374
+ {
375
+ "base": "1.451 SBD",
376
+ "quote": "1.000 STEEM"
377
+ },
378
+ {
379
+ "base": "1.451 SBD",
380
+ "quote": "1.000 STEEM"
381
+ },
382
+ {
383
+ "base": "1.451 SBD",
384
+ "quote": "1.000 STEEM"
385
+ },
386
+ {
387
+ "base": "1.450 SBD",
388
+ "quote": "1.000 STEEM"
389
+ },
390
+ {
391
+ "base": "1.383 SBD",
392
+ "quote": "1.000 STEEM"
393
+ },
394
+ {
395
+ "base": "1.391 SBD",
396
+ "quote": "1.000 STEEM"
397
+ },
398
+ {
399
+ "base": "1.393 SBD",
400
+ "quote": "1.000 STEEM"
401
+ },
402
+ {
403
+ "base": "1.398 SBD",
404
+ "quote": "1.000 STEEM"
405
+ },
406
+ {
407
+ "base": "1.403 SBD",
408
+ "quote": "1.000 STEEM"
409
+ },
410
+ {
411
+ "base": "1.405 SBD",
412
+ "quote": "1.000 STEEM"
413
+ },
414
+ {
415
+ "base": "1.398 SBD",
416
+ "quote": "1.000 STEEM"
417
+ },
418
+ {
419
+ "base": "1.390 SBD",
420
+ "quote": "1.000 STEEM"
421
+ },
422
+ {
423
+ "base": "1.410 SBD",
424
+ "quote": "1.000 STEEM"
425
+ },
426
+ {
427
+ "base": "1.441 SBD",
428
+ "quote": "1.000 STEEM"
429
+ },
430
+ {
431
+ "base": "1.410 SBD",
432
+ "quote": "1.000 STEEM"
433
+ },
434
+ {
435
+ "base": "1.427 SBD",
436
+ "quote": "1.000 STEEM"
437
+ },
438
+ {
439
+ "base": "1.429 SBD",
440
+ "quote": "1.000 STEEM"
441
+ },
442
+ {
443
+ "base": "1.511 SBD",
444
+ "quote": "1.000 STEEM"
445
+ },
446
+ {
447
+ "base": "1.519 SBD",
448
+ "quote": "1.000 STEEM"
449
+ },
450
+ {
451
+ "base": "1.520 SBD",
452
+ "quote": "1.000 STEEM"
453
+ },
454
+ {
455
+ "base": "1.511 SBD",
456
+ "quote": "1.000 STEEM"
457
+ },
458
+ {
459
+ "base": "1.518 SBD",
460
+ "quote": "1.000 STEEM"
461
+ },
462
+ {
463
+ "base": "1.520 SBD",
464
+ "quote": "1.000 STEEM"
465
+ },
466
+ {
467
+ "base": "1.512 SBD",
468
+ "quote": "1.000 STEEM"
469
+ },
470
+ {
471
+ "base": "1.500 SBD",
472
+ "quote": "1.000 STEEM"
473
+ },
474
+ {
475
+ "base": "1.500 SBD",
476
+ "quote": "1.000 STEEM"
477
+ },
478
+ {
479
+ "base": "1.501 SBD",
480
+ "quote": "1.000 STEEM"
481
+ },
482
+ {
483
+ "base": "1.545 SBD",
484
+ "quote": "1.000 STEEM"
485
+ },
486
+ {
487
+ "base": "1.549 SBD",
488
+ "quote": "1.000 STEEM"
489
+ },
490
+ {
491
+ "base": "1.549 SBD",
492
+ "quote": "1.000 STEEM"
493
+ },
494
+ {
495
+ "base": "1.549 SBD",
496
+ "quote": "1.000 STEEM"
497
+ },
498
+ {
499
+ "base": "1.542 SBD",
500
+ "quote": "1.000 STEEM"
501
+ },
502
+ {
503
+ "base": "1.541 SBD",
504
+ "quote": "1.000 STEEM"
505
+ },
506
+ {
507
+ "base": "1.532 SBD",
508
+ "quote": "1.000 STEEM"
509
+ },
510
+ {
511
+ "base": "1.542 SBD",
512
+ "quote": "1.000 STEEM"
513
+ },
514
+ {
515
+ "base": "1.538 SBD",
516
+ "quote": "1.000 STEEM"
517
+ },
518
+ {
519
+ "base": "1.532 SBD",
520
+ "quote": "1.000 STEEM"
521
+ },
522
+ {
523
+ "base": "1.541 SBD",
524
+ "quote": "1.000 STEEM"
525
+ },
526
+ {
527
+ "base": "1.542 SBD",
528
+ "quote": "1.000 STEEM"
529
+ },
530
+ {
531
+ "base": "1.546 SBD",
532
+ "quote": "1.000 STEEM"
533
+ },
534
+ {
535
+ "base": "1.543 SBD",
536
+ "quote": "1.000 STEEM"
537
+ },
538
+ {
539
+ "base": "1.546 SBD",
540
+ "quote": "1.000 STEEM"
541
+ },
542
+ {
543
+ "base": "1.549 SBD",
544
+ "quote": "1.000 STEEM"
545
+ },
546
+ {
547
+ "base": "1.549 SBD",
548
+ "quote": "1.000 STEEM"
549
+ },
550
+ {
551
+ "base": "1.554 SBD",
552
+ "quote": "1.000 STEEM"
553
+ },
554
+ {
555
+ "base": "1.550 SBD",
556
+ "quote": "1.000 STEEM"
557
+ },
558
+ {
559
+ "base": "1.554 SBD",
560
+ "quote": "1.000 STEEM"
561
+ },
562
+ {
563
+ "base": "1.557 SBD",
564
+ "quote": "1.000 STEEM"
565
+ },
566
+ {
567
+ "base": "1.548 SBD",
568
+ "quote": "1.000 STEEM"
569
+ },
570
+ {
571
+ "base": "1.538 SBD",
572
+ "quote": "1.000 STEEM"
573
+ },
574
+ {
575
+ "base": "1.532 SBD",
576
+ "quote": "1.000 STEEM"
577
+ },
578
+ {
579
+ "base": "1.530 SBD",
580
+ "quote": "1.000 STEEM"
581
+ },
582
+ {
583
+ "base": "1.509 SBD",
584
+ "quote": "1.000 STEEM"
585
+ },
586
+ {
587
+ "base": "1.509 SBD",
588
+ "quote": "1.000 STEEM"
589
+ },
590
+ {
591
+ "base": "1.470 SBD",
592
+ "quote": "1.000 STEEM"
593
+ },
594
+ {
595
+ "base": "1.478 SBD",
596
+ "quote": "1.000 STEEM"
597
+ },
598
+ {
599
+ "base": "1.478 SBD",
600
+ "quote": "1.000 STEEM"
601
+ },
602
+ {
603
+ "base": "1.487 SBD",
604
+ "quote": "1.000 STEEM"
605
+ },
606
+ {
607
+ "base": "1.488 SBD",
608
+ "quote": "1.000 STEEM"
609
+ },
610
+ {
611
+ "base": "1.481 SBD",
612
+ "quote": "1.000 STEEM"
613
+ },
614
+ {
615
+ "base": "1.463 SBD",
616
+ "quote": "1.000 STEEM"
617
+ },
618
+ {
619
+ "base": "1.445 SBD",
620
+ "quote": "1.000 STEEM"
621
+ },
622
+ {
623
+ "base": "1.463 SBD",
624
+ "quote": "1.000 STEEM"
625
+ },
626
+ {
627
+ "base": "1.464 SBD",
628
+ "quote": "1.000 STEEM"
629
+ },
630
+ {
631
+ "base": "1.461 SBD",
632
+ "quote": "1.000 STEEM"
633
+ },
634
+ {
635
+ "base": "1.463 SBD",
636
+ "quote": "1.000 STEEM"
637
+ },
638
+ {
639
+ "base": "1.492 SBD",
640
+ "quote": "1.000 STEEM"
641
+ },
642
+ {
643
+ "base": "1.492 SBD",
644
+ "quote": "1.000 STEEM"
645
+ },
646
+ {
647
+ "base": "1.495 SBD",
648
+ "quote": "1.000 STEEM"
649
+ },
650
+ {
651
+ "base": "1.504 SBD",
652
+ "quote": "1.000 STEEM"
653
+ },
654
+ {
655
+ "base": "1.535 SBD",
656
+ "quote": "1.000 STEEM"
657
+ },
658
+ {
659
+ "base": "1.532 SBD",
660
+ "quote": "1.000 STEEM"
661
+ },
662
+ {
663
+ "base": "1.535 SBD",
664
+ "quote": "1.000 STEEM"
665
+ },
666
+ {
667
+ "base": "1.510 SBD",
668
+ "quote": "1.000 STEEM"
669
+ },
670
+ {
671
+ "base": "1.510 SBD",
672
+ "quote": "1.000 STEEM"
673
+ },
674
+ {
675
+ "base": "1.486 SBD",
676
+ "quote": "1.000 STEEM"
677
+ },
678
+ {
679
+ "base": "1.481 SBD",
680
+ "quote": "1.000 STEEM"
681
+ }
682
+ ]
683
+ }
684
+ }