create account

24 hrs analysis of Bid-Bot usage in Steemit by firedream

View this thread on: hive.blogpeakd.comecency.com
· @firedream · (edited)
$98.58
24 hrs analysis of Bid-Bot usage in Steemit
### Repository
https://github.com/steemit/steem

### Introduction

In this study the topics to be analyzed are:
* How many bid-bots are acting on Steemit?
* What percent of the total bots are making 95% of the upvote activity?
* How many unique posts are upvoted by bid-bots in 24 hours?
* What is the total upvote value of these upvotes?
* What is the percentage of these upvotes to total Steem created per day? (Reward pool depletion)
* The upvoted posts are belonging to how many unique users?
* What are the SP status of these users using the bid-bots and what is the share according to each user category? 

### Scope of Analysis
Analysis date: 22 -23  May 2018 ( 24 hrs )
Analysis timeframe: 2018-05-22T20:02:36 --> 2018-05-23T19:37:33
Bots analyzed:
All the upvote bots registered to [SteemBotTracker](https://steembottracker.com) by @yabapmatt (99 bots)
[bot list](https://docs.google.com/spreadsheets/d/19GsOLeeGmwqTXolMBxGwEc4f2qDFRW18CrAPc2W0Lts/edit?usp=sharing)
All times are in UTC.

### Tools

* #### Finding the bot list
[The bot list](https://docs.google.com/spreadsheets/d/19GsOLeeGmwqTXolMBxGwEc4f2qDFRW18CrAPc2W0Lts/edit?usp=sharing) is extracted from @YabapMatt's [SteemBotTracker](https://steembottracker.com) tool and all the bots are put on the spreadsheet list. 

* #### Defining the bots to be analyzed
Since 99 bots would be a heavy load on the steem.js scripts that is used to analyze, a meaningful result should be obtained by the bots covering the 95% of the all the bots rewards.
This is directly proportional to the bots maximum upvote value.
Sorting the bots it is observed that 19% of the bots are giving 95% of the rewards.
![](https://cdn.steemitimages.com/DQmXRaHXjutvQJH3cpRpj4p1aup8VuJiq4k7UB5xjnxnv2p/image.png) 
The frame of the analysis is shifted to these 19 bots giving %95 of the rewards.

* #### Finding the posts upvoted and upvote values in past 24 hours

For this, [steem.js](https://github.com/steemit/steem-js) API is used with a simple JavaScript code.
```
for (let i = 0; i < bots.length; i++) {
 steem.api.getAccountVotes(bots[i], function(err, result) {
 console.log(result);
 calculate(bots[i],result);
 
 }); 
 }
```
Looping all the 19 bots in the script, the result gives us :
* The authorperm : The mixed data of the author and permlink
* Upvote date
* Upvote value in rshares
for all the upvotes that a individual bot has given.

These results are filtered to fit past 24 hours
```
 for (let i = 0; i < result.length; i++) {
 var vote_time=Date.parse(result[i].time);
 var day=1*24*60*60*1000;
 
 if(vote_time>=(now-day)){
 	
	 document.getElementById("bot").innerHTML+=bot+"</br>";
	 document.getElementById("autperm").innerHTML+=result[i].authorperm.substring(0,30)+"</br>";
	 document.getElementById("date").innerHTML+=result[i].time+"</br>";
	 document.getElementById("rshares").innerHTML+=result[i].rshares+"</br>";
 }
 }
```
This [raw data](https://docs.google.com/spreadsheets/d/1Mg3_HqldLeVU4JKtPIumxBYgWS5uCx_hzK6AsXQyO3o/edit?usp=sharing) is put in a spreadsheet and when analysed it would give us all the results we are looking for.

To convert rshares to steem, the values from [SteemDB](https://steemdb.com) is used.
![](https://cdn.steemitimages.com/DQmb9tAwY4kJHDQczbpCUcZKBW8AjyhU4ktKPSPZabyZKcE/image.png)
reward_balance ( in Steem) / recent_claims (in rshares) 
gives us the multiplication factor to convert rshares to Steem. 

* #### Defining the status of user
It is also in the scope of the study to determine, to which users these upvotes are given.
To have this, we would have to write another script, this time using the names of the upvote receivers as an array.
This array is extracted from rawdata by using a pivot table.
```
var botusers=botusers();// This is an array of all upvoted users extracted from raw data
function search(){
steem.api.getAccounts(botusers, function(err, result) {
  console.log(err, result);
  calculate2(result);
});
```
Above script gives us the user information that received the upvotes.
To find the status of the user, if a minnow, dolphin or whale we have to check their SP status.
SP >=100,000 is considered as WHALE
10,000 <=SP < 100,000  is considered as DOLPHIN
SP<10,000 is considered as MINNOW
To find the vests of each user, below script is used
```
function calculate2(result){
 for (let i = 0; i < result.length; i++) {
 var vests=parseFloat(result[i].vesting_shares)+parseFloat(result[i].received_vesting_shares)-parseFloat(result[i].delegated_vesting_shares);
 document.getElementById("bot").innerHTML+=result[i].name+"</br>";
 document.getElementById("autperm").innerHTML+=vests+"</br>";
 }			
}	
```
The output data is put in a [spreadsheet](https://docs.google.com/spreadsheets/d/15OoLtSwnfSN8NKpLJkvn7Y-q1eMqmeWIIYuWcVee9h8/edit?usp=sharing)
The SP correspondance of vests (the data is received in vests) is found by multiplying this data with SPV(steem per vest) value as seen in [Steemd](https://steemd.com)
![](https://cdn.steemitimages.com/DQmfMkSKZUBzKPCx7avAWJvBbD8MLtF6kyoZnKqAEhAwNZS/image.png)

### Results

* ##### How many bid-bots are acting on Steemit?
According to data received from [SteemBotTracker](https://steembottracker.com) there are 99 registered bid-bots.
[List](https://docs.google.com/spreadsheets/d/19GsOLeeGmwqTXolMBxGwEc4f2qDFRW18CrAPc2W0Lts/edit?usp=sharing)

* ##### What percent of the total bots are making 95% of the upvote activity?
![](https://cdn.steemitimages.com/DQmNumJ55iSgnEPezHZTbMrDy574QLWGGy59RuHjtgepwTe/image.png)

![](https://cdn.steemitimages.com/DQmU4wR5d6aXBJRP6DGkkktmQigtpQHt13XFRqB42V8Xhpy/image.png)

As seen in the graphs and from the data it can be concluded that 19/99 => 19.2% of the bidbots are covering 95% of all the upvotes given.
* ##### How many unique posts are upvoted by bid-bots in 24 hours?

The total quantity of upvotes is 3297 posts.
The reason to find the unique posts is, some posts are upvoted by multiple posts.
Therefore, a pivot table is formed to find the unique post quantity.

A total of 2225 unique posts are upvoted in 24 hours by 95% of the bid-bots in Steemit.
 [Complete List](https://docs.google.com/spreadsheets/d/1Mg3_HqldLeVU4JKtPIumxBYgWS5uCx_hzK6AsXQyO3o/edit?usp=sharing)

* ##### What is the total upvote value of these upvotes?
The total upvote value of the bid-bots in 24 hours is 11,302 STEEM.
%50 of these upvotes are received by 163 posts which means %50 of all the rewards are given to 7,3% of the posts.
Below is the cumulative reward distribution graph.
![](https://cdn.steemitimages.com/DQmbMk7Ze1k3wKLBdBXUmuodVEdn2zAxnWZrJrELZkWqBxd/image.png)

* ##### What is the percentage of these upvotes to total Steem created per day? (Reward pool depletion)

The total value of upvotes given by bid-bots ( %95 of them ) is calculated as 11,302 STEEM in 24 hours.
The Steem is generated with each transaction with a rate of 1.73 Steem / 3 seconds for the reward pool.
This value was calculated in my [old post]( https://steemit.com/steemit/@firedream/why-our-100-upvote-worth-dropped-by-40-in-sbd)
The steem generated / 24 hours that goes in the reward pool is calculated to be 49,824 STEEM / day.
This means, %95 of the bid-bots are using %23 of the reward pool in the date of analysis.

* ##### The upvoted posts are belonging to how many unique users?
We have seen that 2225 unique posts are upvoted by the bid-bots in 24 hours.
Since there may be the cases where one user sends more than one post to bid-bots to be upvoted.
Therefore, a user based pivot table is formed and it is observed that 2225 unique posts are belonging to 1488 users.

It is concluded that 1,5 posts per user are sent to bidbots per upvote.
It is again concluded that 11,302 STEEM is distributed to 1488 users which makes 7,6 STEEM per user.
But this value is not really meaningful by itself since %50 of the reward is distributed to %7,3 of the posts.

* ##### What are the SP status of these users using the bid-bots and what is the share according to each user category?

The bidbot users are categorized as below according to their SP
![](https://cdn.steemitimages.com/DQmUg3qiBF73aHGxsYAbgoSZHw5FEusFuHnGivp2iNDkgqe/image.png)

The % distribution is as follows according to user quantity.
![](https://cdn.steemitimages.com/DQmTe2efmE4hi6dPVB4FGBqGpcPuyW6s9zjSatUZB1ewqWu/image.png)
It is clear that %52 of the bid-bot users are minnows below 100 SP.
The second biggest group is the SP holders between 100 and 500 SP and they are 24% of all bid-bot users.

Next, the STEEM upvotes received by each category of users are checked.
![](https://cdn.steemitimages.com/DQmV6qmBz9u3DEc8B6Bq41R5N7yvsXBMNbGfkDV1h41LxE4/image.png)

The 0-100 SP group although holds the majority in the number of bidders, receives approximately %25 of the upvotes.
Moreover, the 100-500 SP group of users, being half as quantity receives %25 of the upvotes from the bid-bots.
Which means, they bid with more SBD.

### Conclusion
As a summary :
* Bidbots make upvote of 2225 posts belonging to 1488 users in 24 hours.
* Approximately 50% of bidders are minnows between 0-100 SP receiving %25 of upvotes.
* Bidbots use approximately %23 of the daily produced steem that goes into the reward pool.
Even if all upvoted posts are spam bidbots are responsible of only %23 of spam in Steemit.

### Contact
@FireDream - Steemit
@firedream#3528 - Discord

### Links
[SteemJS GitHub](https://github.com/steemit/steem-js)
[SteemBotTracker](https://steembottracker.com)
[SteemBotTracker GitHub](https://github.com/MattyIce/bottracker)
[BotList](https://docs.google.com/spreadsheets/d/19GsOLeeGmwqTXolMBxGwEc4f2qDFRW18CrAPc2W0Lts/edit?usp=sharing)
[RawData](https://docs.google.com/spreadsheets/d/1Mg3_HqldLeVU4JKtPIumxBYgWS5uCx_hzK6AsXQyO3o/edit?usp=sharing)
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 36 others
properties (23)
authorfiredream
permlink24-hrs-analysis-of-bid-bot-usage-in-steemit
categoryutopian-io
json_metadata{"tags":["utopian-io","analysis","steemit","bid-bots","firedreamblog"],"users":["yabapmatt","firedream"],"image":["https://cdn.steemitimages.com/DQmXRaHXjutvQJH3cpRpj4p1aup8VuJiq4k7UB5xjnxnv2p/image.png","https://cdn.steemitimages.com/DQmb9tAwY4kJHDQczbpCUcZKBW8AjyhU4ktKPSPZabyZKcE/image.png","https://cdn.steemitimages.com/DQmfMkSKZUBzKPCx7avAWJvBbD8MLtF6kyoZnKqAEhAwNZS/image.png","https://cdn.steemitimages.com/DQmNumJ55iSgnEPezHZTbMrDy574QLWGGy59RuHjtgepwTe/image.png","https://cdn.steemitimages.com/DQmU4wR5d6aXBJRP6DGkkktmQigtpQHt13XFRqB42V8Xhpy/image.png","https://cdn.steemitimages.com/DQmbMk7Ze1k3wKLBdBXUmuodVEdn2zAxnWZrJrELZkWqBxd/image.png","https://cdn.steemitimages.com/DQmUg3qiBF73aHGxsYAbgoSZHw5FEusFuHnGivp2iNDkgqe/image.png","https://cdn.steemitimages.com/DQmTe2efmE4hi6dPVB4FGBqGpcPuyW6s9zjSatUZB1ewqWu/image.png","https://cdn.steemitimages.com/DQmV6qmBz9u3DEc8B6Bq41R5N7yvsXBMNbGfkDV1h41LxE4/image.png"],"links":["https://github.com/steemit/steem","https://steembottracker.com","https://docs.google.com/spreadsheets/d/19GsOLeeGmwqTXolMBxGwEc4f2qDFRW18CrAPc2W0Lts/edit?usp=sharing","https://github.com/steemit/steem-js","https://docs.google.com/spreadsheets/d/1Mg3_HqldLeVU4JKtPIumxBYgWS5uCx_hzK6AsXQyO3o/edit?usp=sharing","https://steemdb.com","https://docs.google.com/spreadsheets/d/15OoLtSwnfSN8NKpLJkvn7Y-q1eMqmeWIIYuWcVee9h8/edit?usp=sharing","https://steemd.com","https://steemit.com/steemit/@firedream/why-our-100-upvote-worth-dropped-by-40-in-sbd","https://github.com/MattyIce/bottracker"],"app":"steemit/0.1","format":"markdown"}
created2018-05-24 14:47:48
last_update2018-05-24 18:44:51
depth0
children19
last_payout2018-05-31 14:47:48
cashout_time1969-12-31 23:59:59
total_payout_value74.921 HBD
curator_payout_value23.655 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,730
author_reputation11,232,881,853,116
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,469,379
net_rshares26,184,980,565,117
author_curate_reward""
vote details (100)
@artemislives ·
$0.03
This is amazing data collation and presentation @firedream !  Awesome and needs several read-throughs to get a sense of what it means.  Thank you! :)
πŸ‘  
properties (23)
authorartemislives
permlinkre-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180525t085956101z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["firedream"],"app":"steemit/0.1"}
created2018-05-25 08:59:33
last_update2018-05-25 08:59:33
depth1
children1
last_payout2018-06-01 08:59:33
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation307,778,421,614,859
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,602,731
net_rshares8,138,335,379
author_curate_reward""
vote details (1)
@firedream ·
@artemislives thank you.
Like life, when there is too much data you can get different results from different perspectives :)
FD.
properties (22)
authorfiredream
permlinkre-artemislives-re-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180525t143325072z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["artemislives"],"app":"steemit/0.1"}
created2018-05-25 14:33:27
last_update2018-05-25 14:33:27
depth2
children0
last_payout2018-06-01 14:33:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation11,232,881,853,116
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,647,161
net_rshares0
@crypto-econom1st ·
This is really a brilliant analysis! I'm a bit sorry that I can't add anything valuable. On the other hand that can be seen as a compliment cause the post doesn't contain any mistakes or non understandable items.

Only one question remains for me. What percentage of SP is used for self upvotes? 
If you add up the 23% bid bots you know what percentage of the upvotes is freely available within Steemit.
πŸ‘  
properties (23)
authorcrypto-econom1st
permlinkre-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180601t103647183z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-01 10:36:48
last_update2018-06-01 10:36:48
depth1
children2
last_payout2018-06-08 10:36:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length403
author_reputation4,447,971,413,472
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,738,011
net_rshares3,563,946,270
author_curate_reward""
vote details (1)
@firedream ·
@crypto-econom1st, that is a very good question to make analysis...What is the available reward pool other than bots, circle voters, and self-upvotes?
I will try to find a way to analyze that.
FD.
properties (22)
authorfiredream
permlinkre-crypto-econom1st-re-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180601t104015614z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["crypto-econom1st"],"app":"steemit/0.1"}
created2018-06-01 10:40:15
last_update2018-06-01 10:40:15
depth2
children1
last_payout2018-06-08 10:40:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length196
author_reputation11,232,881,853,116
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,738,369
net_rshares0
@crypto-econom1st ·
I'm afraid I can't query data myself from the blockchain. But I was thinking finding the self upvotes could be doable by querying accounts that upvote their own account?

Circle voters will be much more difficult. So I'm curious if you would be able to do that somehow?
properties (22)
authorcrypto-econom1st
permlinkre-firedream-re-crypto-econom1st-re-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180601t111857475z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-01 11:18:57
last_update2018-06-01 11:18:57
depth3
children0
last_payout2018-06-08 11:18:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length269
author_reputation4,447,971,413,472
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,742,646
net_rshares0
@eastmael · (edited)
$0.02
If I were to summarize the findings here:

>On May 22 to 23, there were **99 bidbots analyzed.** **19 out of 99 (19%)** bidbots account to 95% of the total vote value (not *upvote activity*) with a total of (*no total provided*).
>
>There were **3297 votes cast** on **2225 posts** which had a total value of **11,302 STEEM (not SBD?)**. This accounted to **23%** of the rewards pool on the given date. These rewards were distributed to **1488 unique users** with **76%** of these users have less than 500SP; **50%** of the total bidbot vote rewards went to this group.

Comments:
1. [This analysis](https://steemit.com/utopian-io/@paulag/steemits-bidbot-business-income-analysis-april-18) of Paula came to mind when I read this
2. As pointed out by @crokkon in another contribution, I also think 24 hours is too short to make anything conclusive. I believe the data extracted here can be considered a sample.
3. What prompted you to come up with this analysis? What are you trying to achieve or relay with these results? Why bidbots? What is its overall impact to the STEEM blockchain as a whole? What action can be taken with the results?

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/0/3232233).

---- 
Need help? Write a ticket on https://support.utopian.io/. 
Chat with us on [Discord](https://discord.gg/uTyJkNm). 
[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  
properties (23)
authoreastmael
permlinkre-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180529t122111932z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["crokkon"],"links":["https://steemit.com/utopian-io/@paulag/steemits-bidbot-business-income-analysis-april-18","https://join.utopian.io/guidelines","https://review.utopian.io/result/0/3232233","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2018-05-29 12:21:36
last_update2018-05-29 12:22:42
depth1
children4
last_payout2018-06-05 12:21:36
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,631
author_reputation78,967,407,130,763
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,267,674
net_rshares5,693,266,555
author_curate_reward""
vote details (1)
@firedream ·
$5.98
@eastmael, thank you very much for your evaluation.

1. The analysis of Paula seems to be the exact negative of my study. While her report is on the earning of bid-bots, my report is on the reward pool consumption of bis-bots and earning of bid-bot users.
2. As with @crokkon, I completely agree with you. SteemSql is much more appropriate for these studies but my study can be considered as an example of data extraction with SteemJs.(not the very best way...)
3. This is a really long story, starting with GrumpyCat. I started to study what is claimed as "abuse of reward pool", what is reward pool, who is using the reward pool etc...
The bidbots are claimed to be the biggest consumers of the reward pool, so out of curiosity, I decided to make this analysis to understand the impact with *facts and data*.

FD.
πŸ‘  
properties (23)
authorfiredream
permlinkre-eastmael-re-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180529t124501654z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["eastmael","crokkon"],"app":"steemit/0.1"}
created2018-05-29 12:45:03
last_update2018-05-29 12:45:03
depth2
children3
last_payout2018-06-05 12:45:03
cashout_time1969-12-31 23:59:59
total_payout_value4.489 HBD
curator_payout_value1.495 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length815
author_reputation11,232,881,853,116
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,270,653
net_rshares1,473,945,196,903
author_curate_reward""
vote details (1)
@eastmael ·
This is noted. Thank you for the information.
properties (22)
authoreastmael
permlinkre-firedream-re-eastmael-re-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180529t125606683z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-29 12:56:30
last_update2018-05-29 12:56:30
depth3
children0
last_payout2018-06-05 12:56:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation78,967,407,130,763
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,271,976
net_rshares0
@utopian-io ·
$0.02
Hey @firedream
Here's a tip for your valuable feedback! @Utopian-io loves and incentivises informative comments.

**Contributing on Utopian**
Learn how to contribute on <a href="https://join.utopian.io">our website</a>.

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for Utopian Witness!</a>
πŸ‘  
properties (23)
authorutopian-io
permlink20180529t133330403z
categoryutopian-io
json_metadata{"tags":["utopian.tip"],"app":"utopian-io"}
created2018-05-29 13:33:30
last_update2018-05-29 13:33:30
depth3
children1
last_payout2018-06-05 13:33:30
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length409
author_reputation152,955,367,999,756
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,276,866
net_rshares5,657,459,847
author_curate_reward""
vote details (1)
@kenistyles ·
Nice! Intuitively favoring bot use as a part of our evolution is now backed by the numbers. Thank you for the clear and detailed explanation all the way down to conclusion.

I love that the initial backlash on bot use, sung by the loudest voices are not in fact the ones who benefit the most from using them. More power to the minnows I say! πŸ€“
properties (22)
authorkenistyles
permlinkre-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180526t025113007z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-26 02:51:24
last_update2018-05-26 02:51:24
depth1
children1
last_payout2018-06-02 02:51:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length343
author_reputation17,660,939,862,238
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,737,001
net_rshares0
@firedream ·
$0.04
Thank you @kenistyles.
I am working on the percentage of bot using posts/all posts.
How many posts are issued in a day and what percentage of them are using bid-bots.
Let's see more numbers :)
FD.
πŸ‘  
properties (23)
authorfiredream
permlinkre-kenistyles-re-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180527t083015886z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["kenistyles"],"app":"steemit/0.1"}
created2018-05-27 08:30:15
last_update2018-05-27 08:30:15
depth2
children0
last_payout2018-06-03 08:30:15
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length196
author_reputation11,232,881,853,116
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,916,001
net_rshares10,554,096,743
author_curate_reward""
vote details (1)
@mal2 ·
Exellent post
properties (22)
authormal2
permlinkre-firedream-2018524t22119321z
categoryutopian-io
json_metadata{"tags":["utopian-io","analysis","steemit","bid-bots","firedreamblog"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-05-24 15:11:15
last_update2018-05-24 15:11:15
depth1
children0
last_payout2018-05-31 15:11:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation-9,151,209,511
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,472,902
net_rshares0
@tibra · (edited)
$0.04
I'm loving this; I have papers to write. You are providing data. :thumbsup:

The last finding is becoming less surprising. Tiny (nonbid) bot and spammer account activity has increased to such an extent that it has become noticable to the naked eye. Some follow and unfollow; just refresh a profile. Maybe in fact Steemit Inc should not delegate to create new accounts. Maybe users should make accounts for those they trust with Steemconnect.

What do you think about the solution EOS came up with to prohibit bots: constitution prohibits them and arbitration possible that can redistribute tokens? On the one hand it eliminates a lot of spam and system abuse, but on the other hand they seem to have ditched ability to archive by posting. And increased by far the risk of their chain. Your thoughts?
πŸ‘  ,
properties (23)
authortibra
permlinkre-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180525t030716030z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 03:07:15
last_update2018-05-25 03:11:03
depth1
children2
last_payout2018-06-01 03:07:15
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length799
author_reputation6,103,786,042,055
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,563,687
net_rshares10,777,293,883
author_curate_reward""
vote details (2)
@firedream ·
$0.03
The prohibition of bots...this sounds interesting but for me, the keyword is "need".
If there is a need for an upvote, and for sure there is, whether prohibited or not people will find most interesting ways to sell and buy upvotes.
Either out of the blockchain as black market or with different names as "subscription services" there will be vote-selling.
FD
πŸ‘  
properties (23)
authorfiredream
permlinkre-tibra-re-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180525t051716460z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 05:17:18
last_update2018-05-25 05:17:18
depth2
children1
last_payout2018-06-01 05:17:18
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length358
author_reputation11,232,881,853,116
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,577,950
net_rshares9,130,414,404
author_curate_reward""
vote details (1)
@tibra ·
EOS has arbitration and anyone selling votes risks losing their stake, the way they recently explained it.
properties (22)
authortibra
permlinkre-firedream-re-tibra-re-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180526t190506936z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-26 19:05:06
last_update2018-05-26 19:05:06
depth3
children0
last_payout2018-06-02 19:05:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation6,103,786,042,055
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,843,419
net_rshares0
@utopian-io ·
Hey @firedream
**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Contributing on Utopian**
Learn how to contribute on <a href='https://join.utopian.io'>our website</a> or by watching <a href='https://www.youtube.com/watch?v=8S1AtrzYY1Q'>this tutorial</a> on Youtube.

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
authorutopian-io
permlinkre-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180529t133009z
categoryutopian-io
json_metadata"{"app": "beem/0.19.29"}"
created2018-05-29 13:30:12
last_update2018-05-29 13:30:12
depth1
children0
last_payout2018-06-05 13:30:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length506
author_reputation152,955,367,999,756
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,276,439
net_rshares0
@vishalsingh4997 ·
$0.04
> Even if all upvoted posts are spam bidbots are responsible of only %23 of spam in Steemit.

Hence proved...
Hey @firedream can we have details of the bots who are more responsible for this 23% spams? Especially for sneaky ninja. For gc.
πŸ‘  ,
properties (23)
authorvishalsingh4997
permlinkre-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180524t155613116z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["firedream"],"app":"steemit/0.1"}
created2018-05-24 15:56:15
last_update2018-05-24 15:56:15
depth1
children1
last_payout2018-05-31 15:56:15
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length238
author_reputation4,737,211,129,741
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,480,275
net_rshares10,390,514,226
author_curate_reward""
vote details (2)
@firedream ·
Vish, %23 is not spam...it is the reward pool usage ratio of upvote bots.
Even if all is spam, *which is not*...the spam caused by bidbots do not exceed 23% of reward pool.
FD.
properties (22)
authorfiredream
permlinkre-vishalsingh4997-re-firedream-24-hrs-analysis-of-bid-bot-usage-in-steemit-20180524t184702087z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 18:47:03
last_update2018-05-24 18:47:03
depth2
children0
last_payout2018-05-31 18:47:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length176
author_reputation11,232,881,853,116
root_title"24 hrs analysis of Bid-Bot usage in Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,505,245
net_rshares0