@dynamic-labs/ethereum-aa-core 4.16.0 → 4.18.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 +27 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +7 -7
- package/src/connector/AccountAbstractionBaseConnector.cjs +0 -26
- package/src/connector/AccountAbstractionBaseConnector.d.ts +240 -340
- package/src/connector/AccountAbstractionBaseConnector.d.ts.map +1 -1
- package/src/connector/AccountAbstractionBaseConnector.js +2 -28
|
@@ -59,15 +59,78 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
59
59
|
addChain: (args: import("viem").AddChainParameters) => Promise<void>;
|
|
60
60
|
deployContract: <const abi extends import("viem").Abi | readonly unknown[], chainOverride extends ViemChain | undefined>(args: import("viem").DeployContractParameters<abi, ViemChain, Account, chainOverride>) => Promise<`0x${string}`>;
|
|
61
61
|
getAddresses: () => Promise<import("viem").GetAddressesReturnType>;
|
|
62
|
+
getCallsStatus: (parameters: import("viem").GetCallsStatusParameters) => Promise<{
|
|
63
|
+
atomic: boolean;
|
|
64
|
+
capabilities?: {
|
|
65
|
+
[key: string]: any;
|
|
66
|
+
} | {
|
|
67
|
+
[x: string]: any;
|
|
68
|
+
} | undefined;
|
|
69
|
+
chainId: number;
|
|
70
|
+
id: string;
|
|
71
|
+
receipts?: import("viem").WalletCallReceipt<bigint, "success" | "reverted">[] | undefined;
|
|
72
|
+
version: string;
|
|
73
|
+
statusCode: number;
|
|
74
|
+
status: "success" | "pending" | "failure" | undefined;
|
|
75
|
+
}>;
|
|
76
|
+
getCapabilities: <chainId extends number | undefined>(parameters?: import("viem").GetCapabilitiesParameters<chainId> | undefined) => Promise<(chainId extends number ? {
|
|
77
|
+
[x: string]: any;
|
|
78
|
+
atomic?: {
|
|
79
|
+
status: "supported" | "ready" | "unsupported";
|
|
80
|
+
} | undefined;
|
|
81
|
+
unstable_addSubAccount?: {
|
|
82
|
+
keyTypes: ("address" | "p256" | "webcrypto-p256" | "webauthn-p256")[];
|
|
83
|
+
supported: boolean;
|
|
84
|
+
} | undefined;
|
|
85
|
+
paymasterService?: {
|
|
86
|
+
supported: boolean;
|
|
87
|
+
} | undefined;
|
|
88
|
+
} : import("viem").WalletCapabilitiesRecord<import("viem").Capabilities<{
|
|
89
|
+
[x: string]: any;
|
|
90
|
+
atomic?: {
|
|
91
|
+
status: "supported" | "ready" | "unsupported";
|
|
92
|
+
} | undefined;
|
|
93
|
+
unstable_addSubAccount?: {
|
|
94
|
+
keyTypes: ("address" | "p256" | "webcrypto-p256" | "webauthn-p256")[];
|
|
95
|
+
supported: boolean;
|
|
96
|
+
} | undefined;
|
|
97
|
+
paymasterService?: {
|
|
98
|
+
supported: boolean;
|
|
99
|
+
} | undefined;
|
|
100
|
+
}>, number>) extends infer T ? { [K in keyof T]: (chainId extends number ? {
|
|
101
|
+
[x: string]: any;
|
|
102
|
+
atomic?: {
|
|
103
|
+
status: "supported" | "ready" | "unsupported";
|
|
104
|
+
} | undefined;
|
|
105
|
+
unstable_addSubAccount?: {
|
|
106
|
+
keyTypes: ("address" | "p256" | "webcrypto-p256" | "webauthn-p256")[];
|
|
107
|
+
supported: boolean;
|
|
108
|
+
} | undefined;
|
|
109
|
+
paymasterService?: {
|
|
110
|
+
supported: boolean;
|
|
111
|
+
} | undefined;
|
|
112
|
+
} : import("viem").WalletCapabilitiesRecord<import("viem").Capabilities<{
|
|
113
|
+
[x: string]: any;
|
|
114
|
+
atomic?: {
|
|
115
|
+
status: "supported" | "ready" | "unsupported";
|
|
116
|
+
} | undefined;
|
|
117
|
+
unstable_addSubAccount?: {
|
|
118
|
+
keyTypes: ("address" | "p256" | "webcrypto-p256" | "webauthn-p256")[];
|
|
119
|
+
supported: boolean;
|
|
120
|
+
} | undefined;
|
|
121
|
+
paymasterService?: {
|
|
122
|
+
supported: boolean;
|
|
123
|
+
} | undefined;
|
|
124
|
+
}>, number>)[K]; } : never>;
|
|
62
125
|
getChainId: () => Promise<number>;
|
|
63
126
|
getPermissions: () => Promise<import("viem").GetPermissionsReturnType>;
|
|
64
127
|
prepareAuthorization: (parameters: import("viem/experimental").PrepareAuthorizationParameters<Account>) => Promise<import("viem/experimental").PrepareAuthorizationReturnType>;
|
|
65
|
-
prepareTransactionRequest: <const request extends import("viem").PrepareTransactionRequestRequest<ViemChain, chainOverride_1>, chainOverride_1 extends ViemChain | undefined = undefined, accountOverride extends `0x${string}` | Account | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<ViemChain, Account, chainOverride_1, accountOverride, request>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<ViemChain, chainOverride_1>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<ViemChain, chainOverride_1> extends infer
|
|
66
|
-
chain:
|
|
128
|
+
prepareTransactionRequest: <const request extends import("viem").PrepareTransactionRequestRequest<ViemChain, chainOverride_1>, chainOverride_1 extends ViemChain | undefined = undefined, accountOverride extends `0x${string}` | Account | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<ViemChain, Account, chainOverride_1, accountOverride, request>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<ViemChain, chainOverride_1>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<ViemChain, chainOverride_1> extends infer T_15 ? T_15 extends import("viem").DeriveChain<ViemChain, chainOverride_1> ? T_15 extends ViemChain ? {
|
|
129
|
+
chain: T_15;
|
|
67
130
|
} : {
|
|
68
131
|
chain?: undefined;
|
|
69
|
-
} : never : never) & (import("viem").DeriveAccount<Account, accountOverride> extends infer
|
|
70
|
-
account:
|
|
132
|
+
} : never : never) & (import("viem").DeriveAccount<Account, accountOverride> extends infer T_16 ? T_16 extends import("viem").DeriveAccount<Account, accountOverride> ? T_16 extends Account ? {
|
|
133
|
+
account: T_16;
|
|
71
134
|
from: `0x${string}`;
|
|
72
135
|
} : {
|
|
73
136
|
account?: undefined;
|
|
@@ -106,9 +169,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
106
169
|
maxFeePerGas?: undefined;
|
|
107
170
|
maxPriorityFeePerGas?: undefined;
|
|
108
171
|
} & {
|
|
109
|
-
accessList: import("viem").AccessList | undefined;
|
|
110
|
-
* Gets the balance for an address
|
|
111
|
-
*/
|
|
172
|
+
accessList: import("viem").AccessList | undefined;
|
|
112
173
|
} ? "eip2930" : never) | (request extends ({
|
|
113
174
|
accessList?: import("viem").AccessList | undefined;
|
|
114
175
|
authorizationList?: undefined;
|
|
@@ -189,9 +250,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
189
250
|
maxFeePerGas?: undefined;
|
|
190
251
|
maxPriorityFeePerGas?: undefined;
|
|
191
252
|
} & {
|
|
192
|
-
accessList: import("viem").AccessList | undefined;
|
|
193
|
-
* Gets the balance for an address
|
|
194
|
-
*/
|
|
253
|
+
accessList: import("viem").AccessList | undefined;
|
|
195
254
|
} ? "eip2930" : never) | (request extends ({
|
|
196
255
|
accessList?: import("viem").AccessList | undefined;
|
|
197
256
|
authorizationList?: undefined;
|
|
@@ -238,7 +297,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
238
297
|
sidecars?: undefined;
|
|
239
298
|
}) & {
|
|
240
299
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
241
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
300
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_17 ? T_17 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
242
301
|
accessList?: undefined;
|
|
243
302
|
authorizationList?: undefined;
|
|
244
303
|
blobs?: undefined;
|
|
@@ -272,9 +331,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
272
331
|
maxFeePerGas?: undefined;
|
|
273
332
|
maxPriorityFeePerGas?: undefined;
|
|
274
333
|
} & {
|
|
275
|
-
accessList: import("viem").AccessList | undefined;
|
|
276
|
-
* Gets the balance for an address
|
|
277
|
-
*/
|
|
334
|
+
accessList: import("viem").AccessList | undefined;
|
|
278
335
|
} ? "eip2930" : never) | (request extends ({
|
|
279
336
|
accessList?: import("viem").AccessList | undefined;
|
|
280
337
|
authorizationList?: undefined;
|
|
@@ -355,9 +412,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
355
412
|
maxFeePerGas?: undefined;
|
|
356
413
|
maxPriorityFeePerGas?: undefined;
|
|
357
414
|
} & {
|
|
358
|
-
accessList: import("viem").AccessList | undefined;
|
|
359
|
-
* Gets the balance for an address
|
|
360
|
-
*/
|
|
415
|
+
accessList: import("viem").AccessList | undefined;
|
|
361
416
|
} ? "eip2930" : never) | (request extends ({
|
|
362
417
|
accessList?: import("viem").AccessList | undefined;
|
|
363
418
|
authorizationList?: undefined;
|
|
@@ -404,7 +459,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
404
459
|
sidecars?: undefined;
|
|
405
460
|
}) & {
|
|
406
461
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
407
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
462
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_17 extends "legacy" ? import("viem").TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
408
463
|
accessList?: undefined;
|
|
409
464
|
authorizationList?: undefined;
|
|
410
465
|
blobs?: undefined;
|
|
@@ -438,9 +493,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
438
493
|
maxFeePerGas?: undefined;
|
|
439
494
|
maxPriorityFeePerGas?: undefined;
|
|
440
495
|
} & {
|
|
441
|
-
accessList: import("viem").AccessList | undefined;
|
|
442
|
-
* Gets the balance for an address
|
|
443
|
-
*/
|
|
496
|
+
accessList: import("viem").AccessList | undefined;
|
|
444
497
|
} ? "eip2930" : never) | (request extends ({
|
|
445
498
|
accessList?: import("viem").AccessList | undefined;
|
|
446
499
|
authorizationList?: undefined;
|
|
@@ -521,9 +574,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
521
574
|
maxFeePerGas?: undefined;
|
|
522
575
|
maxPriorityFeePerGas?: undefined;
|
|
523
576
|
} & {
|
|
524
|
-
accessList: import("viem").AccessList | undefined;
|
|
525
|
-
* Gets the balance for an address
|
|
526
|
-
*/
|
|
577
|
+
accessList: import("viem").AccessList | undefined;
|
|
527
578
|
} ? "eip2930" : never) | (request extends ({
|
|
528
579
|
accessList?: import("viem").AccessList | undefined;
|
|
529
580
|
authorizationList?: undefined;
|
|
@@ -570,7 +621,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
570
621
|
sidecars?: undefined;
|
|
571
622
|
}) & {
|
|
572
623
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
573
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
624
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_18 ? T_18 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
574
625
|
accessList?: undefined;
|
|
575
626
|
authorizationList?: undefined;
|
|
576
627
|
blobs?: undefined;
|
|
@@ -604,9 +655,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
604
655
|
maxFeePerGas?: undefined;
|
|
605
656
|
maxPriorityFeePerGas?: undefined;
|
|
606
657
|
} & {
|
|
607
|
-
accessList: import("viem").AccessList | undefined;
|
|
608
|
-
* Gets the balance for an address
|
|
609
|
-
*/
|
|
658
|
+
accessList: import("viem").AccessList | undefined;
|
|
610
659
|
} ? "eip2930" : never) | (request extends ({
|
|
611
660
|
accessList?: import("viem").AccessList | undefined;
|
|
612
661
|
authorizationList?: undefined;
|
|
@@ -687,9 +736,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
687
736
|
maxFeePerGas?: undefined;
|
|
688
737
|
maxPriorityFeePerGas?: undefined;
|
|
689
738
|
} & {
|
|
690
|
-
accessList: import("viem").AccessList | undefined;
|
|
691
|
-
* Gets the balance for an address
|
|
692
|
-
*/
|
|
739
|
+
accessList: import("viem").AccessList | undefined;
|
|
693
740
|
} ? "eip2930" : never) | (request extends ({
|
|
694
741
|
accessList?: import("viem").AccessList | undefined;
|
|
695
742
|
authorizationList?: undefined;
|
|
@@ -736,7 +783,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
736
783
|
sidecars?: undefined;
|
|
737
784
|
}) & {
|
|
738
785
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
739
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
786
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_18 extends "eip1559" ? import("viem").TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
740
787
|
accessList?: undefined;
|
|
741
788
|
authorizationList?: undefined;
|
|
742
789
|
blobs?: undefined;
|
|
@@ -770,9 +817,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
770
817
|
maxFeePerGas?: undefined;
|
|
771
818
|
maxPriorityFeePerGas?: undefined;
|
|
772
819
|
} & {
|
|
773
|
-
accessList: import("viem").AccessList | undefined;
|
|
774
|
-
* Gets the balance for an address
|
|
775
|
-
*/
|
|
820
|
+
accessList: import("viem").AccessList | undefined;
|
|
776
821
|
} ? "eip2930" : never) | (request extends ({
|
|
777
822
|
accessList?: import("viem").AccessList | undefined;
|
|
778
823
|
authorizationList?: undefined;
|
|
@@ -853,9 +898,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
853
898
|
maxFeePerGas?: undefined;
|
|
854
899
|
maxPriorityFeePerGas?: undefined;
|
|
855
900
|
} & {
|
|
856
|
-
accessList: import("viem").AccessList | undefined;
|
|
857
|
-
* Gets the balance for an address
|
|
858
|
-
*/
|
|
901
|
+
accessList: import("viem").AccessList | undefined;
|
|
859
902
|
} ? "eip2930" : never) | (request extends ({
|
|
860
903
|
accessList?: import("viem").AccessList | undefined;
|
|
861
904
|
authorizationList?: undefined;
|
|
@@ -902,7 +945,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
902
945
|
sidecars?: undefined;
|
|
903
946
|
}) & {
|
|
904
947
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
905
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
948
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_19 ? T_19 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
906
949
|
accessList?: undefined;
|
|
907
950
|
authorizationList?: undefined;
|
|
908
951
|
blobs?: undefined;
|
|
@@ -936,9 +979,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
936
979
|
maxFeePerGas?: undefined;
|
|
937
980
|
maxPriorityFeePerGas?: undefined;
|
|
938
981
|
} & {
|
|
939
|
-
accessList: import("viem").AccessList | undefined;
|
|
940
|
-
* Gets the balance for an address
|
|
941
|
-
*/
|
|
982
|
+
accessList: import("viem").AccessList | undefined;
|
|
942
983
|
} ? "eip2930" : never) | (request extends ({
|
|
943
984
|
accessList?: import("viem").AccessList | undefined;
|
|
944
985
|
authorizationList?: undefined;
|
|
@@ -1019,9 +1060,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1019
1060
|
maxFeePerGas?: undefined;
|
|
1020
1061
|
maxPriorityFeePerGas?: undefined;
|
|
1021
1062
|
} & {
|
|
1022
|
-
accessList: import("viem").AccessList | undefined;
|
|
1023
|
-
* Gets the balance for an address
|
|
1024
|
-
*/
|
|
1063
|
+
accessList: import("viem").AccessList | undefined;
|
|
1025
1064
|
} ? "eip2930" : never) | (request extends ({
|
|
1026
1065
|
accessList?: import("viem").AccessList | undefined;
|
|
1027
1066
|
authorizationList?: undefined;
|
|
@@ -1068,7 +1107,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1068
1107
|
sidecars?: undefined;
|
|
1069
1108
|
}) & {
|
|
1070
1109
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
1071
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
1110
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_19 extends "eip2930" ? import("viem").TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
1072
1111
|
accessList?: undefined;
|
|
1073
1112
|
authorizationList?: undefined;
|
|
1074
1113
|
blobs?: undefined;
|
|
@@ -1102,9 +1141,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1102
1141
|
maxFeePerGas?: undefined;
|
|
1103
1142
|
maxPriorityFeePerGas?: undefined;
|
|
1104
1143
|
} & {
|
|
1105
|
-
accessList: import("viem").AccessList | undefined;
|
|
1106
|
-
* Gets the balance for an address
|
|
1107
|
-
*/
|
|
1144
|
+
accessList: import("viem").AccessList | undefined;
|
|
1108
1145
|
} ? "eip2930" : never) | (request extends ({
|
|
1109
1146
|
accessList?: import("viem").AccessList | undefined;
|
|
1110
1147
|
authorizationList?: undefined;
|
|
@@ -1185,9 +1222,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1185
1222
|
maxFeePerGas?: undefined;
|
|
1186
1223
|
maxPriorityFeePerGas?: undefined;
|
|
1187
1224
|
} & {
|
|
1188
|
-
accessList: import("viem").AccessList | undefined;
|
|
1189
|
-
* Gets the balance for an address
|
|
1190
|
-
*/
|
|
1225
|
+
accessList: import("viem").AccessList | undefined;
|
|
1191
1226
|
} ? "eip2930" : never) | (request extends ({
|
|
1192
1227
|
accessList?: import("viem").AccessList | undefined;
|
|
1193
1228
|
authorizationList?: undefined;
|
|
@@ -1234,7 +1269,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1234
1269
|
sidecars?: undefined;
|
|
1235
1270
|
}) & {
|
|
1236
1271
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
1237
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
1272
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_20 ? T_20 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
1238
1273
|
accessList?: undefined;
|
|
1239
1274
|
authorizationList?: undefined;
|
|
1240
1275
|
blobs?: undefined;
|
|
@@ -1268,9 +1303,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1268
1303
|
maxFeePerGas?: undefined;
|
|
1269
1304
|
maxPriorityFeePerGas?: undefined;
|
|
1270
1305
|
} & {
|
|
1271
|
-
accessList: import("viem").AccessList | undefined;
|
|
1272
|
-
* Gets the balance for an address
|
|
1273
|
-
*/
|
|
1306
|
+
accessList: import("viem").AccessList | undefined;
|
|
1274
1307
|
} ? "eip2930" : never) | (request extends ({
|
|
1275
1308
|
accessList?: import("viem").AccessList | undefined;
|
|
1276
1309
|
authorizationList?: undefined;
|
|
@@ -1351,9 +1384,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1351
1384
|
maxFeePerGas?: undefined;
|
|
1352
1385
|
maxPriorityFeePerGas?: undefined;
|
|
1353
1386
|
} & {
|
|
1354
|
-
accessList: import("viem").AccessList | undefined;
|
|
1355
|
-
* Gets the balance for an address
|
|
1356
|
-
*/
|
|
1387
|
+
accessList: import("viem").AccessList | undefined;
|
|
1357
1388
|
} ? "eip2930" : never) | (request extends ({
|
|
1358
1389
|
accessList?: import("viem").AccessList | undefined;
|
|
1359
1390
|
authorizationList?: undefined;
|
|
@@ -1400,7 +1431,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1400
1431
|
sidecars?: undefined;
|
|
1401
1432
|
}) & {
|
|
1402
1433
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
1403
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
1434
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_20 extends "eip4844" ? import("viem").TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
1404
1435
|
accessList?: undefined;
|
|
1405
1436
|
authorizationList?: undefined;
|
|
1406
1437
|
blobs?: undefined;
|
|
@@ -1434,9 +1465,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1434
1465
|
maxFeePerGas?: undefined;
|
|
1435
1466
|
maxPriorityFeePerGas?: undefined;
|
|
1436
1467
|
} & {
|
|
1437
|
-
accessList: import("viem").AccessList | undefined;
|
|
1438
|
-
* Gets the balance for an address
|
|
1439
|
-
*/
|
|
1468
|
+
accessList: import("viem").AccessList | undefined;
|
|
1440
1469
|
} ? "eip2930" : never) | (request extends ({
|
|
1441
1470
|
accessList?: import("viem").AccessList | undefined;
|
|
1442
1471
|
authorizationList?: undefined;
|
|
@@ -1517,9 +1546,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1517
1546
|
maxFeePerGas?: undefined;
|
|
1518
1547
|
maxPriorityFeePerGas?: undefined;
|
|
1519
1548
|
} & {
|
|
1520
|
-
accessList: import("viem").AccessList | undefined;
|
|
1521
|
-
* Gets the balance for an address
|
|
1522
|
-
*/
|
|
1549
|
+
accessList: import("viem").AccessList | undefined;
|
|
1523
1550
|
} ? "eip2930" : never) | (request extends ({
|
|
1524
1551
|
accessList?: import("viem").AccessList | undefined;
|
|
1525
1552
|
authorizationList?: undefined;
|
|
@@ -1566,7 +1593,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1566
1593
|
sidecars?: undefined;
|
|
1567
1594
|
}) & {
|
|
1568
1595
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
1569
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
1596
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_21 ? T_21 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
1570
1597
|
accessList?: undefined;
|
|
1571
1598
|
authorizationList?: undefined;
|
|
1572
1599
|
blobs?: undefined;
|
|
@@ -1600,9 +1627,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1600
1627
|
maxFeePerGas?: undefined;
|
|
1601
1628
|
maxPriorityFeePerGas?: undefined;
|
|
1602
1629
|
} & {
|
|
1603
|
-
accessList: import("viem").AccessList | undefined;
|
|
1604
|
-
* Gets the balance for an address
|
|
1605
|
-
*/
|
|
1630
|
+
accessList: import("viem").AccessList | undefined;
|
|
1606
1631
|
} ? "eip2930" : never) | (request extends ({
|
|
1607
1632
|
accessList?: import("viem").AccessList | undefined;
|
|
1608
1633
|
authorizationList?: undefined;
|
|
@@ -1683,9 +1708,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1683
1708
|
maxFeePerGas?: undefined;
|
|
1684
1709
|
maxPriorityFeePerGas?: undefined;
|
|
1685
1710
|
} & {
|
|
1686
|
-
accessList: import("viem").AccessList | undefined;
|
|
1687
|
-
* Gets the balance for an address
|
|
1688
|
-
*/
|
|
1711
|
+
accessList: import("viem").AccessList | undefined;
|
|
1689
1712
|
} ? "eip2930" : never) | (request extends ({
|
|
1690
1713
|
accessList?: import("viem").AccessList | undefined;
|
|
1691
1714
|
authorizationList?: undefined;
|
|
@@ -1732,7 +1755,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1732
1755
|
sidecars?: undefined;
|
|
1733
1756
|
}) & {
|
|
1734
1757
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
1735
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
1758
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_21 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)> extends true ? unknown : import("viem").ExactPartial<((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
1736
1759
|
accessList?: undefined;
|
|
1737
1760
|
authorizationList?: undefined;
|
|
1738
1761
|
blobs?: undefined;
|
|
@@ -1766,9 +1789,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1766
1789
|
maxFeePerGas?: undefined;
|
|
1767
1790
|
maxPriorityFeePerGas?: undefined;
|
|
1768
1791
|
} & {
|
|
1769
|
-
accessList: import("viem").AccessList | undefined;
|
|
1770
|
-
* Gets the balance for an address
|
|
1771
|
-
*/
|
|
1792
|
+
accessList: import("viem").AccessList | undefined;
|
|
1772
1793
|
} ? "eip2930" : never) | (request extends ({
|
|
1773
1794
|
accessList?: import("viem").AccessList | undefined;
|
|
1774
1795
|
authorizationList?: undefined;
|
|
@@ -1849,9 +1870,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1849
1870
|
maxFeePerGas?: undefined;
|
|
1850
1871
|
maxPriorityFeePerGas?: undefined;
|
|
1851
1872
|
} & {
|
|
1852
|
-
accessList: import("viem").AccessList | undefined;
|
|
1853
|
-
* Gets the balance for an address
|
|
1854
|
-
*/
|
|
1873
|
+
accessList: import("viem").AccessList | undefined;
|
|
1855
1874
|
} ? "eip2930" : never) | (request extends ({
|
|
1856
1875
|
accessList?: import("viem").AccessList | undefined;
|
|
1857
1876
|
authorizationList?: undefined;
|
|
@@ -1898,7 +1917,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1898
1917
|
sidecars?: undefined;
|
|
1899
1918
|
}) & {
|
|
1900
1919
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
1901
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
1920
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_22 ? T_22 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
1902
1921
|
accessList?: undefined;
|
|
1903
1922
|
authorizationList?: undefined;
|
|
1904
1923
|
blobs?: undefined;
|
|
@@ -1932,9 +1951,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
1932
1951
|
maxFeePerGas?: undefined;
|
|
1933
1952
|
maxPriorityFeePerGas?: undefined;
|
|
1934
1953
|
} & {
|
|
1935
|
-
accessList: import("viem").AccessList | undefined;
|
|
1936
|
-
* Gets the balance for an address
|
|
1937
|
-
*/
|
|
1954
|
+
accessList: import("viem").AccessList | undefined;
|
|
1938
1955
|
} ? "eip2930" : never) | (request extends ({
|
|
1939
1956
|
accessList?: import("viem").AccessList | undefined;
|
|
1940
1957
|
authorizationList?: undefined;
|
|
@@ -2015,9 +2032,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2015
2032
|
maxFeePerGas?: undefined;
|
|
2016
2033
|
maxPriorityFeePerGas?: undefined;
|
|
2017
2034
|
} & {
|
|
2018
|
-
accessList: import("viem").AccessList | undefined;
|
|
2019
|
-
* Gets the balance for an address
|
|
2020
|
-
*/
|
|
2035
|
+
accessList: import("viem").AccessList | undefined;
|
|
2021
2036
|
} ? "eip2930" : never) | (request extends ({
|
|
2022
2037
|
accessList?: import("viem").AccessList | undefined;
|
|
2023
2038
|
authorizationList?: undefined;
|
|
@@ -2064,7 +2079,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2064
2079
|
sidecars?: undefined;
|
|
2065
2080
|
}) & {
|
|
2066
2081
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
2067
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
2082
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_22 extends "legacy" ? import("viem").TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
2068
2083
|
accessList?: undefined;
|
|
2069
2084
|
authorizationList?: undefined;
|
|
2070
2085
|
blobs?: undefined;
|
|
@@ -2098,9 +2113,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2098
2113
|
maxFeePerGas?: undefined;
|
|
2099
2114
|
maxPriorityFeePerGas?: undefined;
|
|
2100
2115
|
} & {
|
|
2101
|
-
accessList: import("viem").AccessList | undefined;
|
|
2102
|
-
* Gets the balance for an address
|
|
2103
|
-
*/
|
|
2116
|
+
accessList: import("viem").AccessList | undefined;
|
|
2104
2117
|
} ? "eip2930" : never) | (request extends ({
|
|
2105
2118
|
accessList?: import("viem").AccessList | undefined;
|
|
2106
2119
|
authorizationList?: undefined;
|
|
@@ -2181,9 +2194,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2181
2194
|
maxFeePerGas?: undefined;
|
|
2182
2195
|
maxPriorityFeePerGas?: undefined;
|
|
2183
2196
|
} & {
|
|
2184
|
-
accessList: import("viem").AccessList | undefined;
|
|
2185
|
-
* Gets the balance for an address
|
|
2186
|
-
*/
|
|
2197
|
+
accessList: import("viem").AccessList | undefined;
|
|
2187
2198
|
} ? "eip2930" : never) | (request extends ({
|
|
2188
2199
|
accessList?: import("viem").AccessList | undefined;
|
|
2189
2200
|
authorizationList?: undefined;
|
|
@@ -2230,7 +2241,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2230
2241
|
sidecars?: undefined;
|
|
2231
2242
|
}) & {
|
|
2232
2243
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
2233
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
2244
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_23 ? T_23 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
2234
2245
|
accessList?: undefined;
|
|
2235
2246
|
authorizationList?: undefined;
|
|
2236
2247
|
blobs?: undefined;
|
|
@@ -2264,9 +2275,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2264
2275
|
maxFeePerGas?: undefined;
|
|
2265
2276
|
maxPriorityFeePerGas?: undefined;
|
|
2266
2277
|
} & {
|
|
2267
|
-
accessList: import("viem").AccessList | undefined;
|
|
2268
|
-
* Gets the balance for an address
|
|
2269
|
-
*/
|
|
2278
|
+
accessList: import("viem").AccessList | undefined;
|
|
2270
2279
|
} ? "eip2930" : never) | (request extends ({
|
|
2271
2280
|
accessList?: import("viem").AccessList | undefined;
|
|
2272
2281
|
authorizationList?: undefined;
|
|
@@ -2347,9 +2356,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2347
2356
|
maxFeePerGas?: undefined;
|
|
2348
2357
|
maxPriorityFeePerGas?: undefined;
|
|
2349
2358
|
} & {
|
|
2350
|
-
accessList: import("viem").AccessList | undefined;
|
|
2351
|
-
* Gets the balance for an address
|
|
2352
|
-
*/
|
|
2359
|
+
accessList: import("viem").AccessList | undefined;
|
|
2353
2360
|
} ? "eip2930" : never) | (request extends ({
|
|
2354
2361
|
accessList?: import("viem").AccessList | undefined;
|
|
2355
2362
|
authorizationList?: undefined;
|
|
@@ -2396,7 +2403,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2396
2403
|
sidecars?: undefined;
|
|
2397
2404
|
}) & {
|
|
2398
2405
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
2399
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
2406
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_23 extends "eip1559" ? import("viem").TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
2400
2407
|
accessList?: undefined;
|
|
2401
2408
|
authorizationList?: undefined;
|
|
2402
2409
|
blobs?: undefined;
|
|
@@ -2430,9 +2437,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2430
2437
|
maxFeePerGas?: undefined;
|
|
2431
2438
|
maxPriorityFeePerGas?: undefined;
|
|
2432
2439
|
} & {
|
|
2433
|
-
accessList: import("viem").AccessList | undefined;
|
|
2434
|
-
* Gets the balance for an address
|
|
2435
|
-
*/
|
|
2440
|
+
accessList: import("viem").AccessList | undefined;
|
|
2436
2441
|
} ? "eip2930" : never) | (request extends ({
|
|
2437
2442
|
accessList?: import("viem").AccessList | undefined;
|
|
2438
2443
|
authorizationList?: undefined;
|
|
@@ -2513,9 +2518,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2513
2518
|
maxFeePerGas?: undefined;
|
|
2514
2519
|
maxPriorityFeePerGas?: undefined;
|
|
2515
2520
|
} & {
|
|
2516
|
-
accessList: import("viem").AccessList | undefined;
|
|
2517
|
-
* Gets the balance for an address
|
|
2518
|
-
*/
|
|
2521
|
+
accessList: import("viem").AccessList | undefined;
|
|
2519
2522
|
} ? "eip2930" : never) | (request extends ({
|
|
2520
2523
|
accessList?: import("viem").AccessList | undefined;
|
|
2521
2524
|
authorizationList?: undefined;
|
|
@@ -2562,7 +2565,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2562
2565
|
sidecars?: undefined;
|
|
2563
2566
|
}) & {
|
|
2564
2567
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
2565
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
2568
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_24 ? T_24 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
2566
2569
|
accessList?: undefined;
|
|
2567
2570
|
authorizationList?: undefined;
|
|
2568
2571
|
blobs?: undefined;
|
|
@@ -2596,9 +2599,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2596
2599
|
maxFeePerGas?: undefined;
|
|
2597
2600
|
maxPriorityFeePerGas?: undefined;
|
|
2598
2601
|
} & {
|
|
2599
|
-
accessList: import("viem").AccessList | undefined;
|
|
2600
|
-
* Gets the balance for an address
|
|
2601
|
-
*/
|
|
2602
|
+
accessList: import("viem").AccessList | undefined;
|
|
2602
2603
|
} ? "eip2930" : never) | (request extends ({
|
|
2603
2604
|
accessList?: import("viem").AccessList | undefined;
|
|
2604
2605
|
authorizationList?: undefined;
|
|
@@ -2679,9 +2680,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2679
2680
|
maxFeePerGas?: undefined;
|
|
2680
2681
|
maxPriorityFeePerGas?: undefined;
|
|
2681
2682
|
} & {
|
|
2682
|
-
accessList: import("viem").AccessList | undefined;
|
|
2683
|
-
* Gets the balance for an address
|
|
2684
|
-
*/
|
|
2683
|
+
accessList: import("viem").AccessList | undefined;
|
|
2685
2684
|
} ? "eip2930" : never) | (request extends ({
|
|
2686
2685
|
accessList?: import("viem").AccessList | undefined;
|
|
2687
2686
|
authorizationList?: undefined;
|
|
@@ -2728,7 +2727,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2728
2727
|
sidecars?: undefined;
|
|
2729
2728
|
}) & {
|
|
2730
2729
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
2731
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
2730
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_24 extends "eip2930" ? import("viem").TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
2732
2731
|
accessList?: undefined;
|
|
2733
2732
|
authorizationList?: undefined;
|
|
2734
2733
|
blobs?: undefined;
|
|
@@ -2762,9 +2761,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2762
2761
|
maxFeePerGas?: undefined;
|
|
2763
2762
|
maxPriorityFeePerGas?: undefined;
|
|
2764
2763
|
} & {
|
|
2765
|
-
accessList: import("viem").AccessList | undefined;
|
|
2766
|
-
* Gets the balance for an address
|
|
2767
|
-
*/
|
|
2764
|
+
accessList: import("viem").AccessList | undefined;
|
|
2768
2765
|
} ? "eip2930" : never) | (request extends ({
|
|
2769
2766
|
accessList?: import("viem").AccessList | undefined;
|
|
2770
2767
|
authorizationList?: undefined;
|
|
@@ -2845,9 +2842,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2845
2842
|
maxFeePerGas?: undefined;
|
|
2846
2843
|
maxPriorityFeePerGas?: undefined;
|
|
2847
2844
|
} & {
|
|
2848
|
-
accessList: import("viem").AccessList | undefined;
|
|
2849
|
-
* Gets the balance for an address
|
|
2850
|
-
*/
|
|
2845
|
+
accessList: import("viem").AccessList | undefined;
|
|
2851
2846
|
} ? "eip2930" : never) | (request extends ({
|
|
2852
2847
|
accessList?: import("viem").AccessList | undefined;
|
|
2853
2848
|
authorizationList?: undefined;
|
|
@@ -2894,7 +2889,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2894
2889
|
sidecars?: undefined;
|
|
2895
2890
|
}) & {
|
|
2896
2891
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
2897
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
2892
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_25 ? T_25 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
2898
2893
|
accessList?: undefined;
|
|
2899
2894
|
authorizationList?: undefined;
|
|
2900
2895
|
blobs?: undefined;
|
|
@@ -2928,9 +2923,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
2928
2923
|
maxFeePerGas?: undefined;
|
|
2929
2924
|
maxPriorityFeePerGas?: undefined;
|
|
2930
2925
|
} & {
|
|
2931
|
-
accessList: import("viem").AccessList | undefined;
|
|
2932
|
-
* Gets the balance for an address
|
|
2933
|
-
*/
|
|
2926
|
+
accessList: import("viem").AccessList | undefined;
|
|
2934
2927
|
} ? "eip2930" : never) | (request extends ({
|
|
2935
2928
|
accessList?: import("viem").AccessList | undefined;
|
|
2936
2929
|
authorizationList?: undefined;
|
|
@@ -3011,9 +3004,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3011
3004
|
maxFeePerGas?: undefined;
|
|
3012
3005
|
maxPriorityFeePerGas?: undefined;
|
|
3013
3006
|
} & {
|
|
3014
|
-
accessList: import("viem").AccessList | undefined;
|
|
3015
|
-
* Gets the balance for an address
|
|
3016
|
-
*/
|
|
3007
|
+
accessList: import("viem").AccessList | undefined;
|
|
3017
3008
|
} ? "eip2930" : never) | (request extends ({
|
|
3018
3009
|
accessList?: import("viem").AccessList | undefined;
|
|
3019
3010
|
authorizationList?: undefined;
|
|
@@ -3060,7 +3051,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3060
3051
|
sidecars?: undefined;
|
|
3061
3052
|
}) & {
|
|
3062
3053
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
3063
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
3054
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip4844" ? import("viem").TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
3064
3055
|
accessList?: undefined;
|
|
3065
3056
|
authorizationList?: undefined;
|
|
3066
3057
|
blobs?: undefined;
|
|
@@ -3094,9 +3085,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3094
3085
|
maxFeePerGas?: undefined;
|
|
3095
3086
|
maxPriorityFeePerGas?: undefined;
|
|
3096
3087
|
} & {
|
|
3097
|
-
accessList: import("viem").AccessList | undefined;
|
|
3098
|
-
* Gets the balance for an address
|
|
3099
|
-
*/
|
|
3088
|
+
accessList: import("viem").AccessList | undefined;
|
|
3100
3089
|
} ? "eip2930" : never) | (request extends ({
|
|
3101
3090
|
accessList?: import("viem").AccessList | undefined;
|
|
3102
3091
|
authorizationList?: undefined;
|
|
@@ -3177,9 +3166,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3177
3166
|
maxFeePerGas?: undefined;
|
|
3178
3167
|
maxPriorityFeePerGas?: undefined;
|
|
3179
3168
|
} & {
|
|
3180
|
-
accessList: import("viem").AccessList | undefined;
|
|
3181
|
-
* Gets the balance for an address
|
|
3182
|
-
*/
|
|
3169
|
+
accessList: import("viem").AccessList | undefined;
|
|
3183
3170
|
} ? "eip2930" : never) | (request extends ({
|
|
3184
3171
|
accessList?: import("viem").AccessList | undefined;
|
|
3185
3172
|
authorizationList?: undefined;
|
|
@@ -3226,7 +3213,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3226
3213
|
sidecars?: undefined;
|
|
3227
3214
|
}) & {
|
|
3228
3215
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
3229
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
3216
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_26 ? T_26 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
3230
3217
|
accessList?: undefined;
|
|
3231
3218
|
authorizationList?: undefined;
|
|
3232
3219
|
blobs?: undefined;
|
|
@@ -3260,9 +3247,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3260
3247
|
maxFeePerGas?: undefined;
|
|
3261
3248
|
maxPriorityFeePerGas?: undefined;
|
|
3262
3249
|
} & {
|
|
3263
|
-
accessList: import("viem").AccessList | undefined;
|
|
3264
|
-
* Gets the balance for an address
|
|
3265
|
-
*/
|
|
3250
|
+
accessList: import("viem").AccessList | undefined;
|
|
3266
3251
|
} ? "eip2930" : never) | (request extends ({
|
|
3267
3252
|
accessList?: import("viem").AccessList | undefined;
|
|
3268
3253
|
authorizationList?: undefined;
|
|
@@ -3343,9 +3328,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3343
3328
|
maxFeePerGas?: undefined;
|
|
3344
3329
|
maxPriorityFeePerGas?: undefined;
|
|
3345
3330
|
} & {
|
|
3346
|
-
accessList: import("viem").AccessList | undefined;
|
|
3347
|
-
* Gets the balance for an address
|
|
3348
|
-
*/
|
|
3331
|
+
accessList: import("viem").AccessList | undefined;
|
|
3349
3332
|
} ? "eip2930" : never) | (request extends ({
|
|
3350
3333
|
accessList?: import("viem").AccessList | undefined;
|
|
3351
3334
|
authorizationList?: undefined;
|
|
@@ -3392,14 +3375,14 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3392
3375
|
sidecars?: undefined;
|
|
3393
3376
|
}) & {
|
|
3394
3377
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
3395
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
3378
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_26 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
3396
3379
|
chainId?: number | undefined;
|
|
3397
|
-
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") extends infer
|
|
3398
|
-
chain:
|
|
3380
|
+
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") extends infer T_27 ? T_27 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") ? T_27 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_27 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T_1 ? { [K_1 in keyof T_1]: (import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<ViemChain, chainOverride_1>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<ViemChain, chainOverride_1> extends infer T_2 ? T_2 extends import("viem").DeriveChain<ViemChain, chainOverride_1> ? T_2 extends ViemChain ? {
|
|
3381
|
+
chain: T_2;
|
|
3399
3382
|
} : {
|
|
3400
3383
|
chain?: undefined;
|
|
3401
|
-
} : never : never) & (import("viem").DeriveAccount<Account, accountOverride> extends infer
|
|
3402
|
-
account:
|
|
3384
|
+
} : never : never) & (import("viem").DeriveAccount<Account, accountOverride> extends infer T_3 ? T_3 extends import("viem").DeriveAccount<Account, accountOverride> ? T_3 extends Account ? {
|
|
3385
|
+
account: T_3;
|
|
3403
3386
|
from: `0x${string}`;
|
|
3404
3387
|
} : {
|
|
3405
3388
|
account?: undefined;
|
|
@@ -3438,9 +3421,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3438
3421
|
maxFeePerGas?: undefined;
|
|
3439
3422
|
maxPriorityFeePerGas?: undefined;
|
|
3440
3423
|
} & {
|
|
3441
|
-
accessList: import("viem").AccessList | undefined;
|
|
3442
|
-
* Gets the balance for an address
|
|
3443
|
-
*/
|
|
3424
|
+
accessList: import("viem").AccessList | undefined;
|
|
3444
3425
|
} ? "eip2930" : never) | (request extends ({
|
|
3445
3426
|
accessList?: import("viem").AccessList | undefined;
|
|
3446
3427
|
authorizationList?: undefined;
|
|
@@ -3521,9 +3502,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3521
3502
|
maxFeePerGas?: undefined;
|
|
3522
3503
|
maxPriorityFeePerGas?: undefined;
|
|
3523
3504
|
} & {
|
|
3524
|
-
accessList: import("viem").AccessList | undefined;
|
|
3525
|
-
* Gets the balance for an address
|
|
3526
|
-
*/
|
|
3505
|
+
accessList: import("viem").AccessList | undefined;
|
|
3527
3506
|
} ? "eip2930" : never) | (request extends ({
|
|
3528
3507
|
accessList?: import("viem").AccessList | undefined;
|
|
3529
3508
|
authorizationList?: undefined;
|
|
@@ -3570,7 +3549,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3570
3549
|
sidecars?: undefined;
|
|
3571
3550
|
}) & {
|
|
3572
3551
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
3573
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
3552
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_4 ? T_4 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
3574
3553
|
accessList?: undefined;
|
|
3575
3554
|
authorizationList?: undefined;
|
|
3576
3555
|
blobs?: undefined;
|
|
@@ -3604,9 +3583,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3604
3583
|
maxFeePerGas?: undefined;
|
|
3605
3584
|
maxPriorityFeePerGas?: undefined;
|
|
3606
3585
|
} & {
|
|
3607
|
-
accessList: import("viem").AccessList | undefined;
|
|
3608
|
-
* Gets the balance for an address
|
|
3609
|
-
*/
|
|
3586
|
+
accessList: import("viem").AccessList | undefined;
|
|
3610
3587
|
} ? "eip2930" : never) | (request extends ({
|
|
3611
3588
|
accessList?: import("viem").AccessList | undefined;
|
|
3612
3589
|
authorizationList?: undefined;
|
|
@@ -3687,9 +3664,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3687
3664
|
maxFeePerGas?: undefined;
|
|
3688
3665
|
maxPriorityFeePerGas?: undefined;
|
|
3689
3666
|
} & {
|
|
3690
|
-
accessList: import("viem").AccessList | undefined;
|
|
3691
|
-
* Gets the balance for an address
|
|
3692
|
-
*/
|
|
3667
|
+
accessList: import("viem").AccessList | undefined;
|
|
3693
3668
|
} ? "eip2930" : never) | (request extends ({
|
|
3694
3669
|
accessList?: import("viem").AccessList | undefined;
|
|
3695
3670
|
authorizationList?: undefined;
|
|
@@ -3736,7 +3711,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3736
3711
|
sidecars?: undefined;
|
|
3737
3712
|
}) & {
|
|
3738
3713
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
3739
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
3714
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_4 extends "legacy" ? import("viem").TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
3740
3715
|
accessList?: undefined;
|
|
3741
3716
|
authorizationList?: undefined;
|
|
3742
3717
|
blobs?: undefined;
|
|
@@ -3770,9 +3745,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3770
3745
|
maxFeePerGas?: undefined;
|
|
3771
3746
|
maxPriorityFeePerGas?: undefined;
|
|
3772
3747
|
} & {
|
|
3773
|
-
accessList: import("viem").AccessList | undefined;
|
|
3774
|
-
* Gets the balance for an address
|
|
3775
|
-
*/
|
|
3748
|
+
accessList: import("viem").AccessList | undefined;
|
|
3776
3749
|
} ? "eip2930" : never) | (request extends ({
|
|
3777
3750
|
accessList?: import("viem").AccessList | undefined;
|
|
3778
3751
|
authorizationList?: undefined;
|
|
@@ -3853,9 +3826,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3853
3826
|
maxFeePerGas?: undefined;
|
|
3854
3827
|
maxPriorityFeePerGas?: undefined;
|
|
3855
3828
|
} & {
|
|
3856
|
-
accessList: import("viem").AccessList | undefined;
|
|
3857
|
-
* Gets the balance for an address
|
|
3858
|
-
*/
|
|
3829
|
+
accessList: import("viem").AccessList | undefined;
|
|
3859
3830
|
} ? "eip2930" : never) | (request extends ({
|
|
3860
3831
|
accessList?: import("viem").AccessList | undefined;
|
|
3861
3832
|
authorizationList?: undefined;
|
|
@@ -3902,7 +3873,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3902
3873
|
sidecars?: undefined;
|
|
3903
3874
|
}) & {
|
|
3904
3875
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
3905
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
3876
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_5 ? T_5 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
3906
3877
|
accessList?: undefined;
|
|
3907
3878
|
authorizationList?: undefined;
|
|
3908
3879
|
blobs?: undefined;
|
|
@@ -3936,9 +3907,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
3936
3907
|
maxFeePerGas?: undefined;
|
|
3937
3908
|
maxPriorityFeePerGas?: undefined;
|
|
3938
3909
|
} & {
|
|
3939
|
-
accessList: import("viem").AccessList | undefined;
|
|
3940
|
-
* Gets the balance for an address
|
|
3941
|
-
*/
|
|
3910
|
+
accessList: import("viem").AccessList | undefined;
|
|
3942
3911
|
} ? "eip2930" : never) | (request extends ({
|
|
3943
3912
|
accessList?: import("viem").AccessList | undefined;
|
|
3944
3913
|
authorizationList?: undefined;
|
|
@@ -4019,9 +3988,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4019
3988
|
maxFeePerGas?: undefined;
|
|
4020
3989
|
maxPriorityFeePerGas?: undefined;
|
|
4021
3990
|
} & {
|
|
4022
|
-
accessList: import("viem").AccessList | undefined;
|
|
4023
|
-
* Gets the balance for an address
|
|
4024
|
-
*/
|
|
3991
|
+
accessList: import("viem").AccessList | undefined;
|
|
4025
3992
|
} ? "eip2930" : never) | (request extends ({
|
|
4026
3993
|
accessList?: import("viem").AccessList | undefined;
|
|
4027
3994
|
authorizationList?: undefined;
|
|
@@ -4068,7 +4035,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4068
4035
|
sidecars?: undefined;
|
|
4069
4036
|
}) & {
|
|
4070
4037
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
4071
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
4038
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_5 extends "eip1559" ? import("viem").TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
4072
4039
|
accessList?: undefined;
|
|
4073
4040
|
authorizationList?: undefined;
|
|
4074
4041
|
blobs?: undefined;
|
|
@@ -4102,9 +4069,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4102
4069
|
maxFeePerGas?: undefined;
|
|
4103
4070
|
maxPriorityFeePerGas?: undefined;
|
|
4104
4071
|
} & {
|
|
4105
|
-
accessList: import("viem").AccessList | undefined;
|
|
4106
|
-
* Gets the balance for an address
|
|
4107
|
-
*/
|
|
4072
|
+
accessList: import("viem").AccessList | undefined;
|
|
4108
4073
|
} ? "eip2930" : never) | (request extends ({
|
|
4109
4074
|
accessList?: import("viem").AccessList | undefined;
|
|
4110
4075
|
authorizationList?: undefined;
|
|
@@ -4185,9 +4150,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4185
4150
|
maxFeePerGas?: undefined;
|
|
4186
4151
|
maxPriorityFeePerGas?: undefined;
|
|
4187
4152
|
} & {
|
|
4188
|
-
accessList: import("viem").AccessList | undefined;
|
|
4189
|
-
* Gets the balance for an address
|
|
4190
|
-
*/
|
|
4153
|
+
accessList: import("viem").AccessList | undefined;
|
|
4191
4154
|
} ? "eip2930" : never) | (request extends ({
|
|
4192
4155
|
accessList?: import("viem").AccessList | undefined;
|
|
4193
4156
|
authorizationList?: undefined;
|
|
@@ -4234,7 +4197,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4234
4197
|
sidecars?: undefined;
|
|
4235
4198
|
}) & {
|
|
4236
4199
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
4237
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
4200
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_6 ? T_6 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
4238
4201
|
accessList?: undefined;
|
|
4239
4202
|
authorizationList?: undefined;
|
|
4240
4203
|
blobs?: undefined;
|
|
@@ -4268,9 +4231,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4268
4231
|
maxFeePerGas?: undefined;
|
|
4269
4232
|
maxPriorityFeePerGas?: undefined;
|
|
4270
4233
|
} & {
|
|
4271
|
-
accessList: import("viem").AccessList | undefined;
|
|
4272
|
-
* Gets the balance for an address
|
|
4273
|
-
*/
|
|
4234
|
+
accessList: import("viem").AccessList | undefined;
|
|
4274
4235
|
} ? "eip2930" : never) | (request extends ({
|
|
4275
4236
|
accessList?: import("viem").AccessList | undefined;
|
|
4276
4237
|
authorizationList?: undefined;
|
|
@@ -4351,9 +4312,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4351
4312
|
maxFeePerGas?: undefined;
|
|
4352
4313
|
maxPriorityFeePerGas?: undefined;
|
|
4353
4314
|
} & {
|
|
4354
|
-
accessList: import("viem").AccessList | undefined;
|
|
4355
|
-
* Gets the balance for an address
|
|
4356
|
-
*/
|
|
4315
|
+
accessList: import("viem").AccessList | undefined;
|
|
4357
4316
|
} ? "eip2930" : never) | (request extends ({
|
|
4358
4317
|
accessList?: import("viem").AccessList | undefined;
|
|
4359
4318
|
authorizationList?: undefined;
|
|
@@ -4400,7 +4359,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4400
4359
|
sidecars?: undefined;
|
|
4401
4360
|
}) & {
|
|
4402
4361
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
4403
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
4362
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_6 extends "eip2930" ? import("viem").TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
4404
4363
|
accessList?: undefined;
|
|
4405
4364
|
authorizationList?: undefined;
|
|
4406
4365
|
blobs?: undefined;
|
|
@@ -4434,9 +4393,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4434
4393
|
maxFeePerGas?: undefined;
|
|
4435
4394
|
maxPriorityFeePerGas?: undefined;
|
|
4436
4395
|
} & {
|
|
4437
|
-
accessList: import("viem").AccessList | undefined;
|
|
4438
|
-
* Gets the balance for an address
|
|
4439
|
-
*/
|
|
4396
|
+
accessList: import("viem").AccessList | undefined;
|
|
4440
4397
|
} ? "eip2930" : never) | (request extends ({
|
|
4441
4398
|
accessList?: import("viem").AccessList | undefined;
|
|
4442
4399
|
authorizationList?: undefined;
|
|
@@ -4517,9 +4474,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4517
4474
|
maxFeePerGas?: undefined;
|
|
4518
4475
|
maxPriorityFeePerGas?: undefined;
|
|
4519
4476
|
} & {
|
|
4520
|
-
accessList: import("viem").AccessList | undefined;
|
|
4521
|
-
* Gets the balance for an address
|
|
4522
|
-
*/
|
|
4477
|
+
accessList: import("viem").AccessList | undefined;
|
|
4523
4478
|
} ? "eip2930" : never) | (request extends ({
|
|
4524
4479
|
accessList?: import("viem").AccessList | undefined;
|
|
4525
4480
|
authorizationList?: undefined;
|
|
@@ -4566,7 +4521,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4566
4521
|
sidecars?: undefined;
|
|
4567
4522
|
}) & {
|
|
4568
4523
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
4569
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
4524
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_7 ? T_7 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
4570
4525
|
accessList?: undefined;
|
|
4571
4526
|
authorizationList?: undefined;
|
|
4572
4527
|
blobs?: undefined;
|
|
@@ -4600,9 +4555,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4600
4555
|
maxFeePerGas?: undefined;
|
|
4601
4556
|
maxPriorityFeePerGas?: undefined;
|
|
4602
4557
|
} & {
|
|
4603
|
-
accessList: import("viem").AccessList | undefined;
|
|
4604
|
-
* Gets the balance for an address
|
|
4605
|
-
*/
|
|
4558
|
+
accessList: import("viem").AccessList | undefined;
|
|
4606
4559
|
} ? "eip2930" : never) | (request extends ({
|
|
4607
4560
|
accessList?: import("viem").AccessList | undefined;
|
|
4608
4561
|
authorizationList?: undefined;
|
|
@@ -4683,9 +4636,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4683
4636
|
maxFeePerGas?: undefined;
|
|
4684
4637
|
maxPriorityFeePerGas?: undefined;
|
|
4685
4638
|
} & {
|
|
4686
|
-
accessList: import("viem").AccessList | undefined;
|
|
4687
|
-
* Gets the balance for an address
|
|
4688
|
-
*/
|
|
4639
|
+
accessList: import("viem").AccessList | undefined;
|
|
4689
4640
|
} ? "eip2930" : never) | (request extends ({
|
|
4690
4641
|
accessList?: import("viem").AccessList | undefined;
|
|
4691
4642
|
authorizationList?: undefined;
|
|
@@ -4732,7 +4683,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4732
4683
|
sidecars?: undefined;
|
|
4733
4684
|
}) & {
|
|
4734
4685
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
4735
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
4686
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_7 extends "eip4844" ? import("viem").TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
4736
4687
|
accessList?: undefined;
|
|
4737
4688
|
authorizationList?: undefined;
|
|
4738
4689
|
blobs?: undefined;
|
|
@@ -4766,9 +4717,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4766
4717
|
maxFeePerGas?: undefined;
|
|
4767
4718
|
maxPriorityFeePerGas?: undefined;
|
|
4768
4719
|
} & {
|
|
4769
|
-
accessList: import("viem").AccessList | undefined;
|
|
4770
|
-
* Gets the balance for an address
|
|
4771
|
-
*/
|
|
4720
|
+
accessList: import("viem").AccessList | undefined;
|
|
4772
4721
|
} ? "eip2930" : never) | (request extends ({
|
|
4773
4722
|
accessList?: import("viem").AccessList | undefined;
|
|
4774
4723
|
authorizationList?: undefined;
|
|
@@ -4849,9 +4798,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4849
4798
|
maxFeePerGas?: undefined;
|
|
4850
4799
|
maxPriorityFeePerGas?: undefined;
|
|
4851
4800
|
} & {
|
|
4852
|
-
accessList: import("viem").AccessList | undefined;
|
|
4853
|
-
* Gets the balance for an address
|
|
4854
|
-
*/
|
|
4801
|
+
accessList: import("viem").AccessList | undefined;
|
|
4855
4802
|
} ? "eip2930" : never) | (request extends ({
|
|
4856
4803
|
accessList?: import("viem").AccessList | undefined;
|
|
4857
4804
|
authorizationList?: undefined;
|
|
@@ -4898,7 +4845,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4898
4845
|
sidecars?: undefined;
|
|
4899
4846
|
}) & {
|
|
4900
4847
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
4901
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
4848
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_8 ? T_8 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
4902
4849
|
accessList?: undefined;
|
|
4903
4850
|
authorizationList?: undefined;
|
|
4904
4851
|
blobs?: undefined;
|
|
@@ -4932,9 +4879,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
4932
4879
|
maxFeePerGas?: undefined;
|
|
4933
4880
|
maxPriorityFeePerGas?: undefined;
|
|
4934
4881
|
} & {
|
|
4935
|
-
accessList: import("viem").AccessList | undefined;
|
|
4936
|
-
* Gets the balance for an address
|
|
4937
|
-
*/
|
|
4882
|
+
accessList: import("viem").AccessList | undefined;
|
|
4938
4883
|
} ? "eip2930" : never) | (request extends ({
|
|
4939
4884
|
accessList?: import("viem").AccessList | undefined;
|
|
4940
4885
|
authorizationList?: undefined;
|
|
@@ -5015,9 +4960,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5015
4960
|
maxFeePerGas?: undefined;
|
|
5016
4961
|
maxPriorityFeePerGas?: undefined;
|
|
5017
4962
|
} & {
|
|
5018
|
-
accessList: import("viem").AccessList | undefined;
|
|
5019
|
-
* Gets the balance for an address
|
|
5020
|
-
*/
|
|
4963
|
+
accessList: import("viem").AccessList | undefined;
|
|
5021
4964
|
} ? "eip2930" : never) | (request extends ({
|
|
5022
4965
|
accessList?: import("viem").AccessList | undefined;
|
|
5023
4966
|
authorizationList?: undefined;
|
|
@@ -5064,7 +5007,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5064
5007
|
sidecars?: undefined;
|
|
5065
5008
|
}) & {
|
|
5066
5009
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
5067
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
5010
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_8 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)> extends true ? unknown : import("viem").ExactPartial<((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
5068
5011
|
accessList?: undefined;
|
|
5069
5012
|
authorizationList?: undefined;
|
|
5070
5013
|
blobs?: undefined;
|
|
@@ -5098,9 +5041,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5098
5041
|
maxFeePerGas?: undefined;
|
|
5099
5042
|
maxPriorityFeePerGas?: undefined;
|
|
5100
5043
|
} & {
|
|
5101
|
-
accessList: import("viem").AccessList | undefined;
|
|
5102
|
-
* Gets the balance for an address
|
|
5103
|
-
*/
|
|
5044
|
+
accessList: import("viem").AccessList | undefined;
|
|
5104
5045
|
} ? "eip2930" : never) | (request extends ({
|
|
5105
5046
|
accessList?: import("viem").AccessList | undefined;
|
|
5106
5047
|
authorizationList?: undefined;
|
|
@@ -5181,9 +5122,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5181
5122
|
maxFeePerGas?: undefined;
|
|
5182
5123
|
maxPriorityFeePerGas?: undefined;
|
|
5183
5124
|
} & {
|
|
5184
|
-
accessList: import("viem").AccessList | undefined;
|
|
5185
|
-
* Gets the balance for an address
|
|
5186
|
-
*/
|
|
5125
|
+
accessList: import("viem").AccessList | undefined;
|
|
5187
5126
|
} ? "eip2930" : never) | (request extends ({
|
|
5188
5127
|
accessList?: import("viem").AccessList | undefined;
|
|
5189
5128
|
authorizationList?: undefined;
|
|
@@ -5230,7 +5169,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5230
5169
|
sidecars?: undefined;
|
|
5231
5170
|
}) & {
|
|
5232
5171
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
5233
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
5172
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_9 ? T_9 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
5234
5173
|
accessList?: undefined;
|
|
5235
5174
|
authorizationList?: undefined;
|
|
5236
5175
|
blobs?: undefined;
|
|
@@ -5264,9 +5203,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5264
5203
|
maxFeePerGas?: undefined;
|
|
5265
5204
|
maxPriorityFeePerGas?: undefined;
|
|
5266
5205
|
} & {
|
|
5267
|
-
accessList: import("viem").AccessList | undefined;
|
|
5268
|
-
* Gets the balance for an address
|
|
5269
|
-
*/
|
|
5206
|
+
accessList: import("viem").AccessList | undefined;
|
|
5270
5207
|
} ? "eip2930" : never) | (request extends ({
|
|
5271
5208
|
accessList?: import("viem").AccessList | undefined;
|
|
5272
5209
|
authorizationList?: undefined;
|
|
@@ -5347,9 +5284,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5347
5284
|
maxFeePerGas?: undefined;
|
|
5348
5285
|
maxPriorityFeePerGas?: undefined;
|
|
5349
5286
|
} & {
|
|
5350
|
-
accessList: import("viem").AccessList | undefined;
|
|
5351
|
-
* Gets the balance for an address
|
|
5352
|
-
*/
|
|
5287
|
+
accessList: import("viem").AccessList | undefined;
|
|
5353
5288
|
} ? "eip2930" : never) | (request extends ({
|
|
5354
5289
|
accessList?: import("viem").AccessList | undefined;
|
|
5355
5290
|
authorizationList?: undefined;
|
|
@@ -5396,7 +5331,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5396
5331
|
sidecars?: undefined;
|
|
5397
5332
|
}) & {
|
|
5398
5333
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
5399
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
5334
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_9 extends "legacy" ? import("viem").TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
5400
5335
|
accessList?: undefined;
|
|
5401
5336
|
authorizationList?: undefined;
|
|
5402
5337
|
blobs?: undefined;
|
|
@@ -5430,9 +5365,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5430
5365
|
maxFeePerGas?: undefined;
|
|
5431
5366
|
maxPriorityFeePerGas?: undefined;
|
|
5432
5367
|
} & {
|
|
5433
|
-
accessList: import("viem").AccessList | undefined;
|
|
5434
|
-
* Gets the balance for an address
|
|
5435
|
-
*/
|
|
5368
|
+
accessList: import("viem").AccessList | undefined;
|
|
5436
5369
|
} ? "eip2930" : never) | (request extends ({
|
|
5437
5370
|
accessList?: import("viem").AccessList | undefined;
|
|
5438
5371
|
authorizationList?: undefined;
|
|
@@ -5513,9 +5446,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5513
5446
|
maxFeePerGas?: undefined;
|
|
5514
5447
|
maxPriorityFeePerGas?: undefined;
|
|
5515
5448
|
} & {
|
|
5516
|
-
accessList: import("viem").AccessList | undefined;
|
|
5517
|
-
* Gets the balance for an address
|
|
5518
|
-
*/
|
|
5449
|
+
accessList: import("viem").AccessList | undefined;
|
|
5519
5450
|
} ? "eip2930" : never) | (request extends ({
|
|
5520
5451
|
accessList?: import("viem").AccessList | undefined;
|
|
5521
5452
|
authorizationList?: undefined;
|
|
@@ -5562,7 +5493,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5562
5493
|
sidecars?: undefined;
|
|
5563
5494
|
}) & {
|
|
5564
5495
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
5565
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
5496
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_10 ? T_10 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
5566
5497
|
accessList?: undefined;
|
|
5567
5498
|
authorizationList?: undefined;
|
|
5568
5499
|
blobs?: undefined;
|
|
@@ -5596,9 +5527,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5596
5527
|
maxFeePerGas?: undefined;
|
|
5597
5528
|
maxPriorityFeePerGas?: undefined;
|
|
5598
5529
|
} & {
|
|
5599
|
-
accessList: import("viem").AccessList | undefined;
|
|
5600
|
-
* Gets the balance for an address
|
|
5601
|
-
*/
|
|
5530
|
+
accessList: import("viem").AccessList | undefined;
|
|
5602
5531
|
} ? "eip2930" : never) | (request extends ({
|
|
5603
5532
|
accessList?: import("viem").AccessList | undefined;
|
|
5604
5533
|
authorizationList?: undefined;
|
|
@@ -5679,9 +5608,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5679
5608
|
maxFeePerGas?: undefined;
|
|
5680
5609
|
maxPriorityFeePerGas?: undefined;
|
|
5681
5610
|
} & {
|
|
5682
|
-
accessList: import("viem").AccessList | undefined;
|
|
5683
|
-
* Gets the balance for an address
|
|
5684
|
-
*/
|
|
5611
|
+
accessList: import("viem").AccessList | undefined;
|
|
5685
5612
|
} ? "eip2930" : never) | (request extends ({
|
|
5686
5613
|
accessList?: import("viem").AccessList | undefined;
|
|
5687
5614
|
authorizationList?: undefined;
|
|
@@ -5728,7 +5655,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5728
5655
|
sidecars?: undefined;
|
|
5729
5656
|
}) & {
|
|
5730
5657
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
5731
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
5658
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_10 extends "eip1559" ? import("viem").TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
5732
5659
|
accessList?: undefined;
|
|
5733
5660
|
authorizationList?: undefined;
|
|
5734
5661
|
blobs?: undefined;
|
|
@@ -5762,9 +5689,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5762
5689
|
maxFeePerGas?: undefined;
|
|
5763
5690
|
maxPriorityFeePerGas?: undefined;
|
|
5764
5691
|
} & {
|
|
5765
|
-
accessList: import("viem").AccessList | undefined;
|
|
5766
|
-
* Gets the balance for an address
|
|
5767
|
-
*/
|
|
5692
|
+
accessList: import("viem").AccessList | undefined;
|
|
5768
5693
|
} ? "eip2930" : never) | (request extends ({
|
|
5769
5694
|
accessList?: import("viem").AccessList | undefined;
|
|
5770
5695
|
authorizationList?: undefined;
|
|
@@ -5845,9 +5770,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5845
5770
|
maxFeePerGas?: undefined;
|
|
5846
5771
|
maxPriorityFeePerGas?: undefined;
|
|
5847
5772
|
} & {
|
|
5848
|
-
accessList: import("viem").AccessList | undefined;
|
|
5849
|
-
* Gets the balance for an address
|
|
5850
|
-
*/
|
|
5773
|
+
accessList: import("viem").AccessList | undefined;
|
|
5851
5774
|
} ? "eip2930" : never) | (request extends ({
|
|
5852
5775
|
accessList?: import("viem").AccessList | undefined;
|
|
5853
5776
|
authorizationList?: undefined;
|
|
@@ -5894,7 +5817,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5894
5817
|
sidecars?: undefined;
|
|
5895
5818
|
}) & {
|
|
5896
5819
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
5897
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
5820
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_11 ? T_11 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
5898
5821
|
accessList?: undefined;
|
|
5899
5822
|
authorizationList?: undefined;
|
|
5900
5823
|
blobs?: undefined;
|
|
@@ -5928,9 +5851,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
5928
5851
|
maxFeePerGas?: undefined;
|
|
5929
5852
|
maxPriorityFeePerGas?: undefined;
|
|
5930
5853
|
} & {
|
|
5931
|
-
accessList: import("viem").AccessList | undefined;
|
|
5932
|
-
* Gets the balance for an address
|
|
5933
|
-
*/
|
|
5854
|
+
accessList: import("viem").AccessList | undefined;
|
|
5934
5855
|
} ? "eip2930" : never) | (request extends ({
|
|
5935
5856
|
accessList?: import("viem").AccessList | undefined;
|
|
5936
5857
|
authorizationList?: undefined;
|
|
@@ -6011,9 +5932,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6011
5932
|
maxFeePerGas?: undefined;
|
|
6012
5933
|
maxPriorityFeePerGas?: undefined;
|
|
6013
5934
|
} & {
|
|
6014
|
-
accessList: import("viem").AccessList | undefined;
|
|
6015
|
-
* Gets the balance for an address
|
|
6016
|
-
*/
|
|
5935
|
+
accessList: import("viem").AccessList | undefined;
|
|
6017
5936
|
} ? "eip2930" : never) | (request extends ({
|
|
6018
5937
|
accessList?: import("viem").AccessList | undefined;
|
|
6019
5938
|
authorizationList?: undefined;
|
|
@@ -6060,7 +5979,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6060
5979
|
sidecars?: undefined;
|
|
6061
5980
|
}) & {
|
|
6062
5981
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
6063
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
5982
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_11 extends "eip2930" ? import("viem").TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
6064
5983
|
accessList?: undefined;
|
|
6065
5984
|
authorizationList?: undefined;
|
|
6066
5985
|
blobs?: undefined;
|
|
@@ -6094,9 +6013,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6094
6013
|
maxFeePerGas?: undefined;
|
|
6095
6014
|
maxPriorityFeePerGas?: undefined;
|
|
6096
6015
|
} & {
|
|
6097
|
-
accessList: import("viem").AccessList | undefined;
|
|
6098
|
-
* Gets the balance for an address
|
|
6099
|
-
*/
|
|
6016
|
+
accessList: import("viem").AccessList | undefined;
|
|
6100
6017
|
} ? "eip2930" : never) | (request extends ({
|
|
6101
6018
|
accessList?: import("viem").AccessList | undefined;
|
|
6102
6019
|
authorizationList?: undefined;
|
|
@@ -6177,9 +6094,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6177
6094
|
maxFeePerGas?: undefined;
|
|
6178
6095
|
maxPriorityFeePerGas?: undefined;
|
|
6179
6096
|
} & {
|
|
6180
|
-
accessList: import("viem").AccessList | undefined;
|
|
6181
|
-
* Gets the balance for an address
|
|
6182
|
-
*/
|
|
6097
|
+
accessList: import("viem").AccessList | undefined;
|
|
6183
6098
|
} ? "eip2930" : never) | (request extends ({
|
|
6184
6099
|
accessList?: import("viem").AccessList | undefined;
|
|
6185
6100
|
authorizationList?: undefined;
|
|
@@ -6226,7 +6141,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6226
6141
|
sidecars?: undefined;
|
|
6227
6142
|
}) & {
|
|
6228
6143
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
6229
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
6144
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_12 ? T_12 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
6230
6145
|
accessList?: undefined;
|
|
6231
6146
|
authorizationList?: undefined;
|
|
6232
6147
|
blobs?: undefined;
|
|
@@ -6260,9 +6175,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6260
6175
|
maxFeePerGas?: undefined;
|
|
6261
6176
|
maxPriorityFeePerGas?: undefined;
|
|
6262
6177
|
} & {
|
|
6263
|
-
accessList: import("viem").AccessList | undefined;
|
|
6264
|
-
* Gets the balance for an address
|
|
6265
|
-
*/
|
|
6178
|
+
accessList: import("viem").AccessList | undefined;
|
|
6266
6179
|
} ? "eip2930" : never) | (request extends ({
|
|
6267
6180
|
accessList?: import("viem").AccessList | undefined;
|
|
6268
6181
|
authorizationList?: undefined;
|
|
@@ -6343,9 +6256,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6343
6256
|
maxFeePerGas?: undefined;
|
|
6344
6257
|
maxPriorityFeePerGas?: undefined;
|
|
6345
6258
|
} & {
|
|
6346
|
-
accessList: import("viem").AccessList | undefined;
|
|
6347
|
-
* Gets the balance for an address
|
|
6348
|
-
*/
|
|
6259
|
+
accessList: import("viem").AccessList | undefined;
|
|
6349
6260
|
} ? "eip2930" : never) | (request extends ({
|
|
6350
6261
|
accessList?: import("viem").AccessList | undefined;
|
|
6351
6262
|
authorizationList?: undefined;
|
|
@@ -6392,7 +6303,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6392
6303
|
sidecars?: undefined;
|
|
6393
6304
|
}) & {
|
|
6394
6305
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
6395
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
6306
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip4844" ? import("viem").TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
6396
6307
|
accessList?: undefined;
|
|
6397
6308
|
authorizationList?: undefined;
|
|
6398
6309
|
blobs?: undefined;
|
|
@@ -6426,9 +6337,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6426
6337
|
maxFeePerGas?: undefined;
|
|
6427
6338
|
maxPriorityFeePerGas?: undefined;
|
|
6428
6339
|
} & {
|
|
6429
|
-
accessList: import("viem").AccessList | undefined;
|
|
6430
|
-
* Gets the balance for an address
|
|
6431
|
-
*/
|
|
6340
|
+
accessList: import("viem").AccessList | undefined;
|
|
6432
6341
|
} ? "eip2930" : never) | (request extends ({
|
|
6433
6342
|
accessList?: import("viem").AccessList | undefined;
|
|
6434
6343
|
authorizationList?: undefined;
|
|
@@ -6509,9 +6418,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6509
6418
|
maxFeePerGas?: undefined;
|
|
6510
6419
|
maxPriorityFeePerGas?: undefined;
|
|
6511
6420
|
} & {
|
|
6512
|
-
accessList: import("viem").AccessList | undefined;
|
|
6513
|
-
* Gets the balance for an address
|
|
6514
|
-
*/
|
|
6421
|
+
accessList: import("viem").AccessList | undefined;
|
|
6515
6422
|
} ? "eip2930" : never) | (request extends ({
|
|
6516
6423
|
accessList?: import("viem").AccessList | undefined;
|
|
6517
6424
|
authorizationList?: undefined;
|
|
@@ -6558,7 +6465,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6558
6465
|
sidecars?: undefined;
|
|
6559
6466
|
}) & {
|
|
6560
6467
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
6561
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
6468
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_13 ? T_13 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
6562
6469
|
accessList?: undefined;
|
|
6563
6470
|
authorizationList?: undefined;
|
|
6564
6471
|
blobs?: undefined;
|
|
@@ -6592,9 +6499,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6592
6499
|
maxFeePerGas?: undefined;
|
|
6593
6500
|
maxPriorityFeePerGas?: undefined;
|
|
6594
6501
|
} & {
|
|
6595
|
-
accessList: import("viem").AccessList | undefined;
|
|
6596
|
-
* Gets the balance for an address
|
|
6597
|
-
*/
|
|
6502
|
+
accessList: import("viem").AccessList | undefined;
|
|
6598
6503
|
} ? "eip2930" : never) | (request extends ({
|
|
6599
6504
|
accessList?: import("viem").AccessList | undefined;
|
|
6600
6505
|
authorizationList?: undefined;
|
|
@@ -6675,9 +6580,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6675
6580
|
maxFeePerGas?: undefined;
|
|
6676
6581
|
maxPriorityFeePerGas?: undefined;
|
|
6677
6582
|
} & {
|
|
6678
|
-
accessList: import("viem").AccessList | undefined;
|
|
6679
|
-
* Gets the balance for an address
|
|
6680
|
-
*/
|
|
6583
|
+
accessList: import("viem").AccessList | undefined;
|
|
6681
6584
|
} ? "eip2930" : never) | (request extends ({
|
|
6682
6585
|
accessList?: import("viem").AccessList | undefined;
|
|
6683
6586
|
authorizationList?: undefined;
|
|
@@ -6724,19 +6627,26 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6724
6627
|
sidecars?: undefined;
|
|
6725
6628
|
}) & {
|
|
6726
6629
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
6727
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
6630
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_13 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
6728
6631
|
chainId?: number | undefined;
|
|
6729
|
-
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") extends infer
|
|
6632
|
+
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") extends infer T_14 ? T_14 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "gas" | "nonce" | "blobVersionedHashes" | "fees") ? T_14 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_14 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K_1]; } : never>;
|
|
6730
6633
|
requestAddresses: () => Promise<import("viem").RequestAddressesReturnType>;
|
|
6731
6634
|
requestPermissions: (args: {
|
|
6732
6635
|
[x: string]: Record<string, any>;
|
|
6733
6636
|
eth_accounts: Record<string, any>;
|
|
6734
6637
|
}) => Promise<import("viem").RequestPermissionsReturnType>;
|
|
6638
|
+
sendCalls: <const calls extends readonly unknown[], chainOverride_2 extends ViemChain | undefined = undefined>(parameters: import("viem").SendCallsParameters<ViemChain, Account, chainOverride_2, calls>) => Promise<{
|
|
6639
|
+
capabilities?: {
|
|
6640
|
+
[x: string]: any;
|
|
6641
|
+
} | undefined;
|
|
6642
|
+
id: string;
|
|
6643
|
+
}>;
|
|
6735
6644
|
sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<`0x${string}`>;
|
|
6736
|
-
sendTransaction: <const request_1 extends import("viem").SendTransactionRequest<ViemChain,
|
|
6645
|
+
sendTransaction: <const request_1 extends import("viem").SendTransactionRequest<ViemChain, chainOverride_3>, chainOverride_3 extends ViemChain | undefined = undefined>(args: import("viem").SendTransactionParameters<ViemChain, Account, chainOverride_3, request_1>) => Promise<`0x${string}`>;
|
|
6646
|
+
showCallsStatus: (parameters: import("viem").ShowCallsStatusParameters) => Promise<void>;
|
|
6737
6647
|
signAuthorization: (parameters: import("viem/experimental").SignAuthorizationParameters<Account>) => Promise<import("viem/experimental").SignAuthorizationReturnType>;
|
|
6738
6648
|
signMessage: (args: import("viem").SignMessageParameters<Account>) => Promise<`0x${string}`>;
|
|
6739
|
-
signTransaction: <
|
|
6649
|
+
signTransaction: <chainOverride_4 extends ViemChain | undefined, const request_2 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<ViemChain, chainOverride_4>, "transactionRequest", import("viem").TransactionRequest>, "from"> = import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<ViemChain, chainOverride_4>, "transactionRequest", import("viem").TransactionRequest>, "from">>(args: import("viem").SignTransactionParameters<ViemChain, Account, chainOverride_4, request_2>) => Promise<import("viem").TransactionSerialized<import("viem").GetTransactionType<request_2, (request_2 extends {
|
|
6740
6650
|
accessList?: undefined;
|
|
6741
6651
|
authorizationList?: undefined;
|
|
6742
6652
|
blobs?: undefined;
|
|
@@ -6770,9 +6680,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6770
6680
|
maxFeePerGas?: undefined;
|
|
6771
6681
|
maxPriorityFeePerGas?: undefined;
|
|
6772
6682
|
} & {
|
|
6773
|
-
accessList: import("viem").AccessList | undefined;
|
|
6774
|
-
* Gets the balance for an address
|
|
6775
|
-
*/
|
|
6683
|
+
accessList: import("viem").AccessList | undefined;
|
|
6776
6684
|
} ? "eip2930" : never) | (request_2 extends ({
|
|
6777
6685
|
accessList?: import("viem").AccessList | undefined;
|
|
6778
6686
|
authorizationList?: undefined;
|
|
@@ -6853,9 +6761,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6853
6761
|
maxFeePerGas?: undefined;
|
|
6854
6762
|
maxPriorityFeePerGas?: undefined;
|
|
6855
6763
|
} & {
|
|
6856
|
-
accessList: import("viem").AccessList | undefined;
|
|
6857
|
-
* Gets the balance for an address
|
|
6858
|
-
*/
|
|
6764
|
+
accessList: import("viem").AccessList | undefined;
|
|
6859
6765
|
} ? "eip2930" : never) | (request_2 extends ({
|
|
6860
6766
|
accessList?: import("viem").AccessList | undefined;
|
|
6861
6767
|
authorizationList?: undefined;
|
|
@@ -6902,7 +6808,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6902
6808
|
sidecars?: undefined;
|
|
6903
6809
|
}) & {
|
|
6904
6810
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
6905
|
-
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> extends infer
|
|
6811
|
+
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> extends infer T_28 ? T_28 extends import("viem").GetTransactionType<request_2, (request_2 extends {
|
|
6906
6812
|
accessList?: undefined;
|
|
6907
6813
|
authorizationList?: undefined;
|
|
6908
6814
|
blobs?: undefined;
|
|
@@ -6936,9 +6842,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6936
6842
|
maxFeePerGas?: undefined;
|
|
6937
6843
|
maxPriorityFeePerGas?: undefined;
|
|
6938
6844
|
} & {
|
|
6939
|
-
accessList: import("viem").AccessList | undefined;
|
|
6940
|
-
* Gets the balance for an address
|
|
6941
|
-
*/
|
|
6845
|
+
accessList: import("viem").AccessList | undefined;
|
|
6942
6846
|
} ? "eip2930" : never) | (request_2 extends ({
|
|
6943
6847
|
accessList?: import("viem").AccessList | undefined;
|
|
6944
6848
|
authorizationList?: undefined;
|
|
@@ -6985,7 +6889,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
6985
6889
|
sidecars?: undefined;
|
|
6986
6890
|
}) & {
|
|
6987
6891
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
6988
|
-
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> ?
|
|
6892
|
+
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> ? T_28 extends "eip1559" ? `0x02${string}` : never : never : never) | (import("viem").GetTransactionType<request_2, (request_2 extends {
|
|
6989
6893
|
accessList?: undefined;
|
|
6990
6894
|
authorizationList?: undefined;
|
|
6991
6895
|
blobs?: undefined;
|
|
@@ -7019,9 +6923,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7019
6923
|
maxFeePerGas?: undefined;
|
|
7020
6924
|
maxPriorityFeePerGas?: undefined;
|
|
7021
6925
|
} & {
|
|
7022
|
-
accessList: import("viem").AccessList | undefined;
|
|
7023
|
-
* Gets the balance for an address
|
|
7024
|
-
*/
|
|
6926
|
+
accessList: import("viem").AccessList | undefined;
|
|
7025
6927
|
} ? "eip2930" : never) | (request_2 extends ({
|
|
7026
6928
|
accessList?: import("viem").AccessList | undefined;
|
|
7027
6929
|
authorizationList?: undefined;
|
|
@@ -7068,7 +6970,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7068
6970
|
sidecars?: undefined;
|
|
7069
6971
|
}) & {
|
|
7070
6972
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
7071
|
-
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> extends infer
|
|
6973
|
+
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> extends infer T_29 ? T_29 extends import("viem").GetTransactionType<request_2, (request_2 extends {
|
|
7072
6974
|
accessList?: undefined;
|
|
7073
6975
|
authorizationList?: undefined;
|
|
7074
6976
|
blobs?: undefined;
|
|
@@ -7102,9 +7004,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7102
7004
|
maxFeePerGas?: undefined;
|
|
7103
7005
|
maxPriorityFeePerGas?: undefined;
|
|
7104
7006
|
} & {
|
|
7105
|
-
accessList: import("viem").AccessList | undefined;
|
|
7106
|
-
* Gets the balance for an address
|
|
7107
|
-
*/
|
|
7007
|
+
accessList: import("viem").AccessList | undefined;
|
|
7108
7008
|
} ? "eip2930" : never) | (request_2 extends ({
|
|
7109
7009
|
accessList?: import("viem").AccessList | undefined;
|
|
7110
7010
|
authorizationList?: undefined;
|
|
@@ -7151,7 +7051,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7151
7051
|
sidecars?: undefined;
|
|
7152
7052
|
}) & {
|
|
7153
7053
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
7154
|
-
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> ?
|
|
7054
|
+
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> ? T_29 extends "eip2930" ? `0x01${string}` : never : never : never) | (import("viem").GetTransactionType<request_2, (request_2 extends {
|
|
7155
7055
|
accessList?: undefined;
|
|
7156
7056
|
authorizationList?: undefined;
|
|
7157
7057
|
blobs?: undefined;
|
|
@@ -7185,9 +7085,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7185
7085
|
maxFeePerGas?: undefined;
|
|
7186
7086
|
maxPriorityFeePerGas?: undefined;
|
|
7187
7087
|
} & {
|
|
7188
|
-
accessList: import("viem").AccessList | undefined;
|
|
7189
|
-
* Gets the balance for an address
|
|
7190
|
-
*/
|
|
7088
|
+
accessList: import("viem").AccessList | undefined;
|
|
7191
7089
|
} ? "eip2930" : never) | (request_2 extends ({
|
|
7192
7090
|
accessList?: import("viem").AccessList | undefined;
|
|
7193
7091
|
authorizationList?: undefined;
|
|
@@ -7234,7 +7132,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7234
7132
|
sidecars?: undefined;
|
|
7235
7133
|
}) & {
|
|
7236
7134
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
7237
|
-
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> extends infer
|
|
7135
|
+
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> extends infer T_30 ? T_30 extends import("viem").GetTransactionType<request_2, (request_2 extends {
|
|
7238
7136
|
accessList?: undefined;
|
|
7239
7137
|
authorizationList?: undefined;
|
|
7240
7138
|
blobs?: undefined;
|
|
@@ -7268,9 +7166,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7268
7166
|
maxFeePerGas?: undefined;
|
|
7269
7167
|
maxPriorityFeePerGas?: undefined;
|
|
7270
7168
|
} & {
|
|
7271
|
-
accessList: import("viem").AccessList | undefined;
|
|
7272
|
-
* Gets the balance for an address
|
|
7273
|
-
*/
|
|
7169
|
+
accessList: import("viem").AccessList | undefined;
|
|
7274
7170
|
} ? "eip2930" : never) | (request_2 extends ({
|
|
7275
7171
|
accessList?: import("viem").AccessList | undefined;
|
|
7276
7172
|
authorizationList?: undefined;
|
|
@@ -7317,7 +7213,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7317
7213
|
sidecars?: undefined;
|
|
7318
7214
|
}) & {
|
|
7319
7215
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
7320
|
-
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> ?
|
|
7216
|
+
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> ? T_30 extends "eip4844" ? `0x03${string}` : never : never : never) | (import("viem").GetTransactionType<request_2, (request_2 extends {
|
|
7321
7217
|
accessList?: undefined;
|
|
7322
7218
|
authorizationList?: undefined;
|
|
7323
7219
|
blobs?: undefined;
|
|
@@ -7351,9 +7247,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7351
7247
|
maxFeePerGas?: undefined;
|
|
7352
7248
|
maxPriorityFeePerGas?: undefined;
|
|
7353
7249
|
} & {
|
|
7354
|
-
accessList: import("viem").AccessList | undefined;
|
|
7355
|
-
* Gets the balance for an address
|
|
7356
|
-
*/
|
|
7250
|
+
accessList: import("viem").AccessList | undefined;
|
|
7357
7251
|
} ? "eip2930" : never) | (request_2 extends ({
|
|
7358
7252
|
accessList?: import("viem").AccessList | undefined;
|
|
7359
7253
|
authorizationList?: undefined;
|
|
@@ -7400,7 +7294,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7400
7294
|
sidecars?: undefined;
|
|
7401
7295
|
}) & {
|
|
7402
7296
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
7403
|
-
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> extends infer
|
|
7297
|
+
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> extends infer T_31 ? T_31 extends import("viem").GetTransactionType<request_2, (request_2 extends {
|
|
7404
7298
|
accessList?: undefined;
|
|
7405
7299
|
authorizationList?: undefined;
|
|
7406
7300
|
blobs?: undefined;
|
|
@@ -7434,9 +7328,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7434
7328
|
maxFeePerGas?: undefined;
|
|
7435
7329
|
maxPriorityFeePerGas?: undefined;
|
|
7436
7330
|
} & {
|
|
7437
|
-
accessList: import("viem").AccessList | undefined;
|
|
7438
|
-
* Gets the balance for an address
|
|
7439
|
-
*/
|
|
7331
|
+
accessList: import("viem").AccessList | undefined;
|
|
7440
7332
|
} ? "eip2930" : never) | (request_2 extends ({
|
|
7441
7333
|
accessList?: import("viem").AccessList | undefined;
|
|
7442
7334
|
authorizationList?: undefined;
|
|
@@ -7483,7 +7375,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7483
7375
|
sidecars?: undefined;
|
|
7484
7376
|
}) & {
|
|
7485
7377
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
7486
|
-
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> ?
|
|
7378
|
+
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> ? T_31 extends "eip7702" ? `0x04${string}` : never : never : never) | (import("viem").GetTransactionType<request_2, (request_2 extends {
|
|
7487
7379
|
accessList?: undefined;
|
|
7488
7380
|
authorizationList?: undefined;
|
|
7489
7381
|
blobs?: undefined;
|
|
@@ -7517,9 +7409,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7517
7409
|
maxFeePerGas?: undefined;
|
|
7518
7410
|
maxPriorityFeePerGas?: undefined;
|
|
7519
7411
|
} & {
|
|
7520
|
-
accessList: import("viem").AccessList | undefined;
|
|
7521
|
-
* Gets the balance for an address
|
|
7522
|
-
*/
|
|
7412
|
+
accessList: import("viem").AccessList | undefined;
|
|
7523
7413
|
} ? "eip2930" : never) | (request_2 extends ({
|
|
7524
7414
|
accessList?: import("viem").AccessList | undefined;
|
|
7525
7415
|
authorizationList?: undefined;
|
|
@@ -7566,7 +7456,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7566
7456
|
sidecars?: undefined;
|
|
7567
7457
|
}) & {
|
|
7568
7458
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
7569
|
-
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> extends infer
|
|
7459
|
+
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> extends infer T_32 ? T_32 extends import("viem").GetTransactionType<request_2, (request_2 extends {
|
|
7570
7460
|
accessList?: undefined;
|
|
7571
7461
|
authorizationList?: undefined;
|
|
7572
7462
|
blobs?: undefined;
|
|
@@ -7600,9 +7490,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7600
7490
|
maxFeePerGas?: undefined;
|
|
7601
7491
|
maxPriorityFeePerGas?: undefined;
|
|
7602
7492
|
} & {
|
|
7603
|
-
accessList: import("viem").AccessList | undefined;
|
|
7604
|
-
* Gets the balance for an address
|
|
7605
|
-
*/
|
|
7493
|
+
accessList: import("viem").AccessList | undefined;
|
|
7606
7494
|
} ? "eip2930" : never) | (request_2 extends ({
|
|
7607
7495
|
accessList?: import("viem").AccessList | undefined;
|
|
7608
7496
|
authorizationList?: undefined;
|
|
@@ -7649,7 +7537,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7649
7537
|
sidecars?: undefined;
|
|
7650
7538
|
}) & {
|
|
7651
7539
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
7652
|
-
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> ?
|
|
7540
|
+
} ? "eip7702" : never) | (request_2["type"] extends string | undefined ? Extract<request_2["type"], string> : never)> ? T_32 extends "legacy" ? import("viem").TransactionSerializedLegacy : never : never : never)>>;
|
|
7653
7541
|
signTypedData: <const typedData extends {
|
|
7654
7542
|
[x: string]: readonly import("viem").TypedDataParameter[];
|
|
7655
7543
|
[x: `string[${string}]`]: undefined;
|
|
@@ -7658,7 +7546,6 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7658
7546
|
[x: `bool[${string}]`]: undefined;
|
|
7659
7547
|
[x: `bytes[${string}]`]: undefined;
|
|
7660
7548
|
[x: `bytes11[${string}]`]: undefined;
|
|
7661
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
7662
7549
|
[x: `bytes1[${string}]`]: undefined;
|
|
7663
7550
|
[x: `bytes2[${string}]`]: undefined;
|
|
7664
7551
|
[x: `bytes3[${string}]`]: undefined;
|
|
@@ -7680,6 +7567,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7680
7567
|
[x: `bytes20[${string}]`]: undefined;
|
|
7681
7568
|
[x: `bytes21[${string}]`]: undefined;
|
|
7682
7569
|
[x: `bytes22[${string}]`]: undefined;
|
|
7570
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
7683
7571
|
[x: `bytes24[${string}]`]: undefined;
|
|
7684
7572
|
[x: `bytes25[${string}]`]: undefined;
|
|
7685
7573
|
[x: `bytes26[${string}]`]: undefined;
|
|
@@ -7760,7 +7648,6 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7760
7648
|
bool?: undefined;
|
|
7761
7649
|
bytes?: undefined;
|
|
7762
7650
|
bytes11?: undefined;
|
|
7763
|
-
bytes23?: undefined;
|
|
7764
7651
|
bytes1?: undefined;
|
|
7765
7652
|
bytes2?: undefined;
|
|
7766
7653
|
bytes3?: undefined;
|
|
@@ -7782,6 +7669,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7782
7669
|
bytes20?: undefined;
|
|
7783
7670
|
bytes21?: undefined;
|
|
7784
7671
|
bytes22?: undefined;
|
|
7672
|
+
bytes23?: undefined;
|
|
7785
7673
|
bytes24?: undefined;
|
|
7786
7674
|
bytes25?: undefined;
|
|
7787
7675
|
bytes26?: undefined;
|
|
@@ -7859,8 +7747,22 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7859
7747
|
[key: string]: unknown;
|
|
7860
7748
|
}, primaryType extends string>(args: import("viem").SignTypedDataParameters<typedData, primaryType, Account>) => Promise<`0x${string}`>;
|
|
7861
7749
|
switchChain: (args: import("viem").SwitchChainParameters) => Promise<void>;
|
|
7750
|
+
waitForCallsStatus: (parameters: import("viem").WaitForCallsStatusParameters) => Promise<{
|
|
7751
|
+
atomic: boolean;
|
|
7752
|
+
capabilities?: {
|
|
7753
|
+
[key: string]: any;
|
|
7754
|
+
} | {
|
|
7755
|
+
[x: string]: any;
|
|
7756
|
+
} | undefined;
|
|
7757
|
+
chainId: number;
|
|
7758
|
+
id: string;
|
|
7759
|
+
receipts?: import("viem").WalletCallReceipt<bigint, "success" | "reverted">[] | undefined;
|
|
7760
|
+
version: string;
|
|
7761
|
+
statusCode: number;
|
|
7762
|
+
status: "success" | "pending" | "failure" | undefined;
|
|
7763
|
+
}>;
|
|
7862
7764
|
watchAsset: (args: import("viem").WatchAssetParams) => Promise<boolean>;
|
|
7863
|
-
writeContract: <const abi_1 extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi_1, "nonpayable" | "payable">, args extends import("viem").ContractFunctionArgs<abi_1, "nonpayable" | "payable", functionName>,
|
|
7765
|
+
writeContract: <const abi_1 extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi_1, "nonpayable" | "payable">, args extends import("viem").ContractFunctionArgs<abi_1, "nonpayable" | "payable", functionName>, chainOverride_5 extends ViemChain | undefined = undefined>(args: import("viem").WriteContractParameters<abi_1, functionName, args, ViemChain, Account, chainOverride_5>) => Promise<`0x${string}`>;
|
|
7864
7766
|
extend: <const client extends {
|
|
7865
7767
|
[x: string]: unknown;
|
|
7866
7768
|
account?: undefined;
|
|
@@ -7875,7 +7777,7 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7875
7777
|
transport?: undefined;
|
|
7876
7778
|
type?: undefined;
|
|
7877
7779
|
uid?: undefined;
|
|
7878
|
-
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<Transport, ViemChain, 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<ViemChain, Account>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<Transport, ViemChain, Account, import("viem").WalletRpcSchema, import("viem").WalletActions<ViemChain, Account>>) => client) => import("viem").Client<Transport, ViemChain, Account, import("viem").WalletRpcSchema, { [
|
|
7780
|
+
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<Transport, ViemChain, 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<ViemChain, Account>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<Transport, ViemChain, Account, import("viem").WalletRpcSchema, import("viem").WalletActions<ViemChain, Account>>) => client) => import("viem").Client<Transport, ViemChain, Account, import("viem").WalletRpcSchema, { [K_2 in keyof client]: client[K_2]; } & import("viem").WalletActions<ViemChain, Account>>;
|
|
7879
7781
|
} | undefined>;
|
|
7880
7782
|
/**
|
|
7881
7783
|
* Gets the balance for an address
|
|
@@ -7904,7 +7806,5 @@ export declare abstract class AccountAbstractionBaseConnector extends WalletConn
|
|
|
7904
7806
|
shouldSetEoaConnector?: boolean;
|
|
7905
7807
|
}): Promise<void>;
|
|
7906
7808
|
abstract getWalletClient(chainId?: string): WalletClient<Transport, ViemChain, Account> | undefined;
|
|
7907
|
-
isAtomicSupported(chainId?: number): Promise<boolean>;
|
|
7908
|
-
isPaymasterServiceSupported(chainId?: number): Promise<boolean>;
|
|
7909
7809
|
}
|
|
7910
7810
|
//# sourceMappingURL=AccountAbstractionBaseConnector.d.ts.map
|