This document outlines how rug pull index's algorithm is ranking data sets.
When ranking all data sets sold on Ethereum, the first step is acquiring meta data of all markets on Ocean Protocol and Big Data Protocol. Both projects host a version of the oceanprotocol/market. They take their data from an off-chain meta data cache called Aquarius and a protocol-specific subgraph implementation.
The following sources are used to collect all relevant data to generate a ranking:
list-accounts.json
and list-assets.json
.We call the software that downloads all this meta data the "crawler". In the past, there have been nights where the crawler failed. This was when the main page wasn't showing any reasonable results. When the crawl fails an administrator can manually login to fix the problem by e.g. re-running the crawl.
Once the crawl has finished, we perform a number of calculations that flow into the final ranking.
The Ocean Protocol uses Automated Market Makers (or short: "pools") of Balancer's version 1. When staking e.g. QUICRA-0/OCEAN, the balancer pool returns a separate ERC20 token that represents a staker's liquidity in the pool.
As we want to rate a data set's factor of decentralization and hence the potential (or risk) it has of a single user "pulling the rug" - for each data set -, we calculate a Gini coefficent from the pool's population of liquidity providers.
In the following paragraphs, we define the Gini coefficent on an intuitive basis rather than by deriving it from the Lorenz curve [1]. As matrix , we represent the differences of all stake pairs in the pool, with :
As a formula, we can represent as , where represents the population's size:
However, for us to make a statement about the relative inequality of a data set's pool, it requires us to put the absolute difference in relationship to the a population's worst case inequality. Namely a scenario where one member earns all total income while others earn nothing. We define this case with being the population's total income as:
As a formula, we can represent it as :
Where we define the Gini coefficient to be a relation between and :
Additionally, since we've discovered an unfair advantage for pools with many small liquidity providers, for data sets with greater than 100 liquidity providers we only consider pool shares of more than 0.1% in the above calculation. For pools with less than 100 LPs, a stake counts towards the Gini coefficient only when its share is more than 1% of the pool.
As outlined in the section "Data Acquisition", a data sets price in OCEAN or BDPToken is downloaded from Acquarius. The latest tickers for OCEAN/EUR and BDPToken/EUR are downloaded from coingecko. The EUR value of an OCEAN data asset which price is is then calculated by multiplying it by the price of an OCEAN :
rug pull index fetches and calculates - as previously mentioned - a set of meta data daily. Given an exemplary market of only two data sets and , over a timespan of two days, a fictional state of rug pull index's data base could look like this:
name | liquidity (EUR) | Gini coefficient | date |
---|---|---|---|
A | 10 | 0.5 | 2021-06-22 |
B | 2 | 1 | 2021-06-22 |
A | 5 | 0.24 | 2021-06-23 |
B | 7 | 1 | 2021-06-23 |
To now calculate a daily ranking, considering the data of both days (June 22 and June 23), rug pull index does the following: In the "liquidity (EUR)" column, the overall highest value ("max value") is selected by searching the data base (it is "10" on June 22). Additionally the smallest Gini coefficient ("min value") is determined ("0.24" on June 23 for). These "min" (Gini coefficient) and "max" (liquidity (EUR)) values are then used as benchmark to evaluate the current day's data sets. Assuming the date to be June 23, 2021 we'd calculate the overall ranking of to be:
and :
Hence, the main page's ranking would yield the following table for June 23, 2021:
rank | name | ranking | liquidity (EUR) | Gini coefficient |
---|---|---|---|---|
1 | A | 50% | 5 | 0.24 |
2 | B | 2.91% | 7 | 1 |
Generally speaking, on a day the rating of a data set, can be calculated using the overall minimal Gini coefficient , the overall maximal liquidity in EUR , the data set's current liquidity in EUR and the data set's current coefficient :
We pledge to update this specification with every update made to rug pull index's algorithm.
If you have questions or feedback with regards to this document, please contact us.