├── .github └── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml └── README.md /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 🪲 2 | description: File a report on any problem. 3 | title: "[When I enter the Trading room of the Tangleship...]: " 4 | labels: ["bug"] 5 | assignees: 6 | - PilotTobi 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: Thank you for taking the time to improve the TangleSwap experience for everyone! 11 | - type: input 12 | id: contact 13 | attributes: 14 | label: Contact details 15 | description: How can we get in touch with you if we need more info? 16 | placeholder: e.g. explorer@example.com, twitter.com/TangleExplorer 17 | validations: 18 | required: false 19 | - type: textarea 20 | id: what-happened 21 | attributes: 22 | label: What happened? 23 | description: Also tell us, what did you expect to happen? You can include screenshots, if needed. 24 | placeholder: Tell us what you see! 25 | value: | 26 | I was expecting Y, but instead Y happened! 27 | 28 | Steps to reproduce the behavior. 29 | 1. Go to '...' 30 | 2. Click on '....' 31 | 3. Scroll down to '....' 32 | 4. See error / website crash 33 | 34 | I have attached a screenshot to illustrate the problem. 35 | validations: 36 | required: true 37 | - type: dropdown 38 | id: browsers 39 | attributes: 40 | label: What browser(s) are you seeing the problem on? 41 | multiple: true 42 | options: 43 | - Chrome 44 | - Metamask 45 | - Brave 46 | - Safari 47 | - Firefox 48 | - Edge 49 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: Discord 👾 4 | url: https://chat.tangleswap.exchange 5 | about: Join our community for discussion and support. 6 | - name: Twitter 🐤 7 | url: https://twitter.com/TangleSwap 8 | about: Follow the latest announcements to stay up-to-date. -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- 1 | name: Feature Request 💡 2 | description: Suggest an interesting idea. 3 | title: "[Add more black stars to the Tangleship's background]: " 4 | labels: ["enhancement"] 5 | assignees: 6 | - PilotTobi 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: Thank you for taking the time to improve the TangleSwap experience for everyone! 11 | - type: input 12 | id: contact 13 | attributes: 14 | label: Contact details 15 | description: How can we get in touch with you if we need more info? 16 | placeholder: e.g. explorer@example.com, twitter.com/TangleExplorer 17 | validations: 18 | required: false 19 | - type: textarea 20 | id: problem-related 21 | attributes: 22 | label: Is your feature request related to a problem? If so, please describe. 23 | description: You can include screenshots, if needed. 24 | placeholder: Tell us about the problem or bug! 25 | value: N/A 26 | validations: 27 | required: false 28 | - type: textarea 29 | id: feature-describe 30 | attributes: 31 | label: Describe the solution you'd like 32 | description: Also describe any alternatives you may have considered. 33 | placeholder: > 34 | I love the stars in the background of your website, it really makes me feel as if it is a window into the deep space void 35 | and I am watching them from inside the Tangleship. However, I think you should add more of the black stars! 36 | validations: 37 | required: true 38 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TangleSwap Feedback 💡 2 | 3 | Welcome to the feedback room of the Tangleship! 4 | 5 | The TangleSwap crew has enabled this space to provide users with a platform to submit bug reports, feature requests, and any other feedback you might have. 6 | 7 | ## How to Submit Feedback 8 | 9 | 1. **Bug Reports**: If you've encountered a bug or are experiencing performance issues, please create a new [Bug Report Issue](https://github.com/TangleSwap/feedback/issues/new?template=bug-report.yml) and use the provided template to describe the problem in detail. 10 | 11 | 2. **Feature Requests**: If you have an idea for a new feature or an aesthetic/functional improvement for an existing one, feel free to log a new [Feature Request Issue](https://github.com/TangleSwap/feedback/issues/new?template=feature-request.yml) and use the provided template to outline your proposal. 12 | 13 | 3. **General Feedback**: For any other feedback, questions, or suggestions, please create a new [GitHub Issue](https://github.com/TangleSwap/feedback/issues/new) and provide as much detail as possible. 14 | 15 | ## Community 16 | 17 | If you're interested in discussing TangleSwap, sharing your experience, or asking questions, feel free to join our [Discord](https://chat.tangleswap.exchange) server. 18 | 19 | You can also follow us on [Twitter](https://twitter.com/TangleSwap) for the latest updates and announcements. 20 | 21 | ## Contributing 22 | 23 | We appreciate and value your feedback. Your contributions will help us improve the TangleSwap experience for everyone. 24 | 25 | See you aboard the Tangleship, Explorers! 🛸 26 | --------------------------------------------------------------------------------