@dynamic-labs/ethereum-aa-core 4.16.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,19 @@
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
+
2
17
  ## [4.16.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.15.0...v4.16.0) (2025-05-03)
3
18
 
4
19
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.16.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.16.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-core",
3
- "version": "4.16.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",
@@ -19,12 +19,12 @@
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
21
  "@dynamic-labs/sdk-api-core": "0.0.660",
22
- "@dynamic-labs/assert-package-version": "4.16.0",
23
- "@dynamic-labs/ethereum-core": "4.16.0",
24
- "@dynamic-labs/types": "4.16.0",
25
- "@dynamic-labs/utils": "4.16.0",
26
- "@dynamic-labs/wallet-book": "4.16.0",
27
- "@dynamic-labs/wallet-connector-core": "4.16.0"
22
+ "@dynamic-labs/assert-package-version": "4.17.0",
23
+ "@dynamic-labs/ethereum-core": "4.17.0",
24
+ "@dynamic-labs/types": "4.17.0",
25
+ "@dynamic-labs/utils": "4.17.0",
26
+ "@dynamic-labs/wallet-book": "4.17.0",
27
+ "@dynamic-labs/wallet-connector-core": "4.17.0"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "viem": "^2.21.60"
@@ -4,6 +4,7 @@
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
6
  var viem = require('viem');
7
+ var experimental = require('viem/experimental');
7
8
  var walletConnectorCore = require('@dynamic-labs/wallet-connector-core');
8
9
  var utils = require('@dynamic-labs/utils');
9
10
  var ethereumCore = require('@dynamic-labs/ethereum-core');
@@ -92,7 +93,7 @@ class AccountAbstractionBaseConnector extends walletConnectorCore.WalletConnecto
92
93
  if (!walletClient) {
93
94
  return false;
94
95
  }
95
- const capabilities = await ethereumCore.getWalletCapabilities(walletClient);
96
+ const capabilities = await experimental.getCapabilities(walletClient);
96
97
  const chainIdToCheck = chainId ?? (await walletClient.getChainId());
97
98
  walletConnectorCore.logger.debug('[AccountAbstractionBaseConnector] isAtomicSupported', {
98
99
  capabilities,
@@ -105,7 +106,7 @@ class AccountAbstractionBaseConnector extends walletConnectorCore.WalletConnecto
105
106
  if (!walletClient) {
106
107
  return false;
107
108
  }
108
- const capabilities = await ethereumCore.getWalletCapabilities(walletClient);
109
+ const capabilities = await experimental.getCapabilities(walletClient);
109
110
  const chainIdToCheck = chainId ?? (await walletClient.getChainId());
110
111
  walletConnectorCore.logger.debug('[AccountAbstractionBaseConnector] isPaymasterServiceSupported', {
111
112
  capabilities,
@@ -106,9 +106,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
106
106
  maxFeePerGas?: undefined;
107
107
  maxPriorityFeePerGas?: undefined;
108
108
  } & {
109
- accessList: import("viem").AccessList | undefined; /**
110
- * Gets the balance for an address
111
- */
109
+ accessList: import("viem").AccessList | undefined;
112
110
  } ? "eip2930" : never) | (request extends ({
113
111
  accessList?: import("viem").AccessList | undefined;
114
112
  authorizationList?: undefined;
@@ -189,9 +187,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
189
187
  maxFeePerGas?: undefined;
190
188
  maxPriorityFeePerGas?: undefined;
191
189
  } & {
192
- accessList: import("viem").AccessList | undefined; /**
193
- * Gets the balance for an address
194
- */
190
+ accessList: import("viem").AccessList | undefined;
195
191
  } ? "eip2930" : never) | (request extends ({
196
192
  accessList?: import("viem").AccessList | undefined;
197
193
  authorizationList?: undefined;
@@ -272,9 +268,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
272
268
  maxFeePerGas?: undefined;
273
269
  maxPriorityFeePerGas?: undefined;
274
270
  } & {
275
- accessList: import("viem").AccessList | undefined; /**
276
- * Gets the balance for an address
277
- */
271
+ accessList: import("viem").AccessList | undefined;
278
272
  } ? "eip2930" : never) | (request extends ({
279
273
  accessList?: import("viem").AccessList | undefined;
280
274
  authorizationList?: undefined;
@@ -355,9 +349,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
355
349
  maxFeePerGas?: undefined;
356
350
  maxPriorityFeePerGas?: undefined;
357
351
  } & {
358
- accessList: import("viem").AccessList | undefined; /**
359
- * Gets the balance for an address
360
- */
352
+ accessList: import("viem").AccessList | undefined;
361
353
  } ? "eip2930" : never) | (request extends ({
362
354
  accessList?: import("viem").AccessList | undefined;
363
355
  authorizationList?: undefined;
@@ -438,9 +430,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
438
430
  maxFeePerGas?: undefined;
439
431
  maxPriorityFeePerGas?: undefined;
440
432
  } & {
441
- accessList: import("viem").AccessList | undefined; /**
442
- * Gets the balance for an address
443
- */
433
+ accessList: import("viem").AccessList | undefined;
444
434
  } ? "eip2930" : never) | (request extends ({
445
435
  accessList?: import("viem").AccessList | undefined;
446
436
  authorizationList?: undefined;
@@ -521,9 +511,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
521
511
  maxFeePerGas?: undefined;
522
512
  maxPriorityFeePerGas?: undefined;
523
513
  } & {
524
- accessList: import("viem").AccessList | undefined; /**
525
- * Gets the balance for an address
526
- */
514
+ accessList: import("viem").AccessList | undefined;
527
515
  } ? "eip2930" : never) | (request extends ({
528
516
  accessList?: import("viem").AccessList | undefined;
529
517
  authorizationList?: undefined;
@@ -604,9 +592,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
604
592
  maxFeePerGas?: undefined;
605
593
  maxPriorityFeePerGas?: undefined;
606
594
  } & {
607
- accessList: import("viem").AccessList | undefined; /**
608
- * Gets the balance for an address
609
- */
595
+ accessList: import("viem").AccessList | undefined;
610
596
  } ? "eip2930" : never) | (request extends ({
611
597
  accessList?: import("viem").AccessList | undefined;
612
598
  authorizationList?: undefined;
@@ -687,9 +673,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
687
673
  maxFeePerGas?: undefined;
688
674
  maxPriorityFeePerGas?: undefined;
689
675
  } & {
690
- accessList: import("viem").AccessList | undefined; /**
691
- * Gets the balance for an address
692
- */
676
+ accessList: import("viem").AccessList | undefined;
693
677
  } ? "eip2930" : never) | (request extends ({
694
678
  accessList?: import("viem").AccessList | undefined;
695
679
  authorizationList?: undefined;
@@ -770,9 +754,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
770
754
  maxFeePerGas?: undefined;
771
755
  maxPriorityFeePerGas?: undefined;
772
756
  } & {
773
- accessList: import("viem").AccessList | undefined; /**
774
- * Gets the balance for an address
775
- */
757
+ accessList: import("viem").AccessList | undefined;
776
758
  } ? "eip2930" : never) | (request extends ({
777
759
  accessList?: import("viem").AccessList | undefined;
778
760
  authorizationList?: undefined;
@@ -853,9 +835,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
853
835
  maxFeePerGas?: undefined;
854
836
  maxPriorityFeePerGas?: undefined;
855
837
  } & {
856
- accessList: import("viem").AccessList | undefined; /**
857
- * Gets the balance for an address
858
- */
838
+ accessList: import("viem").AccessList | undefined;
859
839
  } ? "eip2930" : never) | (request extends ({
860
840
  accessList?: import("viem").AccessList | undefined;
861
841
  authorizationList?: undefined;
@@ -936,9 +916,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
936
916
  maxFeePerGas?: undefined;
937
917
  maxPriorityFeePerGas?: undefined;
938
918
  } & {
939
- accessList: import("viem").AccessList | undefined; /**
940
- * Gets the balance for an address
941
- */
919
+ accessList: import("viem").AccessList | undefined;
942
920
  } ? "eip2930" : never) | (request extends ({
943
921
  accessList?: import("viem").AccessList | undefined;
944
922
  authorizationList?: undefined;
@@ -1019,9 +997,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
1019
997
  maxFeePerGas?: undefined;
1020
998
  maxPriorityFeePerGas?: undefined;
1021
999
  } & {
1022
- accessList: import("viem").AccessList | undefined; /**
1023
- * Gets the balance for an address
1024
- */
1000
+ accessList: import("viem").AccessList | undefined;
1025
1001
  } ? "eip2930" : never) | (request extends ({
1026
1002
  accessList?: import("viem").AccessList | undefined;
1027
1003
  authorizationList?: undefined;
@@ -1102,9 +1078,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
1102
1078
  maxFeePerGas?: undefined;
1103
1079
  maxPriorityFeePerGas?: undefined;
1104
1080
  } & {
1105
- accessList: import("viem").AccessList | undefined; /**
1106
- * Gets the balance for an address
1107
- */
1081
+ accessList: import("viem").AccessList | undefined;
1108
1082
  } ? "eip2930" : never) | (request extends ({
1109
1083
  accessList?: import("viem").AccessList | undefined;
1110
1084
  authorizationList?: undefined;
@@ -1185,9 +1159,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
1185
1159
  maxFeePerGas?: undefined;
1186
1160
  maxPriorityFeePerGas?: undefined;
1187
1161
  } & {
1188
- accessList: import("viem").AccessList | undefined; /**
1189
- * Gets the balance for an address
1190
- */
1162
+ accessList: import("viem").AccessList | undefined;
1191
1163
  } ? "eip2930" : never) | (request extends ({
1192
1164
  accessList?: import("viem").AccessList | undefined;
1193
1165
  authorizationList?: undefined;
@@ -1268,9 +1240,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
1268
1240
  maxFeePerGas?: undefined;
1269
1241
  maxPriorityFeePerGas?: undefined;
1270
1242
  } & {
1271
- accessList: import("viem").AccessList | undefined; /**
1272
- * Gets the balance for an address
1273
- */
1243
+ accessList: import("viem").AccessList | undefined;
1274
1244
  } ? "eip2930" : never) | (request extends ({
1275
1245
  accessList?: import("viem").AccessList | undefined;
1276
1246
  authorizationList?: undefined;
@@ -1351,9 +1321,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
1351
1321
  maxFeePerGas?: undefined;
1352
1322
  maxPriorityFeePerGas?: undefined;
1353
1323
  } & {
1354
- accessList: import("viem").AccessList | undefined; /**
1355
- * Gets the balance for an address
1356
- */
1324
+ accessList: import("viem").AccessList | undefined;
1357
1325
  } ? "eip2930" : never) | (request extends ({
1358
1326
  accessList?: import("viem").AccessList | undefined;
1359
1327
  authorizationList?: undefined;
@@ -1434,9 +1402,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
1434
1402
  maxFeePerGas?: undefined;
1435
1403
  maxPriorityFeePerGas?: undefined;
1436
1404
  } & {
1437
- accessList: import("viem").AccessList | undefined; /**
1438
- * Gets the balance for an address
1439
- */
1405
+ accessList: import("viem").AccessList | undefined;
1440
1406
  } ? "eip2930" : never) | (request extends ({
1441
1407
  accessList?: import("viem").AccessList | undefined;
1442
1408
  authorizationList?: undefined;
@@ -1517,9 +1483,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
1517
1483
  maxFeePerGas?: undefined;
1518
1484
  maxPriorityFeePerGas?: undefined;
1519
1485
  } & {
1520
- accessList: import("viem").AccessList | undefined; /**
1521
- * Gets the balance for an address
1522
- */
1486
+ accessList: import("viem").AccessList | undefined;
1523
1487
  } ? "eip2930" : never) | (request extends ({
1524
1488
  accessList?: import("viem").AccessList | undefined;
1525
1489
  authorizationList?: undefined;
@@ -1600,9 +1564,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
1600
1564
  maxFeePerGas?: undefined;
1601
1565
  maxPriorityFeePerGas?: undefined;
1602
1566
  } & {
1603
- accessList: import("viem").AccessList | undefined; /**
1604
- * Gets the balance for an address
1605
- */
1567
+ accessList: import("viem").AccessList | undefined;
1606
1568
  } ? "eip2930" : never) | (request extends ({
1607
1569
  accessList?: import("viem").AccessList | undefined;
1608
1570
  authorizationList?: undefined;
@@ -1683,9 +1645,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
1683
1645
  maxFeePerGas?: undefined;
1684
1646
  maxPriorityFeePerGas?: undefined;
1685
1647
  } & {
1686
- accessList: import("viem").AccessList | undefined; /**
1687
- * Gets the balance for an address
1688
- */
1648
+ accessList: import("viem").AccessList | undefined;
1689
1649
  } ? "eip2930" : never) | (request extends ({
1690
1650
  accessList?: import("viem").AccessList | undefined;
1691
1651
  authorizationList?: undefined;
@@ -1766,9 +1726,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
1766
1726
  maxFeePerGas?: undefined;
1767
1727
  maxPriorityFeePerGas?: undefined;
1768
1728
  } & {
1769
- accessList: import("viem").AccessList | undefined; /**
1770
- * Gets the balance for an address
1771
- */
1729
+ accessList: import("viem").AccessList | undefined;
1772
1730
  } ? "eip2930" : never) | (request extends ({
1773
1731
  accessList?: import("viem").AccessList | undefined;
1774
1732
  authorizationList?: undefined;
@@ -1849,9 +1807,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
1849
1807
  maxFeePerGas?: undefined;
1850
1808
  maxPriorityFeePerGas?: undefined;
1851
1809
  } & {
1852
- accessList: import("viem").AccessList | undefined; /**
1853
- * Gets the balance for an address
1854
- */
1810
+ accessList: import("viem").AccessList | undefined;
1855
1811
  } ? "eip2930" : never) | (request extends ({
1856
1812
  accessList?: import("viem").AccessList | undefined;
1857
1813
  authorizationList?: undefined;
@@ -1932,9 +1888,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
1932
1888
  maxFeePerGas?: undefined;
1933
1889
  maxPriorityFeePerGas?: undefined;
1934
1890
  } & {
1935
- accessList: import("viem").AccessList | undefined; /**
1936
- * Gets the balance for an address
1937
- */
1891
+ accessList: import("viem").AccessList | undefined;
1938
1892
  } ? "eip2930" : never) | (request extends ({
1939
1893
  accessList?: import("viem").AccessList | undefined;
1940
1894
  authorizationList?: undefined;
@@ -2015,9 +1969,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
2015
1969
  maxFeePerGas?: undefined;
2016
1970
  maxPriorityFeePerGas?: undefined;
2017
1971
  } & {
2018
- accessList: import("viem").AccessList | undefined; /**
2019
- * Gets the balance for an address
2020
- */
1972
+ accessList: import("viem").AccessList | undefined;
2021
1973
  } ? "eip2930" : never) | (request extends ({
2022
1974
  accessList?: import("viem").AccessList | undefined;
2023
1975
  authorizationList?: undefined;
@@ -2098,9 +2050,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
2098
2050
  maxFeePerGas?: undefined;
2099
2051
  maxPriorityFeePerGas?: undefined;
2100
2052
  } & {
2101
- accessList: import("viem").AccessList | undefined; /**
2102
- * Gets the balance for an address
2103
- */
2053
+ accessList: import("viem").AccessList | undefined;
2104
2054
  } ? "eip2930" : never) | (request extends ({
2105
2055
  accessList?: import("viem").AccessList | undefined;
2106
2056
  authorizationList?: undefined;
@@ -2181,9 +2131,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
2181
2131
  maxFeePerGas?: undefined;
2182
2132
  maxPriorityFeePerGas?: undefined;
2183
2133
  } & {
2184
- accessList: import("viem").AccessList | undefined; /**
2185
- * Gets the balance for an address
2186
- */
2134
+ accessList: import("viem").AccessList | undefined;
2187
2135
  } ? "eip2930" : never) | (request extends ({
2188
2136
  accessList?: import("viem").AccessList | undefined;
2189
2137
  authorizationList?: undefined;
@@ -2264,9 +2212,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
2264
2212
  maxFeePerGas?: undefined;
2265
2213
  maxPriorityFeePerGas?: undefined;
2266
2214
  } & {
2267
- accessList: import("viem").AccessList | undefined; /**
2268
- * Gets the balance for an address
2269
- */
2215
+ accessList: import("viem").AccessList | undefined;
2270
2216
  } ? "eip2930" : never) | (request extends ({
2271
2217
  accessList?: import("viem").AccessList | undefined;
2272
2218
  authorizationList?: undefined;
@@ -2347,9 +2293,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
2347
2293
  maxFeePerGas?: undefined;
2348
2294
  maxPriorityFeePerGas?: undefined;
2349
2295
  } & {
2350
- accessList: import("viem").AccessList | undefined; /**
2351
- * Gets the balance for an address
2352
- */
2296
+ accessList: import("viem").AccessList | undefined;
2353
2297
  } ? "eip2930" : never) | (request extends ({
2354
2298
  accessList?: import("viem").AccessList | undefined;
2355
2299
  authorizationList?: undefined;
@@ -2430,9 +2374,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
2430
2374
  maxFeePerGas?: undefined;
2431
2375
  maxPriorityFeePerGas?: undefined;
2432
2376
  } & {
2433
- accessList: import("viem").AccessList | undefined; /**
2434
- * Gets the balance for an address
2435
- */
2377
+ accessList: import("viem").AccessList | undefined;
2436
2378
  } ? "eip2930" : never) | (request extends ({
2437
2379
  accessList?: import("viem").AccessList | undefined;
2438
2380
  authorizationList?: undefined;
@@ -2513,9 +2455,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
2513
2455
  maxFeePerGas?: undefined;
2514
2456
  maxPriorityFeePerGas?: undefined;
2515
2457
  } & {
2516
- accessList: import("viem").AccessList | undefined; /**
2517
- * Gets the balance for an address
2518
- */
2458
+ accessList: import("viem").AccessList | undefined;
2519
2459
  } ? "eip2930" : never) | (request extends ({
2520
2460
  accessList?: import("viem").AccessList | undefined;
2521
2461
  authorizationList?: undefined;
@@ -2596,9 +2536,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
2596
2536
  maxFeePerGas?: undefined;
2597
2537
  maxPriorityFeePerGas?: undefined;
2598
2538
  } & {
2599
- accessList: import("viem").AccessList | undefined; /**
2600
- * Gets the balance for an address
2601
- */
2539
+ accessList: import("viem").AccessList | undefined;
2602
2540
  } ? "eip2930" : never) | (request extends ({
2603
2541
  accessList?: import("viem").AccessList | undefined;
2604
2542
  authorizationList?: undefined;
@@ -2679,9 +2617,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
2679
2617
  maxFeePerGas?: undefined;
2680
2618
  maxPriorityFeePerGas?: undefined;
2681
2619
  } & {
2682
- accessList: import("viem").AccessList | undefined; /**
2683
- * Gets the balance for an address
2684
- */
2620
+ accessList: import("viem").AccessList | undefined;
2685
2621
  } ? "eip2930" : never) | (request extends ({
2686
2622
  accessList?: import("viem").AccessList | undefined;
2687
2623
  authorizationList?: undefined;
@@ -2762,9 +2698,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
2762
2698
  maxFeePerGas?: undefined;
2763
2699
  maxPriorityFeePerGas?: undefined;
2764
2700
  } & {
2765
- accessList: import("viem").AccessList | undefined; /**
2766
- * Gets the balance for an address
2767
- */
2701
+ accessList: import("viem").AccessList | undefined;
2768
2702
  } ? "eip2930" : never) | (request extends ({
2769
2703
  accessList?: import("viem").AccessList | undefined;
2770
2704
  authorizationList?: undefined;
@@ -2845,9 +2779,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
2845
2779
  maxFeePerGas?: undefined;
2846
2780
  maxPriorityFeePerGas?: undefined;
2847
2781
  } & {
2848
- accessList: import("viem").AccessList | undefined; /**
2849
- * Gets the balance for an address
2850
- */
2782
+ accessList: import("viem").AccessList | undefined;
2851
2783
  } ? "eip2930" : never) | (request extends ({
2852
2784
  accessList?: import("viem").AccessList | undefined;
2853
2785
  authorizationList?: undefined;
@@ -2928,9 +2860,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
2928
2860
  maxFeePerGas?: undefined;
2929
2861
  maxPriorityFeePerGas?: undefined;
2930
2862
  } & {
2931
- accessList: import("viem").AccessList | undefined; /**
2932
- * Gets the balance for an address
2933
- */
2863
+ accessList: import("viem").AccessList | undefined;
2934
2864
  } ? "eip2930" : never) | (request extends ({
2935
2865
  accessList?: import("viem").AccessList | undefined;
2936
2866
  authorizationList?: undefined;
@@ -3011,9 +2941,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
3011
2941
  maxFeePerGas?: undefined;
3012
2942
  maxPriorityFeePerGas?: undefined;
3013
2943
  } & {
3014
- accessList: import("viem").AccessList | undefined; /**
3015
- * Gets the balance for an address
3016
- */
2944
+ accessList: import("viem").AccessList | undefined;
3017
2945
  } ? "eip2930" : never) | (request extends ({
3018
2946
  accessList?: import("viem").AccessList | undefined;
3019
2947
  authorizationList?: undefined;
@@ -3094,9 +3022,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
3094
3022
  maxFeePerGas?: undefined;
3095
3023
  maxPriorityFeePerGas?: undefined;
3096
3024
  } & {
3097
- accessList: import("viem").AccessList | undefined; /**
3098
- * Gets the balance for an address
3099
- */
3025
+ accessList: import("viem").AccessList | undefined;
3100
3026
  } ? "eip2930" : never) | (request extends ({
3101
3027
  accessList?: import("viem").AccessList | undefined;
3102
3028
  authorizationList?: undefined;
@@ -3177,9 +3103,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
3177
3103
  maxFeePerGas?: undefined;
3178
3104
  maxPriorityFeePerGas?: undefined;
3179
3105
  } & {
3180
- accessList: import("viem").AccessList | undefined; /**
3181
- * Gets the balance for an address
3182
- */
3106
+ accessList: import("viem").AccessList | undefined;
3183
3107
  } ? "eip2930" : never) | (request extends ({
3184
3108
  accessList?: import("viem").AccessList | undefined;
3185
3109
  authorizationList?: undefined;
@@ -3260,9 +3184,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
3260
3184
  maxFeePerGas?: undefined;
3261
3185
  maxPriorityFeePerGas?: undefined;
3262
3186
  } & {
3263
- accessList: import("viem").AccessList | undefined; /**
3264
- * Gets the balance for an address
3265
- */
3187
+ accessList: import("viem").AccessList | undefined;
3266
3188
  } ? "eip2930" : never) | (request extends ({
3267
3189
  accessList?: import("viem").AccessList | undefined;
3268
3190
  authorizationList?: undefined;
@@ -3343,9 +3265,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
3343
3265
  maxFeePerGas?: undefined;
3344
3266
  maxPriorityFeePerGas?: undefined;
3345
3267
  } & {
3346
- accessList: import("viem").AccessList | undefined; /**
3347
- * Gets the balance for an address
3348
- */
3268
+ accessList: import("viem").AccessList | undefined;
3349
3269
  } ? "eip2930" : never) | (request extends ({
3350
3270
  accessList?: import("viem").AccessList | undefined;
3351
3271
  authorizationList?: undefined;
@@ -3438,9 +3358,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
3438
3358
  maxFeePerGas?: undefined;
3439
3359
  maxPriorityFeePerGas?: undefined;
3440
3360
  } & {
3441
- accessList: import("viem").AccessList | undefined; /**
3442
- * Gets the balance for an address
3443
- */
3361
+ accessList: import("viem").AccessList | undefined;
3444
3362
  } ? "eip2930" : never) | (request extends ({
3445
3363
  accessList?: import("viem").AccessList | undefined;
3446
3364
  authorizationList?: undefined;
@@ -3521,9 +3439,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
3521
3439
  maxFeePerGas?: undefined;
3522
3440
  maxPriorityFeePerGas?: undefined;
3523
3441
  } & {
3524
- accessList: import("viem").AccessList | undefined; /**
3525
- * Gets the balance for an address
3526
- */
3442
+ accessList: import("viem").AccessList | undefined;
3527
3443
  } ? "eip2930" : never) | (request extends ({
3528
3444
  accessList?: import("viem").AccessList | undefined;
3529
3445
  authorizationList?: undefined;
@@ -3604,9 +3520,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
3604
3520
  maxFeePerGas?: undefined;
3605
3521
  maxPriorityFeePerGas?: undefined;
3606
3522
  } & {
3607
- accessList: import("viem").AccessList | undefined; /**
3608
- * Gets the balance for an address
3609
- */
3523
+ accessList: import("viem").AccessList | undefined;
3610
3524
  } ? "eip2930" : never) | (request extends ({
3611
3525
  accessList?: import("viem").AccessList | undefined;
3612
3526
  authorizationList?: undefined;
@@ -3687,9 +3601,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
3687
3601
  maxFeePerGas?: undefined;
3688
3602
  maxPriorityFeePerGas?: undefined;
3689
3603
  } & {
3690
- accessList: import("viem").AccessList | undefined; /**
3691
- * Gets the balance for an address
3692
- */
3604
+ accessList: import("viem").AccessList | undefined;
3693
3605
  } ? "eip2930" : never) | (request extends ({
3694
3606
  accessList?: import("viem").AccessList | undefined;
3695
3607
  authorizationList?: undefined;
@@ -3770,9 +3682,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
3770
3682
  maxFeePerGas?: undefined;
3771
3683
  maxPriorityFeePerGas?: undefined;
3772
3684
  } & {
3773
- accessList: import("viem").AccessList | undefined; /**
3774
- * Gets the balance for an address
3775
- */
3685
+ accessList: import("viem").AccessList | undefined;
3776
3686
  } ? "eip2930" : never) | (request extends ({
3777
3687
  accessList?: import("viem").AccessList | undefined;
3778
3688
  authorizationList?: undefined;
@@ -3853,9 +3763,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
3853
3763
  maxFeePerGas?: undefined;
3854
3764
  maxPriorityFeePerGas?: undefined;
3855
3765
  } & {
3856
- accessList: import("viem").AccessList | undefined; /**
3857
- * Gets the balance for an address
3858
- */
3766
+ accessList: import("viem").AccessList | undefined;
3859
3767
  } ? "eip2930" : never) | (request extends ({
3860
3768
  accessList?: import("viem").AccessList | undefined;
3861
3769
  authorizationList?: undefined;
@@ -3936,9 +3844,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
3936
3844
  maxFeePerGas?: undefined;
3937
3845
  maxPriorityFeePerGas?: undefined;
3938
3846
  } & {
3939
- accessList: import("viem").AccessList | undefined; /**
3940
- * Gets the balance for an address
3941
- */
3847
+ accessList: import("viem").AccessList | undefined;
3942
3848
  } ? "eip2930" : never) | (request extends ({
3943
3849
  accessList?: import("viem").AccessList | undefined;
3944
3850
  authorizationList?: undefined;
@@ -4019,9 +3925,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
4019
3925
  maxFeePerGas?: undefined;
4020
3926
  maxPriorityFeePerGas?: undefined;
4021
3927
  } & {
4022
- accessList: import("viem").AccessList | undefined; /**
4023
- * Gets the balance for an address
4024
- */
3928
+ accessList: import("viem").AccessList | undefined;
4025
3929
  } ? "eip2930" : never) | (request extends ({
4026
3930
  accessList?: import("viem").AccessList | undefined;
4027
3931
  authorizationList?: undefined;
@@ -4102,9 +4006,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
4102
4006
  maxFeePerGas?: undefined;
4103
4007
  maxPriorityFeePerGas?: undefined;
4104
4008
  } & {
4105
- accessList: import("viem").AccessList | undefined; /**
4106
- * Gets the balance for an address
4107
- */
4009
+ accessList: import("viem").AccessList | undefined;
4108
4010
  } ? "eip2930" : never) | (request extends ({
4109
4011
  accessList?: import("viem").AccessList | undefined;
4110
4012
  authorizationList?: undefined;
@@ -4185,9 +4087,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
4185
4087
  maxFeePerGas?: undefined;
4186
4088
  maxPriorityFeePerGas?: undefined;
4187
4089
  } & {
4188
- accessList: import("viem").AccessList | undefined; /**
4189
- * Gets the balance for an address
4190
- */
4090
+ accessList: import("viem").AccessList | undefined;
4191
4091
  } ? "eip2930" : never) | (request extends ({
4192
4092
  accessList?: import("viem").AccessList | undefined;
4193
4093
  authorizationList?: undefined;
@@ -4268,9 +4168,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
4268
4168
  maxFeePerGas?: undefined;
4269
4169
  maxPriorityFeePerGas?: undefined;
4270
4170
  } & {
4271
- accessList: import("viem").AccessList | undefined; /**
4272
- * Gets the balance for an address
4273
- */
4171
+ accessList: import("viem").AccessList | undefined;
4274
4172
  } ? "eip2930" : never) | (request extends ({
4275
4173
  accessList?: import("viem").AccessList | undefined;
4276
4174
  authorizationList?: undefined;
@@ -4351,9 +4249,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
4351
4249
  maxFeePerGas?: undefined;
4352
4250
  maxPriorityFeePerGas?: undefined;
4353
4251
  } & {
4354
- accessList: import("viem").AccessList | undefined; /**
4355
- * Gets the balance for an address
4356
- */
4252
+ accessList: import("viem").AccessList | undefined;
4357
4253
  } ? "eip2930" : never) | (request extends ({
4358
4254
  accessList?: import("viem").AccessList | undefined;
4359
4255
  authorizationList?: undefined;
@@ -4434,9 +4330,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
4434
4330
  maxFeePerGas?: undefined;
4435
4331
  maxPriorityFeePerGas?: undefined;
4436
4332
  } & {
4437
- accessList: import("viem").AccessList | undefined; /**
4438
- * Gets the balance for an address
4439
- */
4333
+ accessList: import("viem").AccessList | undefined;
4440
4334
  } ? "eip2930" : never) | (request extends ({
4441
4335
  accessList?: import("viem").AccessList | undefined;
4442
4336
  authorizationList?: undefined;
@@ -4517,9 +4411,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
4517
4411
  maxFeePerGas?: undefined;
4518
4412
  maxPriorityFeePerGas?: undefined;
4519
4413
  } & {
4520
- accessList: import("viem").AccessList | undefined; /**
4521
- * Gets the balance for an address
4522
- */
4414
+ accessList: import("viem").AccessList | undefined;
4523
4415
  } ? "eip2930" : never) | (request extends ({
4524
4416
  accessList?: import("viem").AccessList | undefined;
4525
4417
  authorizationList?: undefined;
@@ -4600,9 +4492,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
4600
4492
  maxFeePerGas?: undefined;
4601
4493
  maxPriorityFeePerGas?: undefined;
4602
4494
  } & {
4603
- accessList: import("viem").AccessList | undefined; /**
4604
- * Gets the balance for an address
4605
- */
4495
+ accessList: import("viem").AccessList | undefined;
4606
4496
  } ? "eip2930" : never) | (request extends ({
4607
4497
  accessList?: import("viem").AccessList | undefined;
4608
4498
  authorizationList?: undefined;
@@ -4683,9 +4573,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
4683
4573
  maxFeePerGas?: undefined;
4684
4574
  maxPriorityFeePerGas?: undefined;
4685
4575
  } & {
4686
- accessList: import("viem").AccessList | undefined; /**
4687
- * Gets the balance for an address
4688
- */
4576
+ accessList: import("viem").AccessList | undefined;
4689
4577
  } ? "eip2930" : never) | (request extends ({
4690
4578
  accessList?: import("viem").AccessList | undefined;
4691
4579
  authorizationList?: undefined;
@@ -4766,9 +4654,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
4766
4654
  maxFeePerGas?: undefined;
4767
4655
  maxPriorityFeePerGas?: undefined;
4768
4656
  } & {
4769
- accessList: import("viem").AccessList | undefined; /**
4770
- * Gets the balance for an address
4771
- */
4657
+ accessList: import("viem").AccessList | undefined;
4772
4658
  } ? "eip2930" : never) | (request extends ({
4773
4659
  accessList?: import("viem").AccessList | undefined;
4774
4660
  authorizationList?: undefined;
@@ -4849,9 +4735,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
4849
4735
  maxFeePerGas?: undefined;
4850
4736
  maxPriorityFeePerGas?: undefined;
4851
4737
  } & {
4852
- accessList: import("viem").AccessList | undefined; /**
4853
- * Gets the balance for an address
4854
- */
4738
+ accessList: import("viem").AccessList | undefined;
4855
4739
  } ? "eip2930" : never) | (request extends ({
4856
4740
  accessList?: import("viem").AccessList | undefined;
4857
4741
  authorizationList?: undefined;
@@ -4932,9 +4816,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
4932
4816
  maxFeePerGas?: undefined;
4933
4817
  maxPriorityFeePerGas?: undefined;
4934
4818
  } & {
4935
- accessList: import("viem").AccessList | undefined; /**
4936
- * Gets the balance for an address
4937
- */
4819
+ accessList: import("viem").AccessList | undefined;
4938
4820
  } ? "eip2930" : never) | (request extends ({
4939
4821
  accessList?: import("viem").AccessList | undefined;
4940
4822
  authorizationList?: undefined;
@@ -5015,9 +4897,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
5015
4897
  maxFeePerGas?: undefined;
5016
4898
  maxPriorityFeePerGas?: undefined;
5017
4899
  } & {
5018
- accessList: import("viem").AccessList | undefined; /**
5019
- * Gets the balance for an address
5020
- */
4900
+ accessList: import("viem").AccessList | undefined;
5021
4901
  } ? "eip2930" : never) | (request extends ({
5022
4902
  accessList?: import("viem").AccessList | undefined;
5023
4903
  authorizationList?: undefined;
@@ -5098,9 +4978,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
5098
4978
  maxFeePerGas?: undefined;
5099
4979
  maxPriorityFeePerGas?: undefined;
5100
4980
  } & {
5101
- accessList: import("viem").AccessList | undefined; /**
5102
- * Gets the balance for an address
5103
- */
4981
+ accessList: import("viem").AccessList | undefined;
5104
4982
  } ? "eip2930" : never) | (request extends ({
5105
4983
  accessList?: import("viem").AccessList | undefined;
5106
4984
  authorizationList?: undefined;
@@ -5181,9 +5059,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
5181
5059
  maxFeePerGas?: undefined;
5182
5060
  maxPriorityFeePerGas?: undefined;
5183
5061
  } & {
5184
- accessList: import("viem").AccessList | undefined; /**
5185
- * Gets the balance for an address
5186
- */
5062
+ accessList: import("viem").AccessList | undefined;
5187
5063
  } ? "eip2930" : never) | (request extends ({
5188
5064
  accessList?: import("viem").AccessList | undefined;
5189
5065
  authorizationList?: undefined;
@@ -5264,9 +5140,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
5264
5140
  maxFeePerGas?: undefined;
5265
5141
  maxPriorityFeePerGas?: undefined;
5266
5142
  } & {
5267
- accessList: import("viem").AccessList | undefined; /**
5268
- * Gets the balance for an address
5269
- */
5143
+ accessList: import("viem").AccessList | undefined;
5270
5144
  } ? "eip2930" : never) | (request extends ({
5271
5145
  accessList?: import("viem").AccessList | undefined;
5272
5146
  authorizationList?: undefined;
@@ -5347,9 +5221,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
5347
5221
  maxFeePerGas?: undefined;
5348
5222
  maxPriorityFeePerGas?: undefined;
5349
5223
  } & {
5350
- accessList: import("viem").AccessList | undefined; /**
5351
- * Gets the balance for an address
5352
- */
5224
+ accessList: import("viem").AccessList | undefined;
5353
5225
  } ? "eip2930" : never) | (request extends ({
5354
5226
  accessList?: import("viem").AccessList | undefined;
5355
5227
  authorizationList?: undefined;
@@ -5430,9 +5302,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
5430
5302
  maxFeePerGas?: undefined;
5431
5303
  maxPriorityFeePerGas?: undefined;
5432
5304
  } & {
5433
- accessList: import("viem").AccessList | undefined; /**
5434
- * Gets the balance for an address
5435
- */
5305
+ accessList: import("viem").AccessList | undefined;
5436
5306
  } ? "eip2930" : never) | (request extends ({
5437
5307
  accessList?: import("viem").AccessList | undefined;
5438
5308
  authorizationList?: undefined;
@@ -5513,9 +5383,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
5513
5383
  maxFeePerGas?: undefined;
5514
5384
  maxPriorityFeePerGas?: undefined;
5515
5385
  } & {
5516
- accessList: import("viem").AccessList | undefined; /**
5517
- * Gets the balance for an address
5518
- */
5386
+ accessList: import("viem").AccessList | undefined;
5519
5387
  } ? "eip2930" : never) | (request extends ({
5520
5388
  accessList?: import("viem").AccessList | undefined;
5521
5389
  authorizationList?: undefined;
@@ -5596,9 +5464,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
5596
5464
  maxFeePerGas?: undefined;
5597
5465
  maxPriorityFeePerGas?: undefined;
5598
5466
  } & {
5599
- accessList: import("viem").AccessList | undefined; /**
5600
- * Gets the balance for an address
5601
- */
5467
+ accessList: import("viem").AccessList | undefined;
5602
5468
  } ? "eip2930" : never) | (request extends ({
5603
5469
  accessList?: import("viem").AccessList | undefined;
5604
5470
  authorizationList?: undefined;
@@ -5679,9 +5545,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
5679
5545
  maxFeePerGas?: undefined;
5680
5546
  maxPriorityFeePerGas?: undefined;
5681
5547
  } & {
5682
- accessList: import("viem").AccessList | undefined; /**
5683
- * Gets the balance for an address
5684
- */
5548
+ accessList: import("viem").AccessList | undefined;
5685
5549
  } ? "eip2930" : never) | (request extends ({
5686
5550
  accessList?: import("viem").AccessList | undefined;
5687
5551
  authorizationList?: undefined;
@@ -5762,9 +5626,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
5762
5626
  maxFeePerGas?: undefined;
5763
5627
  maxPriorityFeePerGas?: undefined;
5764
5628
  } & {
5765
- accessList: import("viem").AccessList | undefined; /**
5766
- * Gets the balance for an address
5767
- */
5629
+ accessList: import("viem").AccessList | undefined;
5768
5630
  } ? "eip2930" : never) | (request extends ({
5769
5631
  accessList?: import("viem").AccessList | undefined;
5770
5632
  authorizationList?: undefined;
@@ -5845,9 +5707,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
5845
5707
  maxFeePerGas?: undefined;
5846
5708
  maxPriorityFeePerGas?: undefined;
5847
5709
  } & {
5848
- accessList: import("viem").AccessList | undefined; /**
5849
- * Gets the balance for an address
5850
- */
5710
+ accessList: import("viem").AccessList | undefined;
5851
5711
  } ? "eip2930" : never) | (request extends ({
5852
5712
  accessList?: import("viem").AccessList | undefined;
5853
5713
  authorizationList?: undefined;
@@ -5928,9 +5788,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
5928
5788
  maxFeePerGas?: undefined;
5929
5789
  maxPriorityFeePerGas?: undefined;
5930
5790
  } & {
5931
- accessList: import("viem").AccessList | undefined; /**
5932
- * Gets the balance for an address
5933
- */
5791
+ accessList: import("viem").AccessList | undefined;
5934
5792
  } ? "eip2930" : never) | (request extends ({
5935
5793
  accessList?: import("viem").AccessList | undefined;
5936
5794
  authorizationList?: undefined;
@@ -6011,9 +5869,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
6011
5869
  maxFeePerGas?: undefined;
6012
5870
  maxPriorityFeePerGas?: undefined;
6013
5871
  } & {
6014
- accessList: import("viem").AccessList | undefined; /**
6015
- * Gets the balance for an address
6016
- */
5872
+ accessList: import("viem").AccessList | undefined;
6017
5873
  } ? "eip2930" : never) | (request extends ({
6018
5874
  accessList?: import("viem").AccessList | undefined;
6019
5875
  authorizationList?: undefined;
@@ -6094,9 +5950,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
6094
5950
  maxFeePerGas?: undefined;
6095
5951
  maxPriorityFeePerGas?: undefined;
6096
5952
  } & {
6097
- accessList: import("viem").AccessList | undefined; /**
6098
- * Gets the balance for an address
6099
- */
5953
+ accessList: import("viem").AccessList | undefined;
6100
5954
  } ? "eip2930" : never) | (request extends ({
6101
5955
  accessList?: import("viem").AccessList | undefined;
6102
5956
  authorizationList?: undefined;
@@ -6177,9 +6031,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
6177
6031
  maxFeePerGas?: undefined;
6178
6032
  maxPriorityFeePerGas?: undefined;
6179
6033
  } & {
6180
- accessList: import("viem").AccessList | undefined; /**
6181
- * Gets the balance for an address
6182
- */
6034
+ accessList: import("viem").AccessList | undefined;
6183
6035
  } ? "eip2930" : never) | (request extends ({
6184
6036
  accessList?: import("viem").AccessList | undefined;
6185
6037
  authorizationList?: undefined;
@@ -6260,9 +6112,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
6260
6112
  maxFeePerGas?: undefined;
6261
6113
  maxPriorityFeePerGas?: undefined;
6262
6114
  } & {
6263
- accessList: import("viem").AccessList | undefined; /**
6264
- * Gets the balance for an address
6265
- */
6115
+ accessList: import("viem").AccessList | undefined;
6266
6116
  } ? "eip2930" : never) | (request extends ({
6267
6117
  accessList?: import("viem").AccessList | undefined;
6268
6118
  authorizationList?: undefined;
@@ -6343,9 +6193,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
6343
6193
  maxFeePerGas?: undefined;
6344
6194
  maxPriorityFeePerGas?: undefined;
6345
6195
  } & {
6346
- accessList: import("viem").AccessList | undefined; /**
6347
- * Gets the balance for an address
6348
- */
6196
+ accessList: import("viem").AccessList | undefined;
6349
6197
  } ? "eip2930" : never) | (request extends ({
6350
6198
  accessList?: import("viem").AccessList | undefined;
6351
6199
  authorizationList?: undefined;
@@ -6426,9 +6274,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
6426
6274
  maxFeePerGas?: undefined;
6427
6275
  maxPriorityFeePerGas?: undefined;
6428
6276
  } & {
6429
- accessList: import("viem").AccessList | undefined; /**
6430
- * Gets the balance for an address
6431
- */
6277
+ accessList: import("viem").AccessList | undefined;
6432
6278
  } ? "eip2930" : never) | (request extends ({
6433
6279
  accessList?: import("viem").AccessList | undefined;
6434
6280
  authorizationList?: undefined;
@@ -6509,9 +6355,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
6509
6355
  maxFeePerGas?: undefined;
6510
6356
  maxPriorityFeePerGas?: undefined;
6511
6357
  } & {
6512
- accessList: import("viem").AccessList | undefined; /**
6513
- * Gets the balance for an address
6514
- */
6358
+ accessList: import("viem").AccessList | undefined;
6515
6359
  } ? "eip2930" : never) | (request extends ({
6516
6360
  accessList?: import("viem").AccessList | undefined;
6517
6361
  authorizationList?: undefined;
@@ -6592,9 +6436,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
6592
6436
  maxFeePerGas?: undefined;
6593
6437
  maxPriorityFeePerGas?: undefined;
6594
6438
  } & {
6595
- accessList: import("viem").AccessList | undefined; /**
6596
- * Gets the balance for an address
6597
- */
6439
+ accessList: import("viem").AccessList | undefined;
6598
6440
  } ? "eip2930" : never) | (request extends ({
6599
6441
  accessList?: import("viem").AccessList | undefined;
6600
6442
  authorizationList?: undefined;
@@ -6675,9 +6517,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
6675
6517
  maxFeePerGas?: undefined;
6676
6518
  maxPriorityFeePerGas?: undefined;
6677
6519
  } & {
6678
- accessList: import("viem").AccessList | undefined; /**
6679
- * Gets the balance for an address
6680
- */
6520
+ accessList: import("viem").AccessList | undefined;
6681
6521
  } ? "eip2930" : never) | (request extends ({
6682
6522
  accessList?: import("viem").AccessList | undefined;
6683
6523
  authorizationList?: undefined;
@@ -6770,9 +6610,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
6770
6610
  maxFeePerGas?: undefined;
6771
6611
  maxPriorityFeePerGas?: undefined;
6772
6612
  } & {
6773
- accessList: import("viem").AccessList | undefined; /**
6774
- * Gets the balance for an address
6775
- */
6613
+ accessList: import("viem").AccessList | undefined;
6776
6614
  } ? "eip2930" : never) | (request_2 extends ({
6777
6615
  accessList?: import("viem").AccessList | undefined;
6778
6616
  authorizationList?: undefined;
@@ -6853,9 +6691,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
6853
6691
  maxFeePerGas?: undefined;
6854
6692
  maxPriorityFeePerGas?: undefined;
6855
6693
  } & {
6856
- accessList: import("viem").AccessList | undefined; /**
6857
- * Gets the balance for an address
6858
- */
6694
+ accessList: import("viem").AccessList | undefined;
6859
6695
  } ? "eip2930" : never) | (request_2 extends ({
6860
6696
  accessList?: import("viem").AccessList | undefined;
6861
6697
  authorizationList?: undefined;
@@ -6936,9 +6772,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
6936
6772
  maxFeePerGas?: undefined;
6937
6773
  maxPriorityFeePerGas?: undefined;
6938
6774
  } & {
6939
- accessList: import("viem").AccessList | undefined; /**
6940
- * Gets the balance for an address
6941
- */
6775
+ accessList: import("viem").AccessList | undefined;
6942
6776
  } ? "eip2930" : never) | (request_2 extends ({
6943
6777
  accessList?: import("viem").AccessList | undefined;
6944
6778
  authorizationList?: undefined;
@@ -7019,9 +6853,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
7019
6853
  maxFeePerGas?: undefined;
7020
6854
  maxPriorityFeePerGas?: undefined;
7021
6855
  } & {
7022
- accessList: import("viem").AccessList | undefined; /**
7023
- * Gets the balance for an address
7024
- */
6856
+ accessList: import("viem").AccessList | undefined;
7025
6857
  } ? "eip2930" : never) | (request_2 extends ({
7026
6858
  accessList?: import("viem").AccessList | undefined;
7027
6859
  authorizationList?: undefined;
@@ -7102,9 +6934,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
7102
6934
  maxFeePerGas?: undefined;
7103
6935
  maxPriorityFeePerGas?: undefined;
7104
6936
  } & {
7105
- accessList: import("viem").AccessList | undefined; /**
7106
- * Gets the balance for an address
7107
- */
6937
+ accessList: import("viem").AccessList | undefined;
7108
6938
  } ? "eip2930" : never) | (request_2 extends ({
7109
6939
  accessList?: import("viem").AccessList | undefined;
7110
6940
  authorizationList?: undefined;
@@ -7185,9 +7015,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
7185
7015
  maxFeePerGas?: undefined;
7186
7016
  maxPriorityFeePerGas?: undefined;
7187
7017
  } & {
7188
- accessList: import("viem").AccessList | undefined; /**
7189
- * Gets the balance for an address
7190
- */
7018
+ accessList: import("viem").AccessList | undefined;
7191
7019
  } ? "eip2930" : never) | (request_2 extends ({
7192
7020
  accessList?: import("viem").AccessList | undefined;
7193
7021
  authorizationList?: undefined;
@@ -7268,9 +7096,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
7268
7096
  maxFeePerGas?: undefined;
7269
7097
  maxPriorityFeePerGas?: undefined;
7270
7098
  } & {
7271
- accessList: import("viem").AccessList | undefined; /**
7272
- * Gets the balance for an address
7273
- */
7099
+ accessList: import("viem").AccessList | undefined;
7274
7100
  } ? "eip2930" : never) | (request_2 extends ({
7275
7101
  accessList?: import("viem").AccessList | undefined;
7276
7102
  authorizationList?: undefined;
@@ -7351,9 +7177,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
7351
7177
  maxFeePerGas?: undefined;
7352
7178
  maxPriorityFeePerGas?: undefined;
7353
7179
  } & {
7354
- accessList: import("viem").AccessList | undefined; /**
7355
- * Gets the balance for an address
7356
- */
7180
+ accessList: import("viem").AccessList | undefined;
7357
7181
  } ? "eip2930" : never) | (request_2 extends ({
7358
7182
  accessList?: import("viem").AccessList | undefined;
7359
7183
  authorizationList?: undefined;
@@ -7434,9 +7258,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
7434
7258
  maxFeePerGas?: undefined;
7435
7259
  maxPriorityFeePerGas?: undefined;
7436
7260
  } & {
7437
- accessList: import("viem").AccessList | undefined; /**
7438
- * Gets the balance for an address
7439
- */
7261
+ accessList: import("viem").AccessList | undefined;
7440
7262
  } ? "eip2930" : never) | (request_2 extends ({
7441
7263
  accessList?: import("viem").AccessList | undefined;
7442
7264
  authorizationList?: undefined;
@@ -7517,9 +7339,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
7517
7339
  maxFeePerGas?: undefined;
7518
7340
  maxPriorityFeePerGas?: undefined;
7519
7341
  } & {
7520
- accessList: import("viem").AccessList | undefined; /**
7521
- * Gets the balance for an address
7522
- */
7342
+ accessList: import("viem").AccessList | undefined;
7523
7343
  } ? "eip2930" : never) | (request_2 extends ({
7524
7344
  accessList?: import("viem").AccessList | undefined;
7525
7345
  authorizationList?: undefined;
@@ -7600,9 +7420,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
7600
7420
  maxFeePerGas?: undefined;
7601
7421
  maxPriorityFeePerGas?: undefined;
7602
7422
  } & {
7603
- accessList: import("viem").AccessList | undefined; /**
7604
- * Gets the balance for an address
7605
- */
7423
+ accessList: import("viem").AccessList | undefined;
7606
7424
  } ? "eip2930" : never) | (request_2 extends ({
7607
7425
  accessList?: import("viem").AccessList | undefined;
7608
7426
  authorizationList?: undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"AccountAbstractionBaseConnector.d.ts","sourceRoot":"","sources":["../../../../../packages/ethereum-aa-core/src/connector/AccountAbstractionBaseConnector.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAe,SAAS,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACrE,OAAO,EAAE,KAAK,KAAK,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEtD,OAAO,EACL,KAAK,EACL,uBAAuB,EAEvB,mBAAmB,EACpB,MAAM,qCAAqC,CAAC;AAE7C,OAAO,EAEL,cAAc,EAIf,MAAM,6BAA6B,CAAC;AACrC,OAAO,EACL,cAAc,EACd,aAAa,EACb,cAAc,EACf,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAEnE,OAAO,EAAE,gCAAgC,EAAE,MAAM,UAAU,CAAC;AAE5D,8BAAsB,+BAAgC,SAAQ,mBAAmB,CAC/E,OAAO,cAAc,CACtB;IACC,QAAQ,CAAC,YAAY,EAAE,uBAAuB,GAAG,SAAS,CAAC;IAC3D,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;IAExC,SAAS,CAAC,cAAc,EAAE,aAAa,CAAC,uBAAuB,CAAC,CAAC;IACjE,OAAO,CAAC,yBAAyB,CAAS;IAC1C,SAAS,CAAC,WAAW,EAAE,cAAc,EAAE,CAAM;IAEpC,WAAW,wBAAkB;IAC7B,gBAAgB,UAAQ;IACjC,cAAc,EAAE,KAAK,CAAS;IAC9B,eAAe,EAAE,KAAK,EAAE,CAAkB;gBAE9B,IAAI,EAAE,gCAAgC;IAMlD;;;OAGG;IACH,eAAe,IAAI,uBAAuB,GAAG,SAAS;IAItD;;OAEG;IACH,yBAAyB,IAAI,IAAI;IAIjC;;OAEG;IACH,SAAS,CAAC,wBAAwB,IAAI,OAAO;IAI7C;;OAEG;IACM,kBAAkB,IAAI,cAAc,EAAE;IAI/C;;OAEG;IACY,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAIxB;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAFH;;OAEG;IACY,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IAUvE;;OAEG;IACY,oBAAoB,CAAC,eAAe,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAO3E,QAAQ,CAAC,wBAAwB,CAAC,WAAW,EAAE;QAC7C,IAAI,EAAE,MAAM,CAAC;QACb,EAAE,CAAC,EAAE,MAAM,CAAC;QACZ,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,IAAI,CAAC,EAAE,MAAM,CAAC;KACf,GAAG,OAAO,CAAC,OAAO,CAAC;IAEd,mBAAmB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC;IAgBjD,qCAAqC,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;IAIzE,QAAQ,CAAC,6BAA6B,CAAC,CAAC,EAAE,EACxC,eAAe,GAChB,EAAE;QACD,eAAe,EAAE,OAAO,CAAC;KAC1B,GAAG,OAAO,CAAC,CAAC,CAAC;IAEd,QAAQ,CAAC,UAAU,CAAC,MAAM,EAAE;QAC1B,kBAAkB,EAAE,MAAM,CAAC;QAC3B,UAAU,EAAE,MAAM,CAAC;QACnB,YAAY,EAAE,uBAAuB,CAAC;QACtC,UAAU,CAAC,EAAE,qBAAqB,CAAC;QACnC,qBAAqB,CAAC,EAAE,OAAO,CAAC;KACjC,GAAG,OAAO,CAAC,IAAI,CAAC;aAEC,eAAe,CAC/B,OAAO,CAAC,EAAE,MAAM,GACf,YAAY,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,GAAG,SAAS;IAE7C,iBAAiB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAmBrD,2BAA2B,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;CAqB7E"}
1
+ {"version":3,"file":"AccountAbstractionBaseConnector.d.ts","sourceRoot":"","sources":["../../../../../packages/ethereum-aa-core/src/connector/AccountAbstractionBaseConnector.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAe,SAAS,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACrE,OAAO,EAAE,KAAK,KAAK,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAGtD,OAAO,EACL,KAAK,EACL,uBAAuB,EAEvB,mBAAmB,EACpB,MAAM,qCAAqC,CAAC;AAE7C,OAAO,EAEL,cAAc,EAGf,MAAM,6BAA6B,CAAC;AACrC,OAAO,EACL,cAAc,EACd,aAAa,EACb,cAAc,EACf,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAEnE,OAAO,EAAE,gCAAgC,EAAE,MAAM,UAAU,CAAC;AAE5D,8BAAsB,+BAAgC,SAAQ,mBAAmB,CAC/E,OAAO,cAAc,CACtB;IACC,QAAQ,CAAC,YAAY,EAAE,uBAAuB,GAAG,SAAS,CAAC;IAC3D,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;IAExC,SAAS,CAAC,cAAc,EAAE,aAAa,CAAC,uBAAuB,CAAC,CAAC;IACjE,OAAO,CAAC,yBAAyB,CAAS;IAC1C,SAAS,CAAC,WAAW,EAAE,cAAc,EAAE,CAAM;IAEpC,WAAW,wBAAkB;IAC7B,gBAAgB,UAAQ;IACjC,cAAc,EAAE,KAAK,CAAS;IAC9B,eAAe,EAAE,KAAK,EAAE,CAAkB;gBAE9B,IAAI,EAAE,gCAAgC;IAMlD;;;OAGG;IACH,eAAe,IAAI,uBAAuB,GAAG,SAAS;IAItD;;OAEG;IACH,yBAAyB,IAAI,IAAI;IAIjC;;OAEG;IACH,SAAS,CAAC,wBAAwB,IAAI,OAAO;IAI7C;;OAEG;IACM,kBAAkB,IAAI,cAAc,EAAE;IAI/C;;OAEG;IACY,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAIxB;;OAEG;IACY,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IAUvE;;OAEG;IACY,oBAAoB,CAAC,eAAe,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAO3E,QAAQ,CAAC,wBAAwB,CAAC,WAAW,EAAE;QAC7C,IAAI,EAAE,MAAM,CAAC;QACb,EAAE,CAAC,EAAE,MAAM,CAAC;QACZ,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,IAAI,CAAC,EAAE,MAAM,CAAC;KACf,GAAG,OAAO,CAAC,OAAO,CAAC;IAEd,mBAAmB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC;IAgBjD,qCAAqC,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;IAIzE,QAAQ,CAAC,6BAA6B,CAAC,CAAC,EAAE,EACxC,eAAe,GAChB,EAAE;QACD,eAAe,EAAE,OAAO,CAAC;KAC1B,GAAG,OAAO,CAAC,CAAC,CAAC;IAEd,QAAQ,CAAC,UAAU,CAAC,MAAM,EAAE;QAC1B,kBAAkB,EAAE,MAAM,CAAC;QAC3B,UAAU,EAAE,MAAM,CAAC;QACnB,YAAY,EAAE,uBAAuB,CAAC;QACtC,UAAU,CAAC,EAAE,qBAAqB,CAAC;QACnC,qBAAqB,CAAC,EAAE,OAAO,CAAC;KACjC,GAAG,OAAO,CAAC,IAAI,CAAC;aAEC,eAAe,CAC/B,OAAO,CAAC,EAAE,MAAM,GACf,YAAY,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,GAAG,SAAS;IAE7C,iBAAiB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAmBrD,2BAA2B,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;CAqB7E"}
@@ -1,8 +1,9 @@
1
1
  'use client'
2
2
  import { formatEther } from 'viem';
3
+ import { getCapabilities } from 'viem/experimental';
3
4
  import { WalletConnectorBase, logger } from '@dynamic-labs/wallet-connector-core';
4
5
  import { DynamicError } from '@dynamic-labs/utils';
5
- import { EthereumWallet, createViemUiTransaction, getWalletCapabilities, hasAtomicStatusCapability, hasPaymasterServiceCapability } from '@dynamic-labs/ethereum-core';
6
+ import { EthereumWallet, createViemUiTransaction, hasAtomicStatusCapability, hasPaymasterServiceCapability } from '@dynamic-labs/ethereum-core';
6
7
 
7
8
  class AccountAbstractionBaseConnector extends WalletConnectorBase {
8
9
  constructor(opts) {
@@ -88,7 +89,7 @@ class AccountAbstractionBaseConnector extends WalletConnectorBase {
88
89
  if (!walletClient) {
89
90
  return false;
90
91
  }
91
- const capabilities = await getWalletCapabilities(walletClient);
92
+ const capabilities = await getCapabilities(walletClient);
92
93
  const chainIdToCheck = chainId ?? (await walletClient.getChainId());
93
94
  logger.debug('[AccountAbstractionBaseConnector] isAtomicSupported', {
94
95
  capabilities,
@@ -101,7 +102,7 @@ class AccountAbstractionBaseConnector extends WalletConnectorBase {
101
102
  if (!walletClient) {
102
103
  return false;
103
104
  }
104
- const capabilities = await getWalletCapabilities(walletClient);
105
+ const capabilities = await getCapabilities(walletClient);
105
106
  const chainIdToCheck = chainId ?? (await walletClient.getChainId());
106
107
  logger.debug('[AccountAbstractionBaseConnector] isPaymasterServiceSupported', {
107
108
  capabilities,