├── .gitattributes ├── .travis.yml ├── contributing.md ├── LICENSE ├── .gitignore ├── contributing.json ├── code-of-conduct.md └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | readme.md merge=union 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.2 4 | before_script: 5 | - gem install awesome_bot 6 | script: awesome_bot readme.md --allow-dupe --allow-redirect 7 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please note that this project is released with a 4 | [Contributor Code of Conduct](code-of-conduct.md). By participating in this 5 | project you agree to abide by its terms. 6 | 7 | --- 8 | 9 | Ensure your pull request adheres to the following guidelines: 10 | 11 | - See [contributing.json](https://github.com/rightlag/awesome-dapps/blob/master/contributing.json) 12 | 13 | Thank you for your suggestions! 14 | 15 | ## Updating your PR 16 | 17 | A lot of times, making a PR adhere to the standards above can be difficult. 18 | If the maintainers notice anything that we'd like changed, we'll ask you to 19 | edit your PR before we merge it. There's no need to open a new PR, just edit 20 | the existing one. If you're not sure how to do that, 21 | [here is a guide](https://github.com/RichardLitt/docs/blob/master/amending-a-commit-guide.md) 22 | on the different ways you can update your PR so that we can merge it. 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Jason Walsh 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | -------------------------------------------------------------------------------- /contributing.json: -------------------------------------------------------------------------------- 1 | // https://gitmagic.io/rules 2 | { 3 | "commit": { 4 | "subject_cannot_be_empty": true, 5 | "subject_must_be_longer_than": 4, 6 | "subject_must_be_shorter_than": 101, 7 | "subject_lines_must_be_shorter_than": 51, 8 | "subject_must_be_single_line": true, 9 | "subject_must_be_in_tense": "imperative", 10 | "subject_must_start_with_case": "upper", 11 | "subject_must_not_end_with_dot": true, 12 | 13 | "body_lines_must_be_shorter_than": 73 14 | }, 15 | "pull_request": { 16 | "subject_cannot_be_empty": true, 17 | "subject_must_be_longer_than": 4, 18 | "subject_must_be_shorter_than": 101, 19 | "subject_must_be_in_tense": "imperative", 20 | "subject_must_start_with_case": "upper", 21 | "subject_must_not_end_with_dot": true, 22 | 23 | "body_cannot_be_empty": true, 24 | "body_must_include_verification_steps": true, 25 | "body_must_include_screenshot": ["html", "css"] 26 | }, 27 | "issue": { 28 | "subject_cannot_be_empty": true, 29 | "subject_must_be_longer_than": 4, 30 | "subject_must_be_shorter_than": 101, 31 | "subject_must_be_in_tense": "imperative", 32 | "subject_must_start_with_case": "upper", 33 | "subject_must_not_end_with_dot": true, 34 | 35 | "body_cannot_be_empty": true, 36 | "body_must_include_reproduction_steps": ["bug"], 37 | 38 | "label_must_be_set": true 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at rightlag@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # awesome-dapps [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg?style=flat-square)](https://github.com/sindresorhus/awesome) [![Travis](https://img.shields.io/travis/jasonwalsh/awesome-dapps.svg?style=flat-square)](https://travis-ci.org/jasonwalsh/awesome-dapps) 2 | 3 | > A curated list of awesome resources around decentralized applications (Ðapps) 4 | 5 | Easily access this list @ [`dapps.cool`](http://dapps.cool). 6 | 7 | ## Contents 8 | 9 | - [Platforms](#platforms) 10 | - [Social Media](#social-media) 11 | - [Reddit](#reddit) 12 | - [Twitter](#twitter) 13 | - [Blogs](#blogs) 14 | - [YouTube](#youtube) 15 | - [Programming Languages](#programming-languages) 16 | - [Ethereum](#ethereum) 17 | - [Example Applications](#example-applications) 18 | - [Education](#education) 19 | - [Shopping](#shopping) 20 | - [Entertainment](#entertainment) 21 | - [Developer Tools](#developer-tools) 22 | - [Jobs](#jobs) 23 | 24 | ## Platforms 25 | 26 | - [Ethereum](https://ethereum.org/) 27 | - [Golem](https://golem.network/) 28 | 29 | ## Social Media 30 | 31 | ### Reddit 32 | 33 | - [/r/ethereum](https://www.reddit.com/r/ethereum/) 34 | - [/r/ethdapps](https://www.reddit.com/r/ethdapps/) 35 | 36 | ### Twitter 37 | 38 | - [@ethereumproject](https://twitter.com/ethereumproject) 39 | - [@golemproject](https://twitter.com/golemproject) 40 | - [@EtherCasts](https://twitter.com/EtherCasts) 41 | 42 | ### Blogs 43 | 44 | - [Ethereum Blog](https://blog.ethereum.org/) 45 | - [Golem Blog](https://blog.golemproject.net/) 46 | 47 | ### YouTube 48 | 49 | - [Ethereum YouTube Channel](https://www.youtube.com/channel/UC6rYoXJ_3BbPyWx_GQDDRRQ) 50 | 51 | ## Programming Languages 52 | 53 | ### Ethereum 54 | 55 | - [serpent](https://github.com/ethereum/serpent) 56 | - Documentation: [https://github.com/ethereum/wiki/wiki/Serpent](https://github.com/ethereum/wiki/wiki/Serpent) 57 | - [solidity](https://github.com/ethereum/solidity) 58 | - Documentation: [https://solidity.readthedocs.io/en/develop/](https://solidity.readthedocs.io/en/develop/) 59 | 60 | ## Example Applications 61 | 62 | ### Education 63 | 64 | - TBD 65 | 66 | ### Shopping 67 | 68 | - [OpenBazaar](https://www.openbazaar.org/) - [:octocat:](https://github.com/openbazaar) - OpenBazaar is an open source project developing a protocol for e-commerce transactions in a fully decentralized marketplace 69 | - [SafeMarket](https://safemarket.github.io/) - [:octocat:](https://github.com/SafeMarket) - A P2P Market system 70 | 71 | ### Entertainment 72 | 73 | - [Livepeer](https://livepeer.org/) - [:octocat:](https://github.com/livepeer) - An open platform for decentralized live video broadcasting 74 | 75 | ### Art 76 | 77 | - [CryptoPunks](http://www.larvalabs.com/cryptopunks) - [:octocat:](https://github.com/larvalabs/cryptopunks) - 10,000 unique collectible characters with proof of ownership stored on the Ethereum blockchain. 78 | 79 | ### Advertising 80 | 81 | - [Thousand Ether Homepage](https://thousandetherhomepage.com) - [:octocat:](https://github.com/thousandetherhomepage/ketherhomepage) - The Million Dollar Homepage as an Ethereum Smart Contract and DApp. Own a piece of blockchain history! 82 | 83 | ## Developer Tools 84 | 85 | - [Superblocks Lab](https://superblocks.com/lab/) - Web IDE. Built in browser blochain VM, Metamask integration (one click deployments to Testnet/Mainnet), transaction logger and live code your WebApp among many other features. 86 | - [Embark](https://github.com/iurimatias/embark-framework) - Embark is a framework that allows you to easily develop and deploy Decentralized Applications 87 | - [ethereumjs/testrpc](https://github.com/ethereumjs/testrpc) - A Node.js based Ethereum client for testing and development. It uses ethereumjs to simulate full client behavior and make developing Ethereum applications much faster. 88 | 89 | ## Jobs 90 | 91 | - TBD 92 | 93 | ## Contribute 94 | 95 | Contributions welcome! Read the [contribution guidelines](contributing.md) first. 96 | 97 | ## Maintainers 98 | 99 | | ![Jason Walsh](https://avatars3.githubusercontent.com/u/2184329?v=3&s=128) | ![Brandon Him](https://avatars3.githubusercontent.com/u/6020066?v=3&s=128) | 100 | |--------------------------------------------------------------------------------|----------------------------------------------------------------------------| 101 | | Jason Walsh [@jasonwalsh](https://github.com/jasonwalsh) | Brandon Him [@brh55](https://github.com/brh55) | 102 | 103 | ## License 104 | 105 | [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](http://creativecommons.org/publicdomain/zero/1.0) 106 | 107 | To the extent possible under law, Jason Walsh has waived all copyright and 108 | related or neighboring rights to this work. 109 | --------------------------------------------------------------------------------