radiator 0.4.6pre1 → 0.4.8.pre.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +27 -12
  3. data/Rakefile +53 -23
  4. data/lib/radiator.rb +3 -1
  5. data/lib/radiator/api.rb +111 -16
  6. data/lib/radiator/bridge.rb +34 -0
  7. data/lib/radiator/broadcast_operations.json +7 -7
  8. data/lib/radiator/chain.rb +1 -1
  9. data/lib/radiator/chain_config.rb +9 -2
  10. data/lib/radiator/database_api.rb +1 -1
  11. data/lib/radiator/error_parser.rb +1 -1
  12. data/lib/radiator/follow_api.rb +1 -1
  13. data/lib/radiator/market_history_api.rb +1 -1
  14. data/lib/radiator/mixins/acts_as_poster.rb +4 -4
  15. data/lib/radiator/operation.rb +3 -2
  16. data/lib/radiator/operation_types.rb +43 -27
  17. data/lib/radiator/ssc/base_steem_smart_contract_rpc.rb +1 -1
  18. data/lib/radiator/stream.rb +21 -8
  19. data/lib/radiator/transaction.rb +43 -3
  20. data/lib/radiator/type/amount.rb +8 -50
  21. data/lib/radiator/type/beneficiaries.rb +8 -1
  22. data/lib/radiator/type/price.rb +2 -2
  23. data/lib/radiator/version.rb +1 -1
  24. data/radiator.gemspec +17 -13
  25. data/test/fixtures/empty.json +1 -0
  26. data/test/fixtures/error.json +29 -0
  27. data/test/fixtures/follow_api_get_followers.json +1 -0
  28. data/test/fixtures/get_account.json +165 -0
  29. data/test/fixtures/get_account_count.json +1 -0
  30. data/test/fixtures/get_account_references.json +1 -0
  31. data/test/fixtures/get_block.json +193 -0
  32. data/test/fixtures/get_dynamic_global_properties.json +32 -0
  33. data/test/fixtures/get_feed_history.json +684 -0
  34. data/test/fixtures/get_hardfork_version.json +1 -0
  35. data/test/fixtures/get_key_references.json +14 -0
  36. data/test/fixtures/get_stats_for_time.json +57 -0
  37. data/test/fixtures/get_vesting_delegation.json +936 -0
  38. data/test/fixtures/golos_get_dynamic_global_properties.json +32 -0
  39. data/test/fixtures/market_history_api_get_market_history_buckets.json +1 -0
  40. data/test/fixtures/market_history_api_get_order_book.json +109 -0
  41. data/test/fixtures/market_history_api_get_recent_trades.json +55 -0
  42. data/test/fixtures/market_history_api_get_ticker.json +11 -0
  43. data/test/fixtures/market_history_api_get_volume.json +1 -0
  44. data/test/fixtures/null.json +1 -0
  45. data/test/fixtures/vcr_cassettes/account_by_key_api_all_methods.yml +1465 -0
  46. data/test/fixtures/vcr_cassettes/account_by_key_api_jsonrpc.yml +199 -0
  47. data/test/fixtures/vcr_cassettes/api_all_methods.yml +13802 -0
  48. data/test/fixtures/vcr_cassettes/api_jsonrpc.yml +53 -0
  49. data/test/fixtures/vcr_cassettes/base_per_debt.yml +11068 -0
  50. data/test/fixtures/vcr_cassettes/base_per_mvest.yml +6024 -0
  51. data/test/fixtures/vcr_cassettes/block_time.yml +5368 -0
  52. data/test/fixtures/vcr_cassettes/broadcast_transaction.yml +1723 -0
  53. data/test/fixtures/vcr_cassettes/chain_stats_api_jsonrpc.yml +51 -0
  54. data/test/fixtures/vcr_cassettes/condenser_all_all_methods.yml +13770 -0
  55. data/test/fixtures/vcr_cassettes/condenser_api_jsonrpc.yml +103 -0
  56. data/test/fixtures/vcr_cassettes/expiration_initialize.yml +16108 -0
  57. data/test/fixtures/vcr_cassettes/find_account.yml +5732 -0
  58. data/test/fixtures/vcr_cassettes/find_block.yml +5322 -0
  59. data/test/fixtures/vcr_cassettes/find_comment.yml +16386 -0
  60. data/test/fixtures/vcr_cassettes/follow_api_jsonrpc.yml +99 -0
  61. data/test/fixtures/vcr_cassettes/get_account_count.yml +783 -0
  62. data/test/fixtures/vcr_cassettes/get_account_references.yml +773 -0
  63. data/test/fixtures/vcr_cassettes/get_accounts.yml +918 -0
  64. data/test/fixtures/vcr_cassettes/get_accounts_no_argument.yml +773 -0
  65. data/test/fixtures/vcr_cassettes/get_dynamic_global_properties.yml +893 -0
  66. data/test/fixtures/vcr_cassettes/get_feed_history.yml +1432 -0
  67. data/test/fixtures/vcr_cassettes/get_hardfork_version.yml +835 -0
  68. data/test/fixtures/vcr_cassettes/get_key_references.yml +1571 -0
  69. data/test/fixtures/vcr_cassettes/get_market_history.yml +1563 -0
  70. data/test/fixtures/vcr_cassettes/get_market_history_buckets.yml +1665 -0
  71. data/test/fixtures/vcr_cassettes/get_order_book.yml +1459 -0
  72. data/test/fixtures/vcr_cassettes/get_recent_trades.yml +1459 -0
  73. data/test/fixtures/vcr_cassettes/get_ticker.yml +1563 -0
  74. data/test/fixtures/vcr_cassettes/get_trade_history.yml +1459 -0
  75. data/test/fixtures/vcr_cassettes/get_vesting_delegations.yml +731 -0
  76. data/test/fixtures/vcr_cassettes/get_volume.yml +1561 -0
  77. data/test/fixtures/vcr_cassettes/get_witness_by_account.yml +835 -0
  78. data/test/fixtures/vcr_cassettes/look_up_witnesses.yml +831 -0
  79. data/test/fixtures/vcr_cassettes/market_history_api_all_methods.yml +10191 -0
  80. data/test/fixtures/vcr_cassettes/market_history_api_jsonrpc.yml +51 -0
  81. data/test/fixtures/vcr_cassettes/network_broadcast_api_all_methods.yml +2455 -0
  82. data/test/fixtures/vcr_cassettes/network_broadcast_api_jsonrpc.yml +51 -0
  83. data/test/fixtures/vcr_cassettes/properties.yml +5551 -0
  84. data/test/fixtures/vcr_cassettes/recover_transaction.yml +1815 -0
  85. data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info.yml +90 -0
  86. data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info_invalid.yml +88 -0
  87. data/test/fixtures/vcr_cassettes/ssc_blockchain_latest_block_info.yml +90 -0
  88. data/test/fixtures/vcr_cassettes/ssc_blockchain_transaction_info.yml +90 -0
  89. data/test/fixtures/vcr_cassettes/ssc_contracts_contract.yml +364 -0
  90. data/test/fixtures/vcr_cassettes/ssc_contracts_find.yml +89 -0
  91. data/test/fixtures/vcr_cassettes/ssc_contracts_find_one.yml +87 -0
  92. data/test/fixtures/vcr_cassettes/stream_jsonrpc.yml +27502 -0
  93. data/test/fixtures/vcr_cassettes/tag_api_jsonrpc.yml +155 -0
  94. data/test/fixtures/vcr_cassettes/transaction_expiration_initialize_nil.yml +17597 -0
  95. data/test/fixtures/vcr_cassettes/transaction_jsonrpc.yml +61 -0
  96. data/test/fixtures/vcr_cassettes/unknown_chain_id.yml +13038 -0
  97. data/test/fixtures/vcr_cassettes/valid_chains.yml +11450 -0
  98. data/test/radiator/account_by_key_api_test.rb +46 -0
  99. data/test/radiator/api_test.rb +135 -0
  100. data/test/radiator/chain_stats_api_test.rb +49 -0
  101. data/test/radiator/chain_test.rb +153 -0
  102. data/test/radiator/condenser_api_test.rb +48 -0
  103. data/test/radiator/follow_api_test.rb +48 -0
  104. data/test/radiator/market_history_api_test.rb +100 -0
  105. data/test/radiator/network_broadcast_api_test.rb +48 -0
  106. data/test/radiator/operation_test.rb +116 -0
  107. data/test/radiator/ssc/blockchain_test.rb +58 -0
  108. data/test/radiator/ssc/contracts_test.rb +65 -0
  109. data/test/radiator/stream_test.rb +48 -0
  110. data/test/radiator/tag_api_test.rb +40 -0
  111. data/test/radiator/transaction_test.rb +755 -0
  112. data/test/test_helper.rb +66 -0
  113. metadata +187 -79
  114. data/.codeclimate.yml +0 -19
  115. data/.gitignore +0 -52
  116. data/.travis.yml +0 -23
  117. data/gource.sh +0 -8
  118. data/images/Anthony Martin.png +0 -0
  119. data/images/Marvin Hofmann.jpg +0 -0
  120. data/images/Marvin Hofmann.png +0 -0
  121. data/lib/steem.rb +0 -17
@@ -0,0 +1,32 @@
1
+ {
2
+ "id":1,
3
+ "result":{
4
+ "id":0,
5
+ "head_block_number":3878003,
6
+ "head_block_id":"003b2c7300493e0863be73122a58bf850de5e4fa",
7
+ "time":"2017-03-02T07:51:45",
8
+ "current_witness":"arcange",
9
+ "total_pow":185409,
10
+ "num_pow_witnesses":172,
11
+ "virtual_supply":"120216782.774 GOLOS",
12
+ "current_supply":"118814713.727 GOLOS",
13
+ "confidential_supply":"0.000 GOLOS",
14
+ "current_sbd_supply":"935180.055 GBG",
15
+ "confidential_sbd_supply":"0.000 GBG",
16
+ "total_vesting_fund_steem":"117448867.189 GOLOS",
17
+ "total_vesting_shares":"454446464094.889234 GESTS",
18
+ "total_reward_fund_steem":"76791.358 GOLOS",
19
+ "total_reward_shares2":"1100131667315923575961150326399",
20
+ "sbd_interest_rate":1000,
21
+ "sbd_print_rate":10000,
22
+ "average_block_size":495,
23
+ "maximum_block_size":65536,
24
+ "current_aslot":3884235,
25
+ "recent_slots_filled":"340282366920938463463374607431768211455",
26
+ "participation_count":128,
27
+ "last_irreversible_block_num":3877988,
28
+ "max_virtual_bandwidth":"5986734968066277376",
29
+ "current_reserve_ratio":20000,
30
+ "vote_regeneration_per_day":40
31
+ }
32
+ }
@@ -0,0 +1 @@
1
+ {"id":1,"result":[15,60,300,3600,86400]}
@@ -0,0 +1,109 @@
1
+ {
2
+ "id":1,
3
+ "result":{
4
+ "bids":[
5
+ {
6
+ "price":"0.87689393939393945",
7
+ "steem":528,
8
+ "sbd":463
9
+ },
10
+ {
11
+ "price":"0.87100520624749700",
12
+ "steem":49940,
13
+ "sbd":43498
14
+ },
15
+ {
16
+ "price":"0.87000000000000000",
17
+ "steem":30000,
18
+ "sbd":26100
19
+ },
20
+ {
21
+ "price":"0.85200293335777788",
22
+ "steem":43636,
23
+ "sbd":37178
24
+ },
25
+ {
26
+ "price":"0.85099207002072985",
27
+ "steem":60782,
28
+ "sbd":51725
29
+ },
30
+ {
31
+ "price":"0.84999999999999998",
32
+ "steem":15000,
33
+ "sbd":12750
34
+ },
35
+ {
36
+ "price":"0.80078380143696937",
37
+ "steem":1531,
38
+ "sbd":1226
39
+ },
40
+ {
41
+ "price":"0.80000000000000004",
42
+ "steem":500000,
43
+ "sbd":400000
44
+ },
45
+ {
46
+ "price":"0.79000000000000004",
47
+ "steem":550000,
48
+ "sbd":434500
49
+ },
50
+ {
51
+ "price":"0.78000000000000003",
52
+ "steem":600000,
53
+ "sbd":468000
54
+ }
55
+ ],
56
+ "asks":[
57
+ {
58
+ "price":"0.91933333333333334",
59
+ "steem":3000,
60
+ "sbd":2758
61
+ },
62
+ {
63
+ "price":"0.91950113378684817",
64
+ "steem":1764,
65
+ "sbd":1622
66
+ },
67
+ {
68
+ "price":"0.91999970552942134",
69
+ "steem":135837,
70
+ "sbd":124970
71
+ },
72
+ {
73
+ "price":"0.93863196764550727",
74
+ "steem":371,
75
+ "sbd":348
76
+ },
77
+ {
78
+ "price":"0.94070080862533689",
79
+ "steem":371,
80
+ "sbd":349
81
+ },
82
+ {
83
+ "price":"0.94299999999999995",
84
+ "steem":19812,
85
+ "sbd":18682
86
+ },
87
+ {
88
+ "price":"0.94379114642451756",
89
+ "steem":44050,
90
+ "sbd":41574
91
+ },
92
+ {
93
+ "price":"0.94385057471264366",
94
+ "steem":174000,
95
+ "sbd":164230
96
+ },
97
+ {
98
+ "price":"0.94448136289494344",
99
+ "steem":16553,
100
+ "sbd":15634
101
+ },
102
+ {
103
+ "price":"0.95000000000000007",
104
+ "steem":164000,
105
+ "sbd":155800
106
+ }
107
+ ]
108
+ }
109
+ }
@@ -0,0 +1,55 @@
1
+ {
2
+ "id":1,
3
+ "result":[
4
+ {
5
+ "date":"2016-09-08T05:21:51",
6
+ "current_pays":"16.311 STEEM",
7
+ "open_pays":"15.000 SBD"
8
+ },
9
+ {
10
+ "date":"2016-09-08T05:17:18",
11
+ "current_pays":"5.316 STEEM",
12
+ "open_pays":"5.000 SBD"
13
+ },
14
+ {
15
+ "date":"2016-09-08T04:07:42",
16
+ "current_pays":"0.178 SBD",
17
+ "open_pays":"0.188 STEEM"
18
+ },
19
+ {
20
+ "date":"2016-09-08T03:41:21",
21
+ "current_pays":"0.535 SBD",
22
+ "open_pays":"0.567 STEEM"
23
+ },
24
+ {
25
+ "date":"2016-09-08T03:40:36",
26
+ "current_pays":"0.181 SBD",
27
+ "open_pays":"0.191 STEEM"
28
+ },
29
+ {
30
+ "date":"2016-09-08T03:09:51",
31
+ "current_pays":"0.064 SBD",
32
+ "open_pays":"0.081 STEEM"
33
+ },
34
+ {
35
+ "date":"2016-09-08T03:09:36",
36
+ "current_pays":"1.040 SBD",
37
+ "open_pays":"1.298 STEEM"
38
+ },
39
+ {
40
+ "date":"2016-09-08T03:09:24",
41
+ "current_pays":"1.021 SBD",
42
+ "open_pays":"1.274 STEEM"
43
+ },
44
+ {
45
+ "date":"2016-09-08T03:09:18",
46
+ "current_pays":"1.000 STEEM",
47
+ "open_pays":"0.801 SBD"
48
+ },
49
+ {
50
+ "date":"2016-09-08T03:09:18",
51
+ "current_pays":"2.000 STEEM",
52
+ "open_pays":"1.602 SBD"
53
+ }
54
+ ]
55
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "id":1,
3
+ "result":{
4
+ "latest":"0.94055680963130173",
5
+ "lowest_ask":"0.93863196764550727",
6
+ "highest_bid":"0.87689393939393945",
7
+ "percent_change":"-0.99402003881033996",
8
+ "steem_volume":"23904.964 STEEM",
9
+ "sbd_volume":"20281.476 SBD"
10
+ }
11
+ }
@@ -0,0 +1 @@
1
+ {"id":1,"result":{"steem_volume":"23921.275 STEEM","sbd_volume":"20296.476 SBD"}}
@@ -0,0 +1 @@
1
+ {"id":1,"result":null}
@@ -0,0 +1,1465 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.steemitdev.com/
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"jsonrpc":"2.0","id":2,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
9
+ headers:
10
+ Content-Type:
11
+ - application/json; charset=utf-8
12
+ User-Agent:
13
+ - steem-ruby/0.9.5
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - "*/*"
18
+ Host:
19
+ - api.steemitdev.com
20
+ Content-Length:
21
+ - '67'
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Date:
28
+ - Sat, 07 Nov 2020 19:25:58 GMT
29
+ Content-Type:
30
+ - application/json
31
+ Content-Length:
32
+ - '76'
33
+ Connection:
34
+ - keep-alive
35
+ Server:
36
+ - nginx
37
+ X-Jussi-Request-Id:
38
+ - '000996881173369962'
39
+ X-Amzn-Trace-Id:
40
+ - Root=1-5fa6f4c5-285cf5c513551e92423a2bb6
41
+ Access-Control-Allow-Origin:
42
+ - "*"
43
+ Access-Control-Allow-Methods:
44
+ - GET, POST, OPTIONS
45
+ Access-Control-Allow-Headers:
46
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
47
+ Strict-Transport-Security:
48
+ - max-age=31557600; includeSubDomains; preload
49
+ Content-Security-Policy:
50
+ - upgrade-insecure-requests
51
+ body:
52
+ encoding: UTF-8
53
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":2}'
54
+ recorded_at: Sat, 07 Nov 2020 19:25:58 GMT
55
+ - request:
56
+ method: post
57
+ uri: https://api.steemitdev.com/
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"jsonrpc":"2.0","id":3,"method":"account_by_key_api.get_key_references","params":{}}'
61
+ headers:
62
+ Content-Type:
63
+ - application/json; charset=utf-8
64
+ User-Agent:
65
+ - steem-ruby/0.9.5
66
+ Accept-Encoding:
67
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
68
+ Accept:
69
+ - "*/*"
70
+ Host:
71
+ - api.steemitdev.com
72
+ Content-Length:
73
+ - '117'
74
+ response:
75
+ status:
76
+ code: 200
77
+ message: OK
78
+ headers:
79
+ Date:
80
+ - Sat, 07 Nov 2020 19:26:00 GMT
81
+ Content-Type:
82
+ - application/json
83
+ Content-Length:
84
+ - '49'
85
+ Connection:
86
+ - keep-alive
87
+ Server:
88
+ - nginx
89
+ X-Jussi-Request-Id:
90
+ - '000293776314909729'
91
+ X-Amzn-Trace-Id:
92
+ - Root=1-5fa6f4c6-073f1ca87234c5d86a4d2e32
93
+ Access-Control-Allow-Origin:
94
+ - "*"
95
+ Access-Control-Allow-Methods:
96
+ - GET, POST, OPTIONS
97
+ Access-Control-Allow-Headers:
98
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
99
+ Strict-Transport-Security:
100
+ - max-age=31557600; includeSubDomains; preload
101
+ Content-Security-Policy:
102
+ - upgrade-insecure-requests
103
+ body:
104
+ encoding: UTF-8
105
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":3}'
106
+ recorded_at: Sat, 07 Nov 2020 19:26:00 GMT
107
+ - request:
108
+ method: post
109
+ uri: https://api.steemitdev.com/
110
+ body:
111
+ encoding: UTF-8
112
+ string: '{"jsonrpc":"2.0","id":39,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
113
+ headers:
114
+ Content-Type:
115
+ - application/json; charset=utf-8
116
+ User-Agent:
117
+ - steem-ruby/0.9.5
118
+ Accept-Encoding:
119
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
120
+ Accept:
121
+ - "*/*"
122
+ Host:
123
+ - api.steemit.com
124
+ Content-Length:
125
+ - '68'
126
+ response:
127
+ status:
128
+ code: 200
129
+ message: OK
130
+ headers:
131
+ Date:
132
+ - Sat, 07 Nov 2020 19:30:43 GMT
133
+ Content-Type:
134
+ - application/json
135
+ Content-Length:
136
+ - '77'
137
+ Connection:
138
+ - keep-alive
139
+ Server:
140
+ - nginx
141
+ X-Jussi-Request-Id:
142
+ - '000602622780328245'
143
+ X-Amzn-Trace-Id:
144
+ - Root=1-5fa6f5e1-66fcccd5646514fd3f1110b8
145
+ Access-Control-Allow-Origin:
146
+ - "*"
147
+ Access-Control-Allow-Methods:
148
+ - GET, POST, OPTIONS
149
+ Access-Control-Allow-Headers:
150
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
151
+ Strict-Transport-Security:
152
+ - max-age=31557600; includeSubDomains; preload
153
+ Content-Security-Policy:
154
+ - upgrade-insecure-requests
155
+ body:
156
+ encoding: UTF-8
157
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":39}'
158
+ recorded_at: Sat, 07 Nov 2020 19:30:43 GMT
159
+ - request:
160
+ method: post
161
+ uri: https://api.steemitdev.com/
162
+ body:
163
+ encoding: UTF-8
164
+ string: '{"jsonrpc":"2.0","id":40,"method":"account_by_key_api.get_key_references","params":{}}'
165
+ headers:
166
+ Content-Type:
167
+ - application/json; charset=utf-8
168
+ User-Agent:
169
+ - steem-ruby/0.9.5
170
+ Accept-Encoding:
171
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
172
+ Accept:
173
+ - "*/*"
174
+ Host:
175
+ - api.steemit.com
176
+ Content-Length:
177
+ - '118'
178
+ response:
179
+ status:
180
+ code: 200
181
+ message: OK
182
+ headers:
183
+ Date:
184
+ - Sat, 07 Nov 2020 19:30:45 GMT
185
+ Content-Type:
186
+ - application/json
187
+ Content-Length:
188
+ - '50'
189
+ Connection:
190
+ - keep-alive
191
+ Server:
192
+ - nginx
193
+ X-Jussi-Request-Id:
194
+ - '000058394793293819'
195
+ X-Amzn-Trace-Id:
196
+ - Root=1-5fa6f5e3-5d3c595a0809c3ed1aa915bf
197
+ Access-Control-Allow-Origin:
198
+ - "*"
199
+ Access-Control-Allow-Methods:
200
+ - GET, POST, OPTIONS
201
+ Access-Control-Allow-Headers:
202
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
203
+ Strict-Transport-Security:
204
+ - max-age=31557600; includeSubDomains; preload
205
+ Content-Security-Policy:
206
+ - upgrade-insecure-requests
207
+ body:
208
+ encoding: UTF-8
209
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":40}'
210
+ recorded_at: Sat, 07 Nov 2020 19:30:45 GMT
211
+ - request:
212
+ method: post
213
+ uri: https://api.steemitdev.com/
214
+ body:
215
+ encoding: UTF-8
216
+ string: '{"jsonrpc":"2.0","id":41,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
217
+ headers:
218
+ Content-Type:
219
+ - application/json; charset=utf-8
220
+ User-Agent:
221
+ - steem-ruby/0.9.5
222
+ Accept-Encoding:
223
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
224
+ Accept:
225
+ - "*/*"
226
+ Host:
227
+ - api.steemitdev.com
228
+ Content-Length:
229
+ - '85'
230
+ response:
231
+ status:
232
+ code: 200
233
+ message: OK
234
+ headers:
235
+ Date:
236
+ - Sat, 07 Nov 2020 20:13:18 GMT
237
+ Content-Type:
238
+ - application/json
239
+ Content-Length:
240
+ - '77'
241
+ Connection:
242
+ - keep-alive
243
+ Server:
244
+ - nginx
245
+ X-Jussi-Request-Id:
246
+ - '000618430280736416'
247
+ X-Amzn-Trace-Id:
248
+ - Root=1-5fa6ffda-011828c87ea3783441f0c570
249
+ Access-Control-Allow-Origin:
250
+ - "*"
251
+ Access-Control-Allow-Methods:
252
+ - GET, POST, OPTIONS
253
+ Access-Control-Allow-Headers:
254
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
255
+ Strict-Transport-Security:
256
+ - max-age=31557600; includeSubDomains; preload
257
+ Content-Security-Policy:
258
+ - upgrade-insecure-requests
259
+ body:
260
+ encoding: UTF-8
261
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":41}'
262
+ recorded_at: Sat, 07 Nov 2020 20:13:18 GMT
263
+ - request:
264
+ method: post
265
+ uri: https://api.steemitdev.com/
266
+ body:
267
+ encoding: UTF-8
268
+ string: '{"jsonrpc":"2.0","id":42,"method":"account_by_key_api.get_key_references","params":{}}'
269
+ headers:
270
+ Content-Type:
271
+ - application/json; charset=utf-8
272
+ User-Agent:
273
+ - steem-ruby/0.9.5
274
+ Accept-Encoding:
275
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
276
+ Accept:
277
+ - "*/*"
278
+ Host:
279
+ - api.steemitdev.com
280
+ Content-Length:
281
+ - '118'
282
+ response:
283
+ status:
284
+ code: 200
285
+ message: OK
286
+ headers:
287
+ Date:
288
+ - Sat, 07 Nov 2020 20:13:24 GMT
289
+ Content-Type:
290
+ - application/json
291
+ Content-Length:
292
+ - '50'
293
+ Connection:
294
+ - keep-alive
295
+ Server:
296
+ - nginx
297
+ X-Jussi-Request-Id:
298
+ - '000015656032199633'
299
+ X-Amzn-Trace-Id:
300
+ - Root=1-5fa6ffdf-25e8d54446768de07cc2bf19
301
+ Access-Control-Allow-Origin:
302
+ - "*"
303
+ Access-Control-Allow-Methods:
304
+ - GET, POST, OPTIONS
305
+ Access-Control-Allow-Headers:
306
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
307
+ Strict-Transport-Security:
308
+ - max-age=31557600; includeSubDomains; preload
309
+ Content-Security-Policy:
310
+ - upgrade-insecure-requests
311
+ body:
312
+ encoding: UTF-8
313
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":42}'
314
+ recorded_at: Sat, 07 Nov 2020 20:13:24 GMT
315
+ - request:
316
+ method: post
317
+ uri: https://api.steemitdev.com/
318
+ body:
319
+ encoding: UTF-8
320
+ string: '{"jsonrpc":"2.0","id":121,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
321
+ headers:
322
+ Content-Type:
323
+ - application/json; charset=utf-8
324
+ User-Agent:
325
+ - steem-ruby/0.9.5
326
+ Accept-Encoding:
327
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
328
+ Accept:
329
+ - "*/*"
330
+ Host:
331
+ - api.steemitdev.com
332
+ Content-Length:
333
+ - '97'
334
+ response:
335
+ status:
336
+ code: 200
337
+ message: OK
338
+ headers:
339
+ Date:
340
+ - Sat, 07 Nov 2020 20:22:52 GMT
341
+ Content-Type:
342
+ - application/json
343
+ Content-Length:
344
+ - '78'
345
+ Connection:
346
+ - keep-alive
347
+ Server:
348
+ - nginx
349
+ X-Jussi-Request-Id:
350
+ - '000723410236329237'
351
+ X-Amzn-Trace-Id:
352
+ - Root=1-5fa7021b-02abf3b138aeea236fb0b964
353
+ Access-Control-Allow-Origin:
354
+ - "*"
355
+ Access-Control-Allow-Methods:
356
+ - GET, POST, OPTIONS
357
+ Access-Control-Allow-Headers:
358
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
359
+ Strict-Transport-Security:
360
+ - max-age=31557600; includeSubDomains; preload
361
+ Content-Security-Policy:
362
+ - upgrade-insecure-requests
363
+ body:
364
+ encoding: UTF-8
365
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":121}'
366
+ recorded_at: Sat, 07 Nov 2020 20:22:52 GMT
367
+ - request:
368
+ method: post
369
+ uri: https://api.steemitdev.com/
370
+ body:
371
+ encoding: UTF-8
372
+ string: '{"jsonrpc":"2.0","id":122,"method":"account_by_key_api.get_key_references","params":{}}'
373
+ headers:
374
+ Content-Type:
375
+ - application/json; charset=utf-8
376
+ User-Agent:
377
+ - steem-ruby/0.9.5
378
+ Accept-Encoding:
379
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
380
+ Accept:
381
+ - "*/*"
382
+ Host:
383
+ - api.steemitdev.com
384
+ Content-Length:
385
+ - '119'
386
+ response:
387
+ status:
388
+ code: 200
389
+ message: OK
390
+ headers:
391
+ Date:
392
+ - Sat, 07 Nov 2020 20:22:52 GMT
393
+ Content-Type:
394
+ - application/json
395
+ Content-Length:
396
+ - '51'
397
+ Connection:
398
+ - keep-alive
399
+ Server:
400
+ - nginx
401
+ X-Jussi-Request-Id:
402
+ - '000994764009037203'
403
+ X-Amzn-Trace-Id:
404
+ - Root=1-5fa7021c-2da9b29b2447f770125cb786
405
+ Access-Control-Allow-Origin:
406
+ - "*"
407
+ Access-Control-Allow-Methods:
408
+ - GET, POST, OPTIONS
409
+ Access-Control-Allow-Headers:
410
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
411
+ Strict-Transport-Security:
412
+ - max-age=31557600; includeSubDomains; preload
413
+ Content-Security-Policy:
414
+ - upgrade-insecure-requests
415
+ body:
416
+ encoding: UTF-8
417
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":122}'
418
+ recorded_at: Sat, 07 Nov 2020 20:22:52 GMT
419
+ - request:
420
+ method: post
421
+ uri: https://api.steemitdev.com/
422
+ body:
423
+ encoding: UTF-8
424
+ string: '{"jsonrpc":"2.0","id":91,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
425
+ headers:
426
+ Content-Type:
427
+ - application/json; charset=utf-8
428
+ User-Agent:
429
+ - steem-ruby/0.9.5
430
+ Accept-Encoding:
431
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
432
+ Accept:
433
+ - "*/*"
434
+ Host:
435
+ - api.steemit.com
436
+ Content-Length:
437
+ - '92'
438
+ response:
439
+ status:
440
+ code: 200
441
+ message: OK
442
+ headers:
443
+ Date:
444
+ - Sat, 07 Nov 2020 20:27:51 GMT
445
+ Content-Type:
446
+ - application/json
447
+ Content-Length:
448
+ - '77'
449
+ Connection:
450
+ - keep-alive
451
+ Server:
452
+ - nginx
453
+ X-Jussi-Request-Id:
454
+ - '000118075573264397'
455
+ X-Amzn-Trace-Id:
456
+ - Root=1-5fa70344-36918016561793671fe8e234
457
+ Access-Control-Allow-Origin:
458
+ - "*"
459
+ Access-Control-Allow-Methods:
460
+ - GET, POST, OPTIONS
461
+ Access-Control-Allow-Headers:
462
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
463
+ Strict-Transport-Security:
464
+ - max-age=31557600; includeSubDomains; preload
465
+ Content-Security-Policy:
466
+ - upgrade-insecure-requests
467
+ body:
468
+ encoding: UTF-8
469
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":91}'
470
+ recorded_at: Sat, 07 Nov 2020 20:27:51 GMT
471
+ - request:
472
+ method: post
473
+ uri: https://api.steemitdev.com/
474
+ body:
475
+ encoding: UTF-8
476
+ string: '{"jsonrpc":"2.0","id":92,"method":"account_by_key_api.get_key_references","params":{}}'
477
+ headers:
478
+ Content-Type:
479
+ - application/json; charset=utf-8
480
+ User-Agent:
481
+ - steem-ruby/0.9.5
482
+ Accept-Encoding:
483
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
484
+ Accept:
485
+ - "*/*"
486
+ Host:
487
+ - api.steemit.com
488
+ Content-Length:
489
+ - '118'
490
+ response:
491
+ status:
492
+ code: 200
493
+ message: OK
494
+ headers:
495
+ Date:
496
+ - Sat, 07 Nov 2020 20:27:51 GMT
497
+ Content-Type:
498
+ - application/json
499
+ Content-Length:
500
+ - '50'
501
+ Connection:
502
+ - keep-alive
503
+ Server:
504
+ - nginx
505
+ X-Jussi-Request-Id:
506
+ - '000725494695638457'
507
+ X-Amzn-Trace-Id:
508
+ - Root=1-5fa70347-4c357d537007181738d7ba16
509
+ Access-Control-Allow-Origin:
510
+ - "*"
511
+ Access-Control-Allow-Methods:
512
+ - GET, POST, OPTIONS
513
+ Access-Control-Allow-Headers:
514
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
515
+ Strict-Transport-Security:
516
+ - max-age=31557600; includeSubDomains; preload
517
+ Content-Security-Policy:
518
+ - upgrade-insecure-requests
519
+ body:
520
+ encoding: UTF-8
521
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":92}'
522
+ recorded_at: Sat, 07 Nov 2020 20:27:52 GMT
523
+ - request:
524
+ method: post
525
+ uri: https://api.steemitdev.com/
526
+ body:
527
+ encoding: UTF-8
528
+ string: '{"jsonrpc":"2.0","id":117,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
529
+ headers:
530
+ Content-Type:
531
+ - application/json; charset=utf-8
532
+ User-Agent:
533
+ - steem-ruby/0.9.5
534
+ Accept-Encoding:
535
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
536
+ Accept:
537
+ - "*/*"
538
+ Host:
539
+ - api.steemitdev.com
540
+ Content-Length:
541
+ - '151'
542
+ response:
543
+ status:
544
+ code: 200
545
+ message: OK
546
+ headers:
547
+ Date:
548
+ - Sat, 07 Nov 2020 20:32:20 GMT
549
+ Content-Type:
550
+ - application/json
551
+ Content-Length:
552
+ - '78'
553
+ Connection:
554
+ - keep-alive
555
+ Server:
556
+ - nginx
557
+ X-Jussi-Cache-Hit:
558
+ - appbase.jsonrpc.get_signature.params={"method":"account_by_key_api.get_key_references"}
559
+ X-Jussi-Request-Id:
560
+ - '000616814123910242'
561
+ X-Amzn-Trace-Id:
562
+ - Root=1-5fa70454-4c3d7a8874f84277690112d1
563
+ Access-Control-Allow-Origin:
564
+ - "*"
565
+ Access-Control-Allow-Methods:
566
+ - GET, POST, OPTIONS
567
+ Access-Control-Allow-Headers:
568
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
569
+ Strict-Transport-Security:
570
+ - max-age=31557600; includeSubDomains; preload
571
+ Content-Security-Policy:
572
+ - upgrade-insecure-requests
573
+ body:
574
+ encoding: UTF-8
575
+ string: '{"id":117,"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}}}'
576
+ recorded_at: Sat, 07 Nov 2020 20:32:20 GMT
577
+ - request:
578
+ method: post
579
+ uri: https://api.steemitdev.com/
580
+ body:
581
+ encoding: UTF-8
582
+ string: '{"jsonrpc":"2.0","id":118,"method":"account_by_key_api.get_key_references","params":{}}'
583
+ headers:
584
+ Content-Type:
585
+ - application/json; charset=utf-8
586
+ User-Agent:
587
+ - steem-ruby/0.9.5
588
+ Accept-Encoding:
589
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
590
+ Accept:
591
+ - "*/*"
592
+ Host:
593
+ - api.steemitdev.com
594
+ Content-Length:
595
+ - '119'
596
+ response:
597
+ status:
598
+ code: 200
599
+ message: OK
600
+ headers:
601
+ Date:
602
+ - Sat, 07 Nov 2020 20:32:22 GMT
603
+ Content-Type:
604
+ - application/json
605
+ Content-Length:
606
+ - '51'
607
+ Connection:
608
+ - keep-alive
609
+ Server:
610
+ - nginx
611
+ X-Jussi-Request-Id:
612
+ - '000942222114657425'
613
+ X-Amzn-Trace-Id:
614
+ - Root=1-5fa70454-3415a82d76d7613457f69135
615
+ Access-Control-Allow-Origin:
616
+ - "*"
617
+ Access-Control-Allow-Methods:
618
+ - GET, POST, OPTIONS
619
+ Access-Control-Allow-Headers:
620
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
621
+ Strict-Transport-Security:
622
+ - max-age=31557600; includeSubDomains; preload
623
+ Content-Security-Policy:
624
+ - upgrade-insecure-requests
625
+ body:
626
+ encoding: UTF-8
627
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":118}'
628
+ recorded_at: Sat, 07 Nov 2020 20:32:22 GMT
629
+ - request:
630
+ method: post
631
+ uri: https://api.steemitdev.com/
632
+ body:
633
+ encoding: UTF-8
634
+ string: '{"jsonrpc":"2.0","id":32,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
635
+ headers:
636
+ Content-Type:
637
+ - application/json; charset=utf-8
638
+ User-Agent:
639
+ - steem-ruby/0.9.5
640
+ Accept-Encoding:
641
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
642
+ Accept:
643
+ - "*/*"
644
+ Host:
645
+ - api.steemitdev.com
646
+ Content-Length:
647
+ - '150'
648
+ response:
649
+ status:
650
+ code: 200
651
+ message: OK
652
+ headers:
653
+ Date:
654
+ - Sat, 07 Nov 2020 20:34:01 GMT
655
+ Content-Type:
656
+ - application/json
657
+ Content-Length:
658
+ - '77'
659
+ Connection:
660
+ - keep-alive
661
+ Server:
662
+ - nginx
663
+ X-Jussi-Cache-Hit:
664
+ - appbase.jsonrpc.get_signature.params={"method":"account_by_key_api.get_key_references"}
665
+ X-Jussi-Request-Id:
666
+ - '000880670266763834'
667
+ X-Amzn-Trace-Id:
668
+ - Root=1-5fa704b9-70fbf3c75d0347ba220f98fe
669
+ Access-Control-Allow-Origin:
670
+ - "*"
671
+ Access-Control-Allow-Methods:
672
+ - GET, POST, OPTIONS
673
+ Access-Control-Allow-Headers:
674
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
675
+ Strict-Transport-Security:
676
+ - max-age=31557600; includeSubDomains; preload
677
+ Content-Security-Policy:
678
+ - upgrade-insecure-requests
679
+ body:
680
+ encoding: UTF-8
681
+ string: '{"id":32,"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}}}'
682
+ recorded_at: Sat, 07 Nov 2020 20:34:01 GMT
683
+ - request:
684
+ method: post
685
+ uri: https://api.steemitdev.com/
686
+ body:
687
+ encoding: UTF-8
688
+ string: '{"jsonrpc":"2.0","id":33,"method":"account_by_key_api.get_key_references","params":{}}'
689
+ headers:
690
+ Content-Type:
691
+ - application/json; charset=utf-8
692
+ User-Agent:
693
+ - steem-ruby/0.9.5
694
+ Accept-Encoding:
695
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
696
+ Accept:
697
+ - "*/*"
698
+ Host:
699
+ - api.steemitdev.com
700
+ Content-Length:
701
+ - '118'
702
+ response:
703
+ status:
704
+ code: 200
705
+ message: OK
706
+ headers:
707
+ Date:
708
+ - Sat, 07 Nov 2020 20:34:01 GMT
709
+ Content-Type:
710
+ - application/json
711
+ Content-Length:
712
+ - '50'
713
+ Connection:
714
+ - keep-alive
715
+ Server:
716
+ - nginx
717
+ X-Jussi-Request-Id:
718
+ - '000699725238194883'
719
+ X-Amzn-Trace-Id:
720
+ - Root=1-5fa704b9-4afe119326afb43b7d13132a
721
+ Access-Control-Allow-Origin:
722
+ - "*"
723
+ Access-Control-Allow-Methods:
724
+ - GET, POST, OPTIONS
725
+ Access-Control-Allow-Headers:
726
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
727
+ Strict-Transport-Security:
728
+ - max-age=31557600; includeSubDomains; preload
729
+ Content-Security-Policy:
730
+ - upgrade-insecure-requests
731
+ body:
732
+ encoding: UTF-8
733
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":33}'
734
+ recorded_at: Sat, 07 Nov 2020 20:34:02 GMT
735
+ - request:
736
+ method: post
737
+ uri: https://api.steemitdev.com/
738
+ body:
739
+ encoding: UTF-8
740
+ string: '{"jsonrpc":"2.0","id":110,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
741
+ headers:
742
+ Content-Type:
743
+ - application/json; charset=utf-8
744
+ User-Agent:
745
+ - steem-ruby/0.9.5
746
+ Accept-Encoding:
747
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
748
+ Accept:
749
+ - "*/*"
750
+ Host:
751
+ - api.steemitdev.com
752
+ Content-Length:
753
+ - '151'
754
+ response:
755
+ status:
756
+ code: 200
757
+ message: OK
758
+ headers:
759
+ Date:
760
+ - Sat, 07 Nov 2020 20:42:49 GMT
761
+ Content-Type:
762
+ - application/json
763
+ Content-Length:
764
+ - '78'
765
+ Connection:
766
+ - keep-alive
767
+ Server:
768
+ - nginx
769
+ X-Jussi-Request-Id:
770
+ - '000535687311590402'
771
+ X-Amzn-Trace-Id:
772
+ - Root=1-5fa706c8-7de54f2907a8471c36a5a4d6
773
+ Access-Control-Allow-Origin:
774
+ - "*"
775
+ Access-Control-Allow-Methods:
776
+ - GET, POST, OPTIONS
777
+ Access-Control-Allow-Headers:
778
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
779
+ Strict-Transport-Security:
780
+ - max-age=31557600; includeSubDomains; preload
781
+ Content-Security-Policy:
782
+ - upgrade-insecure-requests
783
+ body:
784
+ encoding: UTF-8
785
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":110}'
786
+ recorded_at: Sat, 07 Nov 2020 20:42:49 GMT
787
+ - request:
788
+ method: post
789
+ uri: https://api.steemitdev.com/
790
+ body:
791
+ encoding: UTF-8
792
+ string: '{"jsonrpc":"2.0","id":111,"method":"account_by_key_api.get_key_references","params":{}}'
793
+ headers:
794
+ Content-Type:
795
+ - application/json; charset=utf-8
796
+ User-Agent:
797
+ - steem-ruby/0.9.5
798
+ Accept-Encoding:
799
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
800
+ Accept:
801
+ - "*/*"
802
+ Host:
803
+ - api.steemitdev.com
804
+ Content-Length:
805
+ - '119'
806
+ response:
807
+ status:
808
+ code: 200
809
+ message: OK
810
+ headers:
811
+ Date:
812
+ - Sat, 07 Nov 2020 20:42:51 GMT
813
+ Content-Type:
814
+ - application/json
815
+ Content-Length:
816
+ - '51'
817
+ Connection:
818
+ - keep-alive
819
+ Server:
820
+ - nginx
821
+ X-Jussi-Request-Id:
822
+ - '000067609010601956'
823
+ X-Amzn-Trace-Id:
824
+ - Root=1-5fa706c9-3002cff81d087d2b22a39c71
825
+ Access-Control-Allow-Origin:
826
+ - "*"
827
+ Access-Control-Allow-Methods:
828
+ - GET, POST, OPTIONS
829
+ Access-Control-Allow-Headers:
830
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
831
+ Strict-Transport-Security:
832
+ - max-age=31557600; includeSubDomains; preload
833
+ Content-Security-Policy:
834
+ - upgrade-insecure-requests
835
+ body:
836
+ encoding: UTF-8
837
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":111}'
838
+ recorded_at: Sat, 07 Nov 2020 20:42:51 GMT
839
+ - request:
840
+ method: post
841
+ uri: https://api.steemitdev.com/
842
+ body:
843
+ encoding: UTF-8
844
+ string: '{"jsonrpc":"2.0","id":25,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
845
+ headers:
846
+ Content-Type:
847
+ - application/json; charset=utf-8
848
+ User-Agent:
849
+ - steem-ruby/0.9.5
850
+ Accept-Encoding:
851
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
852
+ Accept:
853
+ - "*/*"
854
+ Host:
855
+ - api.steemitdev.com
856
+ Content-Length:
857
+ - '80'
858
+ response:
859
+ status:
860
+ code: 200
861
+ message: OK
862
+ headers:
863
+ Date:
864
+ - Sat, 07 Nov 2020 20:46:40 GMT
865
+ Content-Type:
866
+ - application/json
867
+ Content-Length:
868
+ - '77'
869
+ Connection:
870
+ - keep-alive
871
+ Server:
872
+ - nginx
873
+ X-Jussi-Request-Id:
874
+ - '001054646767658574'
875
+ X-Amzn-Trace-Id:
876
+ - Root=1-5fa707ae-21399c000d073c5f0a480e15
877
+ Access-Control-Allow-Origin:
878
+ - "*"
879
+ Access-Control-Allow-Methods:
880
+ - GET, POST, OPTIONS
881
+ Access-Control-Allow-Headers:
882
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
883
+ Strict-Transport-Security:
884
+ - max-age=31557600; includeSubDomains; preload
885
+ Content-Security-Policy:
886
+ - upgrade-insecure-requests
887
+ body:
888
+ encoding: UTF-8
889
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":25}'
890
+ recorded_at: Sat, 07 Nov 2020 20:46:40 GMT
891
+ - request:
892
+ method: post
893
+ uri: https://api.steemitdev.com/
894
+ body:
895
+ encoding: UTF-8
896
+ string: '{"jsonrpc":"2.0","id":26,"method":"account_by_key_api.get_key_references","params":{}}'
897
+ headers:
898
+ Content-Type:
899
+ - application/json; charset=utf-8
900
+ User-Agent:
901
+ - steem-ruby/0.9.5
902
+ Accept-Encoding:
903
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
904
+ Accept:
905
+ - "*/*"
906
+ Host:
907
+ - api.steemitdev.com
908
+ Content-Length:
909
+ - '118'
910
+ response:
911
+ status:
912
+ code: 200
913
+ message: OK
914
+ headers:
915
+ Date:
916
+ - Sat, 07 Nov 2020 20:46:44 GMT
917
+ Content-Type:
918
+ - application/json
919
+ Content-Length:
920
+ - '50'
921
+ Connection:
922
+ - keep-alive
923
+ Server:
924
+ - nginx
925
+ X-Jussi-Request-Id:
926
+ - '000530632473252043'
927
+ X-Amzn-Trace-Id:
928
+ - Root=1-5fa707b1-6ece6e5123f289b954230182
929
+ Access-Control-Allow-Origin:
930
+ - "*"
931
+ Access-Control-Allow-Methods:
932
+ - GET, POST, OPTIONS
933
+ Access-Control-Allow-Headers:
934
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
935
+ Strict-Transport-Security:
936
+ - max-age=31557600; includeSubDomains; preload
937
+ Content-Security-Policy:
938
+ - upgrade-insecure-requests
939
+ body:
940
+ encoding: UTF-8
941
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":26}'
942
+ recorded_at: Sat, 07 Nov 2020 20:46:44 GMT
943
+ - request:
944
+ method: post
945
+ uri: https://api.steemitdev.com/
946
+ body:
947
+ encoding: UTF-8
948
+ string: '{"jsonrpc":"2.0","id":74,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
949
+ headers:
950
+ Content-Type:
951
+ - application/json; charset=utf-8
952
+ User-Agent:
953
+ - steem-ruby/0.9.5
954
+ Accept-Encoding:
955
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
956
+ Accept:
957
+ - "*/*"
958
+ Host:
959
+ - api.steemit.com
960
+ Content-Length:
961
+ - '96'
962
+ response:
963
+ status:
964
+ code: 200
965
+ message: OK
966
+ headers:
967
+ Date:
968
+ - Sat, 07 Nov 2020 21:07:53 GMT
969
+ Content-Type:
970
+ - application/json
971
+ Content-Length:
972
+ - '77'
973
+ Connection:
974
+ - keep-alive
975
+ Server:
976
+ - nginx
977
+ X-Jussi-Request-Id:
978
+ - '000758487223667949'
979
+ X-Amzn-Trace-Id:
980
+ - Root=1-5fa70ca9-68600f504c59daa636123648
981
+ Access-Control-Allow-Origin:
982
+ - "*"
983
+ Access-Control-Allow-Methods:
984
+ - GET, POST, OPTIONS
985
+ Access-Control-Allow-Headers:
986
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
987
+ Strict-Transport-Security:
988
+ - max-age=31557600; includeSubDomains; preload
989
+ Content-Security-Policy:
990
+ - upgrade-insecure-requests
991
+ body:
992
+ encoding: UTF-8
993
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":74}'
994
+ recorded_at: Sat, 07 Nov 2020 21:07:53 GMT
995
+ - request:
996
+ method: post
997
+ uri: https://api.steemitdev.com/
998
+ body:
999
+ encoding: UTF-8
1000
+ string: '{"jsonrpc":"2.0","id":75,"method":"account_by_key_api.get_key_references","params":{}}'
1001
+ headers:
1002
+ Content-Type:
1003
+ - application/json; charset=utf-8
1004
+ User-Agent:
1005
+ - steem-ruby/0.9.5
1006
+ Accept-Encoding:
1007
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1008
+ Accept:
1009
+ - "*/*"
1010
+ Host:
1011
+ - api.steemit.com
1012
+ Content-Length:
1013
+ - '118'
1014
+ response:
1015
+ status:
1016
+ code: 200
1017
+ message: OK
1018
+ headers:
1019
+ Date:
1020
+ - Sat, 07 Nov 2020 21:07:55 GMT
1021
+ Content-Type:
1022
+ - application/json
1023
+ Content-Length:
1024
+ - '50'
1025
+ Connection:
1026
+ - keep-alive
1027
+ Server:
1028
+ - nginx
1029
+ X-Jussi-Request-Id:
1030
+ - '000002029062413353'
1031
+ X-Amzn-Trace-Id:
1032
+ - Root=1-5fa70caa-0b7710543bdd89f540d5d6ee
1033
+ Access-Control-Allow-Origin:
1034
+ - "*"
1035
+ Access-Control-Allow-Methods:
1036
+ - GET, POST, OPTIONS
1037
+ Access-Control-Allow-Headers:
1038
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1039
+ Strict-Transport-Security:
1040
+ - max-age=31557600; includeSubDomains; preload
1041
+ Content-Security-Policy:
1042
+ - upgrade-insecure-requests
1043
+ body:
1044
+ encoding: UTF-8
1045
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":75}'
1046
+ recorded_at: Sat, 07 Nov 2020 21:07:56 GMT
1047
+ - request:
1048
+ method: post
1049
+ uri: https://api.steemitdev.com/
1050
+ body:
1051
+ encoding: UTF-8
1052
+ string: '{"jsonrpc":"2.0","id":54,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
1053
+ headers:
1054
+ Content-Type:
1055
+ - application/json; charset=utf-8
1056
+ User-Agent:
1057
+ - steem-ruby/0.9.5
1058
+ Accept-Encoding:
1059
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1060
+ Accept:
1061
+ - "*/*"
1062
+ Host:
1063
+ - api.steemitdev.com
1064
+ Content-Length:
1065
+ - '92'
1066
+ response:
1067
+ status:
1068
+ code: 200
1069
+ message: OK
1070
+ headers:
1071
+ Date:
1072
+ - Sun, 08 Nov 2020 05:35:52 GMT
1073
+ Content-Type:
1074
+ - application/json
1075
+ Content-Length:
1076
+ - '77'
1077
+ Connection:
1078
+ - keep-alive
1079
+ Server:
1080
+ - nginx
1081
+ X-Jussi-Request-Id:
1082
+ - '001063065299268831'
1083
+ X-Amzn-Trace-Id:
1084
+ - Root=1-5fa783b8-4e322bf546fd9bb501461061
1085
+ Access-Control-Allow-Origin:
1086
+ - "*"
1087
+ Access-Control-Allow-Methods:
1088
+ - GET, POST, OPTIONS
1089
+ Access-Control-Allow-Headers:
1090
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1091
+ Strict-Transport-Security:
1092
+ - max-age=31557600; includeSubDomains; preload
1093
+ Content-Security-Policy:
1094
+ - upgrade-insecure-requests
1095
+ body:
1096
+ encoding: UTF-8
1097
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":54}'
1098
+ recorded_at: Sun, 08 Nov 2020 05:35:52 GMT
1099
+ - request:
1100
+ method: post
1101
+ uri: https://api.steemitdev.com/
1102
+ body:
1103
+ encoding: UTF-8
1104
+ string: '{"jsonrpc":"2.0","id":55,"method":"account_by_key_api.get_key_references","params":{}}'
1105
+ headers:
1106
+ Content-Type:
1107
+ - application/json; charset=utf-8
1108
+ User-Agent:
1109
+ - steem-ruby/0.9.5
1110
+ Accept-Encoding:
1111
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1112
+ Accept:
1113
+ - "*/*"
1114
+ Host:
1115
+ - api.steemitdev.com
1116
+ Content-Length:
1117
+ - '118'
1118
+ response:
1119
+ status:
1120
+ code: 200
1121
+ message: OK
1122
+ headers:
1123
+ Date:
1124
+ - Sun, 08 Nov 2020 05:35:55 GMT
1125
+ Content-Type:
1126
+ - application/json
1127
+ Content-Length:
1128
+ - '50'
1129
+ Connection:
1130
+ - keep-alive
1131
+ Server:
1132
+ - nginx
1133
+ X-Jussi-Request-Id:
1134
+ - '001075839231296292'
1135
+ X-Amzn-Trace-Id:
1136
+ - Root=1-5fa783b9-225d92be6245faca527754b2
1137
+ Access-Control-Allow-Origin:
1138
+ - "*"
1139
+ Access-Control-Allow-Methods:
1140
+ - GET, POST, OPTIONS
1141
+ Access-Control-Allow-Headers:
1142
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1143
+ Strict-Transport-Security:
1144
+ - max-age=31557600; includeSubDomains; preload
1145
+ Content-Security-Policy:
1146
+ - upgrade-insecure-requests
1147
+ body:
1148
+ encoding: UTF-8
1149
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":55}'
1150
+ recorded_at: Sun, 08 Nov 2020 05:35:55 GMT
1151
+ - request:
1152
+ method: post
1153
+ uri: https://api.steemitdev.com/
1154
+ body:
1155
+ encoding: UTF-8
1156
+ string: '{"jsonrpc":"2.0","id":37,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
1157
+ headers:
1158
+ Content-Type:
1159
+ - application/json; charset=utf-8
1160
+ User-Agent:
1161
+ - steem-ruby/0.9.5
1162
+ Accept-Encoding:
1163
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1164
+ Accept:
1165
+ - "*/*"
1166
+ Host:
1167
+ - api.steemit.com
1168
+ Content-Length:
1169
+ - '91'
1170
+ response:
1171
+ status:
1172
+ code: 200
1173
+ message: OK
1174
+ headers:
1175
+ Date:
1176
+ - Sun, 08 Nov 2020 05:39:24 GMT
1177
+ Content-Type:
1178
+ - application/json
1179
+ Content-Length:
1180
+ - '77'
1181
+ Connection:
1182
+ - keep-alive
1183
+ Server:
1184
+ - nginx
1185
+ X-Jussi-Request-Id:
1186
+ - '000660829524379820'
1187
+ X-Amzn-Trace-Id:
1188
+ - Root=1-5fa7848a-64f5be6307aca45442f6712e
1189
+ Access-Control-Allow-Origin:
1190
+ - "*"
1191
+ Access-Control-Allow-Methods:
1192
+ - GET, POST, OPTIONS
1193
+ Access-Control-Allow-Headers:
1194
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1195
+ Strict-Transport-Security:
1196
+ - max-age=31557600; includeSubDomains; preload
1197
+ Content-Security-Policy:
1198
+ - upgrade-insecure-requests
1199
+ body:
1200
+ encoding: UTF-8
1201
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":37}'
1202
+ recorded_at: Sun, 08 Nov 2020 05:39:24 GMT
1203
+ - request:
1204
+ method: post
1205
+ uri: https://api.steemitdev.com/
1206
+ body:
1207
+ encoding: UTF-8
1208
+ string: '{"jsonrpc":"2.0","id":38,"method":"account_by_key_api.get_key_references","params":{}}'
1209
+ headers:
1210
+ Content-Type:
1211
+ - application/json; charset=utf-8
1212
+ User-Agent:
1213
+ - steem-ruby/0.9.5
1214
+ Accept-Encoding:
1215
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1216
+ Accept:
1217
+ - "*/*"
1218
+ Host:
1219
+ - api.steemit.com
1220
+ Content-Length:
1221
+ - '118'
1222
+ response:
1223
+ status:
1224
+ code: 200
1225
+ message: OK
1226
+ headers:
1227
+ Date:
1228
+ - Sun, 08 Nov 2020 05:39:26 GMT
1229
+ Content-Type:
1230
+ - application/json
1231
+ Content-Length:
1232
+ - '50'
1233
+ Connection:
1234
+ - keep-alive
1235
+ Server:
1236
+ - nginx
1237
+ X-Jussi-Request-Id:
1238
+ - '000057118185822933'
1239
+ X-Amzn-Trace-Id:
1240
+ - Root=1-5fa7848c-4fc0b5f6545edc3c62c036df
1241
+ Access-Control-Allow-Origin:
1242
+ - "*"
1243
+ Access-Control-Allow-Methods:
1244
+ - GET, POST, OPTIONS
1245
+ Access-Control-Allow-Headers:
1246
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1247
+ Strict-Transport-Security:
1248
+ - max-age=31557600; includeSubDomains; preload
1249
+ Content-Security-Policy:
1250
+ - upgrade-insecure-requests
1251
+ body:
1252
+ encoding: UTF-8
1253
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":38}'
1254
+ recorded_at: Sun, 08 Nov 2020 05:39:26 GMT
1255
+ - request:
1256
+ method: post
1257
+ uri: https://api.steemitdev.com/
1258
+ body:
1259
+ encoding: UTF-8
1260
+ string: '{"jsonrpc":"2.0","id":14,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
1261
+ headers:
1262
+ Content-Type:
1263
+ - application/json; charset=utf-8
1264
+ User-Agent:
1265
+ - steem-ruby/0.9.5
1266
+ Accept-Encoding:
1267
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1268
+ Accept:
1269
+ - "*/*"
1270
+ Host:
1271
+ - api.steemit.com
1272
+ Content-Length:
1273
+ - '68'
1274
+ response:
1275
+ status:
1276
+ code: 200
1277
+ message: OK
1278
+ headers:
1279
+ Date:
1280
+ - Sun, 08 Nov 2020 05:46:57 GMT
1281
+ Content-Type:
1282
+ - application/json
1283
+ Content-Length:
1284
+ - '77'
1285
+ Connection:
1286
+ - keep-alive
1287
+ Server:
1288
+ - nginx
1289
+ X-Jussi-Request-Id:
1290
+ - '000289545466559607'
1291
+ X-Amzn-Trace-Id:
1292
+ - Root=1-5fa7864f-684c025b7ef505b633816194
1293
+ Access-Control-Allow-Origin:
1294
+ - "*"
1295
+ Access-Control-Allow-Methods:
1296
+ - GET, POST, OPTIONS
1297
+ Access-Control-Allow-Headers:
1298
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1299
+ Strict-Transport-Security:
1300
+ - max-age=31557600; includeSubDomains; preload
1301
+ Content-Security-Policy:
1302
+ - upgrade-insecure-requests
1303
+ body:
1304
+ encoding: UTF-8
1305
+ string: '{"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}},"id":14}'
1306
+ recorded_at: Sun, 08 Nov 2020 05:46:57 GMT
1307
+ - request:
1308
+ method: post
1309
+ uri: https://api.steemitdev.com/
1310
+ body:
1311
+ encoding: UTF-8
1312
+ string: '{"jsonrpc":"2.0","id":15,"method":"account_by_key_api.get_key_references","params":{}}'
1313
+ headers:
1314
+ Content-Type:
1315
+ - application/json; charset=utf-8
1316
+ User-Agent:
1317
+ - steem-ruby/0.9.5
1318
+ Accept-Encoding:
1319
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1320
+ Accept:
1321
+ - "*/*"
1322
+ Host:
1323
+ - api.steemit.com
1324
+ Content-Length:
1325
+ - '118'
1326
+ response:
1327
+ status:
1328
+ code: 200
1329
+ message: OK
1330
+ headers:
1331
+ Date:
1332
+ - Sun, 08 Nov 2020 05:46:59 GMT
1333
+ Content-Type:
1334
+ - application/json
1335
+ Content-Length:
1336
+ - '50'
1337
+ Connection:
1338
+ - keep-alive
1339
+ Server:
1340
+ - nginx
1341
+ X-Jussi-Request-Id:
1342
+ - '000879096027988142'
1343
+ X-Amzn-Trace-Id:
1344
+ - Root=1-5fa78651-0fe8b5bc58826406623984bf
1345
+ Access-Control-Allow-Origin:
1346
+ - "*"
1347
+ Access-Control-Allow-Methods:
1348
+ - GET, POST, OPTIONS
1349
+ Access-Control-Allow-Headers:
1350
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1351
+ Strict-Transport-Security:
1352
+ - max-age=31557600; includeSubDomains; preload
1353
+ Content-Security-Policy:
1354
+ - upgrade-insecure-requests
1355
+ body:
1356
+ encoding: UTF-8
1357
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":15}'
1358
+ recorded_at: Sun, 08 Nov 2020 05:46:59 GMT
1359
+ - request:
1360
+ method: post
1361
+ uri: https://api.steemitdev.com/
1362
+ body:
1363
+ encoding: UTF-8
1364
+ string: '{"jsonrpc":"2.0","id":48,"method":"jsonrpc.get_signature","params":{"method":"account_by_key_api.get_key_references"}}'
1365
+ headers:
1366
+ Content-Type:
1367
+ - application/json; charset=utf-8
1368
+ User-Agent:
1369
+ - steem-ruby/0.9.5
1370
+ Accept-Encoding:
1371
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1372
+ Accept:
1373
+ - "*/*"
1374
+ Host:
1375
+ - api.steemitdev.com
1376
+ Content-Length:
1377
+ - '92'
1378
+ response:
1379
+ status:
1380
+ code: 200
1381
+ message: OK
1382
+ headers:
1383
+ Date:
1384
+ - Sun, 08 Nov 2020 06:01:35 GMT
1385
+ Content-Type:
1386
+ - application/json
1387
+ Content-Length:
1388
+ - '77'
1389
+ Connection:
1390
+ - keep-alive
1391
+ Server:
1392
+ - nginx
1393
+ X-Jussi-Cache-Hit:
1394
+ - appbase.jsonrpc.get_signature.params={"method":"account_by_key_api.get_key_references"}
1395
+ X-Jussi-Request-Id:
1396
+ - '000731511897070317'
1397
+ X-Amzn-Trace-Id:
1398
+ - Root=1-5fa789bf-26f25574184c179a1c23cb69
1399
+ Access-Control-Allow-Origin:
1400
+ - "*"
1401
+ Access-Control-Allow-Methods:
1402
+ - GET, POST, OPTIONS
1403
+ Access-Control-Allow-Headers:
1404
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1405
+ Strict-Transport-Security:
1406
+ - max-age=31557600; includeSubDomains; preload
1407
+ Content-Security-Policy:
1408
+ - upgrade-insecure-requests
1409
+ body:
1410
+ encoding: UTF-8
1411
+ string: '{"id":48,"jsonrpc":"2.0","result":{"args":{"keys":[]},"ret":{"accounts":[]}}}'
1412
+ recorded_at: Sun, 08 Nov 2020 06:01:35 GMT
1413
+ - request:
1414
+ method: post
1415
+ uri: https://api.steemitdev.com/
1416
+ body:
1417
+ encoding: UTF-8
1418
+ string: '{"jsonrpc":"2.0","id":49,"method":"account_by_key_api.get_key_references","params":{}}'
1419
+ headers:
1420
+ Content-Type:
1421
+ - application/json; charset=utf-8
1422
+ User-Agent:
1423
+ - steem-ruby/0.9.5
1424
+ Accept-Encoding:
1425
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1426
+ Accept:
1427
+ - "*/*"
1428
+ Host:
1429
+ - api.steemitdev.com
1430
+ Content-Length:
1431
+ - '118'
1432
+ response:
1433
+ status:
1434
+ code: 200
1435
+ message: OK
1436
+ headers:
1437
+ Date:
1438
+ - Sun, 08 Nov 2020 06:01:35 GMT
1439
+ Content-Type:
1440
+ - application/json
1441
+ Content-Length:
1442
+ - '50'
1443
+ Connection:
1444
+ - keep-alive
1445
+ Server:
1446
+ - nginx
1447
+ X-Jussi-Request-Id:
1448
+ - '000026181487161995'
1449
+ X-Amzn-Trace-Id:
1450
+ - Root=1-5fa789bf-6b8c1e0b6a4da92629ebf6ef
1451
+ Access-Control-Allow-Origin:
1452
+ - "*"
1453
+ Access-Control-Allow-Methods:
1454
+ - GET, POST, OPTIONS
1455
+ Access-Control-Allow-Headers:
1456
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
1457
+ Strict-Transport-Security:
1458
+ - max-age=31557600; includeSubDomains; preload
1459
+ Content-Security-Policy:
1460
+ - upgrade-insecure-requests
1461
+ body:
1462
+ encoding: UTF-8
1463
+ string: '{"jsonrpc":"2.0","result":{"accounts":[]},"id":49}'
1464
+ recorded_at: Sun, 08 Nov 2020 06:01:35 GMT
1465
+ recorded_with: VCR 6.0.0