Skip to content

Commit

Permalink
Merge pull request #5583 from WalletConnect/refactor/replace-stableli…
Browse files Browse the repository at this point in the history
…bs-with-noble

refactor: replaces stablelib with noble libs
  • Loading branch information
ganchoradkov authored Jan 23, 2025
2 parents fc73374 + 3b77b0e commit cb1d068
Show file tree
Hide file tree
Showing 8 changed files with 301 additions and 65 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: setup-node
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: install
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
- name: setup-node
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: install
Expand Down
217 changes: 202 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@walletconnect/keyvaluestorage": "1.1.1",
"@walletconnect/logger": "2.1.2",
"@walletconnect/relay-api": "1.0.11",
"@walletconnect/relay-auth": "1.0.4",
"@walletconnect/relay-auth": "1.0.4-canary-bnl-1",
"@walletconnect/safe-json": "1.0.2",
"@walletconnect/time": "1.0.2",
"@walletconnect/types": "2.17.5",
Expand Down
17 changes: 8 additions & 9 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,29 +31,28 @@
"prettier": "prettier --check '{src,test}/**/*.{js,ts,jsx,tsx}'"
},
"dependencies": {
"@ethersproject/hash": "5.7.0",
"@ethersproject/transactions": "5.7.0",
"@stablelib/chacha20poly1305": "1.0.1",
"@stablelib/hkdf": "1.0.1",
"@stablelib/random": "1.0.2",
"@stablelib/sha256": "1.0.1",
"@stablelib/x25519": "1.0.3",
"@walletconnect/jsonrpc-utils": "1.0.8",
"@walletconnect/keyvaluestorage": "1.1.1",
"@walletconnect/relay-api": "1.0.11",
"@walletconnect/relay-auth": "1.0.4",
"@walletconnect/relay-auth": "1.0.4-canary-bnl-1",
"@walletconnect/safe-json": "1.0.2",
"@walletconnect/time": "1.0.2",
"@walletconnect/types": "2.17.5",
"@walletconnect/window-getters": "1.0.1",
"@walletconnect/window-metadata": "1.0.1",
"detect-browser": "5.3.0",
"elliptic": "6.6.1",
"uint8arrays": "3.1.0"
"query-string": "7.1.3",
"uint8arrays": "3.1.0",
"@noble/ciphers": "1.2.1",
"@noble/curves": "1.8.1",
"@noble/hashes": "1.7.1"
},
"devDependencies": {
"@types/elliptic": "6.4.18",
"@types/lodash.isequal": "4.5.6",
"@walletconnect/jsonrpc-types": "1.0.4"
"@walletconnect/jsonrpc-types": "1.0.4",
"@stablelib/x25519": "1.0.3"
}
}
Loading

0 comments on commit cb1d068

Please sign in to comment.