@dynamic-labs/ethereum 1.1.0-alpha.8 → 1.1.0-alpha.9
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 +14 -0
- package/package.json +7 -7
- package/src/walletConnect/client/client.cjs +2 -2
- package/src/walletConnect/client/client.d.ts +1 -1
- package/src/walletConnect/client/client.js +2 -2
- package/src/walletConnect/walletConnect.cjs +1 -1
- package/src/walletConnect/walletConnect.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
|
|
2
|
+
## [1.1.0-alpha.9](https://github.com/dynamic-labs/DynamicAuth/compare/v1.1.0-alpha.8...v1.1.0-alpha.9) (2024-01-04)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add solana magic support ([#4258](https://github.com/dynamic-labs/DynamicAuth/issues/4258)) ([da726aa](https://github.com/dynamic-labs/DynamicAuth/commit/da726aa78466c52ee3e1f18952e4351cde754cbc))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* edge case with unlinking wallet ([#4285](https://github.com/dynamic-labs/DynamicAuth/issues/4285)) ([1057fe4](https://github.com/dynamic-labs/DynamicAuth/commit/1057fe47599381f5d9dc39ce4cbeca2041c70319))
|
|
13
|
+
* remove normalizeWalletName from DynamicAuth ([5592817](https://github.com/dynamic-labs/DynamicAuth/commit/5592817b62e345319e04cca9a98276ffad87cfc2))
|
|
14
|
+
* **useFetchBalance:** ensure the latest wallet balance is fetched ([#4288](https://github.com/dynamic-labs/DynamicAuth/issues/4288)) ([25dd035](https://github.com/dynamic-labs/DynamicAuth/commit/25dd035cf8893b7cd28f550026134ba0eecda142))
|
|
15
|
+
|
|
2
16
|
## [1.1.0-alpha.8](https://github.com/dynamic-labs/DynamicAuth/compare/v1.1.0-alpha.7...v1.1.0-alpha.8) (2024-01-03)
|
|
3
17
|
|
|
4
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/ethereum",
|
|
3
|
-
"version": "1.1.0-alpha.
|
|
3
|
+
"version": "1.1.0-alpha.9",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/dynamic-labs/DynamicAuth.git",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@walletconnect/universal-provider": "2.10.6",
|
|
33
33
|
"eventemitter3": "5.0.1",
|
|
34
34
|
"buffer": "6.0.3",
|
|
35
|
-
"@dynamic-labs/rpc-providers": "1.1.0-alpha.
|
|
36
|
-
"@dynamic-labs/turnkey": "1.1.0-alpha.
|
|
37
|
-
"@dynamic-labs/types": "1.1.0-alpha.
|
|
38
|
-
"@dynamic-labs/utils": "1.1.0-alpha.
|
|
39
|
-
"@dynamic-labs/wallet-book": "1.1.0-alpha.
|
|
40
|
-
"@dynamic-labs/wallet-connector-core": "1.1.0-alpha.
|
|
35
|
+
"@dynamic-labs/rpc-providers": "1.1.0-alpha.9",
|
|
36
|
+
"@dynamic-labs/turnkey": "1.1.0-alpha.9",
|
|
37
|
+
"@dynamic-labs/types": "1.1.0-alpha.9",
|
|
38
|
+
"@dynamic-labs/utils": "1.1.0-alpha.9",
|
|
39
|
+
"@dynamic-labs/wallet-book": "1.1.0-alpha.9",
|
|
40
|
+
"@dynamic-labs/wallet-connector-core": "1.1.0-alpha.9",
|
|
41
41
|
"stream": "0.0.2"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
@@ -12,8 +12,8 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
12
12
|
|
|
13
13
|
var Client__default = /*#__PURE__*/_interopDefaultLegacy(Client);
|
|
14
14
|
|
|
15
|
-
const initClient = (
|
|
16
|
-
const storageId = `walletconnect-${
|
|
15
|
+
const initClient = (key, bridge, settings) => {
|
|
16
|
+
const storageId = `walletconnect-${key}`;
|
|
17
17
|
const session = localStorage.getItem(storageId);
|
|
18
18
|
const clientArgs = session
|
|
19
19
|
? { session: JSON.parse(session), storageId }
|
|
@@ -2,7 +2,7 @@ import Client from '@walletconnect/client';
|
|
|
2
2
|
import { PublicClient } from 'viem';
|
|
3
3
|
import { FetchPublicAddressOpts, PayloadParams, DeepLinkVariant, WalletConnector } from '@dynamic-labs/wallet-connector-core';
|
|
4
4
|
import { WalletSchema } from '@dynamic-labs/wallet-book';
|
|
5
|
-
export declare const initClient: (
|
|
5
|
+
export declare const initClient: (key: string, bridge: string, settings?: any) => Client;
|
|
6
6
|
/**
|
|
7
7
|
* Attach event handlers to WalletConnect events.
|
|
8
8
|
*/
|
|
@@ -4,8 +4,8 @@ import { hashMessage } from 'viem';
|
|
|
4
4
|
import { isSameAddress, logger, performPlatformSpecificConnectionMethod, getDeepLink } from '@dynamic-labs/wallet-connector-core';
|
|
5
5
|
import { isMobile } from '@dynamic-labs/utils';
|
|
6
6
|
|
|
7
|
-
const initClient = (
|
|
8
|
-
const storageId = `walletconnect-${
|
|
7
|
+
const initClient = (key, bridge, settings) => {
|
|
8
|
+
const storageId = `walletconnect-${key}`;
|
|
9
9
|
const session = localStorage.getItem(storageId);
|
|
10
10
|
const clientArgs = session
|
|
11
11
|
? { session: JSON.parse(session), storageId }
|
|
@@ -36,7 +36,7 @@ class WalletConnect extends EthWalletConnector.EthWalletConnector {
|
|
|
36
36
|
if (this.client) {
|
|
37
37
|
return this.client;
|
|
38
38
|
}
|
|
39
|
-
this.client = client.initClient(
|
|
39
|
+
this.client = client.initClient(this.key, this.bridge, this.clientOptions);
|
|
40
40
|
return this.client;
|
|
41
41
|
}
|
|
42
42
|
supportsNetworkSwitching() {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __rest, __awaiter } from '../../_virtual/_tslib.js';
|
|
2
2
|
import WalletConnectProvider from '@walletconnect/ethereum-provider';
|
|
3
3
|
import { createWalletClient, custom } from 'viem';
|
|
4
|
-
import {
|
|
4
|
+
import { getDeepLink } from '@dynamic-labs/wallet-connector-core';
|
|
5
5
|
import { getWalletBookWallet } from '@dynamic-labs/wallet-book';
|
|
6
6
|
import { isMobile, DynamicError } from '@dynamic-labs/utils';
|
|
7
7
|
import { EthWalletConnector } from '../EthWalletConnector.js';
|
|
@@ -28,7 +28,7 @@ class WalletConnect extends EthWalletConnector {
|
|
|
28
28
|
if (this.client) {
|
|
29
29
|
return this.client;
|
|
30
30
|
}
|
|
31
|
-
this.client = initClient(
|
|
31
|
+
this.client = initClient(this.key, this.bridge, this.clientOptions);
|
|
32
32
|
return this.client;
|
|
33
33
|
}
|
|
34
34
|
supportsNetworkSwitching() {
|