Market Share of the Steem Blockchain by Application: May 2018 Analysis


Introduction

The Steem blockchain is much more than steemit.com. There are many applications through which you can post to the blockchain and every month the list grows a little bit longer.

If you were to take the steem data for May, for example, and carefully tease it apart, you would find it has arrived on the blockchain through no less than one hundred and eighty-five different sources. Some of these are small and experimental; a single test post from a single account. Others are fully-fledged websites and smartphone apps, capable of channeling a hundred-thousand voices to the blockchain each month. In between the range of options keeps on growing. Whether you're a vlogger, a live-streamer, a coder or a singer, there's a platform already built for you, or one that will shortly be coming your way.


Scope

Luckily for you, in this analysis I do all the hard work. I break down the May 2018 steem data by source application and list out the top 50 choices by author numbers. By comparison to the April figures I highlight which apps are heading up the charts and explain why some may be falling. Finally I look into the future, uncovering some new hidden gems that could soon see the light of day.


Results

May 2018

First of all the May results. Applications are listed by number of individual authors posting to the blockchain in the month of May. Rankings are also provided for numbers of posts (not comments) and payout amounts (curation payout plus author payout but excluding beneficiaries and based on payouts made in May rather than from posts made in May).

Top 50 steem applications ordered by number of authors posting in May
Screen Shot 2018-06-02 at 20.10.50.png

Screen Shot 2018-06-02 at 20.13.38.png

It should be noted that some applications do not lend themselves to the above ranking approach. For example, "steemgar" has only one account that produces posts but many accounts that compete in the game and produce comments. This is something I will look at for next month.

Top 10 steem applications ordered by number of authors posting in May

A visual breakdown of the top ten applications, again ordered by author numbers.

Screen Shot 2018-06-02 at 20.14.52.png


April 2018
For comparison, April 2018: same approach, different month.

Screen Shot 2018-06-02 at 22.14.35.png

Screen Shot 2018-06-02 at 22.17.22.png


Findings

Risers and Fallers

There has been no change in the order of the top 5 applications. Steemit.com is still way out in front overall, although its market-share of the user base shaved slightly from 60.8% to 59.7%.

Steemhunt.com is one of the biggest risers; up from 23rd to 15th with a 300% rise in users posting. For those of you who are yet to visit, Steemhunt is all about discovering new tech and sharing it with the community. There is a daily contest to find the most popular discoveries with the top "hunts" receiving some additional upvotes. It's also one of the best looking sites accessing the steem blockchain, with some great web design. Definitely worth checking out if you're at all tech-minded!

On the meme front, memeit.lol is up two spots to 19th while dMania is heading in the opposite direction - down one place to 7th following its off-again, on-again production saga. Plenty of options out there if memes are your thing.

Partiko is a completely new entrant in the top 25 for May, appearing on the list at number 22. It's an Android based mobile app and is getting some great reviews. I can't tell you much more than that as I'm pretty much all Apple, but you can read more about it on the @partiko account.

Finally you may have noticed utopian.io sliding down to a surprisingly low position in the table. Of course this is simply due to these stats being based on the choice of underlying application used to post to the blockchain and the utopian site being down after a recent hack. Utopian is still going strong with its community posting through other steem applications while a new utopian front-end is completed - soon to be back up fitter and stronger than ever!

Apps to Watch

One of the most interesting results from breaking down the steem data by application is that it reveals numerous applications in test and development stages. Here are a couple that I've picked to keep an eye on:

tasteem Already up at number 16 in the table this one has passed under my radar to date, perhaps due to the beta being mainly Korea focused. It's a restaurant guide site with weekly contests and looks like it could be a lot of fun. You can check out the beta at https://kr.tasteem.io/ or https://tasteem.io for a taste of things to come!

Appics After their very successful fund-raising it's good to see appics-testing hitting the blockchain. Details on the first Alpha version of the app will be on their site shortly.


Conclusion

There are more ways to post to the Steem blockchain than you might have imagined. With the list of applications growing each month, there are more and more opportunities for Steem users to find the niche and the community that suits them best, and still plenty of opportunities for developers to add to the cause. Although the competition is rising during 2018, Steem remains well positioned as the market-leader in cryptocurrency content creation and social media.


Repository

https://github.com/steemit/steem


Tools and Scripts

I used the following script to obtain the data:

Full month run grouped by date and app

SELECT
    Convert(date, Comments.created),
    IIF(isjson(json_metadata) = 1, IIF(CHARINDEX('/', json_value(json_metadata, '$.app')) > 0, SUBSTRING(json_value(json_metadata, '$.app'), 1, CHARINDEX('/', json_value(json_metadata, '$.app'))-1),json_value(json_metadata, '$.app')), null) as [SummarisedApp],
    Count(Comments.author) AS [Posts],
    Count(distinct Comments.author) AS [DistinctCommentAuthor],
    sum(CONVERT(REAL,Comments.pending_payout_value)) AS [PendingPayoutValue],
    sum(CONVERT(REAL,Comments.curator_payout_value)) AS [CuratorPayoutValue],
    sum(CONVERT(REAL,Comments.total_payout_value)) AS [TotalPayoutValue]

FROM
    Comments (NOLOCK)
    
WHERE
    (Convert(date, Comments.created) >= '2018-04-24' AND Convert(date, Comments.created) <= '2018-05-31') AND
    depth = 0
    
GROUP BY
    Convert(date, Comments.created),
    IIF(isjson(json_metadata) = 1, IIF(CHARINDEX('/', json_value(json_metadata, '$.app')) > 0, SUBSTRING(json_value(json_metadata, '$.app'), 1, CHARINDEX('/', json_value(json_metadata, '$.app'))-1),json_value(json_metadata, '$.app')), null)

Distinct authors run grouped by app

SELECT
     IIF(isjson(json_metadata) = 1, IIF(CHARINDEX('/', json_value(json_metadata, '$.app')) > 0, SUBSTRING(json_value(json_metadata, '$.app'), 1, CHARINDEX('/', json_value(json_metadata, '$.app'))-1),json_value(json_metadata, '$.app')), null) as [SummarisedApp],
    Count(Comments.author) AS [Posts],
    Count(distinct Comments.author) AS [DistinctCommentAuthor]

FROM
    Comments (NOLOCK)
    
WHERE
    YEAR(Comments.created) = 2018 AND 
    MONTH(Comments.created) = 5 AND
    depth = 0   
    
GROUP BY
    IIF(isjson(json_metadata) = 1, IIF(CHARINDEX('/', json_value(json_metadata, '$.app')) > 0, SUBSTRING(json_value(json_metadata, '$.app'), 1, CHARINDEX('/', json_value(json_metadata, '$.app'))-1),json_value(json_metadata, '$.app')), null)

No double counting run

SELECT
     
    Count(Comments.author) AS [Posts],
    Count(distinct Comments.author) AS [DistinctCommentAuthor]

FROM
    Comments (NOLOCK)
    
WHERE
    YEAR(Comments.created) = 2018 AND 
    MONTH(Comments.created) = 5 AND
    Depth = 0

Relevant Links and Resources

Links are provided in the text.


Thanks for reading!

Sort:  

Hi @miniature-tiger, haven't seen you for a while in the analysis section. Glad to have you back! Only you left out your exceptional visualizations this time :)
Your tables include some interesting apps with regard to the post and payouts per authors that I didn't know of - definitely worth a more detailed look!

Your contribution has been evaluated according to Utopian policies and 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.


Need help? Write a ticket on https://support.utopian.io/.
Chat with us on Discord.
[utopian-moderator]

Hey @crokkon, good to be back!

Yes, the visualisations took a bit of a back seat this month as I was focused on reworking and streamlining the data collection and processing and getting to a fuller list of applications. But they will be back next month, better than ever! Plus I have some great ideas for new ones - it's just a question of whether I can find an appropriate generator or if I have to do some development myself to get the format I want. All to be included next month!

Nicely complied 😁 That 'group by' statement looks fun!

Steempress has grown a lot this past month, look out for that one next time. Might have to label it 'spampress' 🙈

Ha! The group statement just takes out the version numbers from the apps. So busy/2.4.0 and busy/2.4.1 are both just treated as busy. There's probably a cleaner / quicker way to do it with the new steemsql json_metadata search functionality. One to work on for next time.

Steempress does stand out doesn't it. 300 authors and 40,000 posts. I'm sure steemcleaners will pick up the worst offenders, as and when necessary.

Lots of interesting things in development further down the table though, some of which I'd never heard of. I think we're slowly moving towards a wider network of separate sites and apps all posting to the same blockchain. Probably something that will increase when SMTs arrive. It's good for decentralisation and I think there are still plenty of opportunities for developers and entrepreneurs to get involved and get their projects on board. The second half of 2018 could be mighty interesting!

Cool, didn't know you also made analysis posts! Hopefully we can get back up the rankings once the new front end is completed.

Thanks Amos!

Yes, I used to do lots of analyses. This is one I've done monthly on Utopian since way back, although I missed last month as I've had plans for a while to revamp it but didn't find the time due to being engrossed with the development work.

It needs a few more charts and visualisations which I'll work on for next month. Most likely a little more depth on the individual platform highlights and showing how things are progressing over time. This month was all about changing the data grouping and cleaning and processing. Dull but necessary as the blockchain data grows.

It'll be good to see Utopian back up there - I'm looking forward to seeing what the new platform looks like!

Hey @miniature-tiger
Thanks for contributing on Utopian.
We’re already looking forward to your next contribution!

Contributing on Utopian
Learn how to contribute on our website or by watching this tutorial on Youtube.

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

Vote for Utopian Witness!

I just can not understand what this blockchain is?
If you used to say a little bit more details then you would benefit

cool post analysis,
it's a bit complicated to understand the last part because I'm still a beginner in this steemit,

amazing conten creator star on trending

I congratulate you, very interesting topic, thanks for sharing!

Coin Marketplace

STEEM 0.24
TRX 0.11
JST 0.031
BTC 60936.15
ETH 2921.43
USDT 1.00
SBD 3.70