Skip to content

gliushuo/connect-list

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

connect-list

This repo contains a list of verified mappings that link Ethereum addresses with social profiles (Twitter supported currently).

Schema

A twitter entry for an Ethereum address includes 3 fields of data :

  • handle : the username found in a users tweet
  • tweetID: the id of the tweet (stored as reference for tweet data)
  • timestamp: unix timestamp at time of verification

Verifying an Identity

Use our social-verifier API to verify social accounts.

Consuming the list

The raw JSON can be found at https://raw.githubusercontent.com/cyberconnecthq/connect-list/main/verified.json.

To use, you can use our CyberConnect API to check an identity twitter account.

or just fetch the data at this endpoint:

fetch(
  'https://raw.githubusercontent.com/cyberconnecthq/connect-list/main/verified.json'
).then(async (res) => {
  res.json().then((data) => {
    console.log(data); // list data
  });
});

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published