Skip to content

Commit

Permalink
Merge branch 'master' of github.com:LIT-Protocol/js-sdk into feature/…
Browse files Browse the repository at this point in the history
…lit-2674-js-sdk-make-getlatestblockhash-async
  • Loading branch information
Josh Long committed Apr 16, 2024
2 parents 0a35532 + 1286138 commit 1c786a9
Show file tree
Hide file tree
Showing 169 changed files with 601 additions and 305 deletions.
37 changes: 0 additions & 37 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

72 changes: 72 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: 🐞 Bug Report
description: File a bug report or issue
title: "[Team Name] <title-for-the-issue>"
labels: [Bug, Integration Issue]
body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: SDK version
description: Which version(s) of the SDK are you using?
validations:
required: true
- type: textarea
attributes:
label: Lit Network
description: Which Lit network(s) are you using?
validations:
required: true
- type: textarea
attributes:
label: Description of the bug/issue
description: A clear and concise description of what the bug or issue is along with error message.
validations:
required: true
- type: textarea
attributes:
label: Severity of the bug
description: What is the impact of this bug on your integration?
validations:
required: true
- type: textarea
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. In this environment...
2. With this config...
3. Run '...'
4. See error...
validations:
required: true
- type: textarea
attributes:
label: Link to code
description: If you have a public repository with the code, please provide a link.
validations:
required: false
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Screenshots? Anything that will give us more context about the issue you are encountering!
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
validations:
required: false
# - type: dropdown
# id: browsers
# attributes:
# label: What browsers are you seeing the problem on?
# multiple: true
# options:
# - Firefox
# - Chrome
# - Safari
# - Microsoft Edge
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: "Community"
url: "https://developer.litprotocol.com/ecosystem/community"
about: "Join Lit Protocol's Community to ask questions and share your projects"
- name: "Documentation"
url: "https://developer.litprotocol.com/v3"
about: "Find more information in the Lit Protocol's official documentation"
42 changes: 42 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: 🚀 Feature Request
description: Request a new feature or enhancement
title: "[Team Name] <title-for-the-request>"
labels: [Feature Request, Enhancement]
body:
- type: textarea
attributes:
label: Description of the feature request
description: A clear and concise description of the feature or enhancement you are requesting.
validations:
required: true
- type: textarea
attributes:
label: Use case for the feature
description: How would this feature benefit your integration or use case?
validations:
required: true
- type: textarea
attributes:
label: Proposed solution
description: If you have any ideas or suggestions for how this feature could be implemented, please provide them here.
validations:
required: false
- type: textarea
attributes:
label: Additional context
description: |
Links? References? Screenshots? Anything that will give us more context about the feature you are requesting!
Tip: You can attach images or files by clicking this area to highlight it and then dragging files in.
validations:
required: false
# - type: dropdown
# id: browsers
# attributes:
# label: What browsers do you expect this feature to work on?
# multiple: true
# options:
# - Firefox
# - Chrome
# - Safari
# - Microsoft Edge
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/general_support.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 🆘 General Support
description: Request general support or assistance
title: "[Team Name] <title-for-the-issue>"
labels: [General Support]
body:
- type: textarea
attributes:
label: Description of the issue
description: A clear and concise description of the issue or problem you are facing.
validations:
required: true
- type: textarea
attributes:
label: Additional context
description: |
Links? References? Screenshots? Anything that will give us more context about the issue you are facing!
Tip: You can attach images or files by clicking this area to highlight it and then dragging files in.
validations:
required: false
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div align="center">
<h1>Lit Protocol Javascript/Typescript SDK V4.1.1</h1>
<h1>Lit Protocol Javascript/Typescript SDK V4.2.0</h1>

<img src="https://i.ibb.co/p2xfzK1/Screenshot-2022-11-15-at-09-56-57.png">
<br/>
Expand Down Expand Up @@ -122,9 +122,13 @@ yarn

## Building

You can build the project with the following command:
You can build the project with the following commands:

```
// for local development - It stripped away operations that don't matter for local dev
yarn build:dev
// you should never need to use yarn build unless you want to test or publish it
yarn build
```

Expand Down
Loading

0 comments on commit 1c786a9

Please sign in to comment.