Git Product home page Git Product logo

crypto-ecosystems's Introduction

V1.1 UPDATE [12/20/23]: Read about the Crypto Ecosystems taxonomy's update to Version 1.1 here.

Crypto Ecosystems

MIT license with attribution

🌲 Crypto Ecosystems is a taxonomy for sharing data around open source blockchain, Web3, cryptocurrency, and decentralized ecosystems and tying them to GitHub organizations and code repositories. All of the ecosystems are specified in TOML configuration files.

This repository is not complete, and hopefully it never is as there are new ecosystems and repositories created everyday.

How to Contribute

There's a couple of ways you can help grow this initiative.

Option 1: Opening a Pull Request

You can make any .toml file for an ecosystem under the /data/ecosystems directory or edit an existing one to help improve data around an ecosystem.

You can fork this repository and open a PR from the forked repo to this repo. If you are not sure how to do that, you can follow the tutorial in this video.

Data Format

An example configuration file for the Bitcoin ecosystem looks like this:

# Ecosystem Level Information
title = "Bitcoin"

# Sub Ecosystems
# These are the titles of other ecosystems in different .toml files in the /data/ecosystems directory
sub_ecosystems = [ "Lightning", "RSK Smart Bitcoin", "ZeroNet"]

# GitHub Organizations
# This is a list of links to associated GitHub organizations.
github_organizations = ["https://github.com/bitcoin", "https://github.com/bitcoin-core", "https://github.com/bitcoinj", "https://github.com
/btcsuite", "https://github.com/libbitcoin", "https://github.com/rust-bitcoin"]

# Repositories
# These are structs including a url and tags for a git repository. These URLs do not necessarily have to be on GitHub.

[[repo]]
url = "https://github.com/bitcoin/bitcoin"
tags = [ "Protocol"]

[[repo]]
url = "https://github.com/bitcoinbook/bitcoinbook"
tags = [ "Documentation"]

[[repo]]
url = "https://github.com/bitcoin-wallet/bitcoin-wallet"
tags = [ "Wallet"]

By specifying the data as evolving config files in git, we benefit from a long term, auditable database that is both human and machine readable.

Option 2: Complete the Ecosystem Submission form

If you are not a developer or you find making a commit too difficult, you can use this Airtable based alternative below.

You can visit the form here, fill it, submit it and we'll take care of the rest :)

How to Give Attribution For Usage of the Electric Capital Crypto Ecosystems

To use the Electric Capital Crypto Ecosystems Map, you will need an attribution.

Attribution needs to have 3 components:

  1. Source: “Electric Capital Crypto Ecosystems Mapping”
  2. Link: https://github.com/electric-capital/crypto-ecosystems
  3. Logo: Link to logo

Optional: Everyone in the crypto ecosystem benefits from additions to this repository. It is a help to everyone to include an ask to contribute next to your attribution.

Sample request language: "If you’re working in open source crypto, submit your repository here to be counted."

Sample attribution

Data Source: Electric Capital Crypto Ecosystems Mapping

If you’re working in open source crypto, submit your repository here to be counted.

How to Contribute (Step-by-Step Guide)

There are three types of contributions you can make to this data set:

  1. Adding a new ecosystem (e.g. a new layer 1 blockchain)
  2. Adding a new sub-ecosystem (e.g. a big organisation that has multiple repos within the above ecosystem)
  3. Adding a new repo (e.g. an individual project within the ecosystem/sub-ecosystem) or organization

This may sound confusing. It is perhaps even more confusing because whilst there are these different data sources/structures, all of them sit within one directory (data/ecosystems) as .toml files.

To make things easier, we've made the following roadmap for you to follow depending on which of the above 3 types of contributions you're trying to make.

Option 1: Adding a new ecosystem (e.g. blockchain)

If you're adding a totally new ecosystem that has no parents (e.g. Cosmos/Ethereum), then follow this path. You're most likely adding a new L1 blockchain, so let's take the fictitious example of a new chain called EasyA Chain. Follow these steps:

  1. Go to the data/ecosystems directory
  2. Find the folder named the first letter of the ecosystem you're adding. Here, it's the letter E because our L1 is called EasyA Chain.
  3. Open the folder
  4. Inside the folder, create a new .toml file named after your L1 in kebab-case. Here, it will be called easya-chain.toml. The full path will now be data/ecosystems/e/easya-chain.toml.
  5. Add the following 2 required fields:
# Required field number 1: Name of the ecosystem
title = "EasyA Chain"

# Required field number 2: List of associated GitHub organizations
github_organizations = ["https://github.com/EasyA-Tech"]
  1. Make your PR! ✅

Remember that this is a hierarchy. If you're adding a Cosmos appchain, therefore, you should be following Option 2 below (since it will be a sub-ecosystem of Cosmos).

It's important to note also that you do not need to add all the repos within your GitHub organizations to the .toml file as individual repos, because the system automatically fetches all repos within the organization.

You may see other ecosystems that have done this:

title = "EasyA Chain"

github_organizations = ["https://github.com/EasyA-Tech"]

[[repo]]
url = "https://github.com/EasyA-Tech/Chain" # ❌ Don't do this ❌
tags = [ "Protocol"]

This is unnecessary. It adds clutter and makes it harder for reviewers to approve your PR. We will explain below when and why you should add repos to an ecosystem.

Option 2: Adding a new sub-ecosystem

If you're adding a new sub-ecosystem (in other words, it has a parent, like a blockchain or a layer 0), then follow these steps. Again, we'll be using the fictitious EasyA Chain L1 blockchain as an example. However, this time, we'll be adding the new EasyA Community Wallet sub-ecosystem to it.

  1. Go to the data/ecosystems directory
  2. Find the folder named the first letter of the name of the ecosystem which the project you're adding is part of. Here, it's the letter E because our L1 is called EasyA Chain.
  3. Open the folder. Here, it's the E folder.
  4. Inside the folder, find the .toml file that has the ecosystem's name. Here, following our EasyA Chain example, it will be easya-chain.toml. The full path to the ecosystem will be data/ecosystems/e/easya-chain.toml.
  5. Open this file. Inside the ecosystem file, you will see something that looks like this:
title = "EasyA Chain"

github_organizations = ["https://github.com/EasyA-Tech"]
  1. You will then need to do one of two things.

    1. If there are no sub-ecosystems yet, add your sub-ecosystem by adding the following line:
    sub_ecosystems = ["EasyA Community Wallet"]
    1. If you see a line starting with sub_ecosystems already, then simple add your sub-ecosystem to the list:
    sub_ecosystems = ["Pre-existing Sub-Ecosystem", "EasyA Community Wallet"]

Overall, your file should then look something like this:

title = "EasyA Chain"

sub_ecosystems = ["EasyA Community Wallet"] # This is the line we changed

github_organizations = ["https://github.com/EasyA-Tech"]
  1. Once you've added your sub-ecosystem's name to the parent ecosystem file, go back to the data/ecosystems directory.
  2. This time, find the folder that is the first letter of the name of the sub-ecosystem you're adding. Here, it also happens to be the letter E because our sub-ecosystem is called EasyA Community Wallet.
  3. Open the folder. Here, it's the E folder.
  4. Inside the folder, create the .toml file that has the sub-ecosystem's name. Here, following our EasyA Community Wallet example, it will be easya-community-wallet.toml. The full path to the ecosystem will be data/ecosystems/e/easya-community-wallet.toml.
  5. Add the following 2 required fields:
# Required field number 1: Name of the sub-ecosystem
title = "EasyA Community Wallet"

# Required field number 2: List of associated GitHub organizations
github_organizations = ["https://github.com/EasyA-Community-Wallet"]
  1. Make your PR! ✅

Please remember here too that the same note as in Option 1 applies: the system automatically pulls in the repos from your sub-ecosystem GitHub organization, so you don't need to list them all out individually.

If you prefer videos, you can also see the above steps done live here.

If you've been following along closely, you'll have noticed that the steps after adding the sub-ecosystem to the parent ecosystem are exactly the same a Option 1 (adding a totally new ecosystem that has no parents). That's because this taxonomy is based on ancestry. Any sub-ecosystem is basically just an ecosystem in its own right (it's not like a sub-ecosystem is any less valuable). The ecosystem and sub-ecosystem dichotomy is merely there so we can see the relationship between different ecosystems. You can keep adding sub-ecoystems to sub-ecosystems ad infinitum (forever).

Option 3: Adding a new repo or organization

The system automatically pulls in all repos listed under a GitHub organization within an ecosystem. For example, when the system sees the below ecosystem, it will automatically account for all the repos under the EasyA-Tech GitHub organization.

title = "EasyA Chain"

github_organizations = ["https://github.com/EasyA-Tech"]

So don't worry! You don't need to add every single repo if it's already part of an organization that's in the data set.

To add a new organization, simply append its full GitHub URL to the list of organizations in the associated ecosystem. Let's take the example of adding an organization with the URL https://github.com/EasyA-Community as part of the EasyA Chain ecosystem.

You would follow these steps:

  1. Go to the data/ecosystems directory
  2. Find the folder named the first letter of the name of the ecosystem which the organization you're adding is part of. Here, it's the letter E because our ecosystem is called EasyA Chain.
  3. Open the folder. Here, it's the E folder.
  4. Inside the folder, find the .toml file that has the ecosystem's name. Here, following our EasyA Chain example, it will be easya-chain.toml. The full path to the ecosystem will be data/ecosystems/e/easya-chain.toml.
  5. Open this file. Inside the ecosystem file, you will see something that looks like this:
title = "EasyA Chain"

github_organizations = ["https://github.com/EasyA-Tech"]
  1. Simply add your GitHub organization URL to the list. Here, ours is https://github.com/EasyA-Community so we'll add that:
title = "EasyA Chain"

github_organizations = ["https://github.com/EasyA-Tech", "https://github.com/EasyA-Community"]
  1. Make your PR! ✅

When, then, should you add repos? You only need to add a repo directly to an ecosystem if:

  1. ✅ It is not owned by a GitHub organization already listed in an ecosystem file (those .toml files)
  2. ✅ It is not itself an ecosystem/sub-ecosystem (in which case you'd be adding it as an ecosystem)

The types of projects that will commonly get added as individual repos are:

  • Documentation
  • Wallets
  • Utility Libraries
  • Smaller protocols

Usually these will be repos created by the community (so not already accounted for under the ecosystem/sub-ecosystem GitHub organization). Use that as a rough heuristic here. If the repo you're adding is actually one of many repos all in the same ecosystem, and in fact the organization only contributes to that one ecosystem, then you should almost certainly be adding your organization instead.

If you're happy that you should be adding this repo, then here's how to do it. Let's take the example of a community contributor with the GitHub handle Platonicsocrates who's created a helper library for the EasyA Chain but also contributes to other projects (so we shouldn't add their whole organization/profile). Their repo URL https://github.com/platonicsocrates/easya-helpers.

You would follow these steps to add it:

  1. Go to the data/ecosystems directory
  2. Find the folder named the first letter of the name of the ecosystem which the repo you're adding is part of. Here, it's the letter E because our ecosystem is called EasyA Chain.
  3. Open the folder. Here, it's the E folder.
  4. Inside the folder, find the .toml file that has the ecosystem's name. Here, following our EasyA Chain example, it will be easya-chain.toml. The full path to the ecosystem will be data/ecosystems/e/easya-chain.toml.
  5. Open this file. Inside the ecosystem file, you will see something that looks like this:
title = "EasyA Chain"

github_organizations = ["https://github.com/EasyA-Tech"]
  1. Simply add the following three lines at the end of the .toml file:
[[repo]]
url = "https://github.com/platonicsocrates/easya-helpers" # Replace this URL with your repo url
tags = [ "Library"] # This line is optional

If there are already other repos in the ecosystem, just add the above as new lines (unlike adding organizations or sub-ecosystems, these aren't lists). For example, if the ecosystem already has a repo, we will just add it below as follows:

# Repo that's already been added
[[repo]]
url = "https://github.com/platonicsocrates/easya-js"
tags = [ "Library"] 

# Our new repo
[[repo]]
url = "https://github.com/platonicsocrates/easya-helpers" # Replace this URL with your repo url
tags = [ "Library"] # This line is optional
  1. Make your PR! ✅

Thank you for contributing and for reading the contribution guide! ❤️

crypto-ecosystems's People

Contributors

andrew avatar blugh avatar btspoony avatar deepcryptodive avatar ericnakagawa avatar fewwwww avatar franklywatson avatar giupideluca avatar glasgowm148 avatar jacobcreech avatar jdbender66 avatar jlopp avatar jubos avatar kingdavincigraph avatar letmejustputthishere avatar mariashen avatar msevey avatar muttoni avatar nathanduft44 avatar pavlamijic avatar platonicsocrates avatar pranaydotparity avatar rise-in avatar schimih avatar sunnya97 avatar teddyjfpender avatar themacexpert avatar tokuryoo avatar tsivarev avatar wileyj avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

crypto-ecosystems's Issues

Help map out the crypto developer ecosystem! (1/17)

Instructions:

You will be given a list of 100 open source repositories.

  1. Find the GitHub organization to which these repositories belong.
  2. Find the Ecosystem this repository belongs to (Bitcoin, Ethereum, etc.).
  3. Find the Twitter, Discord, or Telegram associated with this repository, if any.

This is 1 of 17 assignments. We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Assignment link: https://docs.google.com/spreadsheets/d/108pckfkua4rfdbEVOdt8XjeMHOLqwMZkJnWqF-0u5cw/edit?usp=sharing
Make a copy of the spreadsheet and make your changes in there, then share the link back to us once completed.

Map open source repositories to crypto ecosystems! (13/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1iPwEfDpiRvdxnz9hFYLILFAE6V9HXBqYGMwtRpIJPvI/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (16/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1cG5eWp1Hwq0CvpYDSRgHeGJtLSOVGXjxY3inAp3ItIM/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (8/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1xpBgw5tnPwES2_M62P3tmid60-4WgWFVlcIYwQAbivc/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (16/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1jsNPW-eEi7H6aP-y7XQTCrnzjUOySPVPBG89HFVFlPM/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (15/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1e_jFo9VVaZprcBwgSj0dtoHw7OWMWBrGx_5xC3ZMPUs/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (15/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1xsRro9KIra9bmMsLPTgy2xktYgWOB0WQxpanMvVysMY/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (12/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1rRUjelL1YSZnOrzWBOwjJI_mejaAwm6E34tasgCeiqA/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (19/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1ooYb7_8UaZtFsP5ZPWRnvPIb0ISrXBjPFT4ZY45-DnI/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Merging Polkadot and Kusama ecosystem count together

Hi Electric Capital team,

First of all, thank you for writing the great developer report on all web3 ecosystems. It is great to know the ecosystem dev activities and their growth.

I am one of the Parity developers and would like to ask the EC team to consider merging developer activity count of Polkadot and Kusama ecosystem together. Currently when it comes to counting polkadot ecosystem active developers, "polkadot" ecosystem and "kusama" ecosystem are separated, with ~1400 and ~300 respectively, details refer to p64 (Polkadot) and p67 (Kusama) of the report.

As mentioned in our documentations, "Kusama was released as an early version of the same code to be used in Polkadot, which means they share the same underlying architecture". Kusama network serves as a "beta-net", but value-bearing. For ecosystem developers their launch process is usually Testnet -> Kusama -> Polkadot. So Kusama dev. acts. serve as "pre-"Polkadot dev. acts, and in this sense it would be more accurate to merge dev act counts together.

Thanks for consideration.

cc @bjornwgnr @SuragSheth @SBalaguer

Map open source repositories to crypto ecosystems! (4/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1CiiEdJLJNZNAoh2g1lpI1cbyK2i5M1mYOUBooNMH4kA/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet back to us for review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (3/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1fkN4fqiXLewtMwRX_GAxW4pvCYptsSwK-byrbXckGv4/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet back to us for review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (10/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1yAbZOAm4R2BWLDXVFM64-pvG_bjCS_NUkT9wOC6-MvI/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (2/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1EZjSA7sb7-FxI6BCn2NiBRufCJiSGsDmIVtB_bHcN8c/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet back to us for review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Add SubWallet to Polkadot Ecosystem

SubWallet is a user-friendly Web3 Multiverse Gateway for Polkadot and Kusama ecosystem. Our vision is to provide you with the simplest and most secure way to connect to blockchain-based applications like DeFi and GameFi on Polkadot.

Where to find what:

  1. To install the latest version of SubWallet, visit our official website (open new window).
  2. For up-to-the-minute news on Polkadot, Kusama and SubWallet, follow our Telegram & Twitter.
  3. For help using SubWallet, jump into Support Channel on Discord.
  4. To learn how to contribute to the SubWallet project, visit our community in Discord.
  5. To keep up with SubWallet's updates

Why

  1. SubWallet is built on top of Polkadot {.js} and focuses on improving user experience in the Polkadot and Kusama ecosystem—that is, we strive to make it easier for users to access and interact with Web3 applications that run on the Substrate Framework. In other words, we base SubWallet on Polkadot {.js}'s security backbone while improving all of its current drawbacks, including but not limited to:
  2. Cumbersome infrastructure
  3. Complicated user interface
  4. High latency
  5. This does not mean that we deny the contribution of Polkadot {.js}. It sets a crucial stepping stone for developers and plays a vital role for the Polkadot and Kusama ecosystem owing to its decentralization properties. Since there are too many blockchains and projects on the ecosystem that need to be managed, keeping track is immensely challenging for developers without a massive application like Polkadot {.js}. However, Polkadot end-users don't need this; they need something faster and more user-friendly. That's why SubWallet was born.
  6. In the long run, we still believe that in the ecosystem, Polkadot {.js} is a pivotal platform application for developers. Our mission is to harness its power and bring it closer to the wider Polkadot community through user-friendly applications like SubWallet.

How

  1. Below are our main features, or how we have improved from Polkadot {.js}:
  2. Monitor multi-chain assets on extension window
  3. Send and receive assets with a few simple taps
  4. Grant access and verify transactions to Web3
  5. Manage and transfer NFT assets
  6. Manage portfolio
  7. And many more soon

https://www.youtube.com/watch?v=70tAQFn3BOk

Tag by language

I did some research into what languages all the major unique blockchains are written in. It might make sense to add a language tag to projects

17 blockchains

C++ | 7
Go | 6
C# | 1
Haskell | 1
Java | 1
Ocaml | 1

Map open source repositories to crypto ecosystems! (7/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1Ym_l7cjxUpURZpX5DxnfX31eCOukTTnniaZKj2DB6d4/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Add KodaDot to Polkadot and Kusama ecosystem

Hey, we will be probably bit renaming the organization and repository. kodadot -> metaprime

Let's list at least current state right!

Right now nft-gallery is part of

  • Polkadot
  • Kusama
  • IPFS
  • Arweave

Permafrost is part of the Arweave ecosystem

Metaprime will be part of

  • Polkadot
  • Kusama
  • Filecoin

https://github.com/electric-capital/crypto-ecosystems/blob/master/data/ecosystems/k/kodadot.toml

We should be probably included

Ref

kodadot/nft-gallery#1278

Map open source repositories to crypto ecosystems! (2/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1ivY5_rKsWZf5lcMdlceppGgef2tYowNOolaw8BSoyFA/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet back to us for review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (14/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1WPLAp5608ICFxTyzhv00XJAr6Ybp8E7LG21JdrR1sdQ/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (20/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1hFaWSvJBR4AlTyd7gZCvJ-QJadrL-wnGLzKffXkk7Cs/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (19/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1ByV1IiLKni4ouu2ceNrdNz54Ar8xXCK0AsBiQ45TbWg/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (9/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1nJwrj8LY3jsc-5om7bNqskEQGUPMZ2Pl6xjg9kB_mAk/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (18/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1sCJIocUb7358tWi0rtHC4D4bnR9AmMl3lbffEsRWl74/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (13/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1y-WnQWlKtHE-cFahsUToR02Gn3JkujrWadYnC5ob_UA/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (11/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1bWk56kfp2F14KBg-qsvP_sQRuL3X3wkygNBMyDuICz0/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (8/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1BvJveksddMRv1fYYFr7uPDvxvOI8znbCpTtcroRTbNI/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (20/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1Wo8jdU9297kTcP3qPx9p7-siRd_grhMvgGG7FUgcxFk/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (5/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1GMOkitx9hxDxGLTeSn6kxUm_tJ2CgeoCxAv2jsEMYw4/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Clean up some dfuse repository

Hi there,

Thanks for listing up numbers of our repo our your taxonomy website, that's great. I would like to perform some clean up on the include repository list. Some of them are forked of other project we did to fix small bugs, so I think they should not be listed.

Before diving in this, I would like to better understand and should and should not be listed, so I can make a good clean up task. Sorry if the information is available already, was not able to find it.

Thanks again!

Map open source repositories to crypto ecosystems! (9/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1dBDVF0FXzsFjeaqjBRAvQ0ZqMZd5TEBt_Typik4jNKI/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (10/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1M1OIJXl0S-JK8jYl7ixYCskyYIjETC_bEWK6Pzq3aog/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (7/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1FR13PC4x8BAtL0F-6L_cHzUdKk22r9dYR1FYEZRI5dI/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (17/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1Qum053aLykuKJfBgJRWppaE4hDpyCT6rj6zzu8tB5ZE/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (14/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1EUdzQc34Zkav-eizQl-oqO94awRZWn70GusH7kXiVkI/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (6/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/12WJ_n9xWjxIH06pPNrE6B3PFyvZi3ehQnda5xc_e5xk/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (12/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1zn14UE015fUR_zK9dt-OOzTGiQU293O0AnYaN8UXzRw/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (11/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1zMYuar6ok4ISGliCAAXbq5sTJcYXT7s_3G06t6UGVoM/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (6/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1_M_cTz8LuCEhhPrkmU99vJwXeCSHj0Y8KNzU7iqmxeE/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (17/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/13JrV7LqatlKEKROmiNQvwLIynW5gd6PyipE2G5iOs0Y/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (4/35 - Player A)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1HeUPVjltf0Bw7fyIM5jevbGfU_06mzLlUsILD6mHRhA/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet back to us for review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (3/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/1LF3aq2FhDTSnODi9jPn17T1YZfKGnGgnO3OxC8uVbMU/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet back to us for review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (18/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/16v5PhcjH7inJckdcWsZeFBewZ-5FQQCvBduE2aKOspk/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Map open source repositories to crypto ecosystems! (5/35 - Player B)

Instructions:

You will be given a list of 50 open source repositories.

  1. Make a copy of the spreadsheet: https://docs.google.com/spreadsheets/d/18wm7GTllS_lqa6twgJOHWsy8PgBtTmCUzWzVRrBssyA/edit?usp=sharing
  2. Find the GitHub organization to which these repositories belong.
  3. Find the Ecosystem to which these repositories belong (Bitcoin, Ethereum, etc.).
  4. Find the Twitter, Discord, or Telegram associated with these repositories, if any.
  5. Share your spreadsheet in the comments for us to review.

Time:
Once you start, you have 2 days to complete this. Please comment in the issue if you need more time. Otherwise we will release the assignment.

More:
There are a total of 35 assignments for player A and 35 assignments for player B. You cannot work on the same numbers (e.g. if you worked on 2/35 A, you cannot work on 2/35 B). This is because 2 different people should be looking at the same data set independently to control for errors.

We pay $20 per assignment. If you would like to continue with more assignments, just accept more Gitcoin bounties on this!

Comment on the GitHub issue if you have any questions.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.