@dynamic-labs/multi-wallet 4.0.0-alpha.46 → 4.0.0-alpha.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +7 -7
- package/src/utils/getSupportedChainsForWalletConnector/getSupportedChainsForWalletConnector.cjs +1 -1
- package/src/utils/getSupportedChainsForWalletConnector/getSupportedChainsForWalletConnector.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,26 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.0.0-alpha.48](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.47...v4.0.0-alpha.48) (2024-12-17)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* Temp disable refreshing blockhash for solana transactions ([#7638](https://github.com/dynamic-labs/dynamic-auth/issues/7638)) ([fd457bf](https://github.com/dynamic-labs/dynamic-auth/commit/fd457bf0579ad35ba17fc2c7aa18a9feb49d8c7b))
|
|
8
|
+
|
|
9
|
+
## [4.0.0-alpha.47](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.46...v4.0.0-alpha.47) (2024-12-17)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### ⚠ BREAKING CHANGES
|
|
13
|
+
|
|
14
|
+
* stop exposing authToken and minAuthToken from dynamic context (#7629)
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* allow re-linking unknown wallet when there's another account of the same wallet provider already linked ([#7628](https://github.com/dynamic-labs/dynamic-auth/issues/7628)) ([20c6dc3](https://github.com/dynamic-labs/dynamic-auth/commit/20c6dc3b1847d82bd46f0df5abaef4efe1e24e38))
|
|
19
|
+
* ensure wallet connector will not get removed ([#7625](https://github.com/dynamic-labs/dynamic-auth/issues/7625)) ([b764846](https://github.com/dynamic-labs/dynamic-auth/commit/b764846b56428e2997d33858e29a87f44359eb6c))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
* stop exposing authToken and minAuthToken from dynamic context ([#7629](https://github.com/dynamic-labs/dynamic-auth/issues/7629)) ([9648870](https://github.com/dynamic-labs/dynamic-auth/commit/9648870478cdcecde279117ada2a1095dab54e2c))
|
|
23
|
+
|
|
2
24
|
## [4.0.0-alpha.46](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.45...v4.0.0-alpha.46) (2024-12-17)
|
|
3
25
|
|
|
4
26
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/multi-wallet",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.48",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@dynamic-labs/sdk-api-core": "0.0.576",
|
|
6
6
|
"tslib": "2.4.1",
|
|
7
|
-
"@dynamic-labs/assert-package-version": "4.0.0-alpha.
|
|
8
|
-
"@dynamic-labs/rpc-providers": "4.0.0-alpha.
|
|
9
|
-
"@dynamic-labs/types": "4.0.0-alpha.
|
|
10
|
-
"@dynamic-labs/utils": "4.0.0-alpha.
|
|
11
|
-
"@dynamic-labs/wallet-book": "4.0.0-alpha.
|
|
12
|
-
"@dynamic-labs/wallet-connector-core": "4.0.0-alpha.
|
|
7
|
+
"@dynamic-labs/assert-package-version": "4.0.0-alpha.48",
|
|
8
|
+
"@dynamic-labs/rpc-providers": "4.0.0-alpha.48",
|
|
9
|
+
"@dynamic-labs/types": "4.0.0-alpha.48",
|
|
10
|
+
"@dynamic-labs/utils": "4.0.0-alpha.48",
|
|
11
|
+
"@dynamic-labs/wallet-book": "4.0.0-alpha.48",
|
|
12
|
+
"@dynamic-labs/wallet-connector-core": "4.0.0-alpha.48"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@walletconnect/types": "2.10.6"
|
package/src/utils/getSupportedChainsForWalletConnector/getSupportedChainsForWalletConnector.cjs
CHANGED
|
@@ -13,7 +13,7 @@ const getSupportedChainsForWalletConnector = (walletBook$1, walletConnector) =>
|
|
|
13
13
|
var _a;
|
|
14
14
|
const walletBookWallet = walletBook.findWalletBookWallet(walletBook$1, walletConnector.key);
|
|
15
15
|
if (!walletBookWallet) {
|
|
16
|
-
return
|
|
16
|
+
return walletConnector.supportedChains;
|
|
17
17
|
}
|
|
18
18
|
/**
|
|
19
19
|
* chains could contain multiple eth networks eg
|
package/src/utils/getSupportedChainsForWalletConnector/getSupportedChainsForWalletConnector.js
CHANGED
|
@@ -9,7 +9,7 @@ const getSupportedChainsForWalletConnector = (walletBook, walletConnector) => {
|
|
|
9
9
|
var _a;
|
|
10
10
|
const walletBookWallet = findWalletBookWallet(walletBook, walletConnector.key);
|
|
11
11
|
if (!walletBookWallet) {
|
|
12
|
-
return
|
|
12
|
+
return walletConnector.supportedChains;
|
|
13
13
|
}
|
|
14
14
|
/**
|
|
15
15
|
* chains could contain multiple eth networks eg
|