Skip to content

Commit

Permalink
- bump deps
Browse files Browse the repository at this point in the history
- fix whitelabel stuff
  • Loading branch information
chaitanyapotti committed Sep 14, 2023
1 parent fb5b272 commit 1c573a1
Show file tree
Hide file tree
Showing 10 changed files with 269 additions and 235 deletions.
5 changes: 2 additions & 3 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
> 0.5%
not dead
not ie 11
supports bigint
not dead
472 changes: 256 additions & 216 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"faker": "^5.5.3",
"husky": "^8.0.3",
"jsonwebtoken": "^9.0.2",
"lerna": "^7.2.0",
"lerna": "^7.3.0",
"lint-staged": "^14.0.1",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
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": "^7.0.1"
},
"devDependencies": {
"@coinbase/wallet-sdk": "^3.7.1"
"@coinbase/wallet-sdk": "^3.7.2"
},
"lint-staged": {
"!(*d).ts": [
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/solflare-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"bn.js": "^5.2.1"
},
"devDependencies": {
"@solana/web3.js": "^1.78.4",
"@solana/web3.js": "^1.78.5",
"@solflare-wallet/sdk": "^1.3.1"
},
"lint-staged": {
Expand Down
6 changes: 3 additions & 3 deletions packages/adapters/wallet-connect-v2-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
},
"devDependencies": {
"@types/lodash.merge": "^4.6.7",
"@walletconnect/sign-client": "^2.10.0",
"@walletconnect/types": "^2.10.0",
"@walletconnect/utils": "^2.10.0"
"@walletconnect/sign-client": "^2.10.1",
"@walletconnect/types": "^2.10.1",
"@walletconnect/utils": "^2.10.1"
},
"lint-staged": {
"!(*d).ts": [
Expand Down
1 change: 1 addition & 0 deletions packages/modal/src/modalManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export class Web3Auth extends Web3AuthNoModal implements IWeb3AuthModal {
throw new Error(`Invalid chainNamespace provided: ${providedChainConfig.chainNamespace}`);
}

if (!this.options.uiConfig) this.options.uiConfig = {};
if (!this.options.uiConfig.defaultLanguage) this.options.uiConfig.defaultLanguage = getUserLanguage(this.options.uiConfig.defaultLanguage);
if (!this.options.uiConfig.mode) this.options.uiConfig.mode = "auto";

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 @@ -22,13 +22,13 @@
"@ethereumjs/common": "^4.0.0",
"@ethereumjs/tx": "^5.0.0",
"@ethereumjs/util": "^9.0.0",
"@metamask/eth-sig-util": "^6.0.0",
"@metamask/eth-sig-util": "^7.0.0",
"@metamask/rpc-errors": "^6.0.0",
"@toruslabs/base-controllers": "^4.0.1",
"@toruslabs/http-helpers": "^5.0.0",
"@toruslabs/openlogin-jrpc": "^5.0.2",
"@walletconnect/legacy-types": "2.0.0",
"@walletconnect/utils": "^2.10.0",
"@walletconnect/utils": "^2.10.1",
"@web3auth/base": "^7.0.1",
"@web3auth/base-provider": "^7.0.1",
"assert": "^2.1.0",
Expand All @@ -39,7 +39,7 @@
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/json-rpc-random-id": "^1.0.1",
"@walletconnect/types": "^2.10.0"
"@walletconnect/types": "^2.10.1"
},
"peerDependencies": {
"@babel/runtime": "7.x"
Expand Down
2 changes: 1 addition & 1 deletion packages/providers/solana-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"json-rpc-random-id": "^1.0.1"
},
"devDependencies": {
"@solana/web3.js": "^1.78.4",
"@solana/web3.js": "^1.78.5",
"@solflare-wallet/sdk": "^1.3.1",
"@types/bn.js": "^5.1.1",
"@types/bs58": "^4.0.1",
Expand Down
6 changes: 0 additions & 6 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,8 @@
"@types/lodash.merge": "^4.6.7",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"autoprefixer": "^10.4.15",
"css-loader": "^6.8.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"live-server": "^1.2.2",
"postcss": "^8.4.29",
"postcss-loader": "^7.3.3",
Expand Down

0 comments on commit 1c573a1

Please sign in to comment.