 **Update: After thinking about it, I am including transfers to and from Steem Monsters and Steem-Engine, these are calculating now and will update when the results are in.** Was having a discussion with Aggroed yesterday about full nodes and the question came up "how much of the network does Steem Monsters and Steem Engine (this includes Tribes) use". I said probably around 50% sarcastically, I knew that was high but I figured it was still a large chunk. As I generally like to know things, I decided to figure it out. # Creating a python script I wrote a small python script and started monitoring the results. I used the **ID** field of custom JSON operations to filter transactions. I know both use custom JSON transactions to interact with the blockchain. The ID field is used to disclose the type of operation being performed. Most of the Steem Engine transactions can be collected by watching for the **ssc-mainnet1** ID. Steem Monsters and Scotbot use many unique IDs. # Filtering Aggroed's ops and other I created two lists, `ops_id` and poorly named `not_ops_id`. I also had two global counters `ops` and `aggroed_ops` which kept track of the total operations and any operations that were related to an aggroed project (Steem Monsters, Steem Engine, and Scotbot). I then monitored the blockchain filtering just custom JSON operations. Immediately upon finding a custom JSON transaction I would increase the `ops` variable. I would then look to see if the ID was in the list of aggreod related IDs. If so I increased `aggroed_ops` and continued looking for new transactions. If the operating was not in the list, I then checked the `not_ops_id` list for transactions I knew about and if it was in that list I would just continue monitoring for new operations. If it wasn't on either list, it means I didn't have it assigned so I printed the operation's ID. I would stop the program and assign that ID to the appropriate list and start over. After a few runs, I had most every operation assigned to a list and the program ran without printing any new operations. There are still some operations I don't have assigned but they didn't appear during the timeframe I ran the program. # Results Once I was at this point, I added a print statement to print the variables `ops` and `aggroed_ops` for each JSON entry found. I also did the formula `round(aggroed_ops/ops*100, 2)` to calculate the percentage for each operation. Over a short period of time, I found the percentage of total operations would range from **14% to 22%** of all transactions on the blockchain. Running overnight over almost 300,000 transactions, I ended up with **23.93%**. ``` Total Ops: 299922 Aggroed's Ops: 71773 (23.93%) ``` # Using SteemSQL to analyze the last 30 days I wanted to refine my answer by checking over the last 30 days. With access to SteemSQL I could do just that. It's a lot more complicated but here is the logic I used. First, I wanted to confirm I got all possible operation IDs. So I scanned the txcustoms table for any operation that started with `sm_` or `scot` and updated my list to reflect any of the more rare transactions I didn't see. I picked up a few more Steem Monsters transactions but I had all the Scotbot transactions as there are only a few. txcustoms has a timestamp field, so it is really easy to just look for the last 30 days of transactions that have any of the above ids in the `tid` field. The transaction table however only has expiration for a datetime field, while this is helpful it isn't exactly what I am looking for. It does, however, have a block_num field and we know exactly how many blocks we have in a 30 day period. Unfortunately, due to the chain halt, this number isn't exactly perfect but should be fine for our purposes. I added in 12 hours worth of blocks (14,400) to account for chain downtime. For the last 30 days, there have been 6,435,882 operations using the IDs I know about. Over the last 30 days (minus 12 hours) we have seen 27,261,701 total transactions. 6,435,882 / 27,261,701 * 100 = 23.6% Over a period of 30 days, we are still in the 23-24% range. So I would say this is a really good estimate of the percentage of transactions across the entire blockchain. # Script This is a quick and dirty script to answer the above question. You will need beem to walk the blockchain. I take no responsibility if you develop developer like symptoms. ``` from beem.blockchain import Blockchain from beem import Steem ops = 0 aggroed_ops = 0 op_ids = ['scot_claim_token', 'sm_find_match', 'ssc-mainnet1', 'sm_submit_team', 'sm_open_pack', 'sm_team_reveal', 'sm_sell_cards', 'sm_gift_cards', 'sm_combine_cards', 'sm_claim_reward', 'sm_combine_all', 'sm_enter_tournament', 'sm_undelegate_cards', 'sm_update_authority', 'sm_start_quest', 'sm_cancel_match', 'sm_refresh_quest', 'sm_purchase_record', 'sm_cancel_sell', 'sm_surrender', 'sm_join_guild', 'sm_purchase_orbs', 'sm_open_all', 'sm_burn_cards', 'sm_market_purchase', 'sm_token_transfer', 'scot_payout_beneficiaries', 'sm_price_feed', 'sm_guild_contribution', 'sm_gift_packs', 'test-sm_price_feed', 'sm_delegate_cards', 'sm_purchase_item', 'scot_set_vote', 'scot_create_claim', 'scot_claim', 'scotauto', 'sm_set_authority', 'sm_card_award', 'sm_tournament_checkin', 'sm_update_price', 'sm_leave_tournament', 'sm_leave_guild', 'sm_guild_remove', 'sm_guild_promote', 'sm_guild_invite', 'sm_guild_decline', 'sm_guild_accept', 'sm_edit_guild', 'sm_create_tournament', 'sm_convert_cards', 'sm_cancel_match', 'sm_add_wallet', 'sm_accept_challenge' ] not_op_ids = ['follow', 'nextcolony', 'vote', 'drugwars', 'GameSeed', 'wise', 'actifit', 'pm_create_bid', 'sh_active_user', 'pm_cancel_bid', 'sh_active_user', 'vaporchain', 'esteem_boost', 'BandiFight_Fight', 'start_mission', 'likwid-beneficiary', '3speak-publish', 'blockchainstudio_gdp', 'blockchainstudio_fp', 'BandiFight_Fight', 'get_new_missions', 'pm_update_bid', 'pm_accept_contract', 'steemfinex', 'qwoyn_report', 'poo', 'pm_new_delegation', 'pm_cancel_delegation', 'BandiFight_UpdateStats', 'blockchainstudio_wit3', 'esteem_point_transfer' ] def process_operation(op): global ops global aggroed_ops ops += 1 if op['type'] == 'custom_json': if op['id'] in op_ids: aggroed_ops += 1 print(f"Total Ops: {ops} \nAggroed's Ops: {aggroed_ops} ({round(aggroed_ops/ops*100, 2)}%)") else: if op['id'] not in not_op_ids: print(op) def main(): stm = Steem() chain = Blockchain(stm, 'head') for op in chain.stream(): process_operation(op) if __name__ == '__main__': main() ``` # SQL Statements #### Count transactions in last 30 days ``` select count(*) from transactions where block_num > 35262014 ``` #### Find all SM & SE Transactions ``` select count(*) from txcustoms where tid in ( 'scot_claim_token', 'sm_find_match', 'ssc-mainnet1', 'sm_submit_team', 'sm_open_pack', 'sm_team_reveal', 'sm_sell_cards', 'sm_gift_cards', 'sm_combine_cards', 'sm_claim_reward', 'sm_combine_all', 'sm_enter_tournament', 'sm_undelegate_cards', 'sm_update_authority', 'sm_start_quest', 'sm_cancel_match', 'sm_refresh_quest', 'sm_purchase_record', 'sm_cancel_sell', 'sm_surrender', 'sm_join_guild', 'sm_purchase_orbs', 'sm_open_all', 'sm_burn_cards', 'sm_market_purchase', 'sm_token_transfer', 'scot_payout_beneficiaries', 'sm_price_feed', 'sm_guild_contribution', 'sm_gift_packs', 'test-sm_price_feed', 'sm_delegate_cards', 'sm_purchase_item', 'scot_set_vote', 'scot_create_claim', 'scot_claim', 'scotauto', 'sm_set_authority', 'sm_card_award', 'sm_tournament_checkin', 'sm_update_price', 'sm_leave_tournament', 'sm_leave_guild', 'sm_guild_remove', 'sm_guild_promote', 'sm_guild_invite', 'sm_guild_decline', 'sm_guild_accept', 'sm_edit_guild', 'sm_create_tournament', 'sm_convert_cards', 'sm_cancel_match', 'sm_add_wallet', 'sm_accept_challenge' ) and timestamp > getutcdate() - 30 ``` #### Find unique IDs for Steem Monsters ``` select distinct(tid) from txcustoms where tid like 'sm_%' and timestamp > getutcdate() - 2 ``` #### Find unique IDs for Scotbot ``` select distinct(tid) from txcustoms where tid like 'scot%' and timestamp > getutcdate() - 2 ```
author | themarkymark |
---|---|
permlink | what-percentage-of-the-network-does-steem-monsters-and-steem-engine-use |
category | analysis |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["analysis","steem-engine","steemmonsters","steem","neoxian","palnet","busy","stem"],"users":[],"links":[],"image":["https://ipfs.busy.org/ipfs/QmbcmTdLaWusXQK88dq722mKPxocGgEUySQ7LsjVDZ4oCj"]} |
created | 2019-09-04 12:05:09 |
last_update | 2019-09-04 16:04:12 |
depth | 0 |
children | 23 |
last_payout | 2019-09-11 12:05:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 20.824 HBD |
curator_payout_value | 18.844 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,886 |
author_reputation | 1,779,655,184,652,617 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,231,267 |
net_rshares | 93,657,073,267,920 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gregory-f | 0 | 1,328,170,088 | 1.12% | ||
germanaure | 0 | 6,462,223,469 | 100% | ||
cryptogee | 0 | 20,922,062,848 | 100% | ||
kaylinart | 0 | 1,197,675,780,624 | 100% | ||
roelandp | 0 | 905,920,258,464 | 100% | ||
hitmeasap | 0 | 36,644,374,866 | 25% | ||
ssjsasha | 0 | 995,002,596,825 | 100% | ||
inertia | 0 | 100,079,427,955 | 100% | ||
coininstant | 0 | -149,257,329,180 | -100% | ||
greenman | 0 | 904,646,183,087 | 100% | ||
aishwarya | 0 | 82,929,205,886 | 76% | ||
kdtkaren | 0 | -73,388,585,502 | -100% | ||
yoshiko | 0 | 9,846,513,783 | 1% | ||
scaredycatguide | 0 | 22,731,102,868 | 25% | ||
nextgen622 | 0 | 5,020,834,201,114 | 100% | ||
netaterra | 0 | 106,447,258,406 | 50% | ||
kenistyles | 0 | 137,000,627 | 11% | ||
aggroed | 0 | 2,158,071,142,992 | 100% | ||
doitvoluntarily | 0 | 7,326,650,918 | 100% | ||
luup | 0 | 3,859,962,337 | 100% | ||
busy.pay | 0 | 2,811,219,713,483 | 13.69% | ||
techslut | 0 | 224,161,597,932 | 50% | ||
barton26 | 0 | 5,215,237,359 | 50% | ||
jephline | 0 | 1,647,269,371 | 100% | ||
robinmmthompson | 0 | -27,135,465,779 | -100% | ||
whatageek | 0 | 70,304,078,258 | 77% | ||
samuelhull | 0 | 7,851,732,113 | 100% | ||
demartini | 0 | 1,983,123,209 | 100% | ||
yadamaniart | 0 | 747,148,548 | 1.4% | ||
cardboard | 0 | 9,341,266,017 | 100% | ||
steemcenterwiki | 0 | 1,078,053,254 | 5% | ||
playfulfoodie | 0 | 62,507,539,394 | 20% | ||
elgeko | 0 | 415,052,570,833 | 100% | ||
erikaflynn | 0 | 4,149,980,407 | 12% | ||
ejemai | 0 | 20,129,253,116 | 100% | ||
davidgermano | 0 | 13,971,785,676 | 100% | ||
honusurf | 0 | -214,536,743,890 | -100% | ||
markkujantunen | 0 | 43,642,817,194 | 30% | ||
dyrt88 | 0 | 1,124,838,274 | 100% | ||
alexis555 | 0 | 1,988,689,579,752 | 25% | ||
freebornsociety | 0 | 12,657,431,759 | 10% | ||
bootyp | 0 | 521,307,533 | 100% | ||
imperfect-one | 0 | 2,556,959,065 | 5% | ||
nicnas | 0 | 36,529,742,140 | 100% | ||
stimialiti | 0 | -231,382,402,886 | -100% | ||
sepracore | 0 | 5,015,236,897 | 100% | ||
ma1neevent | 0 | 19,980,586,796 | 20% | ||
pwny | 0 | 90,284,589,287 | 100% | ||
siddartha | 0 | 1,395,478,829 | 100% | ||
malay11 | 0 | 119,308,902 | 1.4% | ||
stackin | 0 | 42,517,841,231 | 5% | ||
lenmar | 0 | 78,932,342,280 | 100% | ||
davy73 | 0 | 334,489,849 | 100% | ||
drag33 | 0 | 37,200,298,087 | 100% | ||
mys | 0 | 10,567,777,900 | 5% | ||
uplus | 0 | 3,351,362,917 | 49.64% | ||
isaria | 0 | 169,235,756,407 | 51% | ||
lazzelazer | 0 | 7,560,946,800 | 100% | ||
necio | 0 | 661,680,768 | 100% | ||
coquiunlimited | 0 | 132,515,237 | 1.18% | ||
satoshibit | 0 | 19,532,175,963 | 100% | ||
epixar | 0 | 545,676,990 | 100% | ||
enjar | 0 | 145,516,653,564 | 100% | ||
maxer27 | 0 | 116,045,196,894 | 100% | ||
sam99 | 0 | 7,286,239,946 | 2.5% | ||
insiders | 0 | 235,461,806 | 74% | ||
jayna | 0 | 331,998,179 | 0.42% | ||
steemitadventure | 0 | 169,424,927,511 | 100% | ||
whd | 0 | 3,067,408,574 | 2.5% | ||
kayoko | 0 | 731,797,957 | 1% | ||
ckcryptoinvest | 0 | 755,886,382 | 100% | ||
abdulshakun | 0 | 146,012,466 | 100% | ||
gokulramdas | 0 | 46,254,093,442 | 80% | ||
vibvir | 0 | 1,590,893,570 | 100% | ||
momijiscrypto | 0 | 6,158,206,715 | 100% | ||
fivefiveeleven | 0 | 3,178,276,465 | 50% | ||
christianity101 | 0 | 336,916,344 | 79% | ||
themarkymark | 0 | 17,485,289,170,023 | 100% | ||
stayoutoftherz | 0 | 124,948,916,115 | 30% | ||
dreamarif | 0 | 217,087,653 | 40% | ||
yoogyart | 0 | 8,636,433,830 | 41% | ||
vikisecrets | 0 | 305,148,670,231 | 30% | ||
msp-waves | 0 | 1,192,857,744,593 | 100% | ||
faustofraser | 0 | 1,508,815,181 | 81% | ||
uow | 0 | 335,178,234 | 65% | ||
agsttne | 0 | 3,655,575,775 | 50% | ||
ffodie | 0 | 174,980,833 | 50% | ||
felander | 0 | 205,044,580,548 | 100% | ||
kromtar | 0 | 43,137,193,681 | 18% | ||
reinhard-schmid | 0 | 121,835,242,020 | 100% | ||
buildawhale | 0 | 26,707,342,242,923 | 49.64% | ||
fersher | 0 | -147,243,612 | -100% | ||
oivas | 0 | 59,516,212,862 | 100% | ||
torico | 0 | 30,919,438,101 | 100% | ||
hairshares | 0 | 234,076,868,810 | 100% | ||
joshman | 0 | 165,249,544,386 | 10% | ||
sbdraffle | 0 | 283,429,611 | 56% | ||
slowgrow | 0 | -380,951,844 | -100% | ||
mawit07 | 0 | 16,288,084,019 | 100% | ||
storysharing | 0 | 14,223,436,992 | 100% | ||
espoem | 0 | 10,938,932,395 | 5% | ||
yabapmatt | 0 | 4,103,994,623,857 | 100% | ||
isnochys | 0 | 9,095,031,049 | 10% | ||
gringo211985 | 0 | 3,680,222,920 | 10% | ||
qurator | 0 | 212,358,814,021 | 2.81% | ||
dmilliz | 0 | 141,312,701,852 | 100% | ||
shahab3211 | 0 | 545,410,295 | 100% | ||
bookguy | 0 | 5,868,214,444 | 100% | ||
seanlloyd | 0 | 184,973,815 | 1% | ||
yulem | 0 | 3,440,460,655 | 100% | ||
zouhalsana | 0 | 227,891,144 | 100% | ||
yogajill | 0 | 75,448,810,952 | 100% | ||
jahedkhan | 0 | 334,585,449 | 40% | ||
alpayasteem | 0 | 7,085,835,820 | 30% | ||
deepak0018 | 0 | 528,661,540 | 100% | ||
imacryptorick | 0 | 5,569,351,005,274 | 100% | ||
skycae | 0 | 213,488,520 | 1.96% | ||
nathen007 | 0 | 60,004,572,143 | 100% | ||
cervisia | 0 | 81,037,313,765 | 45% | ||
steemusa | 0 | 5,650,667,928 | 10% | ||
howiemac | 0 | 9,216,525,220 | 100% | ||
fabianklauder | 0 | 64,684,826,889 | 38% | ||
cryptogem | 0 | 1,473,381,736 | 100% | ||
godlovermel25 | 0 | 1,818,133,942 | 100% | ||
dieterhubert | 0 | 526,239,526 | 100% | ||
upmyvote | 0 | 5,352,174,508,507 | 72.64% | ||
fortunex | 0 | 3,440,431,842 | 100% | ||
voaputra | 0 | 703,345,644 | 100% | ||
amos811 | 0 | 552,180,931 | 100% | ||
bluenarcolepsy | 0 | 571,337,369 | 100% | ||
doverun | 0 | 514,610,054 | 100% | ||
mehta | 0 | 73,378,368,962 | 30% | ||
davinsh | 0 | 5,306,680,109 | 100% | ||
znnuksfe | 0 | 2,008,495,315 | 100% | ||
mauialohabella | 0 | -21,791,444,556 | -100% | ||
afiqsejuk | 0 | 153,233,326,952 | 100% | ||
durbisrodriguez | 0 | 587,821,848 | 100% | ||
portugalcoin | 0 | 19,894,991,059 | 20% | ||
steemernoob | 0 | 367,538,596 | 100% | ||
unicron | 0 | 1,639,204,073 | 100% | ||
thecreativerebel | 0 | 226,212,202 | 100% | ||
vaansteam | 0 | 154,250,018,136 | 30% | ||
saqibnazir | 0 | 367,779,421 | 100% | ||
casberp | 0 | 8,799,672,870 | 1% | ||
gandalfthewhite | 0 | 480,931,567 | 100% | ||
cfminer | 0 | 1,291,987,403 | 100% | ||
videosteemit | 0 | 149,802,824,836 | 100% | ||
sargoon | 0 | 5,158,481,483 | 50% | ||
mistakili | 0 | 8,677,425,145 | 100% | ||
steem-hikers | 0 | 153,188,118 | 5% | ||
investfourmore | 0 | 54,284,376,620 | 20% | ||
steemflagrewards | 0 | 3,118,075,064,882 | 83.3% | ||
nilfanif | 0 | 0 | 100% | ||
didic | 0 | 11,413,555,098 | 20% | ||
lovelyboo | 0 | 339,944,234 | 50% | ||
wwwfernand | 0 | 237,850,781 | 100% | ||
malia.mancianti | 0 | -25,753,965,682 | -100% | ||
sisygoboom | 0 | 130,383,510 | 0.1% | ||
tdogvoid | 0 | 496,863,808 | 100% | ||
tuts | 0 | 544,261,373 | 100% | ||
erarnitox | 0 | 535,942,609 | 100% | ||
ipromote | 0 | 590,585,502,689 | 100% | ||
asgarth | 0 | 1,026,721,747,916 | 100% | ||
bozz | 0 | 34,671,787,053 | 20% | ||
thecontractor | 0 | 609,436,381 | 100% | ||
jbrrd | 0 | 672,859,288 | 100% | ||
llfarms | 0 | 37,040,816,332 | 100% | ||
harpagon | 0 | 243,792,112,846 | 100% | ||
memeitbaby | 0 | 174,940,490 | 30% | ||
wildarms65 | 0 | 410,647,622 | 100% | ||
ashishchavda | 0 | 461,669,372 | 100% | ||
mohsen63 | 0 | 40,083,865,004 | 100% | ||
natsch | 0 | 539,437,700 | 100% | ||
antisocialist | 0 | 2,098,813,621 | 100% | ||
sathyasankar | 0 | 162,895,833,743 | 100% | ||
spederson | 0 | 3,539,588,989 | 100% | ||
beleg | 0 | 1,927,934,464 | 5% | ||
luli1 | 0 | 397,238,760 | 100% | ||
gtmatze | 0 | 1,942,687,956 | 100% | ||
manniman | 0 | 6,017,451,185 | 33% | ||
adamada | 0 | 19,434,040,041 | 50% | ||
qberry | 0 | 1,343,141,516 | 1.4% | ||
jvhteach | 0 | 5,035,531,007 | 100% | ||
stmdev | 0 | 96,478,755 | 2% | ||
siddharthrout | 0 | 385,479,109 | 100% | ||
kessielynbote | 0 | 386,798,199 | 100% | ||
tadstrange | 0 | 4,746,737,230 | 100% | ||
beekerst | 0 | 2,442,893,468 | 100% | ||
blerdrage | 0 | 4,023,090,133 | 100% | ||
khayziljoy | 0 | 88,519,351 | 100% | ||
tonimontana | 0 | 11,184,291,694 | 100% | ||
memesplease | 0 | 20,564,756,442 | 100% | ||
thethor1122 | 0 | 108,886,991 | 50% | ||
jena1997 | 0 | 867,453,106 | 50% | ||
kelvo | 0 | 159,185,111 | 35% | ||
wirednkod | 0 | 248,823,299 | 50% | ||
julisavio | 0 | 364,446,054,517 | 100% | ||
journeyfreedom | 0 | 2,050,745,656 | 100% | ||
we-are | 0 | 18,129,436,255 | 30% | ||
kendallron | 0 | 578,972,522 | 30% | ||
realblockchain | 0 | 4,583,034,469 | 20% | ||
rishi-sayz | 0 | 250,397,528 | 100% | ||
meanbees | 0 | 67,620,423,501 | 50% | ||
andreasgrubhofer | 0 | 1,141,976,593 | 1% | ||
upboater | 0 | 1,049,115,574,960 | 100% | ||
indayclara | 0 | 638,063,634 | 15% | ||
kryptogermany | 0 | 1,852,929,134 | 100% | ||
slobberchops | 0 | 1,456,480,402,691 | 100% | ||
diabonua | 0 | 20,482,007,959 | 100% | ||
abbasi1986 | 0 | 215,551,865 | 50% | ||
hafizullah | 0 | 10,554,796,526 | 10% | ||
kadoshmenorah | 0 | 5,536,237,876 | 100% | ||
ntowl | 0 | 165,299,369 | 1.4% | ||
nateaguila | 0 | 436,239,567,407 | 20% | ||
enforcer48 | 0 | 34,836,466,829 | 15% | ||
pinas | 0 | 486,927,013 | 50% | ||
maxwellnewlife7 | 0 | 1,708,923,485 | 100% | ||
rogz06 | 0 | 1,622,375,600 | 50% | ||
juwelan | 0 | 214,221,943 | 50% | ||
tutchpa | 0 | 300,919,739 | 100% | ||
baanggal | 0 | 247,874,358 | 50% | ||
wave.beads | 0 | 250,751,173 | 100% | ||
smartmeme | 0 | 11,206,255,663 | 100% | ||
kehrwoche | 0 | 1,910,078,724 | 100% | ||
clearbluecrypto | 0 | 21,162,383,939 | 50% | ||
donnjoez | 0 | 503,277,923 | 100% | ||
lhuan874 | 0 | 203,996,173 | 50% | ||
blewitt | 0 | 143,059,896 | 0.02% | ||
bingbabe | 0 | 1,232,337,206 | 100% | ||
sbi6 | 0 | 50,165,240,969 | 6.39% | ||
unmesh | 0 | 545,076,039 | 100% | ||
kostybrat | 0 | 8,890,284,061 | 20% | ||
heraclio | 0 | 1,480,280,401 | 100% | ||
ducnguyenbboy | 0 | 159,288,604 | 50% | ||
hansgans | 0 | 32,781,617,745 | 100% | ||
renulia | 0 | 544,228,330 | 100% | ||
witnessupdate | 0 | 27,690,781,954 | 100% | ||
bestofph | 0 | 5,899,744,152 | 30% | ||
meow99 | 0 | 13,062,755,514 | 100% | ||
dronegraphica | 0 | 390,339,543 | 1.4% | ||
ngoikhoctrencay | 0 | 247,347,691 | 50% | ||
laviem | 0 | 102,843,497 | 50% | ||
allcultures | 0 | 534,813,769 | 100% | ||
youngu | 0 | 147,200,820 | 50% | ||
luckyy | 0 | 91,585,453 | 50% | ||
cubapl | 0 | 0 | 100% | ||
ntn-vlogs | 0 | 150,309,630 | 50% | ||
lupafilotaxia | 0 | 16,192,434,948 | 50% | ||
alaiza | 0 | 222,191,407 | 50% | ||
mysia | 0 | 2,311,344,376 | 100% | ||
definethedollar | 0 | 75,773,427,380 | 25% | ||
chrisrice | 0 | 3,306,337,863 | 100% | ||
emaferice | 0 | 4,102,164,076 | 100% | ||
spielekiste | 0 | 479,340,078 | 100% | ||
laissez-faire | 0 | 69,410,550 | 100% | ||
jacekw.dev | 0 | 4,124,915,666 | 100% | ||
lapp | 0 | 221,213,084 | 50% | ||
steemtpistia | 0 | 220,940,873 | 50% | ||
crassipes | 0 | 221,069,591 | 50% | ||
zaclucasrice | 0 | 4,205,767,189 | 100% | ||
rgirgin | 0 | 486,182,686 | 100% | ||
duyduc | 0 | 217,219,272 | 50% | ||
amusdnom | 0 | 18,433,908,775 | 100% | ||
sumantakumar | 0 | 541,668,596 | 100% | ||
humanism | 0 | 258,551,073 | 100% | ||
agrovision | 0 | 221,213,059 | 50% | ||
zeronight | 0 | 248,742,542 | 50% | ||
thanhnga1999 | 0 | 247,675,684 | 50% | ||
anti-bully | 0 | 1,932,543,128 | 100% | ||
the4thmusketeer | 0 | 56,487,492,960 | 95% | ||
gungunkrishu | 0 | 115,973,147,459 | 100% | ||
deadpresidents | 0 | 547,750,239 | 100% | ||
steempope | 0 | 450,230,123 | 70% | ||
ookamisuuhaisha | 0 | 4,661,260,657 | 100% | ||
cwow2 | 0 | 47,420,559,151 | 25% | ||
mistia | 0 | 5,869,005,789 | 100% | ||
michealb | 0 | 1,183,357,573,139 | 20% | ||
themightysquid | 0 | 7,805,728,464 | 100% | ||
popcornexpress | 0 | 52,922,867,848 | 100% | ||
crowdfunder | 0 | 252,997,144 | 100% | ||
tamito0201 | 0 | 309,915,652 | 1% | ||
hibee | 0 | 180,465,895 | 40% | ||
dismayedworld | 0 | 538,280,874 | 100% | ||
layneebug | 0 | 172,387,299 | 25% | ||
bluerobo | 0 | 25,032,525,799 | 100% | ||
tigerrkg | 0 | 26,635,406,890 | 100% | ||
blind-spot | 0 | 2,685,940,414 | 20% | ||
bilderkiste | 0 | 890,337,730 | 100% | ||
steemehq | 0 | 529,288,550 | 25% | ||
davaocity | 0 | 251,784,561 | 100% | ||
smartmonsters | 0 | 628,614,261 | 1.1% | ||
ajks | 0 | 61,841,347,276 | 100% | ||
chrisho | 0 | 545,700,734 | 100% | ||
tipu.curator | 0 | 29,803,675,126 | 100% | ||
i-c-e | 0 | 1,484,052,428 | 35% | ||
smon-joa | 0 | 43,719,585,833 | 100% | ||
broxi | 0 | 5,301,074,487 | 75% | ||
stratton.npc | 0 | 640,491,080 | 100% | ||
hankreirden | 0 | 114,893,654 | 5% | ||
director.rar | 0 | 1,159,269,524 | 100% | ||
hamsa.quality | 0 | 562,583,916 | 7% | ||
felixpower | 0 | 280,398,406 | 10% | ||
parth7878 | 0 | -1,559,750,402 | -100% | ||
mister-eagle | 0 | 688,664,366 | 40% | ||
vintageprint | 0 | 166,164,524 | 50% | ||
cpt-sparrow | 0 | 10,296,395,471 | 100% | ||
habib0x | 0 | 0 | 100% | ||
russia-btc | 0 | 49,797,354,065 | 97% | ||
contrabourdon | 0 | 218,685,249,899 | 50% | ||
sidhar | 0 | 31,876,620 | 15% | ||
szf | 0 | 689,065,967 | 50% | ||
anti-fraud | 0 | 10,818,376,524 | 10% | ||
render-obsolete | 0 | 20,675,387,846 | 100% | ||
rollingbones | 0 | 65,672,693,405 | 100% | ||
never-giveup | 0 | 89,182,284 | 25% | ||
deeanndmathews | 0 | 156,317,212 | 1.4% | ||
hurricanesam | 0 | 471,963,003 | 100% | ||
ritch | 0 | 13,994,006,251 | 50% | ||
banvie | 0 | 36,288,830,850 | 100% | ||
onespringday | 0 | 713,089,120 | 10% | ||
abello | 0 | 2,012,993,593 | 100% | ||
abojasim880 | 0 | 141,969,352 | 100% | ||
likwid | 0 | 1,239,223,022,691 | 20% | ||
tr3nches | 0 | 2,032,833,344 | 100% | ||
champ47 | 0 | 39,408,882,115 | 100% | ||
yarak | 0 | 372,738,183 | 100% | ||
justineh | 0 | 567,585,397,114 | 100% | ||
mhmohammad | 0 | 218,986,329 | 100% | ||
diceshark | 0 | 0 | 1.26% | ||
renz.rubio | 0 | 2,017,301,709 | 100% | ||
todociencia | 0 | 815,038,064 | 50% | ||
astil.codex | 0 | 364,623,466 | 70% | ||
vxc | 0 | 1,098,719,226 | 50% | ||
lookplz | 0 | 2,331,928,656 | 12% | ||
r-pal | 0 | 184,157,015 | 40% | ||
firealien | 0 | -130,065,422,577 | -100% | ||
palvoter | 0 | 549,661,654 | 100% | ||
akomoajong1 | 0 | 182,403,661 | 40% | ||
r-ag | 0 | 180,582,710 | 40% | ||
fuckeverything | 0 | 716,327,366 | 40% | ||
class101 | 0 | 493,292,785 | 40% | ||
ilias.fragment | 0 | 340,293,694 | 70% | ||
hyborian-strain | 0 | 1,779,849,575 | 30% | ||
zaku-pal | 0 | 184,081,935 | 40% | ||
naha.stem | 0 | 347,411,221 | 100% | ||
nomsinc | 0 | 114,823,916 | 25% | ||
abh12345.stem | 0 | 840,830,863 | 100% | ||
sasifuddin | 0 | 436,934,417 | 100% | ||
slobberchops.tri | 0 | 979,125,557 | 100% | ||
johnhtims.stem | 0 | 144,645,963 | 100% | ||
archytas.replica | 0 | 361,440,898 | 70% | ||
sbi-tokens | 0 | 0 | 0.35% | ||
anggreklesta.alt | 0 | 195,828,517 | 100% | ||
echobourdon | 0 | 1,517,267,612 | 50% | ||
pemac | 0 | 209,309,670 | 5% | ||
organduo.pal | 0 | 0 | 2.81% | ||
laputis.pal | 0 | 0 | 2.81% | ||
mk-stem-token | 0 | 228,497,335 | 7.02% | ||
cryptopassionpal | 0 | 102,910,886 | 40% | ||
hayalet | 0 | 1,726,830,716 | 100% | ||
sirnaboii | 0 | 1,550,000,000 | 100% | ||
stem.alfa | 0 | 548,175,433 | 100% | ||
zafar-qureshi | 0 | 346,928,544 | 100% | ||
steem-aide | 0 | 8,874,079,493 | 15% | ||
ctl001 | 0 | 453,541,671 | 100% | ||
vxc.stem | 0 | 0 | 50% | ||
bruneo | 0 | 307,971,547 | 100% | ||
renk7997 | 0 | 200,931,780 | 100% |
marky, how do these resources costs compare with what else is on the chain. SM/SE might be 24% of tx activity, but I'm betting it's like 5% of RC cost.
author | aggroed |
---|---|
permlink | pxgv3k |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steemit/0.1"} |
created | 2019-09-07 15:02:09 |
last_update | 2019-09-07 15:02:09 |
depth | 1 |
children | 1 |
last_payout | 2019-09-14 15:02:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 152 |
author_reputation | 1,363,157,908,150,492 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,344,674 |
net_rshares | 429,710,494 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345.stem | 0 | 429,710,494 | 50% |
It's much more work to calculate RC and so on. Custom Json which is what is most of SM/SE is more expensive than votes and transfers not quite as much as post/comments. So it will still be a large %. The activity is more like 28-34% when you factor in transfers to SM/SE services. I'm not saying it is bad that it uses a large chunk, just was curious. I do think it means you should have your own nodes though.
author | themarkymark |
---|---|
permlink | pxgyl0 |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steemit/0.1"} |
created | 2019-09-07 16:17:27 |
last_update | 2019-09-07 16:17:57 |
depth | 2 |
children | 0 |
last_payout | 2019-09-14 16:17:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 415 |
author_reputation | 1,779,655,184,652,617 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,346,698 |
net_rshares | 12,121,887,483 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
supera244 | 0 | 0 | -100% | ||
enforcer48 | 0 | 12,121,887,483 | 5% |
How many RPC nodes does aggroed operate?
author | ats-david |
---|---|
permlink | pxba2m |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steemit/0.1"} |
created | 2019-09-04 14:39:57 |
last_update | 2019-09-04 14:39:57 |
depth | 1 |
children | 3 |
last_payout | 2019-09-11 14:39:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 324,017,334,201,433 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,237,567 |
net_rshares | 11,342,664,250 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enforcer48 | 0 | 11,342,664,250 | 5% |
0
author | themarkymark |
---|---|
permlink | pxbd97 |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steemit/0.1"} |
created | 2019-09-04 15:48:42 |
last_update | 2019-09-04 15:48:42 |
depth | 2 |
children | 2 |
last_payout | 2019-09-11 15:48:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1 |
author_reputation | 1,779,655,184,652,617 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,241,243 |
net_rshares | 11,331,438,801 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
supera244 | 0 | 0 | -100% | ||
enforcer48 | 0 | 11,331,438,801 | 5% |
Zero, as in - he himself operates no RPC nodes because others operate one for him? Or zero, as in - they actually use other RPCs because they don’t even pay someone to run one for them?
author | ats-david |
---|---|
permlink | pxbf4x |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steemit/0.1"} |
created | 2019-09-04 16:29:21 |
last_update | 2019-09-04 16:29:21 |
depth | 3 |
children | 1 |
last_payout | 2019-09-11 16:29:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 187 |
author_reputation | 324,017,334,201,433 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,243,058 |
net_rshares | 11,320,224,578 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enforcer48 | 0 | 11,320,224,578 | 5% |
Interesting. Very interesting. BTW, I noticed you downvoted TTS. I used to think what a silly Bot... who needs it? but, I've now run into a couple of users, here online who are struggling with vision issues. One types in All caps for her Posts, and when I asked, she mentioned her vision difficulties. You might reconsider downvotes on the TTS bot.
author | bluefinstudios |
---|---|
permlink | pxc5f7 |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steemit/0.1"} |
created | 2019-09-05 01:57:06 |
last_update | 2019-09-05 01:57:06 |
depth | 1 |
children | 1 |
last_payout | 2019-09-12 01:57:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 350 |
author_reputation | 200,061,094,238,277 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,256,231 |
net_rshares | 42,536,799,765 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shadowspub | 0 | 31,510,476,771 | 37% | ||
enforcer48 | 0 | 11,026,322,994 | 5% |
https://steemit.com/spam/@themarkymark/the-dirty-little-secret-behind-the-tts-account
author | themarkymark |
---|---|
permlink | pxcf8y |
category | analysis |
json_metadata | {"tags":["analysis"],"links":["https://steemit.com/spam/@themarkymark/the-dirty-little-secret-behind-the-tts-account"],"app":"steemit/0.1"} |
created | 2019-09-05 05:29:21 |
last_update | 2019-09-05 05:29:21 |
depth | 2 |
children | 0 |
last_payout | 2019-09-12 05:29:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 1,779,655,184,652,617 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,260,283 |
net_rshares | 11,015,414,301 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
supera244 | 0 | 0 | -100% | ||
enforcer48 | 0 | 11,015,414,301 | 5% |
That is a lot of transactions!
author | dmilliz |
---|---|
permlink | re-themarkymark-pxb3l7 |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steempeak/1.15.4"} |
created | 2019-09-04 12:20:00 |
last_update | 2019-09-04 12:20:00 |
depth | 1 |
children | 1 |
last_payout | 2019-09-11 12:20:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 252,325,572,793,175 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,231,599 |
net_rshares | 11,442,271,767 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enforcer48 | 0 | 11,442,271,767 | 5% |
Still less than Visa's 17K transactions/second.
author | themarkymark |
---|---|
permlink | pxb3ty |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steemit/0.1"} |
created | 2019-09-04 12:25:09 |
last_update | 2019-09-04 12:25:09 |
depth | 2 |
children | 0 |
last_payout | 2019-09-11 12:25:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 1,779,655,184,652,617 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,231,723 |
net_rshares | 11,432,117,222 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
supera244 | 0 | 0 | -100% | ||
enforcer48 | 0 | 11,432,117,222 | 5% |
ok, so they are using 25% roughly of all transactions on the chain so far. do you have an idea of how much this chain is capable of scaling wise? I saw some comparisons last year that said steem is using 1 or 2 % of its overall capacity but this was before @aggroed and @yabapmatt happened :-) so it would be cool to see how we are doing in that dept (but I have no way to find out with my non-tech skills)
author | felander |
---|---|
permlink | re-themarkymark-pxb5vz |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steempeak/1.15.5"} |
created | 2019-09-04 13:09:36 |
last_update | 2019-09-04 13:09:36 |
depth | 1 |
children | 1 |
last_payout | 2019-09-11 13:09:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 408 |
author_reputation | 191,230,907,725,589 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,233,058 |
net_rshares | 11,565,428,258 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enforcer48 | 0 | 11,421,053,145 | 5% | ||
abh12345.stem | 0 | 144,375,113 | 20% |
No idea but likely far more than we are using.
author | themarkymark |
---|---|
permlink | pxb663 |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steemit/0.1"} |
created | 2019-09-04 13:15:39 |
last_update | 2019-09-04 13:15:39 |
depth | 2 |
children | 0 |
last_payout | 2019-09-11 13:15:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 1,779,655,184,652,617 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,233,305 |
net_rshares | 11,398,623,906 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
supera244 | 0 | 0 | -100% | ||
enforcer48 | 0 | 11,398,623,906 | 5% |
So what's the biggest user of the other 76%? haha
author | jarvie |
---|---|
permlink | re-themarkymark-pxb6qy |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steempeak/1.15.5"} |
created | 2019-09-04 13:28:09 |
last_update | 2019-09-04 13:28:09 |
depth | 1 |
children | 1 |
last_payout | 2019-09-11 13:28:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 388,491,264,112,133 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,233,890 |
net_rshares | 11,505,036,384 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enforcer48 | 0 | 11,409,832,915 | 5% | ||
abh12345.stem | 0 | 95,203,469 | 15% |
I'd have to be a bit more clever as this was relatively easy as I knew it was all json transactions. It's actually a lot higher if you factor in transfers to steem monsters and other activity which isn't factored in.
author | themarkymark |
---|---|
permlink | pxbd8y |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steemit/0.1"} |
created | 2019-09-04 15:48:33 |
last_update | 2019-09-04 15:48:33 |
depth | 2 |
children | 0 |
last_payout | 2019-09-11 15:48:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 217 |
author_reputation | 1,779,655,184,652,617 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,241,235 |
net_rshares | 11,387,258,890 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
supera244 | 0 | 0 | -100% | ||
enforcer48 | 0 | 11,387,258,890 | 5% |
greetings, @themarkymark Excelent post, man!! You could use "spt" tag too... thank you and have a nice day
author | julisavio |
---|---|
permlink | pxgvcv |
category | analysis |
json_metadata | {"tags":["analysis"],"users":["themarkymark"],"app":"steemit/0.1"} |
created | 2019-09-07 15:07:36 |
last_update | 2019-09-07 15:07:36 |
depth | 1 |
children | 0 |
last_payout | 2019-09-14 15:07:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.047 HBD |
curator_payout_value | 0.047 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 108 |
author_reputation | 93,812,401,658,623 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,344,818 |
net_rshares | 409,364,181,770 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
julisavio | 0 | 409,364,181,770 | 100% |
Nice analysis! I really love to learn python language... Posted using [Partiko Android](https://partiko.app/referral/pemac)
author | pemac |
---|---|
permlink | pemac-re-themarkymark-what-percentage-of-the-network-does-steem-monsters-and-steem-engine-use-20190904t134324348z |
category | analysis |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-09-04 13:43:30 |
last_update | 2019-09-04 13:43:30 |
depth | 1 |
children | 0 |
last_payout | 2019-09-11 13:43:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | -410,581,125,284 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,234,737 |
net_rshares | 16,610,494,035 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enforcer48 | 0 | 11,475,729,156 | 5% | ||
pemac | 0 | 5,134,764,879 | 100% |
Imagine if there was a play store app for @steemmonsters, wow!  Posted using [Partiko Android](https://partiko.app/referral/pwny)
author | pwny |
---|---|
permlink | pwny-re-themarkymark-what-percentage-of-the-network-does-steem-monsters-and-steem-engine-use-20190904t121106262z |
category | analysis |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-09-04 12:11:09 |
last_update | 2019-09-04 12:11:09 |
depth | 1 |
children | 1 |
last_payout | 2019-09-11 12:11:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 222 |
author_reputation | 4,161,968,040,286 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,231,404 |
net_rshares | 11,746,150,127 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enforcer48 | 0 | 11,453,608,159 | 5% | ||
abh12345.stem | 0 | 292,541,968 | 35% |
I wouldn't be surprised if they are working this.
author | themarkymark |
---|---|
permlink | pxb39x |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steemit/0.1"} |
created | 2019-09-04 12:13:24 |
last_update | 2019-09-04 12:13:24 |
depth | 2 |
children | 0 |
last_payout | 2019-09-11 12:13:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 1,779,655,184,652,617 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,231,460 |
net_rshares | 11,464,955,899 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
supera244 | 0 | 0 | -100% | ||
enforcer48 | 0 | 11,464,955,899 | 5% |
To listen to the audio version of this article click on the play image. [](http://ec2-52-72-169-104.compute-1.amazonaws.com/themarkymark__what-percentage-of-the-network-does-steem-monsters-and-steem-engine-use.mp3) Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
author | tts |
---|---|
permlink | re-what-percentage-of-the-network-does-steem-monsters-and-steem-engine-use-20190904t122209 |
category | analysis |
json_metadata | "" |
created | 2019-09-04 12:22:09 |
last_update | 2019-09-04 12:22:09 |
depth | 1 |
children | 0 |
last_payout | 2019-09-11 12:22:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 395 |
author_reputation | -4,535,154,553,995 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,231,647 |
net_rshares | -173,950,635,706 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
themarkymark | 0 | -173,950,635,706 | -1% |
Cool analysis, I would have guessed more, if you look at the tx count on steemapps.com, Steem Monsters alone use up to 50% of all tx. Have you missed some Steem Monsters and Steem Engine related transactions?
author | vikisecrets |
---|---|
permlink | re-themarkymark-pxb8p1 |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steempeak/1.15.5"} |
created | 2019-09-04 14:10:15 |
last_update | 2019-09-04 14:10:15 |
depth | 1 |
children | 3 |
last_payout | 2019-09-11 14:10:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 208 |
author_reputation | 1,211,359,799,901,291 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,236,095 |
net_rshares | 11,470,758,809 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enforcer48 | 0 | 11,375,988,847 | 5% | ||
abh12345.stem | 0 | 94,769,962 | 15% |
I didn't touch transfers which there definitely are a lot of transfers to and from steem monsters/steem engine. I'll look into them as they are likely a decent amount as well. I am re-running it taking into account transfers. So far when adding transfers it goes up to as much as 28%
author | themarkymark |
---|---|
permlink | pxbda9 |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steemit/0.1"} |
created | 2019-09-04 15:49:21 |
last_update | 2019-09-04 16:23:24 |
depth | 2 |
children | 2 |
last_payout | 2019-09-11 15:49:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 285 |
author_reputation | 1,779,655,184,652,617 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,241,278 |
net_rshares | 169,670,451,630 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
supera244 | 0 | 0 | -100% | ||
vikisecrets | 0 | 98,130,964,235 | 10% | ||
smidge-tv | 0 | -22,747,935,142 | -100% | ||
upboater | 0 | 82,922,692,463 | 8% | ||
enforcer48 | 0 | 11,364,730,074 | 5% |
oh interesting, why still this huge gap compared to steemapps.com?
author | vikisecrets |
---|---|
permlink | re-themarkymark-pxblxb |
category | analysis |
json_metadata | {"tags":["analysis"],"app":"steempeak/1.15.5"} |
created | 2019-09-04 18:56:03 |
last_update | 2019-09-04 18:56:03 |
depth | 3 |
children | 1 |
last_payout | 2019-09-11 18:56:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 1,211,359,799,901,291 |
root_title | "What percentage of the network does Steem Monsters & Steem Engine use?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,247,229 |
net_rshares | 11,353,566,168 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enforcer48 | 0 | 11,353,566,168 | 5% |