Skip to content

Commit

Permalink
chore: format repository
Browse files Browse the repository at this point in the history
  • Loading branch information
ufe-pr committed Jan 31, 2025
1 parent aa067da commit 1c549ce
Show file tree
Hide file tree
Showing 34 changed files with 426 additions and 398 deletions.
4 changes: 3 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: 🐛 Bug Report
about: Report a bug or unexpected behavior in the library
title: "[Bug]: "
title: '[Bug]: '
labels: bug
assignees: ''
---
Expand All @@ -11,6 +11,7 @@ A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Use '...'
3. See error
Expand All @@ -22,6 +23,7 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots or logs to help explain your problem.

**Environment (please complete the following information):**

- Library Version: [e.g., 1.2.0]
- Node Version: [e.g., 18.x]
- Wallet Provider: [e.g., UniSat, Xverse]
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/documentation_improvement.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: 📚 Documentation Improvement
about: Suggest changes or improvements to the documentation
title: "[Docs]: "
title: '[Docs]: '
labels: documentation
assignees: ''
---
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: 🚀 Feature Request
about: Suggest an idea or enhancement for the library
title: "[Feature]: "
title: '[Feature]: '
labels: enhancement
assignees: ''
---
Expand Down
4 changes: 3 additions & 1 deletion .github/ISSUE_TEMPLATE/security_vulnerability.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: 🔒 Security Vulnerability
about: Report a security vulnerability in the library
title: "[Security]: "
title: '[Security]: '
labels: security
assignees: ''
---
Expand All @@ -14,10 +14,12 @@ Describe the potential impact of this vulnerability if exploited.

**Steps to Reproduce**
Steps to reproduce the behavior, if possible:

1. ...
2. ...

**Environment (please complete the following information):**

- Library Version: [e.g., 1.2.0]
- Node Version: [e.g., 18.x]
- Wallet Provider: [e.g., UniSat, Xverse]
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/support_question.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: ❓ Support/Question
about: Ask a question or request guidance about using the library
title: "[Support]: "
title: '[Support]: '
labels: question
assignees: ''
---
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ Don't trust verify [Try Out The Demo Here](https://demo.lasereyes.build)
- Xverse

## Why Laser Eyes?
![herding cats](https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExbW92cmM4MDExcGE1NmJtZjhka2N3M25wNm4zeDR5cWQ4YzFnNzZiNiZlcD12MV9naWZzX3NlYXJjaCZjdD1n/7MIULHLEeZyKs/giphy.gif)

![herding cats](https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExbW92cmM4MDExcGE1NmJtZjhka2N3M25wNm4zeDR5cWQ4YzFnNzZiNiZlcD12MV9naWZzX3NlYXJjaCZjdD1n/7MIULHLEeZyKs/giphy.gif)

## Community

Expand Down
189 changes: 110 additions & 79 deletions RELEASE_NOTES.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions apps/demo.lasereyes.build/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
![lasereyes_logo](../../lasereyes.png)

# LaserEyes Demo

`demo.lasereyes.build` is a demo application designed to showcase the features of `@omnisat/lasereyes` and its integration into a dApp. This app demonstrates how to integrate Bitcoin wallets into a React/Next.js application using the `lasereyes` packages.
Expand Down
8 changes: 3 additions & 5 deletions apps/demo.lasereyes.build/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ const App = ({ setNetwork }: { setNetwork: (n: NetworkType) => void }) => {
const [signedPsbt, setSignedPsbt] = useState<
| string
| {
signedPsbtHex: string
signedPsbtBase64: string
}
signedPsbtHex: string
signedPsbtBase64: string
}
| undefined
>()
type colorsType =
Expand All @@ -74,7 +74,6 @@ const App = ({ setNetwork }: { setNetwork: (n: NetworkType) => void }) => {
colors[Math.floor(Math.random() * 5)]
)


const switchN = () => {
try {
if (network === MAINNET) {
Expand Down Expand Up @@ -107,7 +106,6 @@ const App = ({ setNetwork }: { setNetwork: (n: NetworkType) => void }) => {
})
}, [])


// useEffect(() => {
// if (address) {
// getInscriptions(0, 10).then((response) => setInscriptions(response.list))
Expand Down
Loading

0 comments on commit 1c549ce

Please sign in to comment.