Skip to content

Commit 2bceae7

Browse files
committed
fix: metamask-connect integration
1 parent 823c11e commit 2bceae7

File tree

312 files changed

+34767
-52905
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

312 files changed

+34767
-52905
lines changed

.cursor/worktrees.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"setup-worktree": ["npm install"]
3+
}

.github/CODEOWNERS

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Lines starting with '#' are comments.
2+
#
3+
# GUIDELINES:
4+
# Each line is a file pattern followed by one or more owners.
5+
# Owners bear a responsibility to the organization and the users of this
6+
# application. Repository administrators have the ability to merge pull
7+
# requests that have not yet received the requisite reviews as outlined
8+
# in this file. Do not force merge any PR without confidence that it
9+
# follows all policies or without full understanding of the impact of
10+
# those changes on build, release and publishing outcomes.
11+
#
12+
# The CODEOWNERS file constitutes an agreement amongst organisation
13+
# admins and maintainers to restrict approval capabilities to a subset
14+
# of contributors. Modifications to this file result in a modification of
15+
# that agreement and can only be approved by those with the knowledge
16+
# and responsibility to publish libraries under the Web3auth name.
17+
18+
# Fallback for all other files
19+
* @Web3Auth/Web3Auth-Admins
20+
21+
# Product code
22+
packages/ @Web3Auth/Web3Auth-Product
23+
test/ @Web3Auth/Web3Auth-Product
24+
25+
# Most restrictive — last match wins
26+
.github/CODEOWNERS @Web3Auth/Web3Auth-Admins
27+
packages/**/package.json @Web3Auth/Web3Auth-Admins
28+
package.json @Web3Auth/Web3Auth-Admins

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
## Jira Link
2+
3+
<!-- Link to the Jira ticket (if applicable) -->
4+
5+
## Description
6+
7+
<!-- Describe your changes in detail -->
8+
9+
## How has this been tested?
10+
11+
<!-- Please describe how you tested your changes -->
12+
13+
## Screenshots (if appropriate)
14+
15+
<!-- Add screenshots if UI changes are involved -->
16+
17+
## Types of changes
18+
19+
- [ ] Bug fix (non-breaking change which fixes an issue)
20+
- [ ] New feature (non-breaking change which adds functionality)
21+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
22+
23+
## Checklist
24+
25+
- [ ] My code follows the code style of this project. (run lint)
26+
- [ ] My change requires a change to the documentation.
27+
- [ ] I have updated the documentation accordingly.
28+
- [ ] I have added tests to cover my changes.
29+
- [ ] All new and existing tests passed.

.github/PULL_REQUEST_TEMPLATE/bug_fix.md

Lines changed: 0 additions & 59 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE/feature.md

Lines changed: 0 additions & 63 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ jobs:
66
build:
77
strategy:
88
matrix:
9-
node: ["22.x"]
9+
node: ["24.x"]
1010
os: [ubuntu-latest]
1111

1212
runs-on: ${{ matrix.os }}
1313

1414
steps:
1515
- name: Check out Git repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717

1818
- name: Set up node
19-
uses: actions/setup-node@v4
19+
uses: actions/setup-node@v6
2020
with:
2121
node-version: ${{ matrix.node }}
2222
cache: "npm"

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ typings/
4949

5050
# Optional npm cache directory
5151
.npm
52+
.npmrc
5253

5354
# Optional eslint cache
5455
.eslintcache
@@ -64,6 +65,7 @@ typings/
6465

6566
# Output of 'npm pack'
6667
*.tgz
68+
!web3auth-ws-embed-*.tgz
6769

6870
# Yarn Integrity file
6971
.yarn-integrity
@@ -109,4 +111,6 @@ dist
109111
.yalc
110112
yalc.lock
111113
types
112-
build/
114+
build/
115+
116+
.npmrc

.mocharc.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
>=18.x
1+
>=24.x

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@
1919
npm-debug.log*
2020
yarn-debug.log*
2121
yarn-error.log*
22-
/packages/*/types
22+
/packages/*/types
23+
.github/CODEOWNERS

0 commit comments

Comments
 (0)