@dynamic-labs/ethereum-aa-zksync 4.25.4 → 4.25.6

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,26 @@
1
1
 
2
+ ### [4.25.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.25.5...v4.25.6) (2025-07-28)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * don't create a new user when linking a wallet to a user with no wallets ([#9252](https://github.com/dynamic-labs/dynamic-auth/issues/9252)) ([30f846e](https://github.com/dynamic-labs/dynamic-auth/commit/30f846e89f2dffd112e656201bfa1cc24b787f03))
8
+ * Nufi EVM wallet showing up twice in wallet list ([#9256](https://github.com/dynamic-labs/dynamic-auth/issues/9256)) ([213488e](https://github.com/dynamic-labs/dynamic-auth/commit/213488e2226ef55965e12a1a548845cb100e859f))
9
+
10
+ ### [4.25.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.25.4...v4.25.5) (2025-07-27)
11
+
12
+
13
+ ### Features
14
+
15
+ * add pending account switch copykey ([#9219](https://github.com/dynamic-labs/dynamic-auth/issues/9219)) ([1d88bf2](https://github.com/dynamic-labs/dynamic-auth/commit/1d88bf27c685f122d94cdf66541365eae7e11a64))
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * logout user if last wallet removed in connect-only ([#9234](https://github.com/dynamic-labs/dynamic-auth/issues/9234)) ([42ea1ad](https://github.com/dynamic-labs/dynamic-auth/commit/42ea1ad331cd635a1c17fac0dcbf213fa045586d))
21
+ * prevent waas wallet from being created when embedded wallet option is turned on and then off ([#9237](https://github.com/dynamic-labs/dynamic-auth/issues/9237)) ([004a350](https://github.com/dynamic-labs/dynamic-auth/commit/004a350eb0d88d7ad6d3ceea7eb0d889f7d4a6bf))
22
+ * stop generating session keys on wallet linking ([#9244](https://github.com/dynamic-labs/dynamic-auth/issues/9244)) ([7176be9](https://github.com/dynamic-labs/dynamic-auth/commit/7176be93e31ba55dda264e0365c84376272ee945))
23
+
2
24
  ### [4.25.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.25.3...v4.25.4) (2025-07-25)
3
25
 
4
26
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.25.4";
6
+ var version = "4.25.6";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.25.4";
2
+ var version = "4.25.6";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/ethereum-aa-zksync",
3
- "version": "4.25.4",
3
+ "version": "4.25.6",
4
4
  "description": "Core package for Ethereum Account Abstraction utilities and types",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -20,13 +20,13 @@
20
20
  "dependencies": {
21
21
  "@dynamic-labs/sdk-api-core": "0.0.728",
22
22
  "zksync-sso": "0.2.0",
23
- "@dynamic-labs/assert-package-version": "4.25.4",
24
- "@dynamic-labs/ethereum-aa-core": "4.25.4",
25
- "@dynamic-labs/ethereum-core": "4.25.4",
26
- "@dynamic-labs/types": "4.25.4",
27
- "@dynamic-labs/utils": "4.25.4",
28
- "@dynamic-labs/wallet-book": "4.25.4",
29
- "@dynamic-labs/wallet-connector-core": "4.25.4"
23
+ "@dynamic-labs/assert-package-version": "4.25.6",
24
+ "@dynamic-labs/ethereum-aa-core": "4.25.6",
25
+ "@dynamic-labs/ethereum-core": "4.25.6",
26
+ "@dynamic-labs/types": "4.25.6",
27
+ "@dynamic-labs/utils": "4.25.6",
28
+ "@dynamic-labs/wallet-book": "4.25.6",
29
+ "@dynamic-labs/wallet-connector-core": "4.25.6"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "viem": "^2.28.4"
@@ -719,6 +719,7 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
719
719
  withdrawalsRoot?: `0x${string}` | undefined;
720
720
  transactions: includeTransactions extends true ? ({
721
721
  chainId?: number | undefined;
722
+ input: `0x${string}`;
722
723
  type: "legacy";
723
724
  r: `0x${string}`;
724
725
  s: `0x${string}`;
@@ -737,13 +738,13 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
737
738
  blobVersionedHashes?: undefined;
738
739
  authorizationList?: undefined;
739
740
  hash: `0x${string}`;
740
- input: `0x${string}`;
741
741
  typeHex: `0x${string}` | null;
742
742
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
743
743
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : `0x${string}` : never : never;
744
744
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : number : never : never;
745
745
  } | {
746
746
  chainId: number;
747
+ input: `0x${string}`;
747
748
  type: "eip2930";
748
749
  r: `0x${string}`;
749
750
  s: `0x${string}`;
@@ -762,13 +763,13 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
762
763
  blobVersionedHashes?: undefined;
763
764
  authorizationList?: undefined;
764
765
  hash: `0x${string}`;
765
- input: `0x${string}`;
766
766
  typeHex: `0x${string}` | null;
767
767
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : bigint : never : never;
768
768
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : `0x${string}` : never : never;
769
769
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : number : never : never;
770
770
  } | {
771
771
  chainId: number;
772
+ input: `0x${string}`;
772
773
  type: "eip1559";
773
774
  r: `0x${string}`;
774
775
  s: `0x${string}`;
@@ -787,13 +788,13 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
787
788
  blobVersionedHashes?: undefined;
788
789
  authorizationList?: undefined;
789
790
  hash: `0x${string}`;
790
- input: `0x${string}`;
791
791
  typeHex: `0x${string}` | null;
792
792
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : bigint : never : never;
793
793
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : `0x${string}` : never : never;
794
794
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : number : never : never;
795
795
  } | {
796
796
  chainId: number;
797
+ input: `0x${string}`;
797
798
  type: "eip4844";
798
799
  r: `0x${string}`;
799
800
  s: `0x${string}`;
@@ -812,13 +813,13 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
812
813
  blobVersionedHashes: readonly `0x${string}`[];
813
814
  authorizationList?: undefined;
814
815
  hash: `0x${string}`;
815
- input: `0x${string}`;
816
816
  typeHex: `0x${string}` | null;
817
817
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : bigint : never : never;
818
818
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : `0x${string}` : never : never;
819
819
  transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : number : never : never;
820
820
  } | {
821
821
  chainId: number;
822
+ input: `0x${string}`;
822
823
  type: "eip7702";
823
824
  r: `0x${string}`;
824
825
  s: `0x${string}`;
@@ -837,7 +838,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
837
838
  blobVersionedHashes?: undefined;
838
839
  authorizationList: import("viem").SignedAuthorizationList;
839
840
  hash: `0x${string}`;
840
- input: `0x${string}`;
841
841
  typeHex: `0x${string}` | null;
842
842
  blockNumber: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : bigint : never : never;
843
843
  blockHash: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : `0x${string}` : never : never;
@@ -947,6 +947,7 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
947
947
  getStorageAt: (args: import("viem").GetStorageAtParameters) => Promise<import("viem").GetStorageAtReturnType>;
948
948
  getTransaction: <blockTag_1 extends import("viem").BlockTag = "latest">(args: import("viem").GetTransactionParameters<blockTag_1>) => Promise<{
949
949
  chainId?: number | undefined;
950
+ input: `0x${string}`;
950
951
  type: "legacy";
951
952
  r: `0x${string}`;
952
953
  s: `0x${string}`;
@@ -965,13 +966,13 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
965
966
  blobVersionedHashes?: undefined;
966
967
  authorizationList?: undefined;
967
968
  hash: `0x${string}`;
968
- input: `0x${string}`;
969
969
  typeHex: `0x${string}` | null;
970
970
  blockNumber: (blockTag_1 extends "pending" ? true : false) extends infer T_16 ? T_16 extends (blockTag_1 extends "pending" ? true : false) ? T_16 extends true ? null : bigint : never : never;
971
971
  blockHash: (blockTag_1 extends "pending" ? true : false) extends infer T_17 ? T_17 extends (blockTag_1 extends "pending" ? true : false) ? T_17 extends true ? null : `0x${string}` : never : never;
972
972
  transactionIndex: (blockTag_1 extends "pending" ? true : false) extends infer T_18 ? T_18 extends (blockTag_1 extends "pending" ? true : false) ? T_18 extends true ? null : number : never : never;
973
973
  } | {
974
974
  chainId: number;
975
+ input: `0x${string}`;
975
976
  type: "eip2930";
976
977
  r: `0x${string}`;
977
978
  s: `0x${string}`;
@@ -990,13 +991,13 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
990
991
  blobVersionedHashes?: undefined;
991
992
  authorizationList?: undefined;
992
993
  hash: `0x${string}`;
993
- input: `0x${string}`;
994
994
  typeHex: `0x${string}` | null;
995
995
  blockNumber: (blockTag_1 extends "pending" ? true : false) extends infer T_19 ? T_19 extends (blockTag_1 extends "pending" ? true : false) ? T_19 extends true ? null : bigint : never : never;
996
996
  blockHash: (blockTag_1 extends "pending" ? true : false) extends infer T_20 ? T_20 extends (blockTag_1 extends "pending" ? true : false) ? T_20 extends true ? null : `0x${string}` : never : never;
997
997
  transactionIndex: (blockTag_1 extends "pending" ? true : false) extends infer T_21 ? T_21 extends (blockTag_1 extends "pending" ? true : false) ? T_21 extends true ? null : number : never : never;
998
998
  } | {
999
999
  chainId: number;
1000
+ input: `0x${string}`;
1000
1001
  type: "eip1559";
1001
1002
  r: `0x${string}`;
1002
1003
  s: `0x${string}`;
@@ -1015,13 +1016,13 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
1015
1016
  blobVersionedHashes?: undefined;
1016
1017
  authorizationList?: undefined;
1017
1018
  hash: `0x${string}`;
1018
- input: `0x${string}`;
1019
1019
  typeHex: `0x${string}` | null;
1020
1020
  blockNumber: (blockTag_1 extends "pending" ? true : false) extends infer T_22 ? T_22 extends (blockTag_1 extends "pending" ? true : false) ? T_22 extends true ? null : bigint : never : never;
1021
1021
  blockHash: (blockTag_1 extends "pending" ? true : false) extends infer T_23 ? T_23 extends (blockTag_1 extends "pending" ? true : false) ? T_23 extends true ? null : `0x${string}` : never : never;
1022
1022
  transactionIndex: (blockTag_1 extends "pending" ? true : false) extends infer T_24 ? T_24 extends (blockTag_1 extends "pending" ? true : false) ? T_24 extends true ? null : number : never : never;
1023
1023
  } | {
1024
1024
  chainId: number;
1025
+ input: `0x${string}`;
1025
1026
  type: "eip4844";
1026
1027
  r: `0x${string}`;
1027
1028
  s: `0x${string}`;
@@ -1040,13 +1041,13 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
1040
1041
  blobVersionedHashes: readonly `0x${string}`[];
1041
1042
  authorizationList?: undefined;
1042
1043
  hash: `0x${string}`;
1043
- input: `0x${string}`;
1044
1044
  typeHex: `0x${string}` | null;
1045
1045
  blockNumber: (blockTag_1 extends "pending" ? true : false) extends infer T_25 ? T_25 extends (blockTag_1 extends "pending" ? true : false) ? T_25 extends true ? null : bigint : never : never;
1046
1046
  blockHash: (blockTag_1 extends "pending" ? true : false) extends infer T_26 ? T_26 extends (blockTag_1 extends "pending" ? true : false) ? T_26 extends true ? null : `0x${string}` : never : never;
1047
1047
  transactionIndex: (blockTag_1 extends "pending" ? true : false) extends infer T_27 ? T_27 extends (blockTag_1 extends "pending" ? true : false) ? T_27 extends true ? null : number : never : never;
1048
1048
  } | {
1049
1049
  chainId: number;
1050
+ input: `0x${string}`;
1050
1051
  type: "eip7702";
1051
1052
  r: `0x${string}`;
1052
1053
  s: `0x${string}`;
@@ -1065,7 +1066,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
1065
1066
  blobVersionedHashes?: undefined;
1066
1067
  authorizationList: import("viem").SignedAuthorizationList;
1067
1068
  hash: `0x${string}`;
1068
- input: `0x${string}`;
1069
1069
  typeHex: `0x${string}` | null;
1070
1070
  blockNumber: (blockTag_1 extends "pending" ? true : false) extends infer T_28 ? T_28 extends (blockTag_1 extends "pending" ? true : false) ? T_28 extends true ? null : bigint : never : never;
1071
1071
  blockHash: (blockTag_1 extends "pending" ? true : false) extends infer T_29 ? T_29 extends (blockTag_1 extends "pending" ? true : false) ? T_29 extends true ? null : `0x${string}` : never : never;
@@ -15048,6 +15048,7 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
15048
15048
  getAddresses: () => Promise<import("viem").GetAddressesReturnType>;
15049
15049
  getCallsStatus: (parameters: import("viem").GetCallsStatusParameters) => Promise<{
15050
15050
  chainId: number;
15051
+ version: string;
15051
15052
  atomic: boolean;
15052
15053
  capabilities?: {
15053
15054
  [key: string]: any;
@@ -15056,7 +15057,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
15056
15057
  } | undefined;
15057
15058
  id: string;
15058
15059
  receipts?: import("viem").WalletCallReceipt<bigint, "success" | "reverted">[] | undefined;
15059
- version: string;
15060
15060
  statusCode: number;
15061
15061
  status: "success" | "pending" | "failure" | undefined;
15062
15062
  }>;
@@ -16481,6 +16481,7 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
16481
16481
  switchChain: (args: import("viem").SwitchChainParameters) => Promise<void>;
16482
16482
  waitForCallsStatus: (parameters: import("viem").WaitForCallsStatusParameters) => Promise<{
16483
16483
  chainId: number;
16484
+ version: string;
16484
16485
  atomic: boolean;
16485
16486
  capabilities?: {
16486
16487
  [key: string]: any;
@@ -16489,7 +16490,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
16489
16490
  } | undefined;
16490
16491
  id: string;
16491
16492
  receipts?: import("viem").WalletCallReceipt<bigint, "success" | "reverted">[] | undefined;
16492
- version: string;
16493
16493
  statusCode: number;
16494
16494
  status: "success" | "pending" | "failure" | undefined;
16495
16495
  }>;