@dynamic-labs/ethereum-aa-zksync 4.15.0 → 4.17.0

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,28 @@
1
1
 
2
+ ## [4.17.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.16.0...v4.17.0) (2025-05-06)
3
+
4
+
5
+ ### Features
6
+
7
+ * add chain id option to create kernel client in react-native ([#8650](https://github.com/dynamic-labs/dynamic-auth/issues/8650)) ([1450bea](https://github.com/dynamic-labs/dynamic-auth/commit/1450bea6f979a82ed4880700aff14fa1ead9dc60))
8
+ * add sendCalls method to EthereumWallet ([#8634](https://github.com/dynamic-labs/dynamic-auth/issues/8634)) ([7c9aef9](https://github.com/dynamic-labs/dynamic-auth/commit/7c9aef95382b4823a40279bebfb084de32c25610))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * 7702 do not override existing old aa ([#8630](https://github.com/dynamic-labs/dynamic-auth/issues/8630)) ([a731d9e](https://github.com/dynamic-labs/dynamic-auth/commit/a731d9e77ecd9e1dec3a7704a63989b5f2741a57))
14
+ * improve error message when email login fails ([#8649](https://github.com/dynamic-labs/dynamic-auth/issues/8649)) ([e1c03ac](https://github.com/dynamic-labs/dynamic-auth/commit/e1c03ac6dc83386c63d63db59d31355bc4fe2959))
15
+ * improve react-native stability on android ([#8652](https://github.com/dynamic-labs/dynamic-auth/issues/8652)) ([1617546](https://github.com/dynamic-labs/dynamic-auth/commit/1617546e6053c2ab32f7d385336c47df185d077f))
16
+
17
+ ## [4.16.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.15.0...v4.16.0) (2025-05-03)
18
+
19
+
20
+ ### Features
21
+
22
+ * (GVTY-3020) add send balance to waas sui connector ([#8638](https://github.com/dynamic-labs/dynamic-auth/issues/8638)) ([97f0af0](https://github.com/dynamic-labs/dynamic-auth/commit/97f0af0504a0079ebf0958fde1f8edc34c035927))
23
+ * add isAtomicSupported and isPaymasterServiceSupported methods to EthereumWallet ([#8627](https://github.com/dynamic-labs/dynamic-auth/issues/8627)) ([df82b9e](https://github.com/dynamic-labs/dynamic-auth/commit/df82b9e86eafea9dd6c505227722450bc56d7c57))
24
+ * add solana mpc to global wallets ([#8605](https://github.com/dynamic-labs/dynamic-auth/issues/8605)) ([6261bf9](https://github.com/dynamic-labs/dynamic-auth/commit/6261bf9bec45b1d1afa13869cf5d10cda215783e))
25
+
2
26
  ## [4.15.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.14.0...v4.15.0) (2025-04-30)
3
27
 
4
28
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.15.0";
6
+ var version = "4.17.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.15.0";
2
+ var version = "4.17.0";
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.15.0",
3
+ "version": "4.17.0",
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.660",
22
22
  "zksync-sso": "0.1.0",
23
- "@dynamic-labs/assert-package-version": "4.15.0",
24
- "@dynamic-labs/ethereum-aa-core": "4.15.0",
25
- "@dynamic-labs/ethereum-core": "4.15.0",
26
- "@dynamic-labs/types": "4.15.0",
27
- "@dynamic-labs/utils": "4.15.0",
28
- "@dynamic-labs/wallet-book": "4.15.0",
29
- "@dynamic-labs/wallet-connector-core": "4.15.0"
23
+ "@dynamic-labs/assert-package-version": "4.17.0",
24
+ "@dynamic-labs/ethereum-aa-core": "4.17.0",
25
+ "@dynamic-labs/ethereum-core": "4.17.0",
26
+ "@dynamic-labs/types": "4.17.0",
27
+ "@dynamic-labs/utils": "4.17.0",
28
+ "@dynamic-labs/wallet-book": "4.17.0",
29
+ "@dynamic-labs/wallet-connector-core": "4.17.0"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "viem": "^2.21.60"
@@ -32,7 +32,7 @@ class ZKsyncConnector extends ethereumAaCore.AccountAbstractionBaseConnector {
32
32
  this.supportedChains = ['ETH', 'EVM'];
33
33
  this._isSmartAccountDeployed = false;
34
34
  this.enablePasskeys = true;
35
- this.enableEIP7702Mode = false;
35
+ this.is7702EnabledOnDashboard = false;
36
36
  this.walletFallback = {
37
37
  brand: {
38
38
  alt: 'Smart Wallet',
@@ -42,7 +42,7 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
42
42
  private sessionKeyAddress;
43
43
  private saltText;
44
44
  private enablePasskeys;
45
- enableEIP7702Mode: boolean;
45
+ is7702EnabledOnDashboard: boolean;
46
46
  walletFallback: {
47
47
  brand: {
48
48
  alt: string;
@@ -64,7 +64,7 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
64
64
  getPublicClient(): Promise<PublicClient>;
65
65
  canSponsorTransactionGas(): Promise<boolean>;
66
66
  getAccountAbstractionProvider<T = ZksyncSsoEcdsaClient<Transport, ViemChain, RpcSchema>>(): T;
67
- getWalletClient(chainId?: string): WalletClient | undefined;
67
+ getWalletClient(chainId?: string): WalletClient<Transport, ViemChain, Account> | undefined;
68
68
  private getWalletClientTransport;
69
69
  private getTransport;
70
70
  createEcdsaClient(eoaConnector: InternalWalletConnector): Promise<{
@@ -656,6 +656,10 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
656
656
  transactions: includeTransactions extends true ? ({
657
657
  chainId?: number | undefined;
658
658
  type: "legacy";
659
+ r: `0x${string}`;
660
+ s: `0x${string}`;
661
+ v: bigint;
662
+ yParity?: undefined;
659
663
  to: `0x${string}` | null;
660
664
  from: `0x${string}`;
661
665
  gas: bigint;
@@ -669,10 +673,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
669
673
  blobVersionedHashes?: undefined;
670
674
  authorizationList?: undefined;
671
675
  hash: `0x${string}`;
672
- r: `0x${string}`;
673
- s: `0x${string}`;
674
- v: bigint;
675
- yParity?: undefined;
676
676
  input: `0x${string}`;
677
677
  typeHex: `0x${string}` | null;
678
678
  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;
@@ -681,6 +681,10 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
681
681
  } | {
682
682
  chainId: number;
683
683
  type: "eip2930";
684
+ r: `0x${string}`;
685
+ s: `0x${string}`;
686
+ v: bigint;
687
+ yParity: number;
684
688
  to: `0x${string}` | null;
685
689
  from: `0x${string}`;
686
690
  gas: bigint;
@@ -694,10 +698,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
694
698
  blobVersionedHashes?: undefined;
695
699
  authorizationList?: undefined;
696
700
  hash: `0x${string}`;
697
- r: `0x${string}`;
698
- s: `0x${string}`;
699
- v: bigint;
700
- yParity: number;
701
701
  input: `0x${string}`;
702
702
  typeHex: `0x${string}` | null;
703
703
  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;
@@ -706,6 +706,10 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
706
706
  } | {
707
707
  chainId: number;
708
708
  type: "eip1559";
709
+ r: `0x${string}`;
710
+ s: `0x${string}`;
711
+ v: bigint;
712
+ yParity: number;
709
713
  to: `0x${string}` | null;
710
714
  from: `0x${string}`;
711
715
  gas: bigint;
@@ -719,10 +723,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
719
723
  blobVersionedHashes?: undefined;
720
724
  authorizationList?: undefined;
721
725
  hash: `0x${string}`;
722
- r: `0x${string}`;
723
- s: `0x${string}`;
724
- v: bigint;
725
- yParity: number;
726
726
  input: `0x${string}`;
727
727
  typeHex: `0x${string}` | null;
728
728
  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;
@@ -731,6 +731,10 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
731
731
  } | {
732
732
  chainId: number;
733
733
  type: "eip4844";
734
+ r: `0x${string}`;
735
+ s: `0x${string}`;
736
+ v: bigint;
737
+ yParity: number;
734
738
  to: `0x${string}` | null;
735
739
  from: `0x${string}`;
736
740
  gas: bigint;
@@ -744,10 +748,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
744
748
  blobVersionedHashes: readonly `0x${string}`[];
745
749
  authorizationList?: undefined;
746
750
  hash: `0x${string}`;
747
- r: `0x${string}`;
748
- s: `0x${string}`;
749
- v: bigint;
750
- yParity: number;
751
751
  input: `0x${string}`;
752
752
  typeHex: `0x${string}` | null;
753
753
  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;
@@ -756,6 +756,10 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
756
756
  } | {
757
757
  chainId: number;
758
758
  type: "eip7702";
759
+ r: `0x${string}`;
760
+ s: `0x${string}`;
761
+ v: bigint;
762
+ yParity: number;
759
763
  to: `0x${string}` | null;
760
764
  from: `0x${string}`;
761
765
  gas: bigint;
@@ -769,10 +773,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
769
773
  blobVersionedHashes?: undefined;
770
774
  authorizationList: import("viem").SignedAuthorizationList;
771
775
  hash: `0x${string}`;
772
- r: `0x${string}`;
773
- s: `0x${string}`;
774
- v: bigint;
775
- yParity: number;
776
776
  input: `0x${string}`;
777
777
  typeHex: `0x${string}` | null;
778
778
  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;
@@ -884,6 +884,10 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
884
884
  getTransaction: <blockTag_1 extends import("viem").BlockTag = "latest">(args: import("viem").GetTransactionParameters<blockTag_1>) => Promise<{
885
885
  chainId?: number | undefined;
886
886
  type: "legacy";
887
+ r: `0x${string}`;
888
+ s: `0x${string}`;
889
+ v: bigint;
890
+ yParity?: undefined;
887
891
  to: `0x${string}` | null;
888
892
  from: `0x${string}`;
889
893
  gas: bigint;
@@ -897,10 +901,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
897
901
  blobVersionedHashes?: undefined;
898
902
  authorizationList?: undefined;
899
903
  hash: `0x${string}`;
900
- r: `0x${string}`;
901
- s: `0x${string}`;
902
- v: bigint;
903
- yParity?: undefined;
904
904
  input: `0x${string}`;
905
905
  typeHex: `0x${string}` | null;
906
906
  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;
@@ -909,6 +909,10 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
909
909
  } | {
910
910
  chainId: number;
911
911
  type: "eip2930";
912
+ r: `0x${string}`;
913
+ s: `0x${string}`;
914
+ v: bigint;
915
+ yParity: number;
912
916
  to: `0x${string}` | null;
913
917
  from: `0x${string}`;
914
918
  gas: bigint;
@@ -922,10 +926,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
922
926
  blobVersionedHashes?: undefined;
923
927
  authorizationList?: undefined;
924
928
  hash: `0x${string}`;
925
- r: `0x${string}`;
926
- s: `0x${string}`;
927
- v: bigint;
928
- yParity: number;
929
929
  input: `0x${string}`;
930
930
  typeHex: `0x${string}` | null;
931
931
  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;
@@ -934,6 +934,10 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
934
934
  } | {
935
935
  chainId: number;
936
936
  type: "eip1559";
937
+ r: `0x${string}`;
938
+ s: `0x${string}`;
939
+ v: bigint;
940
+ yParity: number;
937
941
  to: `0x${string}` | null;
938
942
  from: `0x${string}`;
939
943
  gas: bigint;
@@ -947,10 +951,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
947
951
  blobVersionedHashes?: undefined;
948
952
  authorizationList?: undefined;
949
953
  hash: `0x${string}`;
950
- r: `0x${string}`;
951
- s: `0x${string}`;
952
- v: bigint;
953
- yParity: number;
954
954
  input: `0x${string}`;
955
955
  typeHex: `0x${string}` | null;
956
956
  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;
@@ -959,6 +959,10 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
959
959
  } | {
960
960
  chainId: number;
961
961
  type: "eip4844";
962
+ r: `0x${string}`;
963
+ s: `0x${string}`;
964
+ v: bigint;
965
+ yParity: number;
962
966
  to: `0x${string}` | null;
963
967
  from: `0x${string}`;
964
968
  gas: bigint;
@@ -972,10 +976,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
972
976
  blobVersionedHashes: readonly `0x${string}`[];
973
977
  authorizationList?: undefined;
974
978
  hash: `0x${string}`;
975
- r: `0x${string}`;
976
- s: `0x${string}`;
977
- v: bigint;
978
- yParity: number;
979
979
  input: `0x${string}`;
980
980
  typeHex: `0x${string}` | null;
981
981
  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;
@@ -984,6 +984,10 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
984
984
  } | {
985
985
  chainId: number;
986
986
  type: "eip7702";
987
+ r: `0x${string}`;
988
+ s: `0x${string}`;
989
+ v: bigint;
990
+ yParity: number;
987
991
  to: `0x${string}` | null;
988
992
  from: `0x${string}`;
989
993
  gas: bigint;
@@ -997,10 +1001,6 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
997
1001
  blobVersionedHashes?: undefined;
998
1002
  authorizationList: import("viem").SignedAuthorizationList;
999
1003
  hash: `0x${string}`;
1000
- r: `0x${string}`;
1001
- s: `0x${string}`;
1002
- v: bigint;
1003
- yParity: number;
1004
1004
  input: `0x${string}`;
1005
1005
  typeHex: `0x${string}` | null;
1006
1006
  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;
@@ -14830,7 +14830,7 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
14830
14830
  blockTag?: import("viem").BlockTag | undefined;
14831
14831
  factory?: `0x${string}` | undefined;
14832
14832
  factoryData?: `0x${string}` | undefined;
14833
- signature: `0x${string}` | Uint8Array | import("viem").Signature;
14833
+ signature: `0x${string}` | import("viem").Signature | Uint8Array;
14834
14834
  universalSignatureVerifierAddress?: `0x${string}` | undefined;
14835
14835
  message: import("viem").SignableMessage;
14836
14836
  }) => Promise<boolean>;
@@ -14983,7 +14983,7 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
14983
14983
  } & import("viem").ChainConfig<import("viem").ChainFormatters | undefined, Record<string, unknown> | undefined>, Account, chainOverride_5>) => Promise<`0x${string}`>;
14984
14984
  getAddresses: () => Promise<import("viem").GetAddressesReturnType>;
14985
14985
  getPermissions: () => Promise<import("viem").GetPermissionsReturnType>;
14986
- prepareAuthorization: (parameters: import("node_modules/viem/_types/actions/wallet/prepareAuthorization").PrepareAuthorizationParameters<Account>) => Promise<import("node_modules/viem/_types/actions/wallet/prepareAuthorization").PrepareAuthorizationReturnType>;
14986
+ prepareAuthorization: (parameters: import("viem/experimental").PrepareAuthorizationParameters<Account>) => Promise<import("viem/experimental").PrepareAuthorizationReturnType>;
14987
14987
  requestAddresses: () => Promise<import("viem").RequestAddressesReturnType>;
14988
14988
  requestPermissions: (args: {
14989
14989
  [x: string]: Record<string, any>;
@@ -15074,7 +15074,7 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
15074
15074
  sourceId?: number | undefined;
15075
15075
  testnet?: boolean | undefined;
15076
15076
  } & import("viem").ChainConfig<import("viem").ChainFormatters | undefined, Record<string, unknown> | undefined>, Account, chainOverride_6, request_2>) => Promise<`0x${string}`>;
15077
- signAuthorization: (parameters: import("node_modules/viem/_types/actions/wallet/signAuthorization").SignAuthorizationParameters<Account>) => Promise<import("node_modules/viem/_types/actions/wallet/signAuthorization").SignAuthorizationReturnType>;
15077
+ signAuthorization: (parameters: import("viem/experimental").SignAuthorizationParameters<Account>) => Promise<import("viem/experimental").SignAuthorizationReturnType>;
15078
15078
  signMessage: (args: import("viem").SignMessageParameters<Account>) => Promise<`0x${string}`>;
15079
15079
  signTransaction: <chainOverride_7 extends ViemChain | undefined, const request_3 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<{
15080
15080
  blockExplorers?: {
@@ -16103,42 +16103,42 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
16103
16103
  [x: `bytes[${string}]`]: undefined;
16104
16104
  [x: `bytes11[${string}]`]: undefined;
16105
16105
  [x: `bytes1[${string}]`]: undefined;
16106
- [x: `bytes32[${string}]`]: undefined;
16107
- [x: `bytes31[${string}]`]: undefined;
16108
- [x: `bytes30[${string}]`]: undefined;
16109
- [x: `bytes29[${string}]`]: undefined;
16110
- [x: `bytes28[${string}]`]: undefined;
16111
- [x: `bytes27[${string}]`]: undefined;
16112
- [x: `bytes26[${string}]`]: undefined;
16113
- [x: `bytes25[${string}]`]: undefined;
16114
- [x: `bytes24[${string}]`]: undefined;
16115
16106
  [x: `bytes23[${string}]`]: undefined;
16116
- [x: `bytes22[${string}]`]: undefined;
16117
- [x: `bytes21[${string}]`]: undefined;
16118
- [x: `bytes20[${string}]`]: undefined;
16119
16107
  [x: `bytes2[${string}]`]: undefined;
16120
- [x: `bytes19[${string}]`]: undefined;
16121
- [x: `bytes18[${string}]`]: undefined;
16122
- [x: `bytes17[${string}]`]: undefined;
16123
- [x: `bytes16[${string}]`]: undefined;
16124
- [x: `bytes15[${string}]`]: undefined;
16125
- [x: `bytes14[${string}]`]: undefined;
16126
- [x: `bytes13[${string}]`]: undefined;
16127
- [x: `bytes12[${string}]`]: undefined;
16128
- [x: `bytes10[${string}]`]: undefined;
16129
- [x: `bytes9[${string}]`]: undefined;
16130
- [x: `bytes8[${string}]`]: undefined;
16131
- [x: `bytes7[${string}]`]: undefined;
16132
- [x: `bytes6[${string}]`]: undefined;
16133
- [x: `bytes5[${string}]`]: undefined;
16134
- [x: `bytes4[${string}]`]: undefined;
16135
16108
  [x: `bytes3[${string}]`]: undefined;
16109
+ [x: `bytes4[${string}]`]: undefined;
16110
+ [x: `bytes5[${string}]`]: undefined;
16111
+ [x: `bytes6[${string}]`]: undefined;
16112
+ [x: `bytes7[${string}]`]: undefined;
16113
+ [x: `bytes8[${string}]`]: undefined;
16114
+ [x: `bytes9[${string}]`]: undefined;
16115
+ [x: `bytes10[${string}]`]: undefined;
16116
+ [x: `bytes12[${string}]`]: undefined;
16117
+ [x: `bytes13[${string}]`]: undefined;
16118
+ [x: `bytes14[${string}]`]: undefined;
16119
+ [x: `bytes15[${string}]`]: undefined;
16120
+ [x: `bytes16[${string}]`]: undefined;
16121
+ [x: `bytes17[${string}]`]: undefined;
16122
+ [x: `bytes18[${string}]`]: undefined;
16123
+ [x: `bytes19[${string}]`]: undefined;
16124
+ [x: `bytes20[${string}]`]: undefined;
16125
+ [x: `bytes21[${string}]`]: undefined;
16126
+ [x: `bytes22[${string}]`]: undefined;
16127
+ [x: `bytes24[${string}]`]: undefined;
16128
+ [x: `bytes25[${string}]`]: undefined;
16129
+ [x: `bytes26[${string}]`]: undefined;
16130
+ [x: `bytes27[${string}]`]: undefined;
16131
+ [x: `bytes28[${string}]`]: undefined;
16132
+ [x: `bytes29[${string}]`]: undefined;
16133
+ [x: `bytes30[${string}]`]: undefined;
16134
+ [x: `bytes31[${string}]`]: undefined;
16135
+ [x: `bytes32[${string}]`]: undefined;
16136
16136
  [x: `int[${string}]`]: undefined;
16137
- [x: `int40[${string}]`]: undefined;
16138
- [x: `int32[${string}]`]: undefined;
16139
- [x: `int24[${string}]`]: undefined;
16140
- [x: `int16[${string}]`]: undefined;
16141
16137
  [x: `int8[${string}]`]: undefined;
16138
+ [x: `int16[${string}]`]: undefined;
16139
+ [x: `int24[${string}]`]: undefined;
16140
+ [x: `int32[${string}]`]: undefined;
16141
+ [x: `int40[${string}]`]: undefined;
16142
16142
  [x: `int48[${string}]`]: undefined;
16143
16143
  [x: `int56[${string}]`]: undefined;
16144
16144
  [x: `int64[${string}]`]: undefined;
@@ -16167,11 +16167,11 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
16167
16167
  [x: `int248[${string}]`]: undefined;
16168
16168
  [x: `int256[${string}]`]: undefined;
16169
16169
  [x: `uint[${string}]`]: undefined;
16170
- [x: `uint40[${string}]`]: undefined;
16171
- [x: `uint32[${string}]`]: undefined;
16172
- [x: `uint24[${string}]`]: undefined;
16173
- [x: `uint16[${string}]`]: undefined;
16174
16170
  [x: `uint8[${string}]`]: undefined;
16171
+ [x: `uint16[${string}]`]: undefined;
16172
+ [x: `uint24[${string}]`]: undefined;
16173
+ [x: `uint32[${string}]`]: undefined;
16174
+ [x: `uint40[${string}]`]: undefined;
16175
16175
  [x: `uint48[${string}]`]: undefined;
16176
16176
  [x: `uint56[${string}]`]: undefined;
16177
16177
  [x: `uint64[${string}]`]: undefined;
@@ -16205,41 +16205,41 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
16205
16205
  bytes?: undefined;
16206
16206
  bytes11?: undefined;
16207
16207
  bytes1?: undefined;
16208
- bytes32?: undefined;
16209
- bytes31?: undefined;
16210
- bytes30?: undefined;
16211
- bytes29?: undefined;
16212
- bytes28?: undefined;
16213
- bytes27?: undefined;
16214
- bytes26?: undefined;
16215
- bytes25?: undefined;
16216
- bytes24?: undefined;
16217
16208
  bytes23?: undefined;
16218
- bytes22?: undefined;
16219
- bytes21?: undefined;
16220
- bytes20?: undefined;
16221
16209
  bytes2?: undefined;
16222
- bytes19?: undefined;
16223
- bytes18?: undefined;
16224
- bytes17?: undefined;
16225
- bytes16?: undefined;
16226
- bytes15?: undefined;
16227
- bytes14?: undefined;
16228
- bytes13?: undefined;
16229
- bytes12?: undefined;
16230
- bytes10?: undefined;
16231
- bytes9?: undefined;
16232
- bytes8?: undefined;
16233
- bytes7?: undefined;
16234
- bytes6?: undefined;
16235
- bytes5?: undefined;
16236
- bytes4?: undefined;
16237
16210
  bytes3?: undefined;
16238
- int40?: undefined;
16239
- int32?: undefined;
16240
- int24?: undefined;
16241
- int16?: undefined;
16211
+ bytes4?: undefined;
16212
+ bytes5?: undefined;
16213
+ bytes6?: undefined;
16214
+ bytes7?: undefined;
16215
+ bytes8?: undefined;
16216
+ bytes9?: undefined;
16217
+ bytes10?: undefined;
16218
+ bytes12?: undefined;
16219
+ bytes13?: undefined;
16220
+ bytes14?: undefined;
16221
+ bytes15?: undefined;
16222
+ bytes16?: undefined;
16223
+ bytes17?: undefined;
16224
+ bytes18?: undefined;
16225
+ bytes19?: undefined;
16226
+ bytes20?: undefined;
16227
+ bytes21?: undefined;
16228
+ bytes22?: undefined;
16229
+ bytes24?: undefined;
16230
+ bytes25?: undefined;
16231
+ bytes26?: undefined;
16232
+ bytes27?: undefined;
16233
+ bytes28?: undefined;
16234
+ bytes29?: undefined;
16235
+ bytes30?: undefined;
16236
+ bytes31?: undefined;
16237
+ bytes32?: undefined;
16242
16238
  int8?: undefined;
16239
+ int16?: undefined;
16240
+ int24?: undefined;
16241
+ int32?: undefined;
16242
+ int40?: undefined;
16243
16243
  int48?: undefined;
16244
16244
  int56?: undefined;
16245
16245
  int64?: undefined;
@@ -16267,11 +16267,11 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
16267
16267
  int240?: undefined;
16268
16268
  int248?: undefined;
16269
16269
  int256?: undefined;
16270
- uint40?: undefined;
16271
- uint32?: undefined;
16272
- uint24?: undefined;
16273
- uint16?: undefined;
16274
16270
  uint8?: undefined;
16271
+ uint16?: undefined;
16272
+ uint24?: undefined;
16273
+ uint32?: undefined;
16274
+ uint40?: undefined;
16275
16275
  uint48?: undefined;
16276
16276
  uint56?: undefined;
16277
16277
  uint64?: undefined;
@@ -16405,7 +16405,7 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
16405
16405
  };
16406
16406
  sourceId?: number | undefined;
16407
16407
  testnet?: boolean | undefined;
16408
- } & import("viem").ChainConfig<import("viem").ChainFormatters | undefined, Record<string, unknown> | undefined>, Account>, "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "prepareTransactionRequest" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<{
16408
+ } & import("viem").ChainConfig<import("viem").ChainFormatters | undefined, Record<string, unknown> | undefined>, Account>, "getChainId" | "prepareTransactionRequest" | "sendRawTransaction" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<{
16409
16409
  blockExplorers?: {
16410
16410
  [key: string]: {
16411
16411
  name: string;
@@ -28,7 +28,7 @@ class ZKsyncConnector extends AccountAbstractionBaseConnector {
28
28
  this.supportedChains = ['ETH', 'EVM'];
29
29
  this._isSmartAccountDeployed = false;
30
30
  this.enablePasskeys = true;
31
- this.enableEIP7702Mode = false;
31
+ this.is7702EnabledOnDashboard = false;
32
32
  this.walletFallback = {
33
33
  brand: {
34
34
  alt: 'Smart Wallet',