@dynamic-labs/wallet-connector-core 2.0.0-alpha.26 → 2.0.0-alpha.28

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 CHANGED
@@ -1,4 +1,20 @@
1
1
 
2
+ ## [2.0.0-alpha.28](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.27...v2.0.0-alpha.28) (2024-04-10)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * improve bridge connect experience on mobile ([#5283](https://github.com/dynamic-labs/DynamicAuth/issues/5283)) ([155e4a9](https://github.com/dynamic-labs/DynamicAuth/commit/155e4a99e2cf5f78a1a5e91e774acbf170d6b083))
8
+
9
+ ## [2.0.0-alpha.27](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.26...v2.0.0-alpha.27) (2024-04-09)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * coinbase improvements ([#5268](https://github.com/dynamic-labs/DynamicAuth/issues/5268)) ([c10a6de](https://github.com/dynamic-labs/DynamicAuth/commit/c10a6debcacff6cd97f2436fbde387f85faa5682))
15
+ * show qr code for metamask on desktop when not installed ([#5262](https://github.com/dynamic-labs/DynamicAuth/issues/5262)) ([1dcb4d9](https://github.com/dynamic-labs/DynamicAuth/commit/1dcb4d98de8a95f6b11d7bad90b9059110087385))
16
+ * update title of hardware wallet select screen ([#5270](https://github.com/dynamic-labs/DynamicAuth/issues/5270)) ([6e8fe17](https://github.com/dynamic-labs/DynamicAuth/commit/6e8fe17306677786ccf528b97ab673b9ae6b57b9))
17
+
2
18
  ## [2.0.0-alpha.26](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.25...v2.0.0-alpha.26) (2024-04-08)
3
19
 
4
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/wallet-connector-core",
3
- "version": "2.0.0-alpha.26",
3
+ "version": "2.0.0-alpha.28",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
@@ -29,11 +29,11 @@
29
29
  "@dynamic-labs/sdk-api": "0.0.410"
30
30
  },
31
31
  "peerDependencies": {
32
- "@dynamic-labs/logger": "2.0.0-alpha.26",
33
- "@dynamic-labs/rpc-providers": "2.0.0-alpha.26",
34
- "@dynamic-labs/types": "2.0.0-alpha.26",
35
- "@dynamic-labs/utils": "2.0.0-alpha.26",
36
- "@dynamic-labs/wallet-book": "2.0.0-alpha.26",
32
+ "@dynamic-labs/logger": "2.0.0-alpha.28",
33
+ "@dynamic-labs/rpc-providers": "2.0.0-alpha.28",
34
+ "@dynamic-labs/types": "2.0.0-alpha.28",
35
+ "@dynamic-labs/utils": "2.0.0-alpha.28",
36
+ "@dynamic-labs/wallet-book": "2.0.0-alpha.28",
37
37
  "eventemitter3": "5.0.1"
38
38
  }
39
39
  }
@@ -151,7 +151,7 @@ class WalletConnectorBase extends EventEmitter__default["default"] {
151
151
  }
152
152
  filter() {
153
153
  try {
154
- walletBook.getWalletBookWallet(this.walletBook, this.key);
154
+ walletBook.getWalletBookWallet(this.walletBook, this.key, this.walletFallback);
155
155
  return true;
156
156
  }
157
157
  catch (_a) {
@@ -1,5 +1,5 @@
1
1
  import EventEmitter from 'eventemitter3';
2
- import { WalletBookSchema } from '@dynamic-labs/wallet-book';
2
+ import { WalletBookSchema, WalletSchema } from '@dynamic-labs/wallet-book';
3
3
  import type { JwtVerifiedCredential, WalletAdditionalAddress } from '@dynamic-labs/sdk-api';
4
4
  import { IChainRpcProviders } from '@dynamic-labs/rpc-providers';
5
5
  import { WalletBookSingleton } from './WalletBookSingleton';
@@ -51,6 +51,7 @@ export declare abstract class WalletConnectorBase extends EventEmitter<WalletCon
51
51
  chainRpcProviders: IChainRpcProviders | undefined;
52
52
  constructorProps: any;
53
53
  _walletBookInstance: WalletBookSingleton;
54
+ walletFallback: WalletSchema | undefined;
54
55
  /**
55
56
  * We store the constructor props so that we can use them later on
56
57
  * in getMobileOrInstalledWallet which may fall back to a different class
@@ -143,7 +143,7 @@ class WalletConnectorBase extends EventEmitter {
143
143
  }
144
144
  filter() {
145
145
  try {
146
- getWalletBookWallet(this.walletBook, this.key);
146
+ getWalletBookWallet(this.walletBook, this.key, this.walletFallback);
147
147
  return true;
148
148
  }
149
149
  catch (_a) {