radiator 0.4.5 → 0.4.8.pre.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +2 -0
- data/README.md +11 -11
- data/Rakefile +50 -20
- data/lib/radiator.rb +3 -1
- data/lib/radiator/api.rb +105 -14
- data/lib/radiator/bridge.rb +34 -0
- data/lib/radiator/chain_config.rb +9 -2
- data/lib/radiator/database_api.rb +1 -1
- data/lib/radiator/follow_api.rb +1 -1
- data/lib/radiator/market_history_api.rb +1 -1
- data/lib/radiator/operation.rb +3 -2
- data/lib/radiator/operation_types.rb +43 -27
- data/lib/radiator/ssc/base_steem_smart_contract_rpc.rb +52 -10
- data/lib/radiator/ssc/blockchain.rb +10 -0
- data/lib/radiator/ssc/contracts.rb +17 -0
- data/lib/radiator/stream.rb +15 -6
- data/lib/radiator/transaction.rb +41 -1
- data/lib/radiator/type/amount.rb +26 -50
- data/lib/radiator/type/beneficiaries.rb +8 -1
- data/lib/radiator/type/price.rb +2 -2
- data/lib/radiator/version.rb +1 -1
- data/radiator.gemspec +15 -13
- data/test/fixtures/empty.json +1 -0
- data/test/fixtures/error.json +29 -0
- data/test/fixtures/follow_api_get_followers.json +1 -0
- data/test/fixtures/get_account.json +165 -0
- data/test/fixtures/get_account_count.json +1 -0
- data/test/fixtures/get_account_references.json +1 -0
- data/test/fixtures/get_block.json +193 -0
- data/test/fixtures/get_dynamic_global_properties.json +32 -0
- data/test/fixtures/get_feed_history.json +684 -0
- data/test/fixtures/get_hardfork_version.json +1 -0
- data/test/fixtures/get_key_references.json +14 -0
- data/test/fixtures/get_stats_for_time.json +57 -0
- data/test/fixtures/get_vesting_delegation.json +936 -0
- data/test/fixtures/golos_get_dynamic_global_properties.json +32 -0
- data/test/fixtures/market_history_api_get_market_history_buckets.json +1 -0
- data/test/fixtures/market_history_api_get_order_book.json +109 -0
- data/test/fixtures/market_history_api_get_recent_trades.json +55 -0
- data/test/fixtures/market_history_api_get_ticker.json +11 -0
- data/test/fixtures/market_history_api_get_volume.json +1 -0
- data/test/fixtures/null.json +1 -0
- data/test/fixtures/vcr_cassettes/account_by_key_api_all_methods.yml +631 -0
- data/test/fixtures/vcr_cassettes/account_by_key_api_jsonrpc.yml +52 -0
- data/test/fixtures/vcr_cassettes/all_methods.yml +18155 -0
- data/test/fixtures/vcr_cassettes/api_all_methods.yml +13419 -0
- data/test/fixtures/vcr_cassettes/base_per_debt.yml +5408 -0
- data/test/fixtures/vcr_cassettes/base_per_mvest.yml +4351 -0
- data/test/fixtures/vcr_cassettes/block_time.yml +3687 -0
- data/test/fixtures/vcr_cassettes/broadcast_transaction.yml +1186 -0
- data/test/fixtures/vcr_cassettes/condenser_all_all_methods.yml +13462 -0
- data/test/fixtures/vcr_cassettes/condenser_api_jsonrpc.yml +51 -0
- data/test/fixtures/vcr_cassettes/expiration_initialize.yml +3997 -0
- data/test/fixtures/vcr_cassettes/find_account.yml +4004 -0
- data/test/fixtures/vcr_cassettes/find_block.yml +3946 -0
- data/test/fixtures/vcr_cassettes/find_comment.yml +12457 -0
- data/test/fixtures/vcr_cassettes/follow_api_jsonrpc.yml +52 -0
- data/test/fixtures/vcr_cassettes/get_account_count.yml +627 -0
- data/test/fixtures/vcr_cassettes/get_account_references.yml +663 -0
- data/test/fixtures/vcr_cassettes/get_accounts.yml +735 -0
- data/test/fixtures/vcr_cassettes/get_accounts_no_argument.yml +663 -0
- data/test/fixtures/vcr_cassettes/get_dynamic_global_properties.yml +721 -0
- data/test/fixtures/vcr_cassettes/get_feed_history.yml +1201 -0
- data/test/fixtures/vcr_cassettes/get_hardfork_version.yml +629 -0
- data/test/fixtures/vcr_cassettes/get_key_references.yml +1091 -0
- data/test/fixtures/vcr_cassettes/get_market_history.yml +1147 -0
- data/test/fixtures/vcr_cassettes/get_market_history_buckets.yml +1147 -0
- data/test/fixtures/vcr_cassettes/get_order_book.yml +1195 -0
- data/test/fixtures/vcr_cassettes/get_recent_trades.yml +1147 -0
- data/test/fixtures/vcr_cassettes/get_ticker.yml +1151 -0
- data/test/fixtures/vcr_cassettes/get_trade_history.yml +1153 -0
- data/test/fixtures/vcr_cassettes/get_vesting_delegations.yml +575 -0
- data/test/fixtures/vcr_cassettes/get_volume.yml +1155 -0
- data/test/fixtures/vcr_cassettes/get_witness_by_account.yml +627 -0
- data/test/fixtures/vcr_cassettes/look_up_witnesses.yml +575 -0
- data/test/fixtures/vcr_cassettes/market_history_api_all_methods.yml +4373 -0
- data/test/fixtures/vcr_cassettes/network_broadcast_api_all_methods.yml +1288 -0
- data/test/fixtures/vcr_cassettes/properties.yml +3992 -0
- data/test/fixtures/vcr_cassettes/recover_transaction.yml +1211 -0
- data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info.yml +92 -0
- data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info_invalid.yml +90 -0
- data/test/fixtures/vcr_cassettes/ssc_blockchain_latest_block_info.yml +91 -0
- data/test/fixtures/vcr_cassettes/ssc_blockchain_transaction_info.yml +92 -0
- data/test/fixtures/vcr_cassettes/ssc_contracts_contract.yml +366 -0
- data/test/fixtures/vcr_cassettes/ssc_contracts_find.yml +91 -0
- data/test/fixtures/vcr_cassettes/ssc_contracts_find_one.yml +89 -0
- data/test/fixtures/vcr_cassettes/stream_jsonrpc.yml +9175 -0
- data/test/fixtures/vcr_cassettes/transaction_expiration_initialize_nil.yml +3743 -0
- data/test/fixtures/vcr_cassettes/transaction_jsonrpc.yml +151 -0
- data/test/fixtures/vcr_cassettes/unknown_chain_id.yml +3869 -0
- data/test/fixtures/vcr_cassettes/valid_chains.yml +3427 -0
- data/test/radiator/account_by_key_api_test.rb +46 -0
- data/test/radiator/api_test.rb +135 -0
- data/test/radiator/chain_stats_api_test.rb +49 -0
- data/test/radiator/chain_test.rb +153 -0
- data/test/radiator/condenser_api_test.rb +48 -0
- data/test/radiator/follow_api_test.rb +48 -0
- data/test/radiator/market_history_api_test.rb +100 -0
- data/test/radiator/network_broadcast_api_test.rb +48 -0
- data/test/radiator/operation_test.rb +117 -0
- data/test/radiator/ssc/blockchain_test.rb +58 -0
- data/test/radiator/ssc/contracts_test.rb +65 -0
- data/test/radiator/stream_test.rb +48 -0
- data/test/radiator/tag_api_test.rb +40 -0
- data/test/radiator/transaction_test.rb +755 -0
- data/test/test_helper.rb +66 -0
- metadata +190 -80
- data/.codeclimate.yml +0 -19
- data/.gitignore +0 -52
- data/.travis.yml +0 -23
- data/gource.sh +0 -8
- data/images/Anthony Martin.png +0 -0
- data/images/Marvin Hofmann.jpg +0 -0
- data/images/Marvin Hofmann.png +0 -0
- data/lib/steem.rb +0 -17
@@ -0,0 +1 @@
|
|
1
|
+
{"id":1,"result":"0.13.0"}
|
@@ -0,0 +1,57 @@
|
|
1
|
+
{
|
2
|
+
"id":1,
|
3
|
+
"result":{
|
4
|
+
"blocks":1196,
|
5
|
+
"bandwidth":904154,
|
6
|
+
"operations":3900,
|
7
|
+
"transactions":3824,
|
8
|
+
"transfers":22,
|
9
|
+
"steem_transferred":3824028,
|
10
|
+
"sbd_transferred":20001,
|
11
|
+
"sbd_paid_as_interest":0,
|
12
|
+
"accounts_created":8,
|
13
|
+
"paid_accounts_created":8,
|
14
|
+
"mined_accounts_created":0,
|
15
|
+
"total_comments":277,
|
16
|
+
"total_comment_edits":49,
|
17
|
+
"total_comments_deleted":5,
|
18
|
+
"root_comments":67,
|
19
|
+
"root_comment_edits":30,
|
20
|
+
"root_comments_deleted":0,
|
21
|
+
"replies":210,
|
22
|
+
"reply_edits":19,
|
23
|
+
"replies_deleted":5,
|
24
|
+
"total_votes":3314,
|
25
|
+
"new_votes":15,
|
26
|
+
"changed_votes":3299,
|
27
|
+
"total_root_votes":3059,
|
28
|
+
"new_root_votes":15,
|
29
|
+
"changed_root_votes":3044,
|
30
|
+
"total_reply_votes":255,
|
31
|
+
"new_reply_votes":0,
|
32
|
+
"changed_reply_votes":255,
|
33
|
+
"payouts":0,
|
34
|
+
"sbd_paid_to_authors":0,
|
35
|
+
"vests_paid_to_authors":0,
|
36
|
+
"vests_paid_to_curators":0,
|
37
|
+
"liquidity_rewards_paid":0,
|
38
|
+
"transfers_to_vesting":21,
|
39
|
+
"steem_vested":3735658,
|
40
|
+
"new_vesting_withdrawal_requests":0,
|
41
|
+
"modified_vesting_withdrawal_requests":0,
|
42
|
+
"vesting_withdraw_rate_delta":0,
|
43
|
+
"vesting_withdrawals_processed":0,
|
44
|
+
"finished_vesting_withdrawals":0,
|
45
|
+
"vests_withdrawn":0,
|
46
|
+
"vests_transferred":0,
|
47
|
+
"sbd_conversion_requests_created":2,
|
48
|
+
"sbd_to_be_converted":101650,
|
49
|
+
"sbd_conversion_requests_filled":0,
|
50
|
+
"steem_converted":0,
|
51
|
+
"limit_orders_created":12,
|
52
|
+
"limit_orders_filled":0,
|
53
|
+
"limit_orders_cancelled":1,
|
54
|
+
"total_pow":0,
|
55
|
+
"estimated_hashpower":"0"
|
56
|
+
}
|
57
|
+
}
|
@@ -0,0 +1,936 @@
|
|
1
|
+
{
|
2
|
+
"id":1,
|
3
|
+
"result":[
|
4
|
+
{
|
5
|
+
"id":122792,
|
6
|
+
"delegator":"minnowbooster",
|
7
|
+
"delegatee":"agentsofmars",
|
8
|
+
"vesting_shares":"136500.000000 VESTS",
|
9
|
+
"min_delegation_time":"2017-07-07T22:23:48"
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"id":257939,
|
13
|
+
"delegator":"minnowbooster",
|
14
|
+
"delegatee":"akashas",
|
15
|
+
"vesting_shares":"787500.000000 VESTS",
|
16
|
+
"min_delegation_time":"2017-09-20T15:12:15"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"id":235904,
|
20
|
+
"delegator":"minnowbooster",
|
21
|
+
"delegatee":"alamin7",
|
22
|
+
"vesting_shares":"157500.000000 VESTS",
|
23
|
+
"min_delegation_time":"2017-09-06T19:10:15"
|
24
|
+
},
|
25
|
+
{
|
26
|
+
"id":236728,
|
27
|
+
"delegator":"minnowbooster",
|
28
|
+
"delegatee":"albertvhons",
|
29
|
+
"vesting_shares":"315000.000000 VESTS",
|
30
|
+
"min_delegation_time":"2017-09-07T03:05:06"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"id":233474,
|
34
|
+
"delegator":"minnowbooster",
|
35
|
+
"delegatee":"ana-maria",
|
36
|
+
"vesting_shares":"630000.000000 VESTS",
|
37
|
+
"min_delegation_time":"2017-09-05T06:44:27"
|
38
|
+
},
|
39
|
+
{
|
40
|
+
"id":258936,
|
41
|
+
"delegator":"minnowbooster",
|
42
|
+
"delegatee":"andalucia",
|
43
|
+
"vesting_shares":"1260000.000000 VESTS",
|
44
|
+
"min_delegation_time":"2017-09-21T10:34:30"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"id":213597,
|
48
|
+
"delegator":"minnowbooster",
|
49
|
+
"delegatee":"animus",
|
50
|
+
"vesting_shares":"240817.500000 VESTS",
|
51
|
+
"min_delegation_time":"2017-08-25T19:35:24"
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"id":233676,
|
55
|
+
"delegator":"minnowbooster",
|
56
|
+
"delegatee":"anonimous",
|
57
|
+
"vesting_shares":"419974.800000 VESTS",
|
58
|
+
"min_delegation_time":"2017-09-05T11:35:12"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"id":235626,
|
62
|
+
"delegator":"minnowbooster",
|
63
|
+
"delegatee":"arini",
|
64
|
+
"vesting_shares":"226800.000000 VESTS",
|
65
|
+
"min_delegation_time":"2017-09-06T11:50:42"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"id":235907,
|
69
|
+
"delegator":"minnowbooster",
|
70
|
+
"delegatee":"awriter",
|
71
|
+
"vesting_shares":"817977.300000 VESTS",
|
72
|
+
"min_delegation_time":"2017-09-06T19:17:42"
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"id":235172,
|
76
|
+
"delegator":"minnowbooster",
|
77
|
+
"delegatee":"bago",
|
78
|
+
"vesting_shares":"866250.000000 VESTS",
|
79
|
+
"min_delegation_time":"2017-09-06T01:42:27"
|
80
|
+
},
|
81
|
+
{
|
82
|
+
"id":234828,
|
83
|
+
"delegator":"minnowbooster",
|
84
|
+
"delegatee":"barbara-orenya",
|
85
|
+
"vesting_shares":"472500.000000 VESTS",
|
86
|
+
"min_delegation_time":"2017-09-05T20:39:33"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"id":253934,
|
90
|
+
"delegator":"minnowbooster",
|
91
|
+
"delegatee":"bigboysdream",
|
92
|
+
"vesting_shares":"675045.000000 VESTS",
|
93
|
+
"min_delegation_time":"2017-09-17T18:26:27"
|
94
|
+
},
|
95
|
+
{
|
96
|
+
"id":226587,
|
97
|
+
"delegator":"minnowbooster",
|
98
|
+
"delegatee":"brumest",
|
99
|
+
"vesting_shares":"590625.000000 VESTS",
|
100
|
+
"min_delegation_time":"2017-09-01T17:40:12"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"id":209988,
|
104
|
+
"delegator":"minnowbooster",
|
105
|
+
"delegatee":"cabbagepatch",
|
106
|
+
"vesting_shares":"315000.000000 VESTS",
|
107
|
+
"min_delegation_time":"2017-08-23T19:26:15"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"id":247344,
|
111
|
+
"delegator":"minnowbooster",
|
112
|
+
"delegatee":"cannabiscurator",
|
113
|
+
"vesting_shares":"787500.000000 VESTS",
|
114
|
+
"min_delegation_time":"2017-09-13T08:30:36"
|
115
|
+
},
|
116
|
+
{
|
117
|
+
"id":220718,
|
118
|
+
"delegator":"minnowbooster",
|
119
|
+
"delegatee":"centerlink",
|
120
|
+
"vesting_shares":"2362500.000000 VESTS",
|
121
|
+
"min_delegation_time":"2017-08-30T01:50:06"
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"id":234727,
|
125
|
+
"delegator":"minnowbooster",
|
126
|
+
"delegatee":"christheaudioguy",
|
127
|
+
"vesting_shares":"315000.000000 VESTS",
|
128
|
+
"min_delegation_time":"2017-09-05T19:39:12"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"id":233057,
|
132
|
+
"delegator":"minnowbooster",
|
133
|
+
"delegatee":"cristo",
|
134
|
+
"vesting_shares":"78750.000000 VESTS",
|
135
|
+
"min_delegation_time":"2017-09-04T23:16:12"
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"id":252902,
|
139
|
+
"delegator":"minnowbooster",
|
140
|
+
"delegatee":"cryptoblog",
|
141
|
+
"vesting_shares":"78750.000000 VESTS",
|
142
|
+
"min_delegation_time":"2017-09-15T22:05:30"
|
143
|
+
},
|
144
|
+
{
|
145
|
+
"id":235662,
|
146
|
+
"delegator":"minnowbooster",
|
147
|
+
"delegatee":"cryptomaker",
|
148
|
+
"vesting_shares":"157500.000000 VESTS",
|
149
|
+
"min_delegation_time":"2017-09-06T12:48:12"
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"id":210025,
|
153
|
+
"delegator":"minnowbooster",
|
154
|
+
"delegatee":"d-pend",
|
155
|
+
"vesting_shares":"330897.000000 VESTS",
|
156
|
+
"min_delegation_time":"2017-08-23T19:43:09"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"id":176277,
|
160
|
+
"delegator":"minnowbooster",
|
161
|
+
"delegatee":"damla",
|
162
|
+
"vesting_shares":"315000.000000 VESTS",
|
163
|
+
"min_delegation_time":"2017-08-03T21:21:36"
|
164
|
+
},
|
165
|
+
{
|
166
|
+
"id":247172,
|
167
|
+
"delegator":"minnowbooster",
|
168
|
+
"delegatee":"danieldoughty",
|
169
|
+
"vesting_shares":"2106169.800000 VESTS",
|
170
|
+
"min_delegation_time":"2017-09-13T00:57:48"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"id":243647,
|
174
|
+
"delegator":"minnowbooster",
|
175
|
+
"delegatee":"dbzfan4awhile",
|
176
|
+
"vesting_shares":"1049974.800000 VESTS",
|
177
|
+
"min_delegation_time":"2017-09-11T12:51:15"
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"id":112637,
|
181
|
+
"delegator":"minnowbooster",
|
182
|
+
"delegatee":"deveerei",
|
183
|
+
"vesting_shares":"39083.333333 VESTS",
|
184
|
+
"min_delegation_time":"2017-06-30T09:41:54"
|
185
|
+
},
|
186
|
+
{
|
187
|
+
"id":266350,
|
188
|
+
"delegator":"minnowbooster",
|
189
|
+
"delegatee":"diebaasman",
|
190
|
+
"vesting_shares":"4221000.000000 VESTS",
|
191
|
+
"min_delegation_time":"2017-09-26T06:26:15"
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"id":252892,
|
195
|
+
"delegator":"minnowbooster",
|
196
|
+
"delegatee":"digitalplayer",
|
197
|
+
"vesting_shares":"110722.500000 VESTS",
|
198
|
+
"min_delegation_time":"2017-09-15T21:51:06"
|
199
|
+
},
|
200
|
+
{
|
201
|
+
"id":131784,
|
202
|
+
"delegator":"minnowbooster",
|
203
|
+
"delegatee":"discordia",
|
204
|
+
"vesting_shares":"5209157.100000 VESTS",
|
205
|
+
"min_delegation_time":"2017-07-11T10:34:24"
|
206
|
+
},
|
207
|
+
{
|
208
|
+
"id":233766,
|
209
|
+
"delegator":"minnowbooster",
|
210
|
+
"delegatee":"divina156",
|
211
|
+
"vesting_shares":"315000.000000 VESTS",
|
212
|
+
"min_delegation_time":"2017-09-05T13:53:21"
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"id":226501,
|
216
|
+
"delegator":"minnowbooster",
|
217
|
+
"delegatee":"dolov",
|
218
|
+
"vesting_shares":"787500.000000 VESTS",
|
219
|
+
"min_delegation_time":"2017-09-01T15:03:12"
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"id":237698,
|
223
|
+
"delegator":"minnowbooster",
|
224
|
+
"delegatee":"dragon40",
|
225
|
+
"vesting_shares":"367500.000000 VESTS",
|
226
|
+
"min_delegation_time":"2017-09-07T14:48:36"
|
227
|
+
},
|
228
|
+
{
|
229
|
+
"id":210020,
|
230
|
+
"delegator":"minnowbooster",
|
231
|
+
"delegatee":"dreamscape",
|
232
|
+
"vesting_shares":"315000.000000 VESTS",
|
233
|
+
"min_delegation_time":"2017-08-23T19:42:09"
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"id":119895,
|
237
|
+
"delegator":"minnowbooster",
|
238
|
+
"delegatee":"duckmast3r",
|
239
|
+
"vesting_shares":"643309.800000 VESTS",
|
240
|
+
"min_delegation_time":"2017-07-04T01:24:00"
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"id":226622,
|
244
|
+
"delegator":"minnowbooster",
|
245
|
+
"delegatee":"emcvay",
|
246
|
+
"vesting_shares":"157500.000000 VESTS",
|
247
|
+
"min_delegation_time":"2017-09-01T18:38:33"
|
248
|
+
},
|
249
|
+
{
|
250
|
+
"id":262368,
|
251
|
+
"delegator":"minnowbooster",
|
252
|
+
"delegatee":"ew-and-patterns",
|
253
|
+
"vesting_shares":"3937500.000000 VESTS",
|
254
|
+
"min_delegation_time":"2017-09-23T17:25:12"
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"id":235860,
|
258
|
+
"delegator":"minnowbooster",
|
259
|
+
"delegatee":"exploretraveler",
|
260
|
+
"vesting_shares":"5512500.000000 VESTS",
|
261
|
+
"min_delegation_time":"2017-09-06T17:25:51"
|
262
|
+
},
|
263
|
+
{
|
264
|
+
"id":221803,
|
265
|
+
"delegator":"minnowbooster",
|
266
|
+
"delegatee":"fahmidamti",
|
267
|
+
"vesting_shares":"157500.000000 VESTS",
|
268
|
+
"min_delegation_time":"2017-08-30T10:13:12"
|
269
|
+
},
|
270
|
+
{
|
271
|
+
"id":261544,
|
272
|
+
"delegator":"minnowbooster",
|
273
|
+
"delegatee":"feedyourminnows",
|
274
|
+
"vesting_shares":"926667.000000 VESTS",
|
275
|
+
"min_delegation_time":"2017-09-23T14:13:54"
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"id":167973,
|
279
|
+
"delegator":"minnowbooster",
|
280
|
+
"delegatee":"followforupvotes",
|
281
|
+
"vesting_shares":"778759.800000 VESTS",
|
282
|
+
"min_delegation_time":"2017-07-30T17:16:54"
|
283
|
+
},
|
284
|
+
{
|
285
|
+
"id":253380,
|
286
|
+
"delegator":"minnowbooster",
|
287
|
+
"delegatee":"funnyquotes",
|
288
|
+
"vesting_shares":"147027.300000 VESTS",
|
289
|
+
"min_delegation_time":"2017-09-16T14:38:18"
|
290
|
+
},
|
291
|
+
{
|
292
|
+
"id":235853,
|
293
|
+
"delegator":"minnowbooster",
|
294
|
+
"delegatee":"gergi6a",
|
295
|
+
"vesting_shares":"3228750.000000 VESTS",
|
296
|
+
"min_delegation_time":"2017-09-06T17:13:36"
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"id":253265,
|
300
|
+
"delegator":"minnowbooster",
|
301
|
+
"delegatee":"germansailor",
|
302
|
+
"vesting_shares":"1890000.000000 VESTS",
|
303
|
+
"min_delegation_time":"2017-09-16T11:19:06"
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"id":191825,
|
307
|
+
"delegator":"minnowbooster",
|
308
|
+
"delegatee":"heimatliebe",
|
309
|
+
"vesting_shares":"88515.000000 VESTS",
|
310
|
+
"min_delegation_time":"2017-08-15T14:22:09"
|
311
|
+
},
|
312
|
+
{
|
313
|
+
"id":227146,
|
314
|
+
"delegator":"minnowbooster",
|
315
|
+
"delegatee":"hoddle4life",
|
316
|
+
"vesting_shares":"210027.300000 VESTS",
|
317
|
+
"min_delegation_time":"2017-09-01T21:13:48"
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"id":225506,
|
321
|
+
"delegator":"minnowbooster",
|
322
|
+
"delegatee":"how2steemit",
|
323
|
+
"vesting_shares":"315000.000000 VESTS",
|
324
|
+
"min_delegation_time":"2017-08-31T19:45:54"
|
325
|
+
},
|
326
|
+
{
|
327
|
+
"id":179526,
|
328
|
+
"delegator":"minnowbooster",
|
329
|
+
"delegatee":"hrsagar",
|
330
|
+
"vesting_shares":"419737.500000 VESTS",
|
331
|
+
"min_delegation_time":"2017-08-06T20:00:39"
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"id":228057,
|
335
|
+
"delegator":"minnowbooster",
|
336
|
+
"delegatee":"hugobro",
|
337
|
+
"vesting_shares":"106864.800000 VESTS",
|
338
|
+
"min_delegation_time":"2017-09-02T06:21:33"
|
339
|
+
},
|
340
|
+
{
|
341
|
+
"id":251361,
|
342
|
+
"delegator":"minnowbooster",
|
343
|
+
"delegatee":"ijoel",
|
344
|
+
"vesting_shares":"1639890.000000 VESTS",
|
345
|
+
"min_delegation_time":"2017-09-15T00:32:12"
|
346
|
+
},
|
347
|
+
{
|
348
|
+
"id":239648,
|
349
|
+
"delegator":"minnowbooster",
|
350
|
+
"delegatee":"irwanumpal",
|
351
|
+
"vesting_shares":"315000.000000 VESTS",
|
352
|
+
"min_delegation_time":"2017-09-08T15:09:39"
|
353
|
+
},
|
354
|
+
{
|
355
|
+
"id":237358,
|
356
|
+
"delegator":"minnowbooster",
|
357
|
+
"delegatee":"jackorobin",
|
358
|
+
"vesting_shares":"630000.000000 VESTS",
|
359
|
+
"min_delegation_time":"2017-09-07T09:11:24"
|
360
|
+
},
|
361
|
+
{
|
362
|
+
"id":253503,
|
363
|
+
"delegator":"minnowbooster",
|
364
|
+
"delegatee":"jbp",
|
365
|
+
"vesting_shares":"392727.300000 VESTS",
|
366
|
+
"min_delegation_time":"2017-09-16T19:10:15"
|
367
|
+
},
|
368
|
+
{
|
369
|
+
"id":233750,
|
370
|
+
"delegator":"minnowbooster",
|
371
|
+
"delegatee":"joulia",
|
372
|
+
"vesting_shares":"78750.000000 VESTS",
|
373
|
+
"min_delegation_time":"2017-09-05T13:33:18"
|
374
|
+
},
|
375
|
+
{
|
376
|
+
"id":200504,
|
377
|
+
"delegator":"minnowbooster",
|
378
|
+
"delegatee":"jpederson96",
|
379
|
+
"vesting_shares":"673077.300000 VESTS",
|
380
|
+
"min_delegation_time":"2017-08-19T18:19:09"
|
381
|
+
},
|
382
|
+
{
|
383
|
+
"id":244444,
|
384
|
+
"delegator":"minnowbooster",
|
385
|
+
"delegatee":"juliank",
|
386
|
+
"vesting_shares":"4094212.500000 VESTS",
|
387
|
+
"min_delegation_time":"2017-09-11T21:55:21"
|
388
|
+
},
|
389
|
+
{
|
390
|
+
"id":262400,
|
391
|
+
"delegator":"minnowbooster",
|
392
|
+
"delegatee":"katyusa",
|
393
|
+
"vesting_shares":"3150000.000000 VESTS",
|
394
|
+
"min_delegation_time":"2017-09-23T17:34:12"
|
395
|
+
},
|
396
|
+
{
|
397
|
+
"id":264220,
|
398
|
+
"delegator":"minnowbooster",
|
399
|
+
"delegatee":"kayleigh-alesta",
|
400
|
+
"vesting_shares":"1575000.000000 VESTS",
|
401
|
+
"min_delegation_time":"2017-09-25T12:36:18"
|
402
|
+
},
|
403
|
+
{
|
404
|
+
"id":262396,
|
405
|
+
"delegator":"minnowbooster",
|
406
|
+
"delegatee":"keks",
|
407
|
+
"vesting_shares":"787500.000000 VESTS",
|
408
|
+
"min_delegation_time":"2017-09-23T17:33:12"
|
409
|
+
},
|
410
|
+
{
|
411
|
+
"id":189232,
|
412
|
+
"delegator":"minnowbooster",
|
413
|
+
"delegatee":"kemal13",
|
414
|
+
"vesting_shares":"210000.000000 VESTS",
|
415
|
+
"min_delegation_time":"2017-08-12T15:22:12"
|
416
|
+
},
|
417
|
+
{
|
418
|
+
"id":172735,
|
419
|
+
"delegator":"minnowbooster",
|
420
|
+
"delegatee":"killerwhale",
|
421
|
+
"vesting_shares":"2993287.500000 VESTS",
|
422
|
+
"min_delegation_time":"2017-08-02T03:55:42"
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"id":237269,
|
426
|
+
"delegator":"minnowbooster",
|
427
|
+
"delegatee":"kusadasi",
|
428
|
+
"vesting_shares":"756000.000000 VESTS",
|
429
|
+
"min_delegation_time":"2017-09-07T08:14:09"
|
430
|
+
},
|
431
|
+
{
|
432
|
+
"id":194698,
|
433
|
+
"delegator":"minnowbooster",
|
434
|
+
"delegatee":"lasper",
|
435
|
+
"vesting_shares":"1575000.000000 VESTS",
|
436
|
+
"min_delegation_time":"2017-08-16T13:46:12"
|
437
|
+
},
|
438
|
+
{
|
439
|
+
"id":260289,
|
440
|
+
"delegator":"minnowbooster",
|
441
|
+
"delegatee":"lavje",
|
442
|
+
"vesting_shares":"787500.000000 VESTS",
|
443
|
+
"min_delegation_time":"2017-09-22T19:08:36"
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"id":234470,
|
447
|
+
"delegator":"minnowbooster",
|
448
|
+
"delegatee":"linuxmom",
|
449
|
+
"vesting_shares":"630000.000000 VESTS",
|
450
|
+
"min_delegation_time":"2017-09-05T18:07:18"
|
451
|
+
},
|
452
|
+
{
|
453
|
+
"id":243657,
|
454
|
+
"delegator":"minnowbooster",
|
455
|
+
"delegatee":"luismy",
|
456
|
+
"vesting_shares":"551250.000000 VESTS",
|
457
|
+
"min_delegation_time":"2017-09-11T13:02:27"
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"id":258802,
|
461
|
+
"delegator":"minnowbooster",
|
462
|
+
"delegatee":"m11",
|
463
|
+
"vesting_shares":"3086687.100000 VESTS",
|
464
|
+
"min_delegation_time":"2017-09-21T07:09:12"
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"id":209995,
|
468
|
+
"delegator":"minnowbooster",
|
469
|
+
"delegatee":"m31",
|
470
|
+
"vesting_shares":"315000.000000 VESTS",
|
471
|
+
"min_delegation_time":"2017-08-23T19:29:09"
|
472
|
+
},
|
473
|
+
{
|
474
|
+
"id":224362,
|
475
|
+
"delegator":"minnowbooster",
|
476
|
+
"delegatee":"macbaren",
|
477
|
+
"vesting_shares":"945000.000000 VESTS",
|
478
|
+
"min_delegation_time":"2017-08-31T11:53:12"
|
479
|
+
},
|
480
|
+
{
|
481
|
+
"id":257913,
|
482
|
+
"delegator":"minnowbooster",
|
483
|
+
"delegatee":"madeve",
|
484
|
+
"vesting_shares":"1023750.000000 VESTS",
|
485
|
+
"min_delegation_time":"2017-09-20T14:04:15"
|
486
|
+
},
|
487
|
+
{
|
488
|
+
"id":118001,
|
489
|
+
"delegator":"minnowbooster",
|
490
|
+
"delegatee":"mahdiyari",
|
491
|
+
"vesting_shares":"840000.000000 VESTS",
|
492
|
+
"min_delegation_time":"2017-07-03T15:04:06"
|
493
|
+
},
|
494
|
+
{
|
495
|
+
"id":209992,
|
496
|
+
"delegator":"minnowbooster",
|
497
|
+
"delegatee":"mamadini",
|
498
|
+
"vesting_shares":"315000.000000 VESTS",
|
499
|
+
"min_delegation_time":"2017-08-23T19:27:12"
|
500
|
+
},
|
501
|
+
{
|
502
|
+
"id":243016,
|
503
|
+
"delegator":"minnowbooster",
|
504
|
+
"delegatee":"marty-art",
|
505
|
+
"vesting_shares":"630000.000000 VESTS",
|
506
|
+
"min_delegation_time":"2017-09-10T15:08:18"
|
507
|
+
},
|
508
|
+
{
|
509
|
+
"id":213243,
|
510
|
+
"delegator":"minnowbooster",
|
511
|
+
"delegatee":"masummim50",
|
512
|
+
"vesting_shares":"126000.000000 VESTS",
|
513
|
+
"min_delegation_time":"2017-08-25T12:42:18"
|
514
|
+
},
|
515
|
+
{
|
516
|
+
"id":243401,
|
517
|
+
"delegator":"minnowbooster",
|
518
|
+
"delegatee":"masyl",
|
519
|
+
"vesting_shares":"538492.500000 VESTS",
|
520
|
+
"min_delegation_time":"2017-09-11T03:13:33"
|
521
|
+
},
|
522
|
+
{
|
523
|
+
"id":225483,
|
524
|
+
"delegator":"minnowbooster",
|
525
|
+
"delegatee":"medicalgrower",
|
526
|
+
"vesting_shares":"330750.000000 VESTS",
|
527
|
+
"min_delegation_time":"2017-08-31T19:34:48"
|
528
|
+
},
|
529
|
+
{
|
530
|
+
"id":238156,
|
531
|
+
"delegator":"minnowbooster",
|
532
|
+
"delegatee":"mikev",
|
533
|
+
"vesting_shares":"630000.000000 VESTS",
|
534
|
+
"min_delegation_time":"2017-09-08T03:23:51"
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"id":179908,
|
538
|
+
"delegator":"minnowbooster",
|
539
|
+
"delegatee":"minknsa",
|
540
|
+
"vesting_shares":"401625.000000 VESTS",
|
541
|
+
"min_delegation_time":"2017-08-07T17:46:48"
|
542
|
+
},
|
543
|
+
{
|
544
|
+
"id":210062,
|
545
|
+
"delegator":"minnowbooster",
|
546
|
+
"delegatee":"minnowpowerup",
|
547
|
+
"vesting_shares":"1260000.000000 VESTS",
|
548
|
+
"min_delegation_time":"2017-08-23T20:01:12"
|
549
|
+
},
|
550
|
+
{
|
551
|
+
"id":118237,
|
552
|
+
"delegator":"minnowbooster",
|
553
|
+
"delegatee":"misty1z",
|
554
|
+
"vesting_shares":"2665267.500000 VESTS",
|
555
|
+
"min_delegation_time":"2017-07-03T15:47:45"
|
556
|
+
},
|
557
|
+
{
|
558
|
+
"id":222579,
|
559
|
+
"delegator":"minnowbooster",
|
560
|
+
"delegatee":"moyo9000",
|
561
|
+
"vesting_shares":"3805439.400000 VESTS",
|
562
|
+
"min_delegation_time":"2017-08-30T18:53:15"
|
563
|
+
},
|
564
|
+
{
|
565
|
+
"id":215770,
|
566
|
+
"delegator":"minnowbooster",
|
567
|
+
"delegatee":"mrsquiggle",
|
568
|
+
"vesting_shares":"1512000.000000 VESTS",
|
569
|
+
"min_delegation_time":"2017-08-28T11:26:24"
|
570
|
+
},
|
571
|
+
{
|
572
|
+
"id":246404,
|
573
|
+
"delegator":"minnowbooster",
|
574
|
+
"delegatee":"msp-creativebot",
|
575
|
+
"vesting_shares":"2743146.000000 VESTS",
|
576
|
+
"min_delegation_time":"2017-09-12T10:47:06"
|
577
|
+
},
|
578
|
+
{
|
579
|
+
"id":249990,
|
580
|
+
"delegator":"minnowbooster",
|
581
|
+
"delegatee":"msp-turkey",
|
582
|
+
"vesting_shares":"1224327.300000 VESTS",
|
583
|
+
"min_delegation_time":"2017-09-14T10:48:21"
|
584
|
+
},
|
585
|
+
{
|
586
|
+
"id":228390,
|
587
|
+
"delegator":"minnowbooster",
|
588
|
+
"delegatee":"nmotwani21",
|
589
|
+
"vesting_shares":"78750.000000 VESTS",
|
590
|
+
"min_delegation_time":"2017-09-02T13:03:30"
|
591
|
+
},
|
592
|
+
{
|
593
|
+
"id":243645,
|
594
|
+
"delegator":"minnowbooster",
|
595
|
+
"delegatee":"oluwataye",
|
596
|
+
"vesting_shares":"2362500.000000 VESTS",
|
597
|
+
"min_delegation_time":"2017-09-11T12:47:42"
|
598
|
+
},
|
599
|
+
{
|
600
|
+
"id":189072,
|
601
|
+
"delegator":"minnowbooster",
|
602
|
+
"delegatee":"orcheva",
|
603
|
+
"vesting_shares":"1260000.000000 VESTS",
|
604
|
+
"min_delegation_time":"2017-08-12T11:37:12"
|
605
|
+
},
|
606
|
+
{
|
607
|
+
"id":265339,
|
608
|
+
"delegator":"minnowbooster",
|
609
|
+
"delegatee":"oscarps",
|
610
|
+
"vesting_shares":"787500.000000 VESTS",
|
611
|
+
"min_delegation_time":"2017-09-25T20:47:27"
|
612
|
+
},
|
613
|
+
{
|
614
|
+
"id":231684,
|
615
|
+
"delegator":"minnowbooster",
|
616
|
+
"delegatee":"owner99",
|
617
|
+
"vesting_shares":"165375.000000 VESTS",
|
618
|
+
"min_delegation_time":"2017-09-04T10:18:06"
|
619
|
+
},
|
620
|
+
{
|
621
|
+
"id":243464,
|
622
|
+
"delegator":"minnowbooster",
|
623
|
+
"delegatee":"pennystockhelp",
|
624
|
+
"vesting_shares":"866250.000000 VESTS",
|
625
|
+
"min_delegation_time":"2017-09-11T06:00:36"
|
626
|
+
},
|
627
|
+
{
|
628
|
+
"id":179841,
|
629
|
+
"delegator":"minnowbooster",
|
630
|
+
"delegatee":"phunke",
|
631
|
+
"vesting_shares":"420000.000000 VESTS",
|
632
|
+
"min_delegation_time":"2017-08-07T14:34:42"
|
633
|
+
},
|
634
|
+
{
|
635
|
+
"id":257459,
|
636
|
+
"delegator":"minnowbooster",
|
637
|
+
"delegatee":"qurator",
|
638
|
+
"vesting_shares":"3981127.500000 VESTS",
|
639
|
+
"min_delegation_time":"2017-09-19T18:17:06"
|
640
|
+
},
|
641
|
+
{
|
642
|
+
"id":265672,
|
643
|
+
"delegator":"minnowbooster",
|
644
|
+
"delegatee":"ragnartheking",
|
645
|
+
"vesting_shares":"787500.000000 VESTS",
|
646
|
+
"min_delegation_time":"2017-09-25T22:56:06"
|
647
|
+
},
|
648
|
+
{
|
649
|
+
"id":263163,
|
650
|
+
"delegator":"minnowbooster",
|
651
|
+
"delegatee":"rajorajiten",
|
652
|
+
"vesting_shares":"630000.000000 VESTS",
|
653
|
+
"min_delegation_time":"2017-09-24T06:10:21"
|
654
|
+
},
|
655
|
+
{
|
656
|
+
"id":241248,
|
657
|
+
"delegator":"minnowbooster",
|
658
|
+
"delegatee":"ratul8940",
|
659
|
+
"vesting_shares":"315000.000000 VESTS",
|
660
|
+
"min_delegation_time":"2017-09-09T07:54:15"
|
661
|
+
},
|
662
|
+
{
|
663
|
+
"id":112424,
|
664
|
+
"delegator":"minnowbooster",
|
665
|
+
"delegatee":"reggaemuffin",
|
666
|
+
"vesting_shares":"8400.000000 VESTS",
|
667
|
+
"min_delegation_time":"2017-06-30T07:18:12"
|
668
|
+
},
|
669
|
+
{
|
670
|
+
"id":134139,
|
671
|
+
"delegator":"minnowbooster",
|
672
|
+
"delegatee":"rtdcs",
|
673
|
+
"vesting_shares":"1260000.000000 VESTS",
|
674
|
+
"min_delegation_time":"2017-07-12T17:43:36"
|
675
|
+
},
|
676
|
+
{
|
677
|
+
"id":218727,
|
678
|
+
"delegator":"minnowbooster",
|
679
|
+
"delegatee":"rumplestiltskin",
|
680
|
+
"vesting_shares":"1102500.000000 VESTS",
|
681
|
+
"min_delegation_time":"2017-08-29T19:23:21"
|
682
|
+
},
|
683
|
+
{
|
684
|
+
"id":249046,
|
685
|
+
"delegator":"minnowbooster",
|
686
|
+
"delegatee":"russellbury",
|
687
|
+
"vesting_shares":"315000.000000 VESTS",
|
688
|
+
"min_delegation_time":"2017-09-13T19:34:21"
|
689
|
+
},
|
690
|
+
{
|
691
|
+
"id":253161,
|
692
|
+
"delegator":"minnowbooster",
|
693
|
+
"delegatee":"saini11",
|
694
|
+
"vesting_shares":"630000.000000 VESTS",
|
695
|
+
"min_delegation_time":"2017-09-16T07:28:15"
|
696
|
+
},
|
697
|
+
{
|
698
|
+
"id":253501,
|
699
|
+
"delegator":"minnowbooster",
|
700
|
+
"delegatee":"samhenry",
|
701
|
+
"vesting_shares":"157500.000000 VESTS",
|
702
|
+
"min_delegation_time":"2017-09-16T18:42:09"
|
703
|
+
},
|
704
|
+
{
|
705
|
+
"id":257776,
|
706
|
+
"delegator":"minnowbooster",
|
707
|
+
"delegatee":"sanmi",
|
708
|
+
"vesting_shares":"1260000.000000 VESTS",
|
709
|
+
"min_delegation_time":"2017-09-20T08:08:09"
|
710
|
+
},
|
711
|
+
{
|
712
|
+
"id":113771,
|
713
|
+
"delegator":"minnowbooster",
|
714
|
+
"delegatee":"scooter77",
|
715
|
+
"vesting_shares":"210000.000000 VESTS",
|
716
|
+
"min_delegation_time":"2017-06-30T23:10:45"
|
717
|
+
},
|
718
|
+
{
|
719
|
+
"id":247291,
|
720
|
+
"delegator":"minnowbooster",
|
721
|
+
"delegatee":"serhanni",
|
722
|
+
"vesting_shares":"510142.500000 VESTS",
|
723
|
+
"min_delegation_time":"2017-09-13T06:57:06"
|
724
|
+
},
|
725
|
+
{
|
726
|
+
"id":261493,
|
727
|
+
"delegator":"minnowbooster",
|
728
|
+
"delegatee":"shehbaznawaz",
|
729
|
+
"vesting_shares":"1003827.300000 VESTS",
|
730
|
+
"min_delegation_time":"2017-09-23T13:23:27"
|
731
|
+
},
|
732
|
+
{
|
733
|
+
"id":194479,
|
734
|
+
"delegator":"minnowbooster",
|
735
|
+
"delegatee":"shmily77",
|
736
|
+
"vesting_shares":"492424.800000 VESTS",
|
737
|
+
"min_delegation_time":"2017-08-16T09:27:39"
|
738
|
+
},
|
739
|
+
{
|
740
|
+
"id":243178,
|
741
|
+
"delegator":"minnowbooster",
|
742
|
+
"delegatee":"silverstackeruk",
|
743
|
+
"vesting_shares":"393750.000000 VESTS",
|
744
|
+
"min_delegation_time":"2017-09-10T18:20:24"
|
745
|
+
},
|
746
|
+
{
|
747
|
+
"id":260696,
|
748
|
+
"delegator":"minnowbooster",
|
749
|
+
"delegatee":"skullsoccer",
|
750
|
+
"vesting_shares":"525027.300000 VESTS",
|
751
|
+
"min_delegation_time":"2017-09-22T22:15:09"
|
752
|
+
},
|
753
|
+
{
|
754
|
+
"id":226392,
|
755
|
+
"delegator":"minnowbooster",
|
756
|
+
"delegatee":"smyle",
|
757
|
+
"vesting_shares":"271215.000000 VESTS",
|
758
|
+
"min_delegation_time":"2017-09-01T12:10:45"
|
759
|
+
},
|
760
|
+
{
|
761
|
+
"id":264060,
|
762
|
+
"delegator":"minnowbooster",
|
763
|
+
"delegatee":"spaingaroo",
|
764
|
+
"vesting_shares":"630000.000000 VESTS",
|
765
|
+
"min_delegation_time":"2017-09-25T07:43:24"
|
766
|
+
},
|
767
|
+
{
|
768
|
+
"id":181810,
|
769
|
+
"delegator":"minnowbooster",
|
770
|
+
"delegatee":"stea90",
|
771
|
+
"vesting_shares":"787500.000000 VESTS",
|
772
|
+
"min_delegation_time":"2017-08-08T15:27:39"
|
773
|
+
},
|
774
|
+
{
|
775
|
+
"id":215219,
|
776
|
+
"delegator":"minnowbooster",
|
777
|
+
"delegatee":"steemchiller",
|
778
|
+
"vesting_shares":"2441250.000000 VESTS",
|
779
|
+
"min_delegation_time":"2017-08-27T08:18:27"
|
780
|
+
},
|
781
|
+
{
|
782
|
+
"id":231675,
|
783
|
+
"delegator":"minnowbooster",
|
784
|
+
"delegatee":"steeminfobot",
|
785
|
+
"vesting_shares":"1077300.000000 VESTS",
|
786
|
+
"min_delegation_time":"2017-09-04T10:08:12"
|
787
|
+
},
|
788
|
+
{
|
789
|
+
"id":235235,
|
790
|
+
"delegator":"minnowbooster",
|
791
|
+
"delegatee":"steeminformation",
|
792
|
+
"vesting_shares":"157500.000000 VESTS",
|
793
|
+
"min_delegation_time":"2017-09-06T02:45:33"
|
794
|
+
},
|
795
|
+
{
|
796
|
+
"id":243180,
|
797
|
+
"delegator":"minnowbooster",
|
798
|
+
"delegatee":"steemitdigest",
|
799
|
+
"vesting_shares":"252630.000000 VESTS",
|
800
|
+
"min_delegation_time":"2017-09-10T18:20:54"
|
801
|
+
},
|
802
|
+
{
|
803
|
+
"id":247290,
|
804
|
+
"delegator":"minnowbooster",
|
805
|
+
"delegatee":"steemitdotcom",
|
806
|
+
"vesting_shares":"2441250.000000 VESTS",
|
807
|
+
"min_delegation_time":"2017-09-13T06:54:27"
|
808
|
+
},
|
809
|
+
{
|
810
|
+
"id":254180,
|
811
|
+
"delegator":"minnowbooster",
|
812
|
+
"delegatee":"stoodkev",
|
813
|
+
"vesting_shares":"945000.000000 VESTS",
|
814
|
+
"min_delegation_time":"2017-09-18T10:48:18"
|
815
|
+
},
|
816
|
+
{
|
817
|
+
"id":110280,
|
818
|
+
"delegator":"minnowbooster",
|
819
|
+
"delegatee":"suesa",
|
820
|
+
"vesting_shares":"29312.500000 VESTS",
|
821
|
+
"min_delegation_time":"2017-06-29T14:40:27"
|
822
|
+
},
|
823
|
+
{
|
824
|
+
"id":235918,
|
825
|
+
"delegator":"minnowbooster",
|
826
|
+
"delegatee":"teamsouthafrica",
|
827
|
+
"vesting_shares":"315000.000000 VESTS",
|
828
|
+
"min_delegation_time":"2017-09-06T19:36:09"
|
829
|
+
},
|
830
|
+
{
|
831
|
+
"id":193970,
|
832
|
+
"delegator":"minnowbooster",
|
833
|
+
"delegatee":"thecryptosphere",
|
834
|
+
"vesting_shares":"157500.000000 VESTS",
|
835
|
+
"min_delegation_time":"2017-08-16T01:18:24"
|
836
|
+
},
|
837
|
+
{
|
838
|
+
"id":168241,
|
839
|
+
"delegator":"minnowbooster",
|
840
|
+
"delegatee":"theduke",
|
841
|
+
"vesting_shares":"819000.000000 VESTS",
|
842
|
+
"min_delegation_time":"2017-07-31T13:34:45"
|
843
|
+
},
|
844
|
+
{
|
845
|
+
"id":246401,
|
846
|
+
"delegator":"minnowbooster",
|
847
|
+
"delegatee":"theleapingkoala",
|
848
|
+
"vesting_shares":"630000.000000 VESTS",
|
849
|
+
"min_delegation_time":"2017-09-12T10:45:03"
|
850
|
+
},
|
851
|
+
{
|
852
|
+
"id":184184,
|
853
|
+
"delegator":"minnowbooster",
|
854
|
+
"delegatee":"tipu",
|
855
|
+
"vesting_shares":"1325625.000000 VESTS",
|
856
|
+
"min_delegation_time":"2017-08-09T13:41:21"
|
857
|
+
},
|
858
|
+
{
|
859
|
+
"id":235225,
|
860
|
+
"delegator":"minnowbooster",
|
861
|
+
"delegatee":"twigg",
|
862
|
+
"vesting_shares":"420000.000000 VESTS",
|
863
|
+
"min_delegation_time":"2017-09-06T02:34:30"
|
864
|
+
},
|
865
|
+
{
|
866
|
+
"id":235638,
|
867
|
+
"delegator":"minnowbooster",
|
868
|
+
"delegatee":"upme",
|
869
|
+
"vesting_shares":"1575000.000000 VESTS",
|
870
|
+
"min_delegation_time":"2017-09-06T12:07:06"
|
871
|
+
},
|
872
|
+
{
|
873
|
+
"id":238305,
|
874
|
+
"delegator":"minnowbooster",
|
875
|
+
"delegatee":"uxair",
|
876
|
+
"vesting_shares":"708750.000000 VESTS",
|
877
|
+
"min_delegation_time":"2017-09-08T09:27:30"
|
878
|
+
},
|
879
|
+
{
|
880
|
+
"id":207196,
|
881
|
+
"delegator":"minnowbooster",
|
882
|
+
"delegatee":"vannfrik",
|
883
|
+
"vesting_shares":"1341427.500000 VESTS",
|
884
|
+
"min_delegation_time":"2017-08-22T22:37:09"
|
885
|
+
},
|
886
|
+
{
|
887
|
+
"id":210000,
|
888
|
+
"delegator":"minnowbooster",
|
889
|
+
"delegatee":"violetmed",
|
890
|
+
"vesting_shares":"945000.000000 VESTS",
|
891
|
+
"min_delegation_time":"2017-08-23T19:30:12"
|
892
|
+
},
|
893
|
+
{
|
894
|
+
"id":235568,
|
895
|
+
"delegator":"minnowbooster",
|
896
|
+
"delegatee":"vlemon",
|
897
|
+
"vesting_shares":"315000.000000 VESTS",
|
898
|
+
"min_delegation_time":"2017-09-06T10:13:36"
|
899
|
+
},
|
900
|
+
{
|
901
|
+
"id":210993,
|
902
|
+
"delegator":"minnowbooster",
|
903
|
+
"delegatee":"voter",
|
904
|
+
"vesting_shares":"1575000.000000 VESTS",
|
905
|
+
"min_delegation_time":"2017-08-24T11:24:06"
|
906
|
+
},
|
907
|
+
{
|
908
|
+
"id":243589,
|
909
|
+
"delegator":"minnowbooster",
|
910
|
+
"delegatee":"whalereward",
|
911
|
+
"vesting_shares":"3150000.000000 VESTS",
|
912
|
+
"min_delegation_time":"2017-09-11T10:09:03"
|
913
|
+
},
|
914
|
+
{
|
915
|
+
"id":156916,
|
916
|
+
"delegator":"minnowbooster",
|
917
|
+
"delegatee":"whiteblood",
|
918
|
+
"vesting_shares":"136500.000000 VESTS",
|
919
|
+
"min_delegation_time":"2017-07-24T14:20:18"
|
920
|
+
},
|
921
|
+
{
|
922
|
+
"id":235270,
|
923
|
+
"delegator":"minnowbooster",
|
924
|
+
"delegatee":"writemore",
|
925
|
+
"vesting_shares":"5389572.300000 VESTS",
|
926
|
+
"min_delegation_time":"2017-09-06T03:31:15"
|
927
|
+
},
|
928
|
+
{
|
929
|
+
"id":259931,
|
930
|
+
"delegator":"minnowbooster",
|
931
|
+
"delegatee":"zinovi",
|
932
|
+
"vesting_shares":"1050021.000000 VESTS",
|
933
|
+
"min_delegation_time":"2017-09-22T15:49:21"
|
934
|
+
}
|
935
|
+
]
|
936
|
+
}
|