create account

EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS by holger80

View this thread on: hive.blogpeakd.comecency.com
· @holger80 · (edited)
$34.96
EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS

![Hourly blocktivity stats for EOS](https://images.hive.blog/DQmNd4iZNECo3trmzkHN644icKNXxA2pUNp4BMLGrrdEgiF/Hourly%20blocktivity%20stats%20for%20EOS)


I used [eospy](https://github.com/eosnewyork/eospy) for receiving blocks from the EOS api.
The python library can be installed with
```
pip3 install libeospy
```

The following script counts all operation on the EOS blockchain for the last hour:

```
from eospy.cleos import Cleos
from datetime import datetime, timedelta
from dateutil import parser
from timeit import default_timer as timer

ce = Cleos(url='http://eos.greymass.com')

info = ce.get_info()
block_number = info["head_block_num"]
block = ce.get_block(block_number)

start_time = parser.parse(block["timestamp"])
stop_time = start_time - timedelta(seconds=60 * 60)

parse_block_number = 60 * 60
blocksperhour = 60 * 60
start_block = block_number - parse_block_number

total_trx = 0
total_ops = 0

start = timer()
block_count = 0
ops_per_hour = 0
massive_ops = 0
sending_0_0001_op = 0
eosio_token_op = 0
block_time = start_time
while (block_time - stop_time).total_seconds() > 0:
    if block_count % 100 == 0:
        seconds_remaining = (block_time - stop_time).total_seconds()
        print("%.1f seconds remaining... estimated ops per hour: %.1f" % (seconds_remaining, ops_per_hour))
    block = ce.get_block(block_number)
    block_time = parser.parse(block["timestamp"])
    
    for trx in block["transactions"]:
        status = trx["status"]
        if isinstance(trx["trx"], str):
            continue 
        total_trx += 1
        total_ops += len(trx["trx"]["transaction"]["actions"])
        if len(trx["trx"]["transaction"]["actions"]) > 80:
            massive_ops += len(trx["trx"]["transaction"]["actions"])
        for op in trx["trx"]["transaction"]["actions"]:
            if "quantity" in op["data"] and op["data"]["quantity"] == '0.0001 EOS':
                sending_0_0001_op += 1
            if op["account"] == "eosio.token":
                eosio_token_op += 1
    block_number -= 1
    block_count += 1
    ops_per_hour = total_ops / block_count * blocksperhour

duration = timer() - start    


print("Received %.2f blocks/s." % (block_count / duration))
print("Bocks: %d, duration %.3f s" % (block_count, duration))
print("Operations per hour: %d" % total_ops)
print("Trx per hour: %d" % total_trx)
print("Massive ops >80 ops in one trx: %d" % massive_ops)
print("Sending 0.0001 EOS ops: %d" % sending_0_0001_op)
print("Op from eosio.token: %d" % eosio_token_op)

```

After storing the script as blocktivity_eos.py, it can be started with:
```
python3 blocktivity_eos.py
```

## Results

| | EOS | percentage of all ops |
| --- | --- | --- |
| Blocks | 7201 |  |
| duration | 3633.908 s |  |
| Blocks/s | 1.98 blocks/s|  |
| Trx per hour | 95982 |  |
| ops per hour | 2335876 | 100.00 % |
| Trx with more than 80 ops | 2225403 | 95.27 % |
| Transfer Ops with  0.0001 EOS | 2248245 | 96.25 % |
| Ops from eosio.token | 2259728 | 96.74 % |



The account `eosio.token` account is sending really a lot batched transactions with around 90 transfers operation inside a transaction.  Most operations are sending 0.0001 EOS around.


Such a transaction can be seen here:
https://bloks.io/transaction/fdfce13288e2ee8948521fa0a1084b9000cbfe6e2d649047862523bc4508c330

![Sending 0.0001 EOS](https://images.hive.blog/DQmbLGx3cWxWyMX22qmXHHk9r5NMdJCZK7FQ2LbGmNTMMC5/Sending%200.0001%20EOS)

## Excluding ops by eosio.token

| | EOS without eosio.token |
| --- | --- |
| ops per hour | 76148 |
| ops per day | 1827552 |

Using these stats would mean that EOS drops behind XLM on https://blocktivity.info/.

![](https://images.hive.blog/DQmVoNngNyKjuhh1iLFH1tgb4C6wTuXyH17N7Xbeqt2RXuU/image)

## Why is sending eosio.token so many transfers?


### My previous guess was the following (seems to be wrong as the transfer are caused by a smart contract)

The following is just my guess. There could be reasons that I did not see.

As transactions are free on EOS when an account has sufficient CPU and NET, it is important that there is sufficient activity on the EOS chain in order to keep the requirements on CPU and NET sufficient high. Otherwise nobody would need to stake (and lock) EOS when using the EOS blockchain. It would also be easy to spam the blockchain.

So sending massive transfers with 0.0001 EOS leads to:

* Number one on https://blocktivity.info/
* Other accounts cannot easily spam the EOS network
* Users of the EOS network are forced to stake EOS in order to be able to use the blockchain

Another observation is that it is surprisingly difficult to find a EOS fullnode that has the BLOCK API enabled.

### All these transfers seems to be part of the EIDO smart contract
The massive op amount seems to be caused by the EIDOS contract on EOS https://www.dapp.com/app/eidos.

![image.png](https://files.peakd.com/file/peakd-hive/holger80/XI23W36l-image.png)
In a time duration of 15 month (begin was November 1, 2019, 8am GMT), EIDOS are minted every second. I have no idea why this needs around 600 ops per second, so lets check again in April 2021 when minting should be over.


___

*If you like what I do, consider casting a vote for me as witness on [Hivesigner](https://hivesigner.com/sign/account-witness-vote?witness=holger80&approve=1) or on [PeakD](https://peakd.com/witnesses)*
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 446 others
properties (23)
authorholger80
permlinkeos-fakes-their-blocktivity-stats-by-massively-sending-batched-transactions-with-a-value-of-0-0001-eos
categoryhive-167922
json_metadata{"canonical_url":"https://hive.blog/hive-167922/@holger80/eos-fakes-their-blocktivity-stats-by-massively-sending-batched-transactions-with-a-value-of-0-0001-eos","community":"hive-167922","app":"beempy/0.24.21","image":["https://images.hive.blog/DQmNd4iZNECo3trmzkHN644icKNXxA2pUNp4BMLGrrdEgiF/Hourly%20blocktivity%20stats%20for%20EOS","https://images.hive.blog/DQmbLGx3cWxWyMX22qmXHHk9r5NMdJCZK7FQ2LbGmNTMMC5/Sending%200.0001%20EOS","https://images.hive.blog/DQmVoNngNyKjuhh1iLFH1tgb4C6wTuXyH17N7Xbeqt2RXuU/image","https://files.peakd.com/file/peakd-hive/holger80/XI23W36l-image.png"],"links":["https://github.com/eosnewyork/eospy","https://bloks.io/transaction/fdfce13288e2ee8948521fa0a1084b9000cbfe6e2d649047862523bc4508c330","https://blocktivity.info/","https://blocktivity.info/","https://www.dapp.com/app/eidos","https://hivesigner.com/sign/account-witness-vote?witness=holger80&approve=1","/witnesses"],"tags":["leofinance","blocktivity","eos","python","stats"],"format":"markdown"}
created2020-12-22 11:23:57
last_update2020-12-22 13:17:42
depth0
children30
last_payout2020-12-29 11:23:57
cashout_time1969-12-31 23:59:59
total_payout_value20.088 HBD
curator_payout_value14.869 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,343
author_reputation358,857,509,568,825
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,047,405
net_rshares186,200,659,170,973
author_curate_reward""
vote details (510)
@ammonite · (edited)
From what I understood these high transactions of Ei-dos have been happening for a long time now. At one time they stopped other transactions getting through. It is impressive that they were able to scale to facilitate. It has been talked about many times in the EOS community.
👍  
properties (23)
authorammonite
permlinkre-holger80-20201222t213626859z
categoryhive-167922
json_metadata{"tags":[],"app":"ecency/3.0.11-mobile","format":"markdown+html"}
created2020-12-22 21:36:30
last_update2020-12-22 21:37:30
depth1
children0
last_payout2020-12-29 21:36: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_length277
author_reputation206,656,249,677,183
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,053,286
net_rshares4,139,759,211
author_curate_reward""
vote details (1)
@apshamilton ·
$0.06
Great work!

It looks like someone on EOS has been cooking the books.

Blocktivity should remove these eosio.token transactions unless eosio.token can demonstrate that they are real.
👍  , ,
properties (23)
authorapshamilton
permlinkre-holger80-qlqqss
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2020.12.3"}
created2020-12-22 12:31:42
last_update2020-12-22 12:31:42
depth1
children0
last_payout2020-12-29 12:31:42
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.032 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length182
author_reputation186,516,695,188,555
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,047,967
net_rshares557,249,062,846
author_curate_reward""
vote details (3)
@argenvista ·
Are you still working with EOS payment wallets or have you incorporated a free wallet?
👎  
properties (23)
authorargenvista
permlinkqlrczv
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2020-12-22 20:31:12
last_update2020-12-22 20:31:12
depth1
children0
last_payout2020-12-29 20:31: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_length86
author_reputation14,078,018,784,475
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,052,633
net_rshares-11,352,018,877
author_curate_reward""
vote details (1)
@asimo ·
$tangent
properties (22)
authorasimo
permlinkre-holger80-qls71d
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2020.12.3"}
created2020-12-23 07:20:03
last_update2020-12-23 07:20:03
depth1
children1
last_payout2020-12-30 07:20: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_length8
author_reputation135,397,212,000
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,057,513
net_rshares0
@tan.bot ·
<center>
<sup>Congratulations, @asimo You Successfully Trended The Post Shared By @holger80.</sup>
<sup>You Utilized <b>3/3</b> Daily Summon Bot Calls.</sup>
---
<sup>[TAN Current Market Price](https://hive-engine.com/?p=market&t=TAN) : <b>1.940 HIVE</b></sup>
</center>
properties (22)
authortan.bot
permlink20201223t072016255z
categoryhive-167922
json_metadata{"tags":["tan","tangent"],"app":"tan-bot/1.1","format":"markdown"}
created2020-12-23 07:20:15
last_update2020-12-23 07:20:15
depth2
children0
last_payout2020-12-30 07:20: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_length270
author_reputation44,172,891,181
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,057,517
net_rshares0
@behiver ·
This is a great analysis and it puts the EOS blockchain in line to what the other ones are doing and explaining the gap. Thanks for showcasing the reason for that and that it is not real usage. Probably we could do the same on Hive, but to what gain....

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@behiver/re-holger80-6e38kb)
👍  
properties (23)
authorbehiver
permlinkre-holger80-6e38kb
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@behiver/re-holger80-6e38kb"}
created2020-12-22 13:55:15
last_update2020-12-22 13:55:15
depth1
children0
last_payout2020-12-29 13:55: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_length347
author_reputation384,050,509,698,076
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,048,753
net_rshares4,164,682,234
author_curate_reward""
vote details (1)
@cardboard ·
It's basically dead.
properties (22)
authorcardboard
permlinkqlsfsw
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2020-12-23 10:29:24
last_update2020-12-23 10:29:24
depth1
children0
last_payout2020-12-30 10:29: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_length20
author_reputation31,522,757,177,122
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,058,728
net_rshares0
@cmplxty ·
Pretty interesting here, side note, I'm really glad that I moderately understood your code there since I am studying Python :D.

I would lend more credence to the theory that they are purposely doing it in order to keep the transaction cost higher so people can't spam but it also requires people to buy tokens in order to use the chain.
👍  
properties (23)
authorcmplxty
permlinkre-holger80-qlqwqv
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2020.12.3"}
created2020-12-22 14:40:06
last_update2020-12-22 14:40:06
depth1
children0
last_payout2020-12-29 14:40: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_length337
author_reputation560,219,148,953,700
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,049,305
net_rshares4,147,997,667
author_curate_reward""
vote details (1)
@cranium ·
$0.05
The world is full of deceptions. How can you not remember the expression that everything in the world is an illusion.
👍  
properties (23)
authorcranium
permlinkre-holger80-qlqodw
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2020.12.3"}
created2020-12-22 11:39:33
last_update2020-12-22 11:39:33
depth1
children0
last_payout2020-12-29 11:39:33
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.027 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation449,187,672,594,062
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,047,531
net_rshares477,293,346,260
author_curate_reward""
vote details (1)
@crokkon · (edited)
$0.07
properties (23)
authorcrokkon
permlinkqlqoof
categoryhive-167922
json_metadata"{"app": ""}"
created2020-12-22 11:45:54
last_update2022-08-06 15:48:42
depth1
children5
last_payout2020-12-29 11:45:54
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation81,214,366,861,104
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,047,577
net_rshares574,932,604,293
author_curate_reward""
vote details (3)
@holger80 ·
$0.03
I think it is the official account, as eosio.token does not need to have any CPU or NET staked:

![image.png](https://files.peakd.com/file/peakd-hive/holger80/lh4JchZU-image.png)
👍  , , , , , ,
properties (23)
authorholger80
permlinkre-crokkon-qlqotl
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2020.12.3"}
created2020-12-22 11:49:00
last_update2020-12-22 11:49:00
depth2
children4
last_payout2020-12-29 11:49:00
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation358,857,509,568,825
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,047,607
net_rshares251,355,665,524
author_curate_reward""
vote details (7)
@crokkon · (edited)
.
.
properties (22)
authorcrokkon
permlinkqlqp8c
categoryhive-167922
json_metadata"{"app": ""}"
created2020-12-22 11:57:51
last_update2022-08-06 15:48:39
depth3
children3
last_payout2020-12-29 11:57:51
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_length1
author_reputation81,214,366,861,104
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,047,670
net_rshares0
@dalz ·
$0.07
Great one holger. I was always amazed how come EOS has such a great number of transactions and very small numbers of apps used by real people. This explain it. 

Also your suggestion for pumping the tx in order to create some value for staking EOS seems quite logical.
👍  , ,
properties (23)
authordalz
permlinkqlqo56
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2020-12-22 11:34:18
last_update2020-12-22 11:34:18
depth1
children0
last_payout2020-12-29 11:34:18
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length268
author_reputation1,289,229,147,325,710
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,047,490
net_rshares577,170,582,193
author_curate_reward""
vote details (3)
@edicted ·
# I AM SHOCKED!
Shocked I tell ya!  lol 

I mean this was very obvious from the start, but it's nice to have evidence. 
When transactions are "free" transactions per second doesn't mean anything. 
It's a stupid metric for all DPOS chains that means nothing. 

# Nice work. 
And to think we were all legit worried back in the day that EOS could crush us. 
No competition here. 
👍  
properties (23)
authoredicted
permlinkre-holger80-qlrlyu
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2020.12.3"}
created2020-12-22 23:44:54
last_update2020-12-22 23:44:54
depth1
children0
last_payout2020-12-29 23:44:54
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_length376
author_reputation2,888,586,253,539,151
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,054,269
net_rshares4,131,458,462
author_curate_reward""
vote details (1)
@eirik · (edited)
$0.07
It is not really fake.

Just bring some mining tokens to HIVE and we will be the most active blockchain in no time.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@eirik/re-holger80-24sjzv)
👍  , ,
properties (23)
authoreirik
permlinkre-holger80-24sjzv
categoryhive-167922
json_metadata{"app":"hiveblog/0.1","format":"markdown","canonical_url":"https://leofinance.io/@eirik/re-holger80-24sjzv","links":["https://leofinance.io/@eirik/re-holger80-24sjzv"]}
created2020-12-22 11:36:09
last_update2020-12-22 11:38:33
depth1
children1
last_payout2020-12-29 11:36:09
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length207
author_reputation75,277,533,711,762
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,047,505
net_rshares578,653,077,253
author_curate_reward""
vote details (3)
@holger80 ·
$0.03
You are right, I changed the title to EOS inflates ...
👍  , , , , ,
properties (23)
authorholger80
permlinkre-eirik-qlqoqp
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2020.12.3"}
created2020-12-22 11:47:15
last_update2020-12-22 11:47:15
depth2
children0
last_payout2020-12-29 11:47:15
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation358,857,509,568,825
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,047,590
net_rshares249,054,241,200
author_curate_reward""
vote details (6)
@oliverschmid ·
> As transactions are free on EOS when an account has sufficient CPU and NET, it is important that there is sufficient activity on the EOS chain in order to keep the requirements on CPU and NET sufficient high. Otherwise nobody would need to stake (and lock) EOS when using the EOS blockchain. It would also be easy to spam the blockchain.

Interesting/plausible conclusion.
properties (22)
authoroliverschmid
permlinkqlqzbi
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2020-12-22 15:35:45
last_update2020-12-22 15:35:45
depth1
children0
last_payout2020-12-29 15:35:45
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_length374
author_reputation108,428,918,931,450
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,049,896
net_rshares0
@steevc ·
Are the various chains really comparable anyway? Each may work slightly differently. It's all just numbers. It's just good to see that Hive is so busy despite a low market cap. Shows how much potential it has and we need more people to know that. 

I guess I could send HIVE back and forth between accounts all day to drive up the transaction count.
👍  
properties (23)
authorsteevc
permlinkre-holger80-qlqpx4
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2020.12.3"}
created2020-12-22 12:12:39
last_update2020-12-22 12:12:39
depth1
children4
last_payout2020-12-29 12:12:39
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_length349
author_reputation1,046,407,626,104,488
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,047,824
net_rshares4,181,394,198
author_curate_reward""
vote details (1)
@cmplxty ·
$0.02
Yeah I was glad to see us in the highest ranks despite not having top 100 (hell, top 20) of a market cap compared to some of these big boys. Under valued chain for sure!
👍  
properties (23)
authorcmplxty
permlinkre-steevc-qlqwoh
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2020.12.3"}
created2020-12-22 14:38:42
last_update2020-12-22 14:38:42
depth2
children2
last_payout2020-12-29 14:38:42
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length169
author_reputation560,219,148,953,700
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,049,288
net_rshares228,841,932,776
author_curate_reward""
vote details (1)
@steevc ·
There was a time when STEEM was top 10! HIVE needs to get more people engaged. It is technically good and has more ways for people to get involved than others, even if they don't have money to invest. That should make it a top 20 coin.
properties (22)
authorsteevc
permlinkre-cmplxty-qlqx6q
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2020.12.3"}
created2020-12-22 14:49:39
last_update2020-12-22 14:49:39
depth3
children1
last_payout2020-12-29 14:49:39
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_length235
author_reputation1,046,407,626,104,488
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,049,409
net_rshares0
@holger80 · (edited)
$0.01
That's right, I was just surprised about the amount. Why are 	96.25 % of all EOS ops a transfers of 0.0001 EOS without memo?
👍  , , , , ,
properties (23)
authorholger80
permlinkre-steevc-qlqqd6
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2020.12.3"}
created2020-12-22 12:22:18
last_update2020-12-22 12:22:42
depth2
children0
last_payout2020-12-29 12:22:18
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation358,857,509,568,825
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,047,905
net_rshares244,528,621,439
author_curate_reward""
vote details (6)
@tan.app ·
<center>
<sup>Congratulations @holger80, You Earned <b>0.528 TAN</b> & Curators Made <b>0.369 TAN</b>.</sup>

<img src="https://files.peakd.com/file/peakd-hive/theguruasia/DWYqznFx-TANToken70.png" alt="tangent.token">

---
<sup>Join [CORE / VAULT Token Discord Channel](https://discord.gg/XYMrvyr) or Trade [TANGENT Token](https://hive-engine.com/?p=market&t=TAN)</sup>
<sup>[TAN Current Market Price](https://hive-engine.com/?p=market&t=TAN) : <b>2.000 HIVE</b></sup>
</center>
properties (22)
authortan.app
permlink20201226t023442769z
categoryhive-167922
json_metadata{"tags":["tan","tangent"],"app":"tan-bot/1.1","format":"markdown"}
created2020-12-26 02:34:42
last_update2020-12-26 02:34:42
depth1
children0
last_payout2021-01-02 02:34:42
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_length486
author_reputation164,160,871,793
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,088,918
net_rshares0
@taskmaster4450 ·
It seems you are intent on getting to the bottom of all the Blocktivity rankings.

So it doubles up Hive transactions and EOS is inflated.  I wonder what some of the others are doing like Tron.

Great efforts of uncovering what is taking place.
👍  
properties (23)
authortaskmaster4450
permlinkre-holger80-qlqvwg
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2020.12.3"}
created2020-12-22 14:22:03
last_update2020-12-22 14:22:03
depth1
children0
last_payout2020-12-29 14:22: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_length244
author_reputation5,542,575,812,135,154
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,049,085
net_rshares4,156,371,024
author_curate_reward""
vote details (1)
@v4vapid ·
There's quite an interesting story with EIDOS as it's still somewhat of a mystery as to the purpose of the EIDOS token. Many have speculated that EIDOS is what is known as a "waste token" with the sole purpose of using up the CPU of the mainnet.
Others believe that EIDOS may have been issued to test the limits of the EOS mainnet and it's tx per second. 

Still others believed EIDOS was an attack vector designed with the intent to harm the EOS network.

Whatever the case, EIDOS became the crypto-kitties of EOS and clogged up the network, causing major problems for the REX (resource exchange) and most significantly for casual users to make free transactions.

Personally, I haven't been keeping up with EOS much this year for a whole host of different reasons.
This article here is quite good and explains the EIDOS drama and potential pitfalls for similar "waste token" attacks on other DPOS chains.
It's worth reading no matter what your opinion of EOS is.

https://medium.com/@hernanarber_48790/the-interesting-case-of-eidos-and-the-potential-threat-of-waste-tokens-for-eos-and-other-dpos-df245881c1cb


EIDOS = Everyone Is Denied Of Service
👍  
properties (23)
authorv4vapid
permlinkre-holger80-qls9fw
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2020.12.3"}
created2020-12-23 08:12:06
last_update2020-12-23 08:12:06
depth1
children0
last_payout2020-12-30 08:12: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_length1,151
author_reputation227,021,682,366,188
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,057,873
net_rshares4,274,747,858
author_curate_reward""
vote details (1)
@whatamidoing · (edited)
My first instinct is to ask if this is some kind of rewards being sent out for staking or another scheme?  It seems eos automatically had me staking 5 eos on exodus and the rewards would come in those tiny amounts
properties (22)
authorwhatamidoing
permlinkqlspm8
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2020-12-23 14:01:21
last_update2020-12-23 14:06:06
depth1
children0
last_payout2020-12-30 14:01:21
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_length213
author_reputation186,276,751,633,766
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,060,250
net_rshares0
@zangano ·
$0.05
So many ghost chains,this shows that hive should b...
So many ghost chains,  this shows that #hive should be  top 5 in marketcap.

 Posted using [Dapplr](https://app.dapplr.in/4awjEMkXc6781s6r8)
👍  ,
properties (23)
authorzangano
permlinksomanyghostchainsthissh-8d2737156280b71l57d8ffies3j6o31s
categoryhive-167922
json_metadata{"app":"dapplr","format":"markdown","tags":["dapplr"],"media":[],"users_tagged":[]}
created2020-12-23 00:50:18
last_update2020-12-23 00:50:18
depth1
children0
last_payout2020-12-30 00:50:18
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length141
author_reputation871,689,248,553
root_title"EOS inflates their blocktivity stats by massively sending batched transactions with a value of 0.0001 EOS"
beneficiaries
0.
accountdapplr
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,054,884
net_rshares456,553,635,520
author_curate_reward""
vote details (2)