├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ ├── invitation.yml │ └── other.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── invitation.yml │ └── nodejs.yml ├── .gitignore ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── branding ├── DevProtocol.zip ├── assets │ ├── DEV Token symbol.png │ ├── DEV avatar.png │ ├── DEV avatar_black.png │ ├── Dev Protocol logo_black.png │ └── Dev Protocol logo_white.png └── branding.md ├── bulletins ├── dev-challenge-2-exia.md └── dev-challenge-2-exia_ja.md ├── package-lock.json ├── package.json └── renovate.json /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug report 2 | description: Create a report to help us improve 3 | title: "[BUG] " 4 | labels: [bug] 5 | body: 6 | - type: textarea 7 | id: subject 8 | attributes: 9 | label: Problem subject 10 | description: Use one of the following boxes. If none of them apply, please specify. 11 | placeholder: | 12 | - [ ] Contracts 13 | - [ ] Tests 14 | - [ ] Documentation 15 | - [ ] Other (please specify) 16 | validations: 17 | required: false 18 | - type: textarea 19 | id: description 20 | attributes: 21 | label: Description 22 | description: Please write what problem/bug you are experiencing or want to report. 23 | validations: 24 | required: true 25 | - type: textarea 26 | id: expectedbhv 27 | attributes: 28 | label: Expected behavior/contents 29 | description: Please write here the expected behavior/contents 30 | validations: 31 | required: true 32 | - type: textarea 33 | id: actualbhv 34 | attributes: 35 | label: Actual behavior/contents 36 | description: Please write here the actual behavior/contents 37 | validations: 38 | required: false 39 | - type: checkboxes 40 | id: coc 41 | attributes: 42 | label: Code of Conduct 43 | description: By submitting this issue, I confirm I've read and complied with the [CoC](https://github.com/dev-protocol/community/blob/main/CODE_OF_CONDUCT.md) 🖖 44 | options: 45 | - label: I agree to follow this project's Code of Conduct 46 | required: true 47 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Discord community 4 | url: https://discord.gg/VwJp4KM 5 | about: Contact us via our Discord community if you found any bug or need any help. 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: Feature request 2 | description: Suggest features, propose improvements, discuss new ideas 3 | title: "[FEATURE] " 4 | labels: [enhancement] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: Provide a general summary of the issue in the title above 9 | - type: textarea 10 | id: description 11 | attributes: 12 | label: Detailed description 13 | description: Provide a detailed description of the change or addition you are proposing 14 | validations: 15 | required: true 16 | - type: textarea 17 | id: context 18 | attributes: 19 | label: Context 20 | description: | 21 | Why is this change important to you? How would you use it? 22 | How can it benefit other users? 23 | validations: 24 | required: true 25 | - type: textarea 26 | id: possibleimpl 27 | attributes: 28 | label: Possible implementation 29 | description: Not obligatory, but suggest an idea for implementing addition or change 30 | validations: 31 | required: false 32 | - type: textarea 33 | id: extrainformation 34 | attributes: 35 | label: Additional information 36 | description: Is there anything else we should know about this feature? 37 | validations: 38 | required: false 39 | - type: checkboxes 40 | id: coc 41 | attributes: 42 | label: Code of Conduct 43 | description: By submitting this issue, I confirm I've read and complied with the [CoC](https://github.com/dev-protocol/protocol/blob/main/CODE_OF_CONDUCT.md) 🖖 44 | options: 45 | - label: I agree to follow this project's Code of Conduct 46 | required: true 47 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/invitation.yml: -------------------------------------------------------------------------------- 1 | name: Invite me to the Dev Protocol Community 2 | description: I would like to be part of the awesome community 3 | title: "Please invite me to the community" 4 | labels: [github-invitation] 5 | body: 6 | - type: input 7 | id: name 8 | attributes: 9 | label: Name 10 | placeholder: Insert your name here 11 | validations: 12 | required: true 13 | - type: input 14 | id: discordname 15 | attributes: 16 | label: Discord Username (if applicable) 17 | placeholder: Insert your Discord username here 18 | validations: 19 | required: false 20 | - type: textarea 21 | id: Additional 22 | attributes: 23 | label: Additional Context 24 | description: Where did you meet Dev Protocol Community? What do you like about this community? Why do you want to join? 25 | validations: 26 | required: true 27 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yml: -------------------------------------------------------------------------------- 1 | name: Other 2 | description: Use this for any other issues. PLEASE do not create blank issues 3 | title: "[OTHER]" 4 | labels: [triage] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: "# Other issue" 9 | - type: textarea 10 | id: issuedescription 11 | attributes: 12 | label: What would you like to share? 13 | description: Provide a clear and concise explanation of your issue. 14 | validations: 15 | required: true 16 | - type: textarea 17 | id: extrainfo 18 | attributes: 19 | label: Additional information 20 | description: Is there anything else we should know about this issue? 21 | validations: 22 | required: false 23 | - type: checkboxes 24 | id: coc 25 | attributes: 26 | label: Code of Conduct 27 | description: By submitting this issue, I confirm I've read and complied with the [CoC](https://github.com/dev-protocol/community/blob/main/CODE_OF_CONDUCT.md) 🖖 28 | options: 29 | - label: I agree to follow this project's Code of Conduct 30 | required: true 31 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Description 2 | 3 | 4 | 5 | ### Why is this change needed? 6 | 7 | 8 | 9 | ### Related Issues 10 | 11 | 12 | 13 | 14 | ### Code of Conduct 15 | 16 | - [ ] By submitting this pull request, I confirm I've read and complied with the [CoC](https://github.com/dev-protocol/community/blob/main/CODE_OF_CONDUCT.md) 🖖 17 | -------------------------------------------------------------------------------- /.github/workflows/invitation.yml: -------------------------------------------------------------------------------- 1 | on: 2 | issues: 3 | types: [labeled] 4 | 5 | jobs: 6 | automate_invite: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - name: Invite-on-label 10 | uses: vj-abigo/invite-on-label@v1.4 11 | with: 12 | organization: dev-protocol 13 | label: github-invitation 14 | repo-token: ${{ secrets.GITHUB_TOKEN }} 15 | comment: "![image](https://user-images.githubusercontent.com/51391473/138764839-1011988e-66f2-4427-a8fc-e0380971df29.gif)
Invitation sent to join the GitHub Organization. Welcome to Dev Protocol 🎉

Please check your mail to accept the invitation sent by the bot! 🤖

About us

Dev Protocol is a solution for decentralized creator economy, it is designed for the blockchain solution and enhance creators to create their economy 💻 Great to have you in our community ✨ Looking forward to your valuable contributions! 🤓 You can also check our community [socials](https://bio.link/devprotocol) ✨ 💛 You can also share our community with other folks who want to learn Blockchain, tech, and contribute together and with us 👉👈" 16 | env: 17 | INVITE_TOKEN: ${{ secrets.DEV_INVITE_TOKEN }} 18 | -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- 1 | name: Node 2 | 3 | on: [push] 4 | 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | 9 | strategy: 10 | matrix: 11 | node-version: [12.x] 12 | 13 | steps: 14 | - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 15 | 16 | - name: Use Node.js ${{ matrix.node-version }} 17 | uses: actions/setup-node@v4 18 | with: 19 | node-version: ${{ matrix.node-version }} 20 | 21 | - name: install deps 22 | run: npm i 23 | 24 | - name: lint 25 | run: npm run lint 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true 3 | } 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, caste, color, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | - Demonstrating empathy and kindness toward other people 21 | - Being respectful of differing opinions, viewpoints, and experiences 22 | - Giving and gracefully accepting constructive feedback 23 | - Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | - Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | - The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | - Trolling, insulting or derogatory comments, and personal or political attacks 33 | - Public or private harassment 34 | - Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | - Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | - Statements or actions that would make the recipient of the information 39 | feel uncomfortable, uneasy, or disgusted 40 | 41 | ## Enforcement Responsibilities 42 | 43 | Community leaders are responsible for clarifying and enforcing our standards of 44 | acceptable behavior and will take appropriate and fair corrective action in 45 | response to any behavior that they deem inappropriate, threatening, offensive, 46 | or harmful. 47 | 48 | Community leaders have the right and responsibility to remove, edit, or reject 49 | comments, commits, code, wiki edits, issues, and other contributions that are 50 | not aligned to this Code of Conduct, and will communicate reasons for moderation 51 | decisions when appropriate. 52 | 53 | ## Scope 54 | 55 | This Code of Conduct applies within all community spaces, and also applies when 56 | an individual is officially representing the community in public spaces. 57 | Examples of representing our community include using an official e-mail address, 58 | posting via an official social media account, or acting as an appointed 59 | representative at an online or offline event. 60 | 61 | ## Enforcement 62 | 63 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 64 | reported to the community leaders responsible for enforcement at 65 | hi@devtoken.rocks. 66 | All complaints will be reviewed and investigated promptly and fairly. 67 | 68 | All community leaders are obligated to respect the privacy and security of the 69 | reporter of any incident. 70 | 71 | If you cannot contact the community leaders, 72 | please report the CoC violation you see to @moderator on Discord. 73 | 74 | ## Enforcement Guidelines 75 | 76 | Community leaders will follow these Community Impact Guidelines in determining 77 | the consequences for any action they deem in violation of this Code of Conduct: 78 | 79 | ### 1. Correction 80 | 81 | **Community Impact**: Use of inappropriate language or other behavior deemed 82 | unprofessional or unwelcome in the community. 83 | 84 | **Consequence**: A private, written warning from community leaders, providing 85 | clarity around the nature of the violation and an explanation of why the 86 | behavior was inappropriate. A public apology may be requested. 87 | 88 | ### 2. Warning 89 | 90 | **Community Impact**: A violation through a single incident or series 91 | of actions. 92 | 93 | **Consequence**: A warning with consequences for continued behavior. No 94 | interaction with the people involved, including unsolicited interaction with 95 | those enforcing the Code of Conduct, for a specified period of time. This 96 | includes avoiding interactions in community spaces as well as external channels 97 | like social media. Violating these terms may lead to a temporary or 98 | permanent ban. 99 | 100 | ### 3. Temporary Ban 101 | 102 | **Community Impact**: A serious violation of community standards, including 103 | sustained inappropriate behavior. 104 | 105 | **Consequence**: A temporary ban from any sort of interaction or public 106 | communication with the community for a specified period of time. No public or 107 | private interaction with the people involved, including unsolicited interaction 108 | with those enforcing the Code of Conduct, is allowed during this period. 109 | Violating these terms may lead to a permanent ban. 110 | 111 | ### 4. Permanent Ban 112 | 113 | **Community Impact**: Demonstrating a pattern of violation of community 114 | standards, including sustained inappropriate behavior, harassment of an 115 | individual, or aggression toward or disparagement of classes of individuals. 116 | 117 | **Consequence**: A permanent ban from any sort of public interaction within 118 | the community. 119 | 120 | ## Attribution 121 | 122 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 123 | version 2.1, available at 124 | [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. 125 | 126 | Community Impact Guidelines were inspired by 127 | [Mozilla's code of conduct enforcement ladder][mozilla coc]. 128 | 129 | For answers to common questions about this code of conduct, see the FAQ at 130 | [https://www.contributor-covenant.org/faq][faq]. Translations are available 131 | at [https://www.contributor-covenant.org/translations][translations]. 132 | 133 | [homepage]: https://www.contributor-covenant.org 134 | [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html 135 | [mozilla coc]: https://github.com/mozilla/diversity 136 | [faq]: https://www.contributor-covenant.org/faq 137 | [translations]: https://www.contributor-covenant.org/translations 138 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Dev Protocol 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |

12 | 13 | [![Banner](https://user-images.githubusercontent.com/73097560/126608267-c422adf1-d201-4ef4-ad40-502dc69c4f6f.png)](https://devprotocol.xyz) 14 | 15 | # 💬 Community Discussion 16 | 17 | This repository is dedicated to our community discussion, we are talking about a lot of things here like incoming events, new proposals, new features, and many more. You are free to join in this discussion, help us to improve our project, suggest your ideas and give your opinion freely. 18 | 19 | ## 🤔 Why you should join this community? 20 | 21 | - Accelerate your learning by contributing with our dApps open-source 22 | - Get interact more with Web3 and Blockchain 23 | - Interact with great members 24 | 25 | ### [Join now](https://github.com/dev-protocol/community/issues/new?assignees=&labels=github-invitation&template=invitation.yml&title=Please+invite+me+to+the+community) | [Explore](https://github.com/dev-protocol) 26 | 27 | ## 🎨 Branding 28 | 29 | Get the logos and markdown badges of Dev Protocol 👉 [here](/branding/branding.md) 30 | 31 | ## 💝 Featured Topic 32 | 33 | Current topic and event right now: 34 | 35 | - [Dev Dapp Starter Grants](https://devprotocol.notion.site/Welcome-to-DEV-DAPP-STARTER-GRANTS-5cb95252f18540258111581ea54d8808) 36 | 37 | --- 38 | 39 | ## Community Forum 40 | 41 | - 42 | 43 | ## 🔗 Links 44 | 45 | - Discord: 46 | - Telegram: 47 | - Medium: 48 | - Twitter: 49 | - Facebook: 50 | - LinkedIn: 51 | 52 | Join us 53 | 54 | - [Stakes.social](http://stakes.social/) 55 | -------------------------------------------------------------------------------- /branding/DevProtocol.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/acbd5829494c0101d1d8e4c9d796a0489a7f710a/branding/DevProtocol.zip -------------------------------------------------------------------------------- /branding/assets/DEV Token symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/acbd5829494c0101d1d8e4c9d796a0489a7f710a/branding/assets/DEV Token symbol.png -------------------------------------------------------------------------------- /branding/assets/DEV avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/acbd5829494c0101d1d8e4c9d796a0489a7f710a/branding/assets/DEV avatar.png -------------------------------------------------------------------------------- /branding/assets/DEV avatar_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/acbd5829494c0101d1d8e4c9d796a0489a7f710a/branding/assets/DEV avatar_black.png -------------------------------------------------------------------------------- /branding/assets/Dev Protocol logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/acbd5829494c0101d1d8e4c9d796a0489a7f710a/branding/assets/Dev Protocol logo_black.png -------------------------------------------------------------------------------- /branding/assets/Dev Protocol logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/acbd5829494c0101d1d8e4c9d796a0489a7f710a/branding/assets/Dev Protocol logo_white.png -------------------------------------------------------------------------------- /branding/branding.md: -------------------------------------------------------------------------------- 1 | # 🎨 Branding 2 | 3 | Create an [issue](https://github.com/dev-protocol/community/issues) to suggest badges or other branding for Dev Protocol. 🚀 4 | 5 | **Do you want to use our logos and branding for your use?\ 6 | Here we've written some guidelines for proper use of our logos.** 7 | 8 | ## 📜 Terms 9 | 10 | | Do's | Don'ts | 11 | | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------- | 12 | | :heavy_check_mark: Use the Dev Protocol logo to link to Dev Protocol | :x: Do not Use the Dev Protocol logo for your application’s icon | 13 | | :heavy_check_mark: Use the Dev Protocol logo in a blog post or news article about Dev Protocol | :x: Do not Use/Sell any Dev Protocol artwork without permission | 14 | | :heavy_check_mark: Use the right format for your project to ensure proper resolution. | :x: Do not change the original proportions. | 15 | | :heavy_check_mark: Use the [provided logo files](https://github.com/dev-protocol/community/blob/main/branding) at their actual size. | :x: Do not create your own versions of the [original logo files](https://github.com/dev-protocol/community/blob/main/branding). | 16 | | :heavy_check_mark: Use the logo with “Dev Protocol” wordmark | :x: Do not use the logo as text. | 17 | | :heavy_check_mark: Use the original colors. | :x: Violate the [CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0/) license guidelines | 18 | 19 | ## 🥇 Badges 20 | 21 | | Name | Badges | Notes | 22 | | --------------------------- | ----------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------- | 23 | | Dev Protocol | ![dev-protocol](https://custom-icon-badges.herokuapp.com/badge/Dev_Protocol-black.svg?logo=devprtcl) | N/A | 24 | | Stakes.social | ![stakes-social](https://custom-icon-badges.herokuapp.com/badge/Stakes.Social-black.svg?logo=stakes.social) | N/A | 25 | | Stakes.social Project fetch | | ![image](https://user-images.githubusercontent.com/73097560/130575616-404aea3e-da2d-48a0-a01a-00b07fb84062.png) fetch your project by copying the project url code | 26 | 27 | ### View [raw](https://raw.githubusercontent.com/dev-protocol/community/main/branding/branding.md) to see original codes 28 | 29 | ## 🖼 Logos 30 | 31 | Dev Protocol logo 32 | 33 | Avatar w 01 (transparent-logo) 34 | 35 | ## 🪙 Token Symbol of DEV token 36 | DEV Token symbol 37 | 38 | ## 🖌 Banners 39 | 40 | 41 | 42 | ## Download other assets 43 | https://github.com/dev-protocol/community/tree/main/branding 44 | 45 | ## Most use assets 46 | https://github.com/dev-protocol/community/tree/main/branding/assets 47 | 48 | ## 📝 License 49 | 50 | All of our branding assets are licensed under the [CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0/) license.\ 51 | Please follow their guidelines as well. Not following them might result in legal problems. 52 | 53 | ## 📧 Contact 54 | 55 | Have any questions, comments, or anything else? Don't hesitate to\ 56 | send us a mail at hi@devprotocol.xyz or in our [Discord server](https://discord.gg/VwJp4KM). 57 | -------------------------------------------------------------------------------- /bulletins/dev-challenge-2-exia.md: -------------------------------------------------------------------------------- 1 | ![Dev Challenge EXIA](https://i.imgur.com/00hoYGS.gif) 2 | 3 | # Hash tag: #DevChallengeEXIA ([Twitter](https://twitter.com/search?q=%23DevChallengeEXIA)) 4 | 5 | 🇯🇵 日本語ページ : https://github.com/dev-protocol/community/blob/main/bulletins/dev-challenge-2-exia_ja.md 6 | 7 | # Purpose 8 | 9 | - Expanding Dev Protocol's user base 10 | - Promoting Dev Protocol beyond OSS developers 11 | - Getting people to join the Dev Community from small contributions 12 | 13 | # Who's the challenge for? 14 | 15 | - People who are willing to grow Dev Community 🙌 16 | - People who are willing to improve Dev Protocol 🙌 17 | - People who can help with localization 🙌 18 | - Creators who can design the Dev world. 🙌 19 | - 日本の開発者の皆さん(学生の方も是非参加して下さい!)🙌 20 | 21 | # Bounty 22 | 23 | Total 10,000 DEV 24 | 25 | # Challenge Period 26 | 27 | July 12 to Sept. 11th, 1PM UTC (10PM JST) 28 | 29 | - The challenge ends when all the total bounty has been dealt. 30 | - The challenge ends when the due date arrives, even if there is still total bounty left. 31 | 32 | # Challenge ideas 33 | 34 | ## Dev Protocol related ー 70% distribution. 35 | 36 | 1. Internationalization suggestions(multi-language) 37 | 2. Report typos or sentence mistakes 38 | 3. Other, report or suggestion not related to software 39 | 4. Translation implement 40 | 5. Fix typos or sentence mistakes 41 | 6. Other, fix source-codes not related to software's core 42 | 7. [Dev Kit(SDK)](https://github.com/dev-protocol/dev-kit-js) improvement 43 | 8. DApp concept with mocks 44 | 9. UI concept with mocks 45 | 10. DApp development 46 | 11. Market development 47 | 12. UI development 48 | 49 | ### How 50 | 51 | Create an issue to suggest your opinion on [GitHub](https://github.com/dev-protocol/community/issues) or create a pull-request to your target repository on GitHub. Share your work on social media and earn community points! 💰 52 | 53 | Please use hashtag `#DevChallengeEXIA` 54 | 55 | ### Points 56 | 57 | Base points + Community points for each reaction(ignore yourself reactions) on GitHub or Discord. (1 Points = 1 DEV) 58 | 59 | | Level | Base Points | Community Points | e.g. | 60 | | ------ | ----------- | ---------------- | ---------------------------------------------------------------------------------------------------------------------------------- | 61 | | Max | 100 | 10 | DApp development, Market development, or UI development | 62 | | High | 50 | 5 | DApp concept with mocks or UI concept with mocks | 63 | | Medium | 20 | 2 | Dev Kit(SDK) improvement | 64 | | Low | 4 | 0.4 | Translation implement, Fix typos or sentence mistakes; Fix source-codes not related to software's core | 65 | | Note | 1 | 0.1 | Internationalization suggestions(multi-language), Report typos or sentence mistakes; Report or suggestion not related to software. | 66 | 67 | ## off-site ー 30% distribution. 68 | 69 | 1. Write a blog about how to use Dev and Stakes.social and ideas (Any platform as you like) 70 | 2. Create concept art for Dev (illustrations, design, any kind of art with DEV) 71 | 72 | ### How 73 | 74 | Please post it to the 🏕community-git channel on Discord. Share your work on social media and earn community points! 💰 75 | 76 | Please use hashtag `#DevChallengeEXIA` 77 | 78 | ### Points 79 | 80 | The bounty is determined by the community. Show your reaction to a great work with an emoji! 👍 81 | Min. points + Community points for each reaction(ignore yourself reactions) on Discord. (1 Points = 1 DEV) 82 | 83 | | Level | Min. Points | Community Points | e.g. | 84 | | ----- | ----------- | ---------------- | --------------------------------------- | 85 | | Art | 10 | 2 | Creating a concept Art for Dev | 86 | | blog | 1 | 0.4 | Writing an article or content about Dev | 87 | 88 | ### How to upload your image 89 | 90 | Please join the Dev Community on Discord. https://discord.gg/VwJp4KM 91 | 92 | Post your works to 🏕community-git channel ! 93 | 94 | ### Notes: 95 | 96 | - Please submit your original work! 97 | - If the work infringes on someone's copyright or spoofing someone elses, the bounty will be lost. 98 | - Violent or any racist works are not allowed. 99 | - Be sure to include the letters “Dev” in your work. You can also use pretzels. 🥨 ([Download here](https://www.dropbox.com/sh/s55ba1d7qlcixjy/AADpM9_cZZR9k2wCJdFzwZzoa?dl=0)) 100 | - The great works will be featured on the Dev website and on twitter. 101 | 102 | Were looking forward to seeing some great works! 103 | 104 | # Payment of Rewards 105 | 106 | The Dev team tallies the points from the 12th of the last month to the 11th(UTC) of that month on the 12th of each month. Rewards accumulate to the lockup contract, and you can withdraw 0.005 DEV per block (about 28.8 DEV per day). 107 | 108 | --- 109 | 110 | Btw, what is EXIA? 111 | 112 | > [👨‍🚀I am Gundam!](https://gundam.fandom.com/wiki/GN-001_Gundam_Exia) 113 | 114 | ![EXIA](https://media1.tenor.com/images/8f2f48ab5ba7d1e2c284ed18feb15072/tenor.gif?itemid=5102460) 115 | -------------------------------------------------------------------------------- /bulletins/dev-challenge-2-exia_ja.md: -------------------------------------------------------------------------------- 1 | ![Dev Challenge EXIA](https://i.imgur.com/00hoYGS.gif) 2 | 3 | # ハッシュタグ: #DevChallengeEXIA ([Twitter](https://twitter.com/search?q=%23DevChallengeEXIA)) 4 | 5 | # 目的 6 | 7 | - Dev Protocol のユーザーの拡大 8 | - OSS 開発者を超えた Dev Protocol の宣伝 9 | - 小さな貢献から Dev コミュニティーに誰でも参加できる 10 | 11 | # このチャレンジの対象は誰ですか? 12 | 13 | - Dev コミュニティを成長させたい方 🙌 14 | - Dev コミュニティを改善したい方 🙌 15 | - ローカライゼーションを支援できる方 🙌 16 | - Dev の世界観をデザインできるクリエイターの方 🙌 17 | - 日本人の開発者の皆さん(学生の方も是非参加して下さい!)🙌 18 | 19 | # 賞金 20 | 21 | 合計 10,000 DEV 22 | 23 | # チャレンジ期間 24 | 25 | 7 月 12 日から 9 月 11 日午後 1 時(日本時間午後 10 時) 26 | 27 | - チャレンジは全ての報奨金が処理された時に終了します。 28 | - 賞金がまだ残っていても、期日が過ぎるとチャレンジは終了します。 29 | 30 | # チャレンジのアイデア 31 | 32 | ## Dev Protocol 関連 ー 70%配布 33 | 34 | 1. 多言語化の提案(多言語) 35 | 2. タイプミスや文の間違いを報告する 36 | 3. 翻訳を実装する 37 | 4. タイプミスや文の間違いを修正する 38 | 5. [Dev Kit(SDK)](https://github.com/dev-protocol/dev-kit-js) 改善 39 | 6. DApp コンセプトのモック 40 | 7. UI コンセプトのモック 41 | 8. DApp 開発 42 | 9. Market 開発 43 | 10. UI 開発 44 | 45 | ### やり方 46 | 47 | あなたのチャレンジの issue を作成してください [GitHub](https://github.com/dev-protocol/community/issues) または、GitHub 上のターゲットリポジトリへのプルリクエストを作成します。 ソーシャルメディアであなたのチャレンジを共有して、コミュニティポイントを獲得しましょう! 💰 48 | 49 | このハッシュタグを使用してください `#DevChallengeEXIA` 50 | 51 | ### ポイント 52 | 53 | ベースポイント + GitHub と Discord 上のコミュニティポイント(自分の反応を除いた) (1 ポイント = 1 DEV) 54 | 55 | | レベル | ベースポイント | コミュニティポイント | 例 | 56 | | ------ | -------------- | -------------------- | ---------------------------------------------------------------------------------------------- | 57 | | Max | 100 | 10 | DApp 開発, Market 開発, UI 開発 | 58 | | High | 50 | 5 | DApp コンセプトのモック, UI コンセプトのモック | 59 | | Medium | 20 | 2 | Dev Kit(SDK) 改善 | 60 | | Low | 4 | 0.4 | 翻訳の実装, タイプミスや文の間違いを報告する; ソフトウェアのコアに関連しないソースコードの修正 | 61 | | Note | 1 | 0.1 | 国際化の提案(多言語), タイプミスや文の間違いを報告する; ソフトウェアに関連しない報告や提案 | 62 | 63 | ## オフサイト ー 30%配布 64 | 65 | 1. Dev と Stakes.social の使い方やアイデアについてブログを書く (好きなプラットフォームで) 66 | 2. Dev のコンセプトアートを作成する (イラスト, デザイン, DEV に関連するあらゆる種類のアート。4 コマもいいですね 😸) 67 | 68 | ### やり方 69 | 70 | Discord の 🏕community-git channel に投稿してください。 ソーシャルメディアで作品を共有し、コミュニティポイントを獲得しましょう! 💰 71 | 72 | このハッシュタグを使用してください `#DevChallengeEXIA` 73 | 74 | ### ポイント 75 | 76 | 賞金はコミュニティによって決定されます. 素晴らしい作品に対するあなたの反応を絵文字で示しましょう! 👍 77 | 最小ポイント + Discord 上のコミュニティポイント(自分の反応を除いた) (1 ポイント = 1 DEV) 78 | 79 | | Level | 最小ポイント | コミュニティポイント | 例 | 80 | | ------ | ------------ | -------------------- | -------------------------------------- | 81 | | アート | 10 | 2 | Dev のコンセプトアートの作成 | 82 | | ブログ | 1 | 0.4 | Dev に関する記事またはコンテンツの作成 | 83 | 84 | ### 画像のアップロード方法 85 | 86 | Dev Protocol の Discord に参加してください。 https://discord.gg/VwJp4KM 87 | 88 | 🏕community-git channel に投稿してください。 89 | 90 | ### 注釈: 91 | 92 | - オリジナル作品を提出してください! 93 | - 作品が誰かの著作権を侵害したり、他人になりすましたりすると、賞金は失われます。 94 | - 暴力的または人種差別的な作品は禁止されています。 95 | - 作品には必ず「Dev」の文字を含めてください。プレッツェルも使用できます。 🥨 ([Download here](https://www.dropbox.com/sh/s55ba1d7qlcixjy/AADpM9_cZZR9k2wCJdFzwZzoa?dl=0)) 96 | - 素晴らしい作品は、Dev ウェブサイトとツイッターで紹介されます。 97 | 98 | 素晴らしい作品を楽しみにしています! 99 | 100 | # 報酬の支払い 101 | 102 | 開発チームは、先月の 12 日からその月の 11 日(UTC)までのポイントを、毎月 12 日に集計します。 103 | 特典はロックアップ契約に蓄積され、ブロックごとに 0.005 DEV を引き出すことができます (1 日あたり約 28.8 DEV). 104 | 105 | --- 106 | 107 | ところで、エクシアとは何ですか? 108 | 109 | > [👨‍🚀 俺がガンダムだ!](https://gundam.fandom.com/wiki/GN-001_Gundam_Exia) 110 | 111 | ![EXIA](https://media1.tenor.com/images/8f2f48ab5ba7d1e2c284ed18feb15072/tenor.gif?itemid=5102460) 112 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "community", 3 | "version": "1.0.0", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "community", 9 | "version": "1.0.0", 10 | "license": "MIT", 11 | "devDependencies": { 12 | "husky": "9.1.7", 13 | "prettier": "2.8.8" 14 | } 15 | }, 16 | "node_modules/husky": { 17 | "version": "9.1.7", 18 | "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz", 19 | "integrity": "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==", 20 | "dev": true, 21 | "bin": { 22 | "husky": "bin.js" 23 | }, 24 | "engines": { 25 | "node": ">=18" 26 | }, 27 | "funding": { 28 | "url": "https://github.com/sponsors/typicode" 29 | } 30 | }, 31 | "node_modules/prettier": { 32 | "version": "2.8.8", 33 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", 34 | "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", 35 | "dev": true, 36 | "bin": { 37 | "prettier": "bin-prettier.js" 38 | }, 39 | "engines": { 40 | "node": ">=10.13.0" 41 | }, 42 | "funding": { 43 | "url": "https://github.com/prettier/prettier?sponsor=1" 44 | } 45 | } 46 | }, 47 | "dependencies": { 48 | "husky": { 49 | "version": "9.1.7", 50 | "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz", 51 | "integrity": "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==", 52 | "dev": true 53 | }, 54 | "prettier": { 55 | "version": "2.8.8", 56 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", 57 | "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", 58 | "dev": true 59 | } 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "community", 3 | "private": true, 4 | "description": "🏕Community space for Dev Protocol", 5 | "scripts": { 6 | "lint": "prettier --write '**/*.{json,md,yml}'" 7 | }, 8 | "husky": { 9 | "hooks": { 10 | "pre-commit": "npm run lint" 11 | } 12 | }, 13 | "devDependencies": { 14 | "husky": "9.1.7", 15 | "prettier": "2.8.8" 16 | }, 17 | "version": "1.0.0", 18 | "repository": { 19 | "type": "git", 20 | "url": "git+https://github.com/dev-protocol/community.git" 21 | }, 22 | "keywords": [ 23 | "github", 24 | "devprtlc", 25 | "community" 26 | ], 27 | "author": "Dev Protocol", 28 | "license": "MIT", 29 | "bugs": { 30 | "url": "https://github.com/dev-protocol/community/issues" 31 | }, 32 | "homepage": "https://github.com/dev-protocol/community#readme" 33 | } 34 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["config:base"], 3 | "automerge": true 4 | } 5 | --------------------------------------------------------------------------------