Debank - Web3 Social Ranking rules

Web3 Social Ranking rules

What is Web3 Social Ranking?

Web3 Social Ranking is a ranking list developed by DeBank. It evaluates on-chain addresses based on their social influence within the Web3 ecosystem. It ranks addresses based on their previous on-chain behaviors. Each address will have a score that determines its final ranking.

How does it rank?

Each address will be evaluated with a “Social Score” which is composed by two parts: “Basic Score” and “Weighted Score”.

💡

Basic Score + Weighted Score = Social Score

Step 1: Computation of the “Basic Score”

“Basic Score” factors: ETH balance, Effective DeBank followers(A valid "Follower" must have at least $1000 balance), Ethereum NFT (collection amount, NFT amount,https://debank.com/nft-collection), DeFi (participated protocols(balance>1000$), participated amount,https://debank.com/protocol), address age, Profile integrity (only count for DeBank supported NFT & DeFi protocols)

User scope: Any user that meets any of the below requirements will be evaulated with a score: participate in at least one DeFi protocol / have at least one NFT / have at least 1 “Following or Follower” on DeBank / binded with at least one social medium account on DeBank

“Basic Score”: It’s composed by multiple sub scores per “score criteria”.

Score criteria for the “Basic Score”

Step2: Computation of the “Social Score”

Weighted Score: In addition to the “Basic Score”, “Weighted Score” is also an important component that affects a user’s ranking. It represents a user’s social influence; If two users have the same “Basic Score”. The higher weighted score one has, the higher he ranks.

User ranking: “Basic Score” and “Weighted Score” are added up as the final “Social Score” (100 points). All users are ranked by the “Social Score”.

Displayed users: Only the top 100K users on the "Web3 Social Ranking" will be displayed

Example table for the “Social Score” calculation

点赞
收藏

评论区

加载中...

相关推荐

MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1

文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s

Oracle 分组与拼接字符串同时使用

SELECTT.,ROWNUMIDFROM(SELECTT.EMPLID,T.NAME,T.BU,T.REALDEPART,T.FORMATDATE,SUM(T.S0)S0,MAX(UPDATETIME)CREATETIME,LISTAGG(TOCHAR(

MySQL部分从库上面因为大量的临时表tmp_table造成慢查询

背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_

手写Java HashMap源码

HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22

java将前端的json数组字符串转换为列表

记录下在前端通过ajax提交了一个json数组的字符串,在后端如何转换为列表。前端数据转化与请求varcontracts{id:'1',name:'yanggb合同1'},{id:'2',name:'yanggb合同2'},{id:'3',name:'yang

2020年前端实用代码段,为你的工作保驾护航

有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )