Skip to content

Commit 1e97528

Browse files
committed
added bug/feature template
1 parent 024272a commit 1e97528

File tree

3 files changed

+120
-27
lines changed

3 files changed

+120
-27
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
name: "🐛 Bug Report"
2+
description: Report a bug to help us improve the Multichain Crypto Wallet
3+
title: "[Bug]: "
4+
labels: ["bug", "needs triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
## Thanks for taking the time to report a bug!
10+
11+
- type: input
12+
id: environment
13+
attributes:
14+
label: Environment
15+
description: Provide details about your environment (e.g., OS, browser, Node version)
16+
placeholder: "e.g., macOS Ventura, Chrome 118, Node 18.12.1"
17+
validations:
18+
required: true
19+
20+
- type: textarea
21+
id: description
22+
attributes:
23+
label: Bug Description
24+
description: A clear and concise description of what the bug is.
25+
placeholder: "Describe the issue you're facing..."
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: steps
31+
attributes:
32+
label: Steps to Reproduce
33+
description: How can we reproduce the issue?
34+
placeholder: |
35+
1. Go to '...'
36+
2. Click on '...'
37+
3. Scroll down to '...'
38+
4. See error
39+
validations:
40+
required: true
41+
42+
- type: textarea
43+
id: expected
44+
attributes:
45+
label: Expected Behavior
46+
description: What did you expect to happen?
47+
placeholder: "It should have..."
48+
validations:
49+
required: true
50+
51+
- type: textarea
52+
id: actual
53+
attributes:
54+
label: Actual Behavior
55+
description: What actually happened?
56+
placeholder: "Instead, it..."
57+
validations:
58+
required: true
59+
60+
- type: input
61+
id: repo-version
62+
attributes:
63+
label: Wallet Version / Branch
64+
description: Which version or branch are you seeing the issue on?
65+
placeholder: "e.g. v1.0.3 or main"
66+
validations:
67+
required: true
68+
69+
- type: textarea
70+
id: logs
71+
attributes:
72+
label: Relevant Logs / Screenshots
73+
description: Paste any logs or screenshots that may help us debug.
74+
placeholder: "Copy-paste terminal logs or attach screenshots here."
75+
render: shell
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: "✨ Feature Request"
2+
description: Suggest an idea to improve the Multichain Crypto Wallet
3+
title: "[Feature]: "
4+
labels: ["enhancement", "needs triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
## Thanks for suggesting a feature! Let's make this wallet better together 🙌
10+
11+
- type: textarea
12+
id: feature
13+
attributes:
14+
label: Describe the Feature
15+
description: What's the problem or improvement you're proposing?
16+
placeholder: "It would be great if..."
17+
validations:
18+
required: true
19+
20+
- type: textarea
21+
id: motivation
22+
attributes:
23+
label: Motivation / Use Case
24+
description: Why do you want this feature? What problem does it solve?
25+
placeholder: "As a user, I want to..."
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: implementation
31+
attributes:
32+
label: Possible Implementation
33+
description: Any thoughts on how this could be built?
34+
placeholder: "Maybe we could use..."
35+
render: markdown
36+
37+
- type: checkboxes
38+
id: impact
39+
attributes:
40+
label: Potential Impact
41+
options:
42+
- label: This would improve developer experience
43+
- label: This would improve end-user experience
44+
- label: This would support new chains or protocols
45+
- label: This could affect existing functionality

0 commit comments

Comments
 (0)