├── .github └── ISSUE_TEMPLATE │ ├── question.yml │ ├── feature_request.yml │ └── bug_report.yml └── README.md /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- 1 | name: Question 2 | description: Ask a question about this project. 3 | title: "[Question]: " 4 | labels: [question] 5 | assignees: [] 6 | body: 7 | - type: input 8 | id: your-question 9 | attributes: 10 | label: Your question 11 | description: Please describe your question clearly. 12 | placeholder: Type your question here. 13 | validations: 14 | required: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: Feature Request 2 | description: Suggest a new feature or improvement. 3 | title: "[Feature]: " 4 | labels: [enhancement] 5 | assignees: [] 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | Thank you for your suggestion! 11 | - type: input 12 | id: feature-summary 13 | attributes: 14 | label: Feature summary 15 | description: What feature do you want to see? 16 | placeholder: A short summary of the feature. 17 | validations: 18 | required: true 19 | - type: textarea 20 | id: motivation 21 | attributes: 22 | label: Motivation 23 | description: Why is this feature important? 24 | validations: 25 | required: false 26 | - type: textarea 27 | id: alternatives 28 | attributes: 29 | label: Alternatives 30 | description: Any alternative solutions or features you've considered? 31 | validations: 32 | required: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: Report a reproducible bug or unexpected behavior. 3 | title: "[Bug]: " 4 | labels: [bug] 5 | assignees: [] 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | Thanks for taking the time to fill out this bug report! 11 | - type: input 12 | id: what-happened 13 | attributes: 14 | label: What happened? 15 | description: Please describe the bug in detail. 16 | placeholder: A clear and concise description of what the bug is. 17 | validations: 18 | required: true 19 | - type: textarea 20 | id: steps-to-reproduce 21 | attributes: 22 | label: Steps to reproduce 23 | description: How can we reproduce the bug? 24 | placeholder: | 25 | 1. Go to '...' 26 | 2. Click on '...' 27 | 3. See error 28 | validations: 29 | required: true 30 | - type: input 31 | id: expected-behavior 32 | attributes: 33 | label: Expected behavior 34 | description: What did you expect to happen? 35 | validations: 36 | required: false 37 | - type: textarea 38 | id: environment 39 | attributes: 40 | label: Environment 41 | description: OS, browser, Node version, etc. 42 | validations: 43 | required: false -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UniSat Developer Support & Feedback 2 | 3 | Welcome to the UniSat Developer Support repository! 4 | 5 | This repository is dedicated to collecting developer feedback, feature requests, bug reports, and general questions related to the UniSat ecosystem. 6 | 7 | --- 8 | 9 | ## How to Use This Repository 10 | 11 | - **Report Bugs:** 12 | If you encounter any issues or unexpected behavior, please open a [Bug Report](https://github.com/unisat-wallet/dev-support/issues/new?template=bug_report.yml). 13 | 14 | - **Request Features:** 15 | If you have ideas for new features or improvements, please open a [Feature Request](https://github.com/unisat-wallet/dev-support/issues/new?template=feature_request.yml). 16 | 17 | - **Ask Questions:** 18 | For general questions, integration help, or API usage, please open a [Question](https://github.com/unisat-wallet/dev-support/issues/new?template=question.yml). 19 | 20 | - **Check Existing Issues:** 21 | Before submitting, please search [existing issues](https://github.com/unisat-wallet/dev-support/issues) to avoid duplicates. 22 | 23 | --- 24 | 25 | ## Guidelines 26 | 27 | - Please provide as much detail as possible (steps to reproduce, logs, screenshots, etc.). 28 | - For API-related issues, include endpoint, parameters, and sample requests if possible. 29 | - For feature requests, describe your use case and the value it brings. 30 | - Be respectful and constructive in all communications. 31 | 32 | --- 33 | 34 | ## Resources 35 | 36 | ### Documentation 37 | - [UniSat Dev Docs](https://github.com/unisat-wallet/unisat-dev-docs) 38 | Source for API documentation, OpenAPI specs, and developer guides. 39 | - [UniSat Dev Examples](https://github.com/unisat-wallet/unisat-dev-examples) 40 | Example projects and code samples for UniSat APIs and SDKs. 41 | 42 | ### Open Source Projects & Tools 43 | - [Extension Wallet Source Code](https://github.com/unisat-wallet/extension) 44 | The first open-source browser extension wallet for Bitcoin NFTs. 45 | - [Phishing Site Detection](https://github.com/unisat-wallet/phishing-detect) 46 | Open-source phishing site detection tools and lists. 47 | - [DROPS Validator](https://github.com/unisat-wallet/drops-validator) 48 | Tools and scripts for validating DROPS protocol assets. 49 | - [Ordinals NFT Collections](https://github.com/unisat-wallet/ordinals-collections) 50 | Aggregated marketplace and tools for Ordinals NFT collections. 51 | 52 | ### Community & Support 53 | - [Telegram Dev Support](https://t.me/+w3I7K-OLj4JmODM1) 54 | Join our developer community for real-time support and discussion. 55 | 56 | --- 57 | 58 | Thank you for helping us improve the UniSat developer experience! 59 | --------------------------------------------------------------------------------