@dynamic-labs/global-wallet-client 4.4.1 → 4.4.2-preview.1
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,25 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.4.2-preview.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.4.2...v4.4.2-preview.1) (2025-01-30)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add support for 7702 on ZeroDevConnector ([144e99a](https://github.com/dynamic-labs/dynamic-auth/commit/144e99a673abbe4c775ec2124375925e96f76071))
|
|
8
|
+
* implement experimental_signAuthorization method in TurnkeyEVMWalletConnector ([#7866](https://github.com/dynamic-labs/dynamic-auth/issues/7866)) ([9622d1e](https://github.com/dynamic-labs/dynamic-auth/commit/9622d1e0e42bb3401fffbdda7b735db1736717ce))
|
|
9
|
+
* implement experimental_signAuthorization method in TurnkeyEVMWalletConnector ([#7866](https://github.com/dynamic-labs/dynamic-auth/issues/7866)) ([7f367b8](https://github.com/dynamic-labs/dynamic-auth/commit/7f367b8bc9d6a0ece0268867bf9c7754d75d7949))
|
|
10
|
+
* implement experimental_signAuthorization method in TurnkeyEVMWalletConnector ([#7866](https://github.com/dynamic-labs/dynamic-auth/issues/7866)) ([2019c4c](https://github.com/dynamic-labs/dynamic-auth/commit/2019c4cb89e4a042dc1c896a71b803db572e1842))
|
|
11
|
+
* override kernel address and add auth to localstorage ([1074ebc](https://github.com/dynamic-labs/dynamic-auth/commit/1074ebc0f3eca26fb868fd7acc9e3ac7c1048007))
|
|
12
|
+
|
|
13
|
+
### [4.4.2-preview.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.4.1...v4.4.2-preview.0) (2025-01-28)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* add support for 7702 on ZeroDevConnector ([a8c850a](https://github.com/dynamic-labs/dynamic-auth/commit/a8c850ab192d6113ad55a01a594d5d90ab0fbfa6))
|
|
19
|
+
* implement experimental_signAuthorization method in TurnkeyEVMWalletConnector ([#7866](https://github.com/dynamic-labs/dynamic-auth/issues/7866)) ([96853fa](https://github.com/dynamic-labs/dynamic-auth/commit/96853fae170ca2f81cc01ccd6d9886446876412b))
|
|
20
|
+
* implement experimental_signAuthorization method in TurnkeyEVMWalletConnector ([#7866](https://github.com/dynamic-labs/dynamic-auth/issues/7866)) ([d988e88](https://github.com/dynamic-labs/dynamic-auth/commit/d988e88eccd0b04ba5710c8aa437f5dfffeb1d74))
|
|
21
|
+
* implement experimental_signAuthorization method in TurnkeyEVMWalletConnector ([#7866](https://github.com/dynamic-labs/dynamic-auth/issues/7866)) ([597f837](https://github.com/dynamic-labs/dynamic-auth/commit/597f8375bacef1e6a9a064604074c6920955a3e2))
|
|
22
|
+
|
|
2
23
|
### [4.4.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.4.0...v4.4.1) (2025-01-27)
|
|
3
24
|
|
|
4
25
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/global-wallet-client",
|
|
3
|
-
"version": "4.4.1",
|
|
3
|
+
"version": "4.4.2-preview.1",
|
|
4
4
|
"description": "Core package for building Dynamic's Global Wallet",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
},
|
|
40
40
|
"homepage": "https://www.dynamic.xyz/",
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@dynamic-labs/assert-package-version": "4.4.1",
|
|
43
|
-
"@dynamic-labs/logger": "4.4.1",
|
|
44
|
-
"@dynamic-labs/store": "4.4.1",
|
|
45
|
-
"@dynamic-labs/types": "4.4.1",
|
|
46
|
-
"@dynamic-labs/utils": "4.4.1",
|
|
42
|
+
"@dynamic-labs/assert-package-version": "4.4.2-preview.1",
|
|
43
|
+
"@dynamic-labs/logger": "4.4.2-preview.1",
|
|
44
|
+
"@dynamic-labs/store": "4.4.2-preview.1",
|
|
45
|
+
"@dynamic-labs/types": "4.4.2-preview.1",
|
|
46
|
+
"@dynamic-labs/utils": "4.4.2-preview.1",
|
|
47
47
|
"eventemitter3": "5.0.1"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
import { EIP1193Provider } from 'viem';
|
|
2
|
+
type DataURIImage = `data:image/png;base64,${string}` | `data:image/webp;base64,${string}` | `data:image/svg+xml;base64,${string}` | `data:image/svg+xml,${string}`;
|
|
2
3
|
type AnnounceEip6963ProviderProps = {
|
|
3
4
|
info: {
|
|
4
|
-
|
|
5
|
+
/**
|
|
6
|
+
* Base64 encoded image data URI representing the provider's icon.
|
|
7
|
+
*
|
|
8
|
+
* Supported formats: PNG, WebP, or SVG.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* "data:image/png;base64,PHN...Pg=="
|
|
12
|
+
*/
|
|
13
|
+
icon: DataURIImage;
|
|
5
14
|
name: string;
|
|
6
15
|
rdns: string;
|
|
7
16
|
uuid?: string;
|