Skip to content

Positive-Spaces-IO/bitclout-visualizing-hodlers

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BitClout - Who Are Content Creators Supported By? (Visualizing HODLers)

placeholder Visualization of BitClout HODLers on 17th of May 2021

Introduction --- A word about BitClout

BitClout is a new type of a social network that lets you speculate on (the worth of) people and posts with real money. It's built from the ground up as its own custom blockchain. Its architecture is similar to Bitcoin's, except it supports complex social network models like posts, profiles, follows, speculation features, and much more at a significantly higher throughput and scale. Like Bitcoin, BitClout is a fully open-source project and there is no company behind it --- it's just coins and code.

Since it's creation in March of 2021, thousands of investors swarmed the platform with millions of dollars. Looking to invest ourselves, we were interested which content creator coins were most likely going to increase in value. To do this, we have to observe a very important fact about BitClout. BitClout is a social network revolving around content creators and their supporters, HODLers, people who hodl (hold) their coins. The more hodlers a content creator has the more their coin is worth. We can model the BitClout community as a graph where nodes are represented by content creators and investors, and edges by connections between them. If we can predict which new connections are going to form we can generate a profit by buying the coins of undervalued content creators and selling them once they increase in value.

Being a company that values the power of graphs two algorithms immediately sprung to our mind. Google's PageRank algorithm, which ranks nodes in a graph by the value of their connections, and the Louvain method for community detection featured in the image on the beginning of this article. The community detection algorithm tells us which audiences stick together in the BitClout community. Based on this, if connections start forming to a new content creator from the majority of the community we can conclude the rest is probably going to follow.

Ranking content creators using PageRank

Here we have the top 10 users ranked by PageRank. PageRank favors quantity over quality when it comes to connections. That is why, BeActive is ranked higher than elonmusk, even though elonmusk's coin is worth more (at the time of writting).

index user_id username rank
1 BC1YLIQW2FSIH2ebpdJysButjwUppvfHvYqZsvwbV8B9mNE7iWJEJZ3 BeActive 0.06534831469247263
2 BC1YLgC3bhQsJYTJgYfgMcBo9qaCAWMcrVWJ23hXnqCwKESKMmge7wz Cloutrex 0.02877110638112634
3 BC1YLixEYzjdxLEZEWBY2h7Ghf4n9WACSFGacCMfr6UhhMFgTgHBwi5 Taylor Richey 0.018742750007415286
4 BC1YLIFNARSWF6qtXM5acrS7q8VWPeeS2gycVBtqLALKE4c1V3kx4US elonmusk 0.011899533689265654
5 BC1YLhi8duT4tn93bFDNyV1WhUyTeU49wBxRhXjY11cSmR429 JAb3dZ nightcoremtb 0.010067757879769686
6 BC1YLh5pKXs8NqaUtN8Gzi3rfoAgG2VWio2NERZbaDkG8T2x7wRnSwa cloutfeed 0.00759060317028377
7 BC1YLİYfkw6rU3aSdpmF8v4xqikkrkagirqzBVU9mCJUVKwR76FdV5f Davidsun 0.006058864365693246
8 BC1YLhB2pWyE1BjqYAABHXmcVRV6UjUExy5jUJDZYT9GTi730h5Raq jakeclark 0.005341668427896169
9 BC1YLIWSZjJyncHL1qARwEzazYKUdgkauokapN7Si8sWRkxB6E3kXKH Angelad 0.005272945921252985
10 BC1YLJ7DB4x7q7EgNCmg7t8q1QfQ8CnpMGcEKKUXgg5NTaf4Q1X6xds iActive 0.004981355396576359

How to get BitClout HODLers?

All the code used to create this demo can be found here. Since the BitClout HODLers API isn't documented yet, we had to jump through hoops to acquire the data. If you want to skip that part you can download the datasets we managed to extract here. Jumping into Google Chrome's developer console when viewing the account of a content creator, under the Creator Coin tab, we noticed a call to the /api/v0/get-hodlers-for-public-key route. Copying all the headers to python, we cobbled together a parallelised python script to go over every account in BitClout and get their hodlers.

After scraping the data, we slid it into Memgraph, a graph analytics platform. We did this for 2 reasons. One; python's networkx library was too slow, and two; we wanted to see changes whenever new connections are made in the network. To do that we needed to transform the scraped data into a CSV, and load it with a cypher script.

Thereafter it was smooth sailing. Or so we had thought. Analysing the data was a piece of cake. But presenting it, not so much. This is why we decided to split into three teams and tried to visualize the data using three different mediums: MemgraphLab, D3.js, and ObservableHQ. Feel free to explore the code for the visualization that looks most enticing!

placeholder for ObservableHQ ObservableHQ visualization

placeholder for D3 landing page D3.js visualization

placeholder for MemgraphLab MemgraphLab visualization

About

Visualizing BitClout 🪙☁️ HODLers

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 62.6%
  • JavaScript 25.6%
  • HTML 8.2%
  • Dockerfile 3.6%