Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed Nov 8, 2024
1 parent d7410b9 commit f510143
Show file tree
Hide file tree
Showing 24 changed files with 1,824 additions and 1,860 deletions.
3,588 changes: 1,776 additions & 1,812 deletions package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"@babel/register": "^7.25.9",
"@toruslabs/config": "^2.2.0",
"@toruslabs/eslint-config-typescript": "^3.3.4",
"@toruslabs/torus-scripts": "^6.1.5",
"@toruslabs/torus-scripts": "^6.1.6",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.9",
"@types/node": "^22",
Expand All @@ -17,15 +17,15 @@
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"lerna": "^8.1.8",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tslib": "^2.8.0",
"tslib": "^2.8.1",
"typescript": "^5.6.3"
},
"engines": {
Expand All @@ -50,8 +50,8 @@
},
"name": "web3auth",
"optionalDependencies": {
"@nx/nx-linux-x64-gnu": "^20.0.6",
"@rollup/rollup-linux-x64-gnu": "^4.24.2"
"@nx/nx-linux-x64-gnu": "^20.0.11",
"@rollup/rollup-linux-x64-gnu": "^4.24.4"
},
"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.4.1",
"@web3auth/auth": "^9.5.0",
"@web3auth/base": "^9.3.0",
"@web3auth/base-provider": "^9.3.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.2.2",
"@toruslabs/base-controllers": "^6.2.4",
"@web3auth/base": "^9.3.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.2.2",
"@toruslabs/base-controllers": "^6.2.4",
"@web3auth/base": "^9.3.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.3.0"
},
"devDependencies": {
"@coinbase/wallet-sdk": "^4.1.0"
"@coinbase/wallet-sdk": "^4.2.2"
},
"lint-staged": {
"!(*d).ts": [
Expand Down
8 changes: 4 additions & 4 deletions packages/adapters/default-solana-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
"dependencies": {
"@solana/wallet-standard-features": "^1.2.0",
"@solana/web3.js": "^1.95.4",
"@wallet-standard/app": "^1.0.1",
"@wallet-standard/base": "^1.0.1",
"@wallet-standard/features": "^1.0.3",
"@web3auth/auth": "^9.4.1",
"@wallet-standard/app": "^1.1.0",
"@wallet-standard/base": "^1.1.0",
"@wallet-standard/features": "^1.1.0",
"@web3auth/auth": "^9.5.0",
"@web3auth/base": "^9.3.0",
"@web3auth/base-solana-adapter": "^9.3.0",
"@web3auth/solana-provider": "^9.3.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class WalletStandardProviderHandler extends SafeEventEmitter implements I
async signMessage(message: Uint8Array): Promise<{ signature: Uint8Array; publicKey: BN }> {
const account = this.currentAccount;
const signature = await this.wallet.features[SolanaSignMessage].signMessage({ account, message });
return { signature: signature[0].signature, publicKey: new BN(account.publicKey) };
return { signature: signature[0].signature, publicKey: new BN(Buffer.from(account.publicKey)) };
}

async signTransaction<T extends TransactionOrVersionedTransaction>(transaction: T): Promise<T> {
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.4",
"@toruslabs/base-controllers": "^6.2.2",
"@walletconnect/sign-client": "^2.17.1",
"@walletconnect/types": "^2.17.1",
"@walletconnect/utils": "^2.17.1",
"@web3auth/auth": "^9.4.1",
"@toruslabs/base-controllers": "^6.2.4",
"@walletconnect/sign-client": "^2.17.2",
"@walletconnect/types": "^2.17.2",
"@walletconnect/utils": "^2.17.2",
"@web3auth/auth": "^9.5.0",
"@web3auth/base": "^9.3.0",
"@web3auth/base-provider": "^9.3.0",
"@web3auth/ethereum-provider": "^9.3.0",
Expand Down
6 changes: 3 additions & 3 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.2.2",
"@toruslabs/constants": "^14.0.0",
"@toruslabs/base-controllers": "^6.2.4",
"@toruslabs/constants": "^14.1.1",
"@toruslabs/http-helpers": "^7.0.0",
"@web3auth/auth": "^9.4.1",
"@web3auth/auth": "^9.5.0",
"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.3.2"
},
"devDependencies": {
"@web3auth/auth": "^9.4.1",
"@web3auth/auth": "^9.5.0",
"@web3auth/auth-adapter": "^9.3.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.3.2"
},
"devDependencies": {
"@web3auth/auth": "^9.4.1",
"@web3auth/auth": "^9.5.0",
"@web3auth/auth-adapter": "^9.3.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.2.2",
"@toruslabs/base-controllers": "^6.2.4",
"@web3auth/base": "^9.3.0",
"@web3auth/wallet-services-plugin": "^9.3.2"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/modal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@svgr/webpack": "^8.1.0",
"@toruslabs/isomorphic-style-loader": "^5.3.3",
"@web3auth/account-abstraction-provider": "^9.3.1",
"@web3auth/auth": "^9.4.1",
"@web3auth/auth": "^9.5.0",
"@web3auth/wallet-connect-v2-adapter": "^9.3.0",
"css-loader": "^7.1.2",
"postcss-prefix-selector": "^2.1.0",
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.4.1",
"@web3auth/auth": "^9.5.0",
"@web3auth/base": "^9.3.0",
"@web3auth/base-provider": "^9.3.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.4.1",
"@web3auth/auth": "^9.5.0",
"@web3auth/base": "^9.3.0",
"@web3auth/no-modal": "^9.3.2",
"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.2.2"
"@toruslabs/ethereum-controllers": "^6.2.4"
},
"dependencies": {
"@web3auth/auth": "^9.4.1",
"@web3auth/auth": "^9.5.0",
"@web3auth/base": "^9.3.0",
"@web3auth/no-modal": "^9.3.2",
"@web3auth/ws-embed": "^3.1.0",
Expand Down
6 changes: 3 additions & 3 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.2.2",
"@web3auth/auth": "^9.4.1",
"@toruslabs/base-controllers": "^6.2.4",
"@web3auth/auth": "^9.5.0",
"@web3auth/base": "^9.3.0",
"@web3auth/base-provider": "^9.3.0",
"@web3auth/ethereum-provider": "^9.3.0",
"ethers": "^6.13.4",
"permissionless": "^0.2.15",
"viem": "^2.21.40"
"viem": "^2.21.43"
},
"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.2.2",
"@web3auth/auth": "^9.4.1",
"@toruslabs/base-controllers": "^6.2.4",
"@web3auth/auth": "^9.5.0",
"@web3auth/base": "^9.3.0",
"json-rpc-random-id": "^1.0.1"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/providers/ethereum-mpc-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
},
"dependencies": {
"@ethereumjs/util": "^9.1.0",
"@toruslabs/base-controllers": "^6.2.2",
"@web3auth/auth": "^9.4.1",
"@toruslabs/base-controllers": "^6.2.4",
"@web3auth/auth": "^9.5.0",
"@web3auth/base": "^9.3.0",
"@web3auth/base-provider": "^9.3.0",
"@web3auth/ethereum-provider": "^9.3.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/providers/ethereum-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
},
"dependencies": {
"@ethereumjs/util": "^9.1.0",
"@toruslabs/base-controllers": "^6.2.2",
"@toruslabs/base-controllers": "^6.2.4",
"@toruslabs/eccrypto": "^5.0.4",
"@toruslabs/http-helpers": "^7.0.0",
"@web3auth/auth": "^9.4.1",
"@web3auth/auth": "^9.5.0",
"@web3auth/base": "^9.3.0",
"@web3auth/base-provider": "^9.3.0",
"assert": "^2.1.0",
Expand All @@ -36,7 +36,7 @@
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/json-rpc-random-id": "^1.0.3",
"@walletconnect/types": "^2.17.1"
"@walletconnect/types": "^2.17.2"
},
"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.2.2",
"@toruslabs/base-controllers": "^6.2.4",
"@toruslabs/tweetnacl-js": "^1.0.4",
"@web3auth/auth": "^9.4.1",
"@web3auth/auth": "^9.5.0",
"@web3auth/base": "^9.3.0",
"@web3auth/base-provider": "^9.3.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.2.2",
"@web3auth/auth": "^9.4.1",
"@toruslabs/base-controllers": "^6.2.4",
"@web3auth/auth": "^9.5.0",
"@web3auth/base": "^9.3.0",
"@web3auth/base-provider": "^9.3.0",
"ripple-keypairs": "^1.3.1"
Expand Down
6 changes: 3 additions & 3 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@
},
"dependencies": {
"@toruslabs/http-helpers": "^7.0.0",
"@web3auth/auth": "^9.4.1",
"@web3auth/auth": "^9.5.0",
"@web3auth/base": "^9.3.0",
"bowser": "^2.11.0",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.3",
"deepmerge": "^4.3.1",
"i18next": "^23.16.4",
"react-i18next": "^15.1.0",
"i18next": "^23.16.5",
"react-i18next": "^15.1.1",
"react-qrcode-logo": "^3.0.0"
},
"lint-staged": {
Expand Down

0 comments on commit f510143

Please sign in to comment.