Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed Oct 9, 2024
1 parent cac24e0 commit 0c10bf2
Show file tree
Hide file tree
Showing 24 changed files with 803 additions and 298 deletions.
1,003 changes: 754 additions & 249 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
},
"description": "Monorepo for web3 auth packages",
"devDependencies": {
"@babel/register": "^7.24.6",
"@babel/register": "^7.25.7",
"@toruslabs/config": "^2.2.0",
"@toruslabs/eslint-config-typescript": "^3.3.3",
"@toruslabs/torus-scripts": "^6.1.2",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.8",
"@types/mocha": "^10.0.9",
"@types/node": "^20",
"chai": "^5.1.1",
"cross-env": "^7.0.3",
Expand All @@ -26,7 +26,7 @@
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.x",
Expand All @@ -50,8 +50,8 @@
},
"name": "web3auth",
"optionalDependencies": {
"@nx/nx-linux-x64-gnu": "^19.7.3",
"@rollup/rollup-linux-x64-gnu": "^4.21.3"
"@nx/nx-linux-x64-gnu": "^20.0.0",
"@rollup/rollup-linux-x64-gnu": "^4.24.0"
},
"private": true,
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/auth-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@babel/runtime": "^7.x"
},
"dependencies": {
"@web3auth/auth": "^9.3.3",
"@web3auth/auth": "^9.4.1",
"@web3auth/base": "^9.2.0-alpha.0",
"@web3auth/base-provider": "^9.2.0-alpha.0",
"deepmerge": "^4.3.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/base-evm-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"pre-commit": "lint-staged --cwd ."
},
"dependencies": {
"@toruslabs/base-controllers": "^6.1.4",
"@toruslabs/base-controllers": "^6.2.1",
"@web3auth/base": "^9.2.0-alpha.0"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/base-solana-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"pre-commit": "lint-staged --cwd ."
},
"dependencies": {
"@toruslabs/base-controllers": "^6.1.4",
"@toruslabs/base-controllers": "^6.2.1",
"@web3auth/base": "^9.2.0-alpha.0",
"bs58": "^5.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/coinbase-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@web3auth/base-evm-adapter": "^9.2.0-alpha.0"
},
"devDependencies": {
"@coinbase/wallet-sdk": "^4.0.4"
"@coinbase/wallet-sdk": "^4.1.0"
},
"lint-staged": {
"!(*d).ts": [
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/coinbase-adapter/src/coinbaseAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class CoinbaseAdapter extends BaseEvmAdapter<void> {
this.emit(ADAPTER_EVENTS.CONNECTING, { adapter: WALLET_ADAPTERS.COINBASE });
try {
await this.coinbaseProvider.request({ method: "eth_requestAccounts" });
const chainId = await this.coinbaseProvider.request<string>({ method: "eth_chainId" });
const chainId = (await this.coinbaseProvider.request({ method: "eth_chainId" })) as string;
if (chainId !== (this.chainConfig as CustomChainConfig).chainId) {
await this.addChain(this.chainConfig as CustomChainConfig);
await this.switchChain(this.chainConfig as CustomChainConfig, true);
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/default-solana-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@wallet-standard/app": "^1.0.1",
"@wallet-standard/base": "^1.0.1",
"@wallet-standard/features": "^1.0.3",
"@web3auth/auth": "^9.3.3",
"@web3auth/auth": "^9.4.1",
"@web3auth/base": "^9.2.0-alpha.0",
"@web3auth/base-solana-adapter": "^9.2.0-alpha.0",
"@web3auth/solana-provider": "^9.2.0-alpha.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/adapters/wallet-connect-v2-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
},
"dependencies": {
"@solana/web3.js": "^1.95.3",
"@toruslabs/base-controllers": "^6.1.2",
"@walletconnect/sign-client": "^2.16.1",
"@walletconnect/types": "^2.16.1",
"@walletconnect/utils": "^2.16.1",
"@web3auth/auth": "^9.3.3",
"@toruslabs/base-controllers": "^6.2.1",
"@walletconnect/sign-client": "^2.17.0",
"@walletconnect/types": "^2.17.0",
"@walletconnect/utils": "^2.17.0",
"@web3auth/auth": "^9.4.1",
"@web3auth/base": "^9.2.0-alpha.0",
"@web3auth/base-provider": "^9.2.0-alpha.0",
"@web3auth/ethereum-provider": "^9.2.0-alpha.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"pre-commit": "lint-staged --cwd ."
},
"dependencies": {
"@toruslabs/base-controllers": "^6.1.4",
"@toruslabs/base-controllers": "^6.2.1",
"@toruslabs/constants": "^14.0.0",
"@toruslabs/http-helpers": "^7.0.0",
"@web3auth/auth": "^9.3.3",
"@web3auth/auth": "^9.4.1",
"jwt-decode": "^4.0.0",
"loglevel": "^1.9.2",
"ts-custom-error": "^3.3.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/composables/modal-vue-composables/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@web3auth/modal": "^9.2.0-alpha.5"
},
"devDependencies": {
"@web3auth/auth": "^9.3.3",
"@web3auth/auth": "^9.4.1",
"@web3auth/auth-adapter": "^9.2.0-alpha.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/composables/no-modal-vue-composables/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@web3auth/no-modal": "^9.2.0-alpha.0"
},
"devDependencies": {
"@web3auth/auth": "^9.3.3",
"@web3auth/auth": "^9.4.1",
"@web3auth/auth-adapter": "^9.2.0-alpha.0"
},
"peerDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"dist"
],
"dependencies": {
"@toruslabs/base-controllers": "^6.1.4",
"@toruslabs/base-controllers": "^6.2.1",
"@web3auth/base": "^9.2.0-alpha.0",
"@web3auth/wallet-services-plugin": "^9.2.0-alpha.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/modal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@toruslabs/isomorphic-style-loader": "^5.3.3",
"@web3auth/auth": "^9.3.3",
"@web3auth/auth": "^9.4.1",
"@web3auth/wallet-connect-v2-adapter": "^9.2.0-alpha.0",
"css-loader": "^7.1.2",
"postcss-prefix-selector": "^1.16.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/no-modal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@web3auth/wallet-connect-v2-adapter": "^9.x"
},
"dependencies": {
"@web3auth/auth": "^9.3.3",
"@web3auth/auth": "^9.4.1",
"@web3auth/base": "^9.2.0-alpha.0",
"@web3auth/base-provider": "^9.2.0-alpha.0",
"deepmerge": "^4.3.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
],
"dependencies": {
"@toruslabs/solana-embed": "^2.1.0",
"@web3auth/auth": "^9.3.3",
"@web3auth/auth": "^9.4.1",
"@web3auth/base": "^9.2.0-alpha.0",
"@web3auth/no-modal": "^9.2.0-alpha.0",
"loglevel": "^1.9.2"
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/wallet-services-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
"dist"
],
"devDependencies": {
"@toruslabs/ethereum-controllers": "^6.1.3"
"@toruslabs/ethereum-controllers": "^6.2.1"
},
"dependencies": {
"@web3auth/auth": "^9.3.3",
"@web3auth/auth": "^9.4.1",
"@web3auth/base": "^9.2.0-alpha.0",
"@web3auth/no-modal": "^9.2.0-alpha.0",
"@web3auth/ws-embed": "^3.0.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/providers/account-abstraction-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
},
"dependencies": {
"@ethereumjs/util": "^9.1.0",
"@toruslabs/base-controllers": "^6.1.4",
"@web3auth/auth": "^9.4.0",
"@toruslabs/base-controllers": "^6.2.1",
"@web3auth/auth": "^9.4.1",
"@web3auth/base": "^9.2.0-alpha.0",
"@web3auth/base-provider": "^9.2.0-alpha.0",
"@web3auth/ethereum-provider": "^9.2.0-alpha.0",
"ethers": "^6.13.2",
"permissionless": "^0.2.3",
"viem": "^2.21.12"
"ethers": "^6.13.3",
"permissionless": "^0.2.6",
"viem": "^2.21.19"
},
"peerDependencies": {
"@babel/runtime": "7.x"
Expand Down
4 changes: 2 additions & 2 deletions packages/providers/base-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"pre-commit": "lint-staged --cwd ."
},
"dependencies": {
"@toruslabs/base-controllers": "^6.1.2",
"@web3auth/auth": "^9.3.3",
"@toruslabs/base-controllers": "^6.2.1",
"@web3auth/auth": "^9.4.1",
"@web3auth/base": "^9.2.0-alpha.0",
"json-rpc-random-id": "^1.0.1"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/providers/ethereum-mpc-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
},
"dependencies": {
"@ethereumjs/util": "^9.1.0",
"@toruslabs/base-controllers": "^6.1.4",
"@web3auth/auth": "^9.3.3",
"@toruslabs/base-controllers": "^6.2.1",
"@web3auth/auth": "^9.4.1",
"@web3auth/base": "^9.2.0-alpha.0",
"@web3auth/base-provider": "^9.2.0-alpha.0",
"@web3auth/ethereum-provider": "^9.2.0-alpha.0",
"ethers": "^6.13.2"
"ethers": "^6.13.3"
},
"peerDependencies": {
"@babel/runtime": "7.x"
Expand Down
8 changes: 4 additions & 4 deletions packages/providers/ethereum-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@
},
"dependencies": {
"@ethereumjs/util": "^9.1.0",
"@toruslabs/base-controllers": "^6.1.4",
"@toruslabs/base-controllers": "^6.2.1",
"@toruslabs/eccrypto": "^5.0.4",
"@toruslabs/http-helpers": "^7.0.0",
"@web3auth/auth": "^9.3.3",
"@web3auth/auth": "^9.4.1",
"@web3auth/base": "^9.2.0-alpha.0",
"@web3auth/base-provider": "^9.2.0-alpha.0",
"assert": "^2.1.0",
"bignumber.js": "^9.1.2",
"bn.js": "^5.2.1",
"ethers": "^6.13.2",
"ethers": "^6.13.3",
"jsonschema": "^1.4.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/json-rpc-random-id": "^1.0.3",
"@walletconnect/types": "^2.16.1"
"@walletconnect/types": "^2.17.0"
},
"peerDependencies": {
"@babel/runtime": "7.x"
Expand Down
4 changes: 2 additions & 2 deletions packages/providers/solana-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"pre-commit": "lint-staged --cwd ."
},
"dependencies": {
"@toruslabs/base-controllers": "^6.1.4",
"@toruslabs/base-controllers": "^6.2.1",
"@toruslabs/tweetnacl-js": "^1.0.4",
"@web3auth/auth": "^9.3.3",
"@web3auth/auth": "^9.4.1",
"@web3auth/base": "^9.2.0-alpha.0",
"@web3auth/base-provider": "^9.2.0-alpha.0",
"bn.js": "^5.2.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/providers/xrpl-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"pre-commit": "lint-staged --cwd ."
},
"dependencies": {
"@toruslabs/base-controllers": "^6.1.4",
"@web3auth/auth": "^9.3.3",
"@toruslabs/base-controllers": "^6.2.1",
"@web3auth/auth": "^9.4.1",
"@web3auth/base": "^9.2.0-alpha.0",
"@web3auth/base-provider": "^9.2.0-alpha.0",
"ripple-keypairs": "^1.3.1"
Expand Down
10 changes: 5 additions & 5 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"react-dom": "^18.x"
},
"devDependencies": {
"@babel/preset-react": "^7.24.7",
"@babel/preset-react": "^7.25.7",
"@mertasan/tailwindcss-variables": "^2.7.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-url": "^8.0.2",
Expand All @@ -46,7 +46,7 @@
"@toruslabs/eslint-config-react": "^3.4.3",
"@toruslabs/isomorphic-style-loader": "^5.3.3",
"@toruslabs/vue-components": "^7.8.4",
"@types/react": "^18.3.7",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"css-loader": "^7.1.2",
Expand All @@ -58,18 +58,18 @@
"react-dom": "^18.3.1",
"rollup-plugin-postcss": "^4.0.2",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.12",
"tailwindcss": "^3.4.13",
"url-loader": "^4.1.1"
},
"dependencies": {
"@toruslabs/http-helpers": "^7.0.0",
"@web3auth/auth": "^9.3.3",
"@web3auth/auth": "^9.4.1",
"@web3auth/base": "^9.2.0-alpha.0",
"bowser": "^2.11.0",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.3",
"deepmerge": "^4.3.1",
"i18next": "^23.15.1",
"i18next": "^23.15.2",
"react-i18next": "^15.0.2",
"react-qrcode-logo": "^3.0.0"
},
Expand Down

0 comments on commit 0c10bf2

Please sign in to comment.