├── .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.json └── renovate.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/invitation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/.github/ISSUE_TEMPLATE/invitation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/.github/ISSUE_TEMPLATE/other.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/invitation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/.github/workflows/invitation.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true 3 | } 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/README.md -------------------------------------------------------------------------------- /branding/DevProtocol.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/branding/DevProtocol.zip -------------------------------------------------------------------------------- /branding/assets/DEV Token symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/branding/assets/DEV Token symbol.png -------------------------------------------------------------------------------- /branding/assets/DEV avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/branding/assets/DEV avatar.png -------------------------------------------------------------------------------- /branding/assets/DEV avatar_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/branding/assets/DEV avatar_black.png -------------------------------------------------------------------------------- /branding/assets/Dev Protocol logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/branding/assets/Dev Protocol logo_black.png -------------------------------------------------------------------------------- /branding/assets/Dev Protocol logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/branding/assets/Dev Protocol logo_white.png -------------------------------------------------------------------------------- /branding/branding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/branding/branding.md -------------------------------------------------------------------------------- /bulletins/dev-challenge-2-exia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/bulletins/dev-challenge-2-exia.md -------------------------------------------------------------------------------- /bulletins/dev-challenge-2-exia_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/bulletins/dev-challenge-2-exia_ja.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-protocol/community/HEAD/renovate.json --------------------------------------------------------------------------------