@settlemint/sdk-viem 2.5.11 → 2.5.12
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/README.md +185 -96
- package/dist/browser/viem.d.ts +3819 -129
- package/dist/browser/viem.js +90 -70
- package/dist/browser/viem.js.map +1 -1
- package/dist/viem.cjs +90 -70
- package/dist/viem.cjs.map +1 -1
- package/dist/viem.d.cts +3819 -129
- package/dist/viem.d.ts +3819 -129
- package/dist/viem.js +90 -70
- package/dist/viem.js.map +1 -1
- package/package.json +2 -2
package/dist/browser/viem.d.ts
CHANGED
|
@@ -4,58 +4,27 @@ import { Chain, Client, HttpTransportConfig, Transport } from "viem";
|
|
|
4
4
|
import * as chains from "viem/chains";
|
|
5
5
|
import { z } from "zod";
|
|
6
6
|
|
|
7
|
-
//#region src/custom-actions/types/wallet-verification.enum.d.ts
|
|
8
|
-
/**
|
|
9
|
-
* Types of wallet verification methods supported by the system.
|
|
10
|
-
* Used to identify different verification mechanisms when creating or managing wallet verifications.
|
|
11
|
-
*/
|
|
12
|
-
declare enum WalletVerificationType {
|
|
13
|
-
/** PIN code verification method */
|
|
14
|
-
PINCODE = "PINCODE",
|
|
15
|
-
/** One-Time Password verification method */
|
|
16
|
-
OTP = "OTP",
|
|
17
|
-
/** Secret recovery codes verification method */
|
|
18
|
-
SECRET_CODES = "SECRET_CODES",
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* Supported hash algorithms for One-Time Password (OTP) verification.
|
|
22
|
-
* These algorithms determine the cryptographic function used to generate OTP codes.
|
|
23
|
-
*/
|
|
24
|
-
declare enum OTPAlgorithm {
|
|
25
|
-
/** SHA-1 hash algorithm */
|
|
26
|
-
SHA1 = "SHA1",
|
|
27
|
-
/** SHA-224 hash algorithm */
|
|
28
|
-
SHA224 = "SHA224",
|
|
29
|
-
/** SHA-256 hash algorithm */
|
|
30
|
-
SHA256 = "SHA256",
|
|
31
|
-
/** SHA-384 hash algorithm */
|
|
32
|
-
SHA384 = "SHA384",
|
|
33
|
-
/** SHA-512 hash algorithm */
|
|
34
|
-
SHA512 = "SHA512",
|
|
35
|
-
/** SHA3-224 hash algorithm */
|
|
36
|
-
SHA3_224 = "SHA3-224",
|
|
37
|
-
/** SHA3-256 hash algorithm */
|
|
38
|
-
SHA3_256 = "SHA3-256",
|
|
39
|
-
/** SHA3-384 hash algorithm */
|
|
40
|
-
SHA3_384 = "SHA3-384",
|
|
41
|
-
/** SHA3-512 hash algorithm */
|
|
42
|
-
SHA3_512 = "SHA3-512",
|
|
43
|
-
}
|
|
44
|
-
//#endregion
|
|
45
7
|
//#region src/custom-actions/verify-wallet-verification-challenge.action.d.ts
|
|
46
8
|
/**
|
|
47
9
|
* Represents either a wallet address string or an object containing wallet address and optional verification ID.
|
|
48
10
|
*/
|
|
49
|
-
type AddressOrObject = string | {
|
|
11
|
+
type AddressOrObject<Extra = {}> = string | ({
|
|
50
12
|
userWalletAddress: string;
|
|
51
13
|
verificationId?: string;
|
|
14
|
+
} & Extra);
|
|
15
|
+
/**
|
|
16
|
+
* Represents either a wallet address string, an object containing wallet address and optional verification ID or a challenge ID.
|
|
17
|
+
*/
|
|
18
|
+
type AddressOrObjectWithChallengeId = AddressOrObject | {
|
|
19
|
+
/** ID of the challenge to verify against */
|
|
20
|
+
challengeId: string;
|
|
52
21
|
};
|
|
53
22
|
/**
|
|
54
23
|
* Parameters for verifying a wallet verification challenge.
|
|
55
24
|
*/
|
|
56
25
|
interface VerifyWalletVerificationChallengeParameters {
|
|
57
26
|
/** The wallet address or object containing wallet address and optional verification ID. */
|
|
58
|
-
addressOrObject:
|
|
27
|
+
addressOrObject: AddressOrObjectWithChallengeId;
|
|
59
28
|
/** The response to the verification challenge. */
|
|
60
29
|
challengeResponse: string;
|
|
61
30
|
}
|
|
@@ -84,31 +53,75 @@ declare function verifyWalletVerificationChallenge(client: Client): {
|
|
|
84
53
|
verifyWalletVerificationChallenge(args: VerifyWalletVerificationChallengeParameters): Promise<VerifyWalletVerificationChallengeResponse>;
|
|
85
54
|
};
|
|
86
55
|
//#endregion
|
|
87
|
-
//#region src/custom-actions/
|
|
56
|
+
//#region src/custom-actions/types/wallet-verification.enum.d.ts
|
|
88
57
|
/**
|
|
89
|
-
*
|
|
58
|
+
* Types of wallet verification methods supported by the system.
|
|
59
|
+
* Used to identify different verification mechanisms when creating or managing wallet verifications.
|
|
90
60
|
*/
|
|
91
|
-
|
|
92
|
-
/**
|
|
93
|
-
|
|
61
|
+
declare enum WalletVerificationType {
|
|
62
|
+
/** PIN code verification method */
|
|
63
|
+
PINCODE = "PINCODE",
|
|
64
|
+
/** One-Time Password verification method */
|
|
65
|
+
OTP = "OTP",
|
|
66
|
+
/** Secret recovery codes verification method */
|
|
67
|
+
SECRET_CODES = "SECRET_CODES",
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* Supported hash algorithms for One-Time Password (OTP) verification.
|
|
71
|
+
* These algorithms determine the cryptographic function used to generate OTP codes.
|
|
72
|
+
*/
|
|
73
|
+
declare enum OTPAlgorithm {
|
|
74
|
+
/** SHA-1 hash algorithm */
|
|
75
|
+
SHA1 = "SHA1",
|
|
76
|
+
/** SHA-224 hash algorithm */
|
|
77
|
+
SHA224 = "SHA224",
|
|
78
|
+
/** SHA-256 hash algorithm */
|
|
79
|
+
SHA256 = "SHA256",
|
|
80
|
+
/** SHA-384 hash algorithm */
|
|
81
|
+
SHA384 = "SHA384",
|
|
82
|
+
/** SHA-512 hash algorithm */
|
|
83
|
+
SHA512 = "SHA512",
|
|
84
|
+
/** SHA3-224 hash algorithm */
|
|
85
|
+
SHA3_224 = "SHA3-224",
|
|
86
|
+
/** SHA3-256 hash algorithm */
|
|
87
|
+
SHA3_256 = "SHA3-256",
|
|
88
|
+
/** SHA3-384 hash algorithm */
|
|
89
|
+
SHA3_384 = "SHA3-384",
|
|
90
|
+
/** SHA3-512 hash algorithm */
|
|
91
|
+
SHA3_512 = "SHA3-512",
|
|
94
92
|
}
|
|
93
|
+
//#endregion
|
|
94
|
+
//#region src/custom-actions/types/wallet-verification-challenge.d.ts
|
|
95
95
|
/**
|
|
96
96
|
* Represents a wallet verification challenge.
|
|
97
97
|
*/
|
|
98
|
-
interface WalletVerificationChallenge {
|
|
98
|
+
interface WalletVerificationChallenge<ChallengeData> {
|
|
99
99
|
/** The unique identifier of the challenge. */
|
|
100
100
|
id: string;
|
|
101
101
|
/** The name of the challenge. */
|
|
102
102
|
name: string;
|
|
103
|
+
/** The verification ID. */
|
|
104
|
+
verificationId: string;
|
|
103
105
|
/** The type of verification required. */
|
|
104
106
|
verificationType: WalletVerificationType;
|
|
105
107
|
/** The challenge parameters specific to the verification type. */
|
|
106
|
-
challenge:
|
|
108
|
+
challenge: ChallengeData;
|
|
109
|
+
}
|
|
110
|
+
//#endregion
|
|
111
|
+
//#region src/custom-actions/create-wallet-verification-challenges.action.d.ts
|
|
112
|
+
/**
|
|
113
|
+
* Parameters for creating wallet verification challenges.
|
|
114
|
+
*/
|
|
115
|
+
interface CreateWalletVerificationChallengesParameters {
|
|
116
|
+
/** The wallet address or object containing wallet address and optional verification ID. */
|
|
117
|
+
addressOrObject: AddressOrObject<{
|
|
118
|
+
amount?: number;
|
|
119
|
+
}>;
|
|
107
120
|
}
|
|
108
121
|
/**
|
|
109
122
|
* Response from creating wallet verification challenges.
|
|
110
123
|
*/
|
|
111
|
-
type CreateWalletVerificationChallengesResponse = WalletVerificationChallenge[];
|
|
124
|
+
type CreateWalletVerificationChallengesResponse = WalletVerificationChallenge<Record<string, string>>[];
|
|
112
125
|
/**
|
|
113
126
|
* Creates a wallet verification challenges action for the given client.
|
|
114
127
|
* @param client - The viem client to use for the request.
|
|
@@ -123,6 +136,78 @@ declare function createWalletVerificationChallenges(client: Client): {
|
|
|
123
136
|
createWalletVerificationChallenges(args: CreateWalletVerificationChallengesParameters): Promise<CreateWalletVerificationChallengesResponse>;
|
|
124
137
|
};
|
|
125
138
|
//#endregion
|
|
139
|
+
//#region src/custom-actions/create-wallet-verification-challenge.action.d.ts
|
|
140
|
+
/**
|
|
141
|
+
* Parameters for creating wallet verification challenges.
|
|
142
|
+
*/
|
|
143
|
+
interface CreateWalletVerificationChallengeParameters {
|
|
144
|
+
/** The wallet address. */
|
|
145
|
+
userWalletAddress: string;
|
|
146
|
+
/** The verification ID. */
|
|
147
|
+
verificationId: string;
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* Data specific to a wallet verification challenge.
|
|
151
|
+
*/
|
|
152
|
+
interface WalletVerificationChallengeData {
|
|
153
|
+
/** The verification ID (for backward compatibility). */
|
|
154
|
+
id: string;
|
|
155
|
+
/** The unique identifier of the challenge. */
|
|
156
|
+
challengeId: string;
|
|
157
|
+
/** Optional salt for PINCODE verification type. */
|
|
158
|
+
salt?: string;
|
|
159
|
+
/** Optional secret for PINCODE verification type. */
|
|
160
|
+
secret?: string;
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* Response from creating wallet verification challenge.
|
|
164
|
+
*/
|
|
165
|
+
type CreateWalletVerificationChallengeResponse = WalletVerificationChallenge<WalletVerificationChallengeData>;
|
|
166
|
+
/**
|
|
167
|
+
* Creates a wallet verification challenge action for the given client.
|
|
168
|
+
* @param client - The viem client to use for the request.
|
|
169
|
+
* @returns An object with a createWalletVerificationChallenge method.
|
|
170
|
+
*/
|
|
171
|
+
declare function createWalletVerificationChallenge(client: Client): {
|
|
172
|
+
/**
|
|
173
|
+
* Creates a verification challenge for a wallet.
|
|
174
|
+
* @param args - The parameters for creating the challenge.
|
|
175
|
+
* @returns A promise that resolves to a wallet verification challenge.
|
|
176
|
+
*/
|
|
177
|
+
createWalletVerificationChallenge(args: CreateWalletVerificationChallengeParameters): Promise<CreateWalletVerificationChallengeResponse>;
|
|
178
|
+
};
|
|
179
|
+
//#endregion
|
|
180
|
+
//#region src/custom-actions/delete-wallet-verification.action.d.ts
|
|
181
|
+
/**
|
|
182
|
+
* Parameters for deleting a wallet verification.
|
|
183
|
+
*/
|
|
184
|
+
interface DeleteWalletVerificationParameters {
|
|
185
|
+
/** The wallet address for which to delete the verification. */
|
|
186
|
+
userWalletAddress: string;
|
|
187
|
+
/** The unique identifier of the verification to delete. */
|
|
188
|
+
verificationId: string;
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* Response from deleting a wallet verification.
|
|
192
|
+
*/
|
|
193
|
+
interface DeleteWalletVerificationResponse {
|
|
194
|
+
/** Whether the deletion was successful. */
|
|
195
|
+
success: boolean;
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* Creates a wallet verification deletion action for the given client.
|
|
199
|
+
* @param client - The viem client to use for the request.
|
|
200
|
+
* @returns An object with a deleteWalletVerification method.
|
|
201
|
+
*/
|
|
202
|
+
declare function deleteWalletVerification(client: Client): {
|
|
203
|
+
/**
|
|
204
|
+
* Deletes a wallet verification.
|
|
205
|
+
* @param args - The parameters for deleting the verification.
|
|
206
|
+
* @returns A promise that resolves to an array of deletion results.
|
|
207
|
+
*/
|
|
208
|
+
deleteWalletVerification(args: DeleteWalletVerificationParameters): Promise<DeleteWalletVerificationResponse[]>;
|
|
209
|
+
};
|
|
210
|
+
//#endregion
|
|
126
211
|
//#region src/custom-actions/create-wallet-verification.action.d.ts
|
|
127
212
|
/**
|
|
128
213
|
* Base interface for wallet verification information.
|
|
@@ -204,6 +289,43 @@ declare function createWalletVerification(client: Client): {
|
|
|
204
289
|
createWalletVerification(args: CreateWalletVerificationParameters): Promise<CreateWalletVerificationResponse[]>;
|
|
205
290
|
};
|
|
206
291
|
//#endregion
|
|
292
|
+
//#region src/custom-actions/get-wallet-verifications.action.d.ts
|
|
293
|
+
/**
|
|
294
|
+
* Parameters for getting wallet verifications.
|
|
295
|
+
*/
|
|
296
|
+
interface GetWalletVerificationsParameters {
|
|
297
|
+
/** The wallet address for which to fetch verifications. */
|
|
298
|
+
userWalletAddress: string;
|
|
299
|
+
}
|
|
300
|
+
/**
|
|
301
|
+
* Represents a wallet verification.
|
|
302
|
+
*/
|
|
303
|
+
interface WalletVerification {
|
|
304
|
+
/** The unique identifier of the verification. */
|
|
305
|
+
id: string;
|
|
306
|
+
/** The name of the verification method. */
|
|
307
|
+
name: string;
|
|
308
|
+
/** The type of verification method. */
|
|
309
|
+
verificationType: WalletVerificationType;
|
|
310
|
+
}
|
|
311
|
+
/**
|
|
312
|
+
* Response from getting wallet verifications.
|
|
313
|
+
*/
|
|
314
|
+
type GetWalletVerificationsResponse = WalletVerification[];
|
|
315
|
+
/**
|
|
316
|
+
* Creates a wallet verifications retrieval action for the given client.
|
|
317
|
+
* @param client - The viem client to use for the request.
|
|
318
|
+
* @returns An object with a getWalletVerifications method.
|
|
319
|
+
*/
|
|
320
|
+
declare function getWalletVerifications(client: Client): {
|
|
321
|
+
/**
|
|
322
|
+
* Gets all verifications for a wallet.
|
|
323
|
+
* @param args - The parameters for getting the verifications.
|
|
324
|
+
* @returns A promise that resolves to an array of wallet verifications.
|
|
325
|
+
*/
|
|
326
|
+
getWalletVerifications(args: GetWalletVerificationsParameters): Promise<GetWalletVerificationsResponse>;
|
|
327
|
+
};
|
|
328
|
+
//#endregion
|
|
207
329
|
//#region src/custom-actions/create-wallet.action.d.ts
|
|
208
330
|
/**
|
|
209
331
|
* Information about the wallet to be created.
|
|
@@ -248,74 +370,6 @@ declare function createWallet(client: Client): {
|
|
|
248
370
|
createWallet(args: CreateWalletParameters): Promise<CreateWalletResponse[]>;
|
|
249
371
|
};
|
|
250
372
|
//#endregion
|
|
251
|
-
//#region src/custom-actions/delete-wallet-verification.action.d.ts
|
|
252
|
-
/**
|
|
253
|
-
* Parameters for deleting a wallet verification.
|
|
254
|
-
*/
|
|
255
|
-
interface DeleteWalletVerificationParameters {
|
|
256
|
-
/** The wallet address for which to delete the verification. */
|
|
257
|
-
userWalletAddress: string;
|
|
258
|
-
/** The unique identifier of the verification to delete. */
|
|
259
|
-
verificationId: string;
|
|
260
|
-
}
|
|
261
|
-
/**
|
|
262
|
-
* Response from deleting a wallet verification.
|
|
263
|
-
*/
|
|
264
|
-
interface DeleteWalletVerificationResponse {
|
|
265
|
-
/** Whether the deletion was successful. */
|
|
266
|
-
success: boolean;
|
|
267
|
-
}
|
|
268
|
-
/**
|
|
269
|
-
* Creates a wallet verification deletion action for the given client.
|
|
270
|
-
* @param client - The viem client to use for the request.
|
|
271
|
-
* @returns An object with a deleteWalletVerification method.
|
|
272
|
-
*/
|
|
273
|
-
declare function deleteWalletVerification(client: Client): {
|
|
274
|
-
/**
|
|
275
|
-
* Deletes a wallet verification.
|
|
276
|
-
* @param args - The parameters for deleting the verification.
|
|
277
|
-
* @returns A promise that resolves to an array of deletion results.
|
|
278
|
-
*/
|
|
279
|
-
deleteWalletVerification(args: DeleteWalletVerificationParameters): Promise<DeleteWalletVerificationResponse[]>;
|
|
280
|
-
};
|
|
281
|
-
//#endregion
|
|
282
|
-
//#region src/custom-actions/get-wallet-verifications.action.d.ts
|
|
283
|
-
/**
|
|
284
|
-
* Parameters for getting wallet verifications.
|
|
285
|
-
*/
|
|
286
|
-
interface GetWalletVerificationsParameters {
|
|
287
|
-
/** The wallet address for which to fetch verifications. */
|
|
288
|
-
userWalletAddress: string;
|
|
289
|
-
}
|
|
290
|
-
/**
|
|
291
|
-
* Represents a wallet verification.
|
|
292
|
-
*/
|
|
293
|
-
interface WalletVerification {
|
|
294
|
-
/** The unique identifier of the verification. */
|
|
295
|
-
id: string;
|
|
296
|
-
/** The name of the verification method. */
|
|
297
|
-
name: string;
|
|
298
|
-
/** The type of verification method. */
|
|
299
|
-
verificationType: WalletVerificationType;
|
|
300
|
-
}
|
|
301
|
-
/**
|
|
302
|
-
* Response from getting wallet verifications.
|
|
303
|
-
*/
|
|
304
|
-
type GetWalletVerificationsResponse = WalletVerification[];
|
|
305
|
-
/**
|
|
306
|
-
* Creates a wallet verifications retrieval action for the given client.
|
|
307
|
-
* @param client - The viem client to use for the request.
|
|
308
|
-
* @returns An object with a getWalletVerifications method.
|
|
309
|
-
*/
|
|
310
|
-
declare function getWalletVerifications(client: Client): {
|
|
311
|
-
/**
|
|
312
|
-
* Gets all verifications for a wallet.
|
|
313
|
-
* @param args - The parameters for getting the verifications.
|
|
314
|
-
* @returns A promise that resolves to an array of wallet verifications.
|
|
315
|
-
*/
|
|
316
|
-
getWalletVerifications(args: GetWalletVerificationsParameters): Promise<GetWalletVerificationsResponse>;
|
|
317
|
-
};
|
|
318
|
-
//#endregion
|
|
319
373
|
//#region src/viem.d.ts
|
|
320
374
|
/**
|
|
321
375
|
* Schema for the viem client options.
|
|
@@ -7706,18 +7760,3633 @@ interface WalletVerificationOptions {
|
|
|
7706
7760
|
* console.log(transactionHash);
|
|
7707
7761
|
* ```
|
|
7708
7762
|
*/
|
|
7709
|
-
declare const getWalletClient: (options: ClientOptions) =>
|
|
7710
|
-
|
|
7711
|
-
|
|
7712
|
-
|
|
7713
|
-
|
|
7714
|
-
|
|
7715
|
-
|
|
7716
|
-
|
|
7717
|
-
|
|
7718
|
-
|
|
7719
|
-
|
|
7720
|
-
|
|
7763
|
+
declare const getWalletClient: (options: ClientOptions) => (verificationOptions?: WalletVerificationOptions) => ReturnType<typeof createWalletClientWithCustomMethods>;
|
|
7764
|
+
declare const createWalletClientWithCustomMethods: (chain: ReturnType<typeof getChain>, validatedOptions: ClientOptions, verificationOptions?: WalletVerificationOptions) => viem0.Client<viem0.HttpTransport<viem0.RpcSchema | undefined, boolean>, Chain, undefined, viem0.WalletRpcSchema, {
|
|
7765
|
+
verifyWalletVerificationChallenge: (args: VerifyWalletVerificationChallengeParameters) => Promise<VerifyWalletVerificationChallengeResponse>;
|
|
7766
|
+
} & {
|
|
7767
|
+
createWalletVerificationChallenges: (args: CreateWalletVerificationChallengesParameters) => Promise<CreateWalletVerificationChallengesResponse>;
|
|
7768
|
+
} & {
|
|
7769
|
+
createWalletVerificationChallenge: (args: CreateWalletVerificationChallengeParameters) => Promise<CreateWalletVerificationChallengeResponse>;
|
|
7770
|
+
} & {
|
|
7771
|
+
deleteWalletVerification: (args: DeleteWalletVerificationParameters) => Promise<DeleteWalletVerificationResponse[]>;
|
|
7772
|
+
} & {
|
|
7773
|
+
createWalletVerification: (args: CreateWalletVerificationParameters) => Promise<CreateWalletVerificationResponse[]>;
|
|
7774
|
+
} & {
|
|
7775
|
+
getWalletVerifications: (args: GetWalletVerificationsParameters) => Promise<GetWalletVerificationsResponse>;
|
|
7776
|
+
} & {
|
|
7777
|
+
createWallet: (args: CreateWalletParameters) => Promise<CreateWalletResponse[]>;
|
|
7778
|
+
} & {
|
|
7779
|
+
call: (parameters: viem0.CallParameters<Chain>) => Promise<viem0.CallReturnType>;
|
|
7780
|
+
createAccessList: (parameters: viem0.CreateAccessListParameters<Chain>) => Promise<{
|
|
7781
|
+
accessList: viem0.AccessList;
|
|
7782
|
+
gasUsed: bigint;
|
|
7783
|
+
}>;
|
|
7784
|
+
createBlockFilter: () => Promise<viem0.CreateBlockFilterReturnType>;
|
|
7785
|
+
createContractEventFilter: <const abi extends viem0.Abi | readonly unknown[], eventName extends viem0.ContractEventName<abi> | undefined, args extends viem0.MaybeExtractEventArgsFromAbi<abi, eventName> | undefined, strict extends boolean | undefined = undefined, fromBlock extends viem0.BlockNumber | viem0.BlockTag | undefined = undefined, toBlock extends viem0.BlockNumber | viem0.BlockTag | undefined = undefined>(args: viem0.CreateContractEventFilterParameters<abi, eventName, args, strict, fromBlock, toBlock>) => Promise<viem0.CreateContractEventFilterReturnType<abi, eventName, args, strict, fromBlock, toBlock>>;
|
|
7786
|
+
createEventFilter: <const abiEvent extends viem0.AbiEvent | undefined = undefined, const abiEvents extends readonly viem0.AbiEvent[] | readonly unknown[] | undefined = (abiEvent extends viem0.AbiEvent ? [abiEvent] : undefined), strict extends boolean | undefined = undefined, fromBlock extends viem0.BlockNumber | viem0.BlockTag | undefined = undefined, toBlock extends viem0.BlockNumber | viem0.BlockTag | undefined = undefined, _EventName extends string | undefined = viem0.MaybeAbiEventName<abiEvent>, _Args extends viem0.MaybeExtractEventArgsFromAbi<abiEvents, _EventName> | undefined = undefined>(args?: viem0.CreateEventFilterParameters<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args> | undefined) => Promise<viem0.CreateEventFilterReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args>>;
|
|
7787
|
+
createPendingTransactionFilter: () => Promise<viem0.CreatePendingTransactionFilterReturnType>;
|
|
7788
|
+
estimateContractGas: <chain extends Chain | undefined, const abi extends viem0.Abi | readonly unknown[], functionName extends viem0.ContractFunctionName<abi, "nonpayable" | "payable">, args extends viem0.ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>>(args: viem0.EstimateContractGasParameters<abi, functionName, args, chain>) => Promise<viem0.EstimateContractGasReturnType>;
|
|
7789
|
+
estimateGas: (args: viem0.EstimateGasParameters<Chain>) => Promise<viem0.EstimateGasReturnType>;
|
|
7790
|
+
getBalance: (args: viem0.GetBalanceParameters) => Promise<viem0.GetBalanceReturnType>;
|
|
7791
|
+
getBlobBaseFee: () => Promise<viem0.GetBlobBaseFeeReturnType>;
|
|
7792
|
+
getBlock: <includeTransactions extends boolean = false, blockTag extends viem0.BlockTag = "latest">(args?: viem0.GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
|
|
7793
|
+
number: blockTag extends "pending" ? null : bigint;
|
|
7794
|
+
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
7795
|
+
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
7796
|
+
logsBloom: blockTag extends "pending" ? null : `0x${string}`;
|
|
7797
|
+
baseFeePerGas: bigint | null;
|
|
7798
|
+
blobGasUsed: bigint;
|
|
7799
|
+
difficulty: bigint;
|
|
7800
|
+
excessBlobGas: bigint;
|
|
7801
|
+
extraData: viem0.Hex;
|
|
7802
|
+
gasLimit: bigint;
|
|
7803
|
+
gasUsed: bigint;
|
|
7804
|
+
miner: viem0.Address;
|
|
7805
|
+
mixHash: viem0.Hash;
|
|
7806
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
7807
|
+
parentHash: viem0.Hash;
|
|
7808
|
+
receiptsRoot: viem0.Hex;
|
|
7809
|
+
sealFields: viem0.Hex[];
|
|
7810
|
+
sha3Uncles: viem0.Hash;
|
|
7811
|
+
size: bigint;
|
|
7812
|
+
stateRoot: viem0.Hash;
|
|
7813
|
+
timestamp: bigint;
|
|
7814
|
+
totalDifficulty: bigint | null;
|
|
7815
|
+
transactionsRoot: viem0.Hash;
|
|
7816
|
+
uncles: viem0.Hash[];
|
|
7817
|
+
withdrawals?: viem0.Withdrawal[] | undefined | undefined;
|
|
7818
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
7819
|
+
transactions: includeTransactions extends true ? ({
|
|
7820
|
+
chainId?: number | undefined;
|
|
7821
|
+
input: viem0.Hex;
|
|
7822
|
+
type: "legacy";
|
|
7823
|
+
to: viem0.Address | null;
|
|
7824
|
+
from: viem0.Address;
|
|
7825
|
+
gas: bigint;
|
|
7826
|
+
nonce: number;
|
|
7827
|
+
value: bigint;
|
|
7828
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
7829
|
+
gasPrice: bigint;
|
|
7830
|
+
maxFeePerGas?: undefined | undefined;
|
|
7831
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
7832
|
+
accessList?: undefined | undefined;
|
|
7833
|
+
blobVersionedHashes?: undefined | undefined;
|
|
7834
|
+
authorizationList?: undefined | undefined;
|
|
7835
|
+
hash: viem0.Hash;
|
|
7836
|
+
r: viem0.Hex;
|
|
7837
|
+
s: viem0.Hex;
|
|
7838
|
+
v: bigint;
|
|
7839
|
+
yParity?: undefined | undefined;
|
|
7840
|
+
typeHex: viem0.Hex | null;
|
|
7841
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
|
|
7842
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
|
|
7843
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
7844
|
+
} | {
|
|
7845
|
+
chainId: number;
|
|
7846
|
+
input: viem0.Hex;
|
|
7847
|
+
type: "eip2930";
|
|
7848
|
+
to: viem0.Address | null;
|
|
7849
|
+
from: viem0.Address;
|
|
7850
|
+
gas: bigint;
|
|
7851
|
+
nonce: number;
|
|
7852
|
+
value: bigint;
|
|
7853
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
7854
|
+
gasPrice: bigint;
|
|
7855
|
+
maxFeePerGas?: undefined | undefined;
|
|
7856
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
7857
|
+
accessList: viem0.AccessList;
|
|
7858
|
+
blobVersionedHashes?: undefined | undefined;
|
|
7859
|
+
authorizationList?: undefined | undefined;
|
|
7860
|
+
hash: viem0.Hash;
|
|
7861
|
+
r: viem0.Hex;
|
|
7862
|
+
s: viem0.Hex;
|
|
7863
|
+
v: bigint;
|
|
7864
|
+
yParity: number;
|
|
7865
|
+
typeHex: viem0.Hex | null;
|
|
7866
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : bigint : never : never;
|
|
7867
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
|
|
7868
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
7869
|
+
} | {
|
|
7870
|
+
chainId: number;
|
|
7871
|
+
input: viem0.Hex;
|
|
7872
|
+
type: "eip1559";
|
|
7873
|
+
to: viem0.Address | null;
|
|
7874
|
+
from: viem0.Address;
|
|
7875
|
+
gas: bigint;
|
|
7876
|
+
nonce: number;
|
|
7877
|
+
value: bigint;
|
|
7878
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
7879
|
+
gasPrice?: undefined | undefined;
|
|
7880
|
+
maxFeePerGas: bigint;
|
|
7881
|
+
maxPriorityFeePerGas: bigint;
|
|
7882
|
+
accessList: viem0.AccessList;
|
|
7883
|
+
blobVersionedHashes?: undefined | undefined;
|
|
7884
|
+
authorizationList?: undefined | undefined;
|
|
7885
|
+
hash: viem0.Hash;
|
|
7886
|
+
r: viem0.Hex;
|
|
7887
|
+
s: viem0.Hex;
|
|
7888
|
+
v: bigint;
|
|
7889
|
+
yParity: number;
|
|
7890
|
+
typeHex: viem0.Hex | null;
|
|
7891
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : bigint : never : never;
|
|
7892
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
|
|
7893
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
7894
|
+
} | {
|
|
7895
|
+
chainId: number;
|
|
7896
|
+
input: viem0.Hex;
|
|
7897
|
+
type: "eip4844";
|
|
7898
|
+
to: viem0.Address | null;
|
|
7899
|
+
from: viem0.Address;
|
|
7900
|
+
gas: bigint;
|
|
7901
|
+
nonce: number;
|
|
7902
|
+
value: bigint;
|
|
7903
|
+
maxFeePerBlobGas: bigint;
|
|
7904
|
+
gasPrice?: undefined | undefined;
|
|
7905
|
+
maxFeePerGas: bigint;
|
|
7906
|
+
maxPriorityFeePerGas: bigint;
|
|
7907
|
+
accessList: viem0.AccessList;
|
|
7908
|
+
blobVersionedHashes: readonly viem0.Hex[];
|
|
7909
|
+
authorizationList?: undefined | undefined;
|
|
7910
|
+
hash: viem0.Hash;
|
|
7911
|
+
r: viem0.Hex;
|
|
7912
|
+
s: viem0.Hex;
|
|
7913
|
+
v: bigint;
|
|
7914
|
+
yParity: number;
|
|
7915
|
+
typeHex: viem0.Hex | null;
|
|
7916
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : bigint : never : never;
|
|
7917
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
|
|
7918
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
7919
|
+
} | {
|
|
7920
|
+
chainId: number;
|
|
7921
|
+
input: viem0.Hex;
|
|
7922
|
+
type: "eip7702";
|
|
7923
|
+
to: viem0.Address | null;
|
|
7924
|
+
from: viem0.Address;
|
|
7925
|
+
gas: bigint;
|
|
7926
|
+
nonce: number;
|
|
7927
|
+
value: bigint;
|
|
7928
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
7929
|
+
gasPrice?: undefined | undefined;
|
|
7930
|
+
maxFeePerGas: bigint;
|
|
7931
|
+
maxPriorityFeePerGas: bigint;
|
|
7932
|
+
accessList: viem0.AccessList;
|
|
7933
|
+
blobVersionedHashes?: undefined | undefined;
|
|
7934
|
+
authorizationList: viem0.SignedAuthorizationList;
|
|
7935
|
+
hash: viem0.Hash;
|
|
7936
|
+
r: viem0.Hex;
|
|
7937
|
+
s: viem0.Hex;
|
|
7938
|
+
v: bigint;
|
|
7939
|
+
yParity: number;
|
|
7940
|
+
typeHex: viem0.Hex | null;
|
|
7941
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : bigint : never : never;
|
|
7942
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : `0x${string}` : never : never;
|
|
7943
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
|
|
7944
|
+
})[] : `0x${string}`[];
|
|
7945
|
+
}>;
|
|
7946
|
+
getBlockNumber: (args?: viem0.GetBlockNumberParameters | undefined) => Promise<viem0.GetBlockNumberReturnType>;
|
|
7947
|
+
getBlockTransactionCount: (args?: viem0.GetBlockTransactionCountParameters | undefined) => Promise<viem0.GetBlockTransactionCountReturnType>;
|
|
7948
|
+
getBytecode: (args: viem0.GetBytecodeParameters) => Promise<viem0.GetBytecodeReturnType>;
|
|
7949
|
+
getChainId: () => Promise<viem0.GetChainIdReturnType>;
|
|
7950
|
+
getCode: (args: viem0.GetBytecodeParameters) => Promise<viem0.GetBytecodeReturnType>;
|
|
7951
|
+
getContractEvents: <const abi extends viem0.Abi | readonly unknown[], eventName extends viem0.ContractEventName<abi> | undefined = undefined, strict extends boolean | undefined = undefined, fromBlock extends viem0.BlockNumber | viem0.BlockTag | undefined = undefined, toBlock extends viem0.BlockNumber | viem0.BlockTag | undefined = undefined>(args: viem0.GetContractEventsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<viem0.GetContractEventsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
|
|
7952
|
+
getEip712Domain: (args: viem0.GetEip712DomainParameters) => Promise<viem0.GetEip712DomainReturnType>;
|
|
7953
|
+
getEnsAddress: (args: viem0.GetEnsAddressParameters) => Promise<viem0.GetEnsAddressReturnType>;
|
|
7954
|
+
getEnsAvatar: (args: viem0.GetEnsAvatarParameters) => Promise<viem0.GetEnsAvatarReturnType>;
|
|
7955
|
+
getEnsName: (args: viem0.GetEnsNameParameters) => Promise<viem0.GetEnsNameReturnType>;
|
|
7956
|
+
getEnsResolver: (args: viem0.GetEnsResolverParameters) => Promise<viem0.GetEnsResolverReturnType>;
|
|
7957
|
+
getEnsText: (args: viem0.GetEnsTextParameters) => Promise<viem0.GetEnsTextReturnType>;
|
|
7958
|
+
getFeeHistory: (args: viem0.GetFeeHistoryParameters) => Promise<viem0.GetFeeHistoryReturnType>;
|
|
7959
|
+
estimateFeesPerGas: <chainOverride extends Chain | undefined = undefined, type extends viem0.FeeValuesType = "eip1559">(args?: viem0.EstimateFeesPerGasParameters<Chain, chainOverride, type> | undefined) => Promise<viem0.EstimateFeesPerGasReturnType<type>>;
|
|
7960
|
+
getFilterChanges: <filterType extends viem0.FilterType, const abi extends viem0.Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends viem0.BlockNumber | viem0.BlockTag | undefined = undefined, toBlock extends viem0.BlockNumber | viem0.BlockTag | undefined = undefined>(args: viem0.GetFilterChangesParameters<filterType, abi, eventName, strict, fromBlock, toBlock>) => Promise<viem0.GetFilterChangesReturnType<filterType, abi, eventName, strict, fromBlock, toBlock>>;
|
|
7961
|
+
getFilterLogs: <const abi extends viem0.Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends viem0.BlockNumber | viem0.BlockTag | undefined = undefined, toBlock extends viem0.BlockNumber | viem0.BlockTag | undefined = undefined>(args: viem0.GetFilterLogsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<viem0.GetFilterLogsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
|
|
7962
|
+
getGasPrice: () => Promise<viem0.GetGasPriceReturnType>;
|
|
7963
|
+
getLogs: <const abiEvent extends viem0.AbiEvent | undefined = undefined, const abiEvents extends readonly viem0.AbiEvent[] | readonly unknown[] | undefined = (abiEvent extends viem0.AbiEvent ? [abiEvent] : undefined), strict extends boolean | undefined = undefined, fromBlock extends viem0.BlockNumber | viem0.BlockTag | undefined = undefined, toBlock extends viem0.BlockNumber | viem0.BlockTag | undefined = undefined>(args?: viem0.GetLogsParameters<abiEvent, abiEvents, strict, fromBlock, toBlock> | undefined) => Promise<viem0.GetLogsReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock>>;
|
|
7964
|
+
getProof: (args: viem0.GetProofParameters) => Promise<viem0.GetProofReturnType>;
|
|
7965
|
+
estimateMaxPriorityFeePerGas: <chainOverride extends Chain | undefined = undefined>(args?: {
|
|
7966
|
+
chain?: chainOverride | null | undefined;
|
|
7967
|
+
} | undefined) => Promise<viem0.EstimateMaxPriorityFeePerGasReturnType>;
|
|
7968
|
+
getStorageAt: (args: viem0.GetStorageAtParameters) => Promise<viem0.GetStorageAtReturnType>;
|
|
7969
|
+
getTransaction: <blockTag extends viem0.BlockTag = "latest">(args: viem0.GetTransactionParameters<blockTag>) => Promise<{
|
|
7970
|
+
chainId?: number | undefined;
|
|
7971
|
+
input: viem0.Hex;
|
|
7972
|
+
type: "legacy";
|
|
7973
|
+
to: viem0.Address | null;
|
|
7974
|
+
from: viem0.Address;
|
|
7975
|
+
gas: bigint;
|
|
7976
|
+
nonce: number;
|
|
7977
|
+
value: bigint;
|
|
7978
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
7979
|
+
gasPrice: bigint;
|
|
7980
|
+
maxFeePerGas?: undefined | undefined;
|
|
7981
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
7982
|
+
accessList?: undefined | undefined;
|
|
7983
|
+
blobVersionedHashes?: undefined | undefined;
|
|
7984
|
+
authorizationList?: undefined | undefined;
|
|
7985
|
+
hash: viem0.Hash;
|
|
7986
|
+
r: viem0.Hex;
|
|
7987
|
+
s: viem0.Hex;
|
|
7988
|
+
v: bigint;
|
|
7989
|
+
yParity?: undefined | undefined;
|
|
7990
|
+
typeHex: viem0.Hex | null;
|
|
7991
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
|
|
7992
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
|
|
7993
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
7994
|
+
} | {
|
|
7995
|
+
chainId: number;
|
|
7996
|
+
input: viem0.Hex;
|
|
7997
|
+
type: "eip2930";
|
|
7998
|
+
to: viem0.Address | null;
|
|
7999
|
+
from: viem0.Address;
|
|
8000
|
+
gas: bigint;
|
|
8001
|
+
nonce: number;
|
|
8002
|
+
value: bigint;
|
|
8003
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8004
|
+
gasPrice: bigint;
|
|
8005
|
+
maxFeePerGas?: undefined | undefined;
|
|
8006
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
8007
|
+
accessList: viem0.AccessList;
|
|
8008
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8009
|
+
authorizationList?: undefined | undefined;
|
|
8010
|
+
hash: viem0.Hash;
|
|
8011
|
+
r: viem0.Hex;
|
|
8012
|
+
s: viem0.Hex;
|
|
8013
|
+
v: bigint;
|
|
8014
|
+
yParity: number;
|
|
8015
|
+
typeHex: viem0.Hex | null;
|
|
8016
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : bigint : never : never;
|
|
8017
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
|
|
8018
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
8019
|
+
} | {
|
|
8020
|
+
chainId: number;
|
|
8021
|
+
input: viem0.Hex;
|
|
8022
|
+
type: "eip1559";
|
|
8023
|
+
to: viem0.Address | null;
|
|
8024
|
+
from: viem0.Address;
|
|
8025
|
+
gas: bigint;
|
|
8026
|
+
nonce: number;
|
|
8027
|
+
value: bigint;
|
|
8028
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8029
|
+
gasPrice?: undefined | undefined;
|
|
8030
|
+
maxFeePerGas: bigint;
|
|
8031
|
+
maxPriorityFeePerGas: bigint;
|
|
8032
|
+
accessList: viem0.AccessList;
|
|
8033
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8034
|
+
authorizationList?: undefined | undefined;
|
|
8035
|
+
hash: viem0.Hash;
|
|
8036
|
+
r: viem0.Hex;
|
|
8037
|
+
s: viem0.Hex;
|
|
8038
|
+
v: bigint;
|
|
8039
|
+
yParity: number;
|
|
8040
|
+
typeHex: viem0.Hex | null;
|
|
8041
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : bigint : never : never;
|
|
8042
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
|
|
8043
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
8044
|
+
} | {
|
|
8045
|
+
chainId: number;
|
|
8046
|
+
input: viem0.Hex;
|
|
8047
|
+
type: "eip4844";
|
|
8048
|
+
to: viem0.Address | null;
|
|
8049
|
+
from: viem0.Address;
|
|
8050
|
+
gas: bigint;
|
|
8051
|
+
nonce: number;
|
|
8052
|
+
value: bigint;
|
|
8053
|
+
maxFeePerBlobGas: bigint;
|
|
8054
|
+
gasPrice?: undefined | undefined;
|
|
8055
|
+
maxFeePerGas: bigint;
|
|
8056
|
+
maxPriorityFeePerGas: bigint;
|
|
8057
|
+
accessList: viem0.AccessList;
|
|
8058
|
+
blobVersionedHashes: readonly viem0.Hex[];
|
|
8059
|
+
authorizationList?: undefined | undefined;
|
|
8060
|
+
hash: viem0.Hash;
|
|
8061
|
+
r: viem0.Hex;
|
|
8062
|
+
s: viem0.Hex;
|
|
8063
|
+
v: bigint;
|
|
8064
|
+
yParity: number;
|
|
8065
|
+
typeHex: viem0.Hex | null;
|
|
8066
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : bigint : never : never;
|
|
8067
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
|
|
8068
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
8069
|
+
} | {
|
|
8070
|
+
chainId: number;
|
|
8071
|
+
input: viem0.Hex;
|
|
8072
|
+
type: "eip7702";
|
|
8073
|
+
to: viem0.Address | null;
|
|
8074
|
+
from: viem0.Address;
|
|
8075
|
+
gas: bigint;
|
|
8076
|
+
nonce: number;
|
|
8077
|
+
value: bigint;
|
|
8078
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8079
|
+
gasPrice?: undefined | undefined;
|
|
8080
|
+
maxFeePerGas: bigint;
|
|
8081
|
+
maxPriorityFeePerGas: bigint;
|
|
8082
|
+
accessList: viem0.AccessList;
|
|
8083
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8084
|
+
authorizationList: viem0.SignedAuthorizationList;
|
|
8085
|
+
hash: viem0.Hash;
|
|
8086
|
+
r: viem0.Hex;
|
|
8087
|
+
s: viem0.Hex;
|
|
8088
|
+
v: bigint;
|
|
8089
|
+
yParity: number;
|
|
8090
|
+
typeHex: viem0.Hex | null;
|
|
8091
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : bigint : never : never;
|
|
8092
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : `0x${string}` : never : never;
|
|
8093
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
|
|
8094
|
+
}>;
|
|
8095
|
+
getTransactionConfirmations: (args: viem0.GetTransactionConfirmationsParameters<Chain>) => Promise<viem0.GetTransactionConfirmationsReturnType>;
|
|
8096
|
+
getTransactionCount: (args: viem0.GetTransactionCountParameters) => Promise<viem0.GetTransactionCountReturnType>;
|
|
8097
|
+
getTransactionReceipt: (args: viem0.GetTransactionReceiptParameters) => Promise<viem0.TransactionReceipt>;
|
|
8098
|
+
multicall: <const contracts extends readonly unknown[], allowFailure extends boolean = true>(args: viem0.MulticallParameters<contracts, allowFailure>) => Promise<viem0.MulticallReturnType<contracts, allowFailure>>;
|
|
8099
|
+
prepareTransactionRequest: <const request extends viem0.PrepareTransactionRequestRequest<Chain, chainOverride>, chainOverride extends Chain | undefined = undefined, accountOverride extends viem0.Account | viem0.Address | undefined = undefined>(args: viem0.PrepareTransactionRequestParameters<Chain, undefined, chainOverride, accountOverride, request>) => Promise<viem0.UnionRequiredBy<Extract<viem0.UnionOmit<viem0.ExtractChainFormatterParameters<viem0.DeriveChain<Chain, chainOverride>, "transactionRequest", viem0.TransactionRequest>, "from"> & (viem0.DeriveChain<Chain, chainOverride> extends infer T_1 ? T_1 extends viem0.DeriveChain<Chain, chainOverride> ? T_1 extends Chain ? {
|
|
8100
|
+
chain: T_1;
|
|
8101
|
+
} : {
|
|
8102
|
+
chain?: undefined;
|
|
8103
|
+
} : never : never) & (viem0.DeriveAccount<undefined, accountOverride> extends infer T_2 ? T_2 extends viem0.DeriveAccount<undefined, accountOverride> ? T_2 extends viem0.Account ? {
|
|
8104
|
+
account: T_2;
|
|
8105
|
+
from: viem0.Address;
|
|
8106
|
+
} : {
|
|
8107
|
+
account?: undefined;
|
|
8108
|
+
from?: undefined;
|
|
8109
|
+
} : never : never), viem0.IsNever<((request["type"] extends string | undefined ? request["type"] : viem0.GetTransactionType<request, (request extends {
|
|
8110
|
+
accessList?: undefined | undefined;
|
|
8111
|
+
authorizationList?: undefined | undefined;
|
|
8112
|
+
blobs?: undefined | undefined;
|
|
8113
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8114
|
+
gasPrice?: bigint | undefined;
|
|
8115
|
+
sidecars?: undefined | undefined;
|
|
8116
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
8117
|
+
accessList?: viem0.AccessList | undefined;
|
|
8118
|
+
authorizationList?: undefined | undefined;
|
|
8119
|
+
blobs?: undefined | undefined;
|
|
8120
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8121
|
+
gasPrice?: undefined | undefined;
|
|
8122
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8123
|
+
maxFeePerGas?: bigint | undefined;
|
|
8124
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8125
|
+
sidecars?: undefined | undefined;
|
|
8126
|
+
} & (viem0.OneOf<{
|
|
8127
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
8128
|
+
} | {
|
|
8129
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
8130
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
8131
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
8132
|
+
}) ? "eip1559" : never) | (request extends {
|
|
8133
|
+
accessList?: viem0.AccessList | undefined;
|
|
8134
|
+
authorizationList?: undefined | undefined;
|
|
8135
|
+
blobs?: undefined | undefined;
|
|
8136
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8137
|
+
gasPrice?: bigint | undefined;
|
|
8138
|
+
sidecars?: undefined | undefined;
|
|
8139
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8140
|
+
maxFeePerGas?: undefined | undefined;
|
|
8141
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
8142
|
+
} & {
|
|
8143
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
8144
|
+
} ? "eip2930" : never) | (request extends ({
|
|
8145
|
+
accessList?: viem0.AccessList | undefined;
|
|
8146
|
+
authorizationList?: undefined | undefined;
|
|
8147
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8148
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8149
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8150
|
+
maxFeePerGas?: bigint | undefined;
|
|
8151
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8152
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8153
|
+
} | {
|
|
8154
|
+
accessList?: viem0.AccessList | undefined;
|
|
8155
|
+
authorizationList?: undefined | undefined;
|
|
8156
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8157
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8158
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8159
|
+
maxFeePerGas?: bigint | undefined;
|
|
8160
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8161
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8162
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
8163
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
8164
|
+
} | {
|
|
8165
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
8166
|
+
} | {
|
|
8167
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
8168
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
8169
|
+
accessList?: viem0.AccessList | undefined;
|
|
8170
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8171
|
+
blobs?: undefined | undefined;
|
|
8172
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8173
|
+
gasPrice?: undefined | undefined;
|
|
8174
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8175
|
+
maxFeePerGas?: bigint | undefined;
|
|
8176
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8177
|
+
sidecars?: undefined | undefined;
|
|
8178
|
+
} | {
|
|
8179
|
+
accessList?: viem0.AccessList | undefined;
|
|
8180
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8181
|
+
blobs?: undefined | undefined;
|
|
8182
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8183
|
+
gasPrice?: undefined | undefined;
|
|
8184
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8185
|
+
maxFeePerGas?: bigint | undefined;
|
|
8186
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8187
|
+
sidecars?: undefined | undefined;
|
|
8188
|
+
}) & {
|
|
8189
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
8190
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
8191
|
+
accessList?: undefined | undefined;
|
|
8192
|
+
authorizationList?: undefined | undefined;
|
|
8193
|
+
blobs?: undefined | undefined;
|
|
8194
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8195
|
+
gasPrice?: bigint | undefined;
|
|
8196
|
+
sidecars?: undefined | undefined;
|
|
8197
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
8198
|
+
accessList?: viem0.AccessList | undefined;
|
|
8199
|
+
authorizationList?: undefined | undefined;
|
|
8200
|
+
blobs?: undefined | undefined;
|
|
8201
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8202
|
+
gasPrice?: undefined | undefined;
|
|
8203
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8204
|
+
maxFeePerGas?: bigint | undefined;
|
|
8205
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8206
|
+
sidecars?: undefined | undefined;
|
|
8207
|
+
} & (viem0.OneOf<{
|
|
8208
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
8209
|
+
} | {
|
|
8210
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
8211
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
8212
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
8213
|
+
}) ? "eip1559" : never) | (request extends {
|
|
8214
|
+
accessList?: viem0.AccessList | undefined;
|
|
8215
|
+
authorizationList?: undefined | undefined;
|
|
8216
|
+
blobs?: undefined | undefined;
|
|
8217
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8218
|
+
gasPrice?: bigint | undefined;
|
|
8219
|
+
sidecars?: undefined | undefined;
|
|
8220
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8221
|
+
maxFeePerGas?: undefined | undefined;
|
|
8222
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
8223
|
+
} & {
|
|
8224
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
8225
|
+
} ? "eip2930" : never) | (request extends ({
|
|
8226
|
+
accessList?: viem0.AccessList | undefined;
|
|
8227
|
+
authorizationList?: undefined | undefined;
|
|
8228
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8229
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8230
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8231
|
+
maxFeePerGas?: bigint | undefined;
|
|
8232
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8233
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8234
|
+
} | {
|
|
8235
|
+
accessList?: viem0.AccessList | undefined;
|
|
8236
|
+
authorizationList?: undefined | undefined;
|
|
8237
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8238
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8239
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8240
|
+
maxFeePerGas?: bigint | undefined;
|
|
8241
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8242
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8243
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
8244
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
8245
|
+
} | {
|
|
8246
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
8247
|
+
} | {
|
|
8248
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
8249
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
8250
|
+
accessList?: viem0.AccessList | undefined;
|
|
8251
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8252
|
+
blobs?: undefined | undefined;
|
|
8253
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8254
|
+
gasPrice?: undefined | undefined;
|
|
8255
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8256
|
+
maxFeePerGas?: bigint | undefined;
|
|
8257
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8258
|
+
sidecars?: undefined | undefined;
|
|
8259
|
+
} | {
|
|
8260
|
+
accessList?: viem0.AccessList | undefined;
|
|
8261
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8262
|
+
blobs?: undefined | undefined;
|
|
8263
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8264
|
+
gasPrice?: undefined | undefined;
|
|
8265
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8266
|
+
maxFeePerGas?: bigint | undefined;
|
|
8267
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8268
|
+
sidecars?: undefined | undefined;
|
|
8269
|
+
}) & {
|
|
8270
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
8271
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_3 ? T_3 extends (request["type"] extends string | undefined ? request["type"] : viem0.GetTransactionType<request, (request extends {
|
|
8272
|
+
accessList?: undefined | undefined;
|
|
8273
|
+
authorizationList?: undefined | undefined;
|
|
8274
|
+
blobs?: undefined | undefined;
|
|
8275
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8276
|
+
gasPrice?: bigint | undefined;
|
|
8277
|
+
sidecars?: undefined | undefined;
|
|
8278
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
8279
|
+
accessList?: viem0.AccessList | undefined;
|
|
8280
|
+
authorizationList?: undefined | undefined;
|
|
8281
|
+
blobs?: undefined | undefined;
|
|
8282
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8283
|
+
gasPrice?: undefined | undefined;
|
|
8284
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8285
|
+
maxFeePerGas?: bigint | undefined;
|
|
8286
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8287
|
+
sidecars?: undefined | undefined;
|
|
8288
|
+
} & (viem0.OneOf<{
|
|
8289
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
8290
|
+
} | {
|
|
8291
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
8292
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
8293
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
8294
|
+
}) ? "eip1559" : never) | (request extends {
|
|
8295
|
+
accessList?: viem0.AccessList | undefined;
|
|
8296
|
+
authorizationList?: undefined | undefined;
|
|
8297
|
+
blobs?: undefined | undefined;
|
|
8298
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8299
|
+
gasPrice?: bigint | undefined;
|
|
8300
|
+
sidecars?: undefined | undefined;
|
|
8301
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8302
|
+
maxFeePerGas?: undefined | undefined;
|
|
8303
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
8304
|
+
} & {
|
|
8305
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
8306
|
+
} ? "eip2930" : never) | (request extends ({
|
|
8307
|
+
accessList?: viem0.AccessList | undefined;
|
|
8308
|
+
authorizationList?: undefined | undefined;
|
|
8309
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8310
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8311
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8312
|
+
maxFeePerGas?: bigint | undefined;
|
|
8313
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8314
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8315
|
+
} | {
|
|
8316
|
+
accessList?: viem0.AccessList | undefined;
|
|
8317
|
+
authorizationList?: undefined | undefined;
|
|
8318
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8319
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8320
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8321
|
+
maxFeePerGas?: bigint | undefined;
|
|
8322
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8323
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8324
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
8325
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
8326
|
+
} | {
|
|
8327
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
8328
|
+
} | {
|
|
8329
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
8330
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
8331
|
+
accessList?: viem0.AccessList | undefined;
|
|
8332
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8333
|
+
blobs?: undefined | undefined;
|
|
8334
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8335
|
+
gasPrice?: undefined | undefined;
|
|
8336
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8337
|
+
maxFeePerGas?: bigint | undefined;
|
|
8338
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8339
|
+
sidecars?: undefined | undefined;
|
|
8340
|
+
} | {
|
|
8341
|
+
accessList?: viem0.AccessList | undefined;
|
|
8342
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8343
|
+
blobs?: undefined | undefined;
|
|
8344
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8345
|
+
gasPrice?: undefined | undefined;
|
|
8346
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8347
|
+
maxFeePerGas?: bigint | undefined;
|
|
8348
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8349
|
+
sidecars?: undefined | undefined;
|
|
8350
|
+
}) & {
|
|
8351
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
8352
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
8353
|
+
accessList?: undefined | undefined;
|
|
8354
|
+
authorizationList?: undefined | undefined;
|
|
8355
|
+
blobs?: undefined | undefined;
|
|
8356
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8357
|
+
gasPrice?: bigint | undefined;
|
|
8358
|
+
sidecars?: undefined | undefined;
|
|
8359
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
8360
|
+
accessList?: viem0.AccessList | undefined;
|
|
8361
|
+
authorizationList?: undefined | undefined;
|
|
8362
|
+
blobs?: undefined | undefined;
|
|
8363
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8364
|
+
gasPrice?: undefined | undefined;
|
|
8365
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8366
|
+
maxFeePerGas?: bigint | undefined;
|
|
8367
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8368
|
+
sidecars?: undefined | undefined;
|
|
8369
|
+
} & (viem0.OneOf<{
|
|
8370
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
8371
|
+
} | {
|
|
8372
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
8373
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
8374
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
8375
|
+
}) ? "eip1559" : never) | (request extends {
|
|
8376
|
+
accessList?: viem0.AccessList | undefined;
|
|
8377
|
+
authorizationList?: undefined | undefined;
|
|
8378
|
+
blobs?: undefined | undefined;
|
|
8379
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8380
|
+
gasPrice?: bigint | undefined;
|
|
8381
|
+
sidecars?: undefined | undefined;
|
|
8382
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8383
|
+
maxFeePerGas?: undefined | undefined;
|
|
8384
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
8385
|
+
} & {
|
|
8386
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
8387
|
+
} ? "eip2930" : never) | (request extends ({
|
|
8388
|
+
accessList?: viem0.AccessList | undefined;
|
|
8389
|
+
authorizationList?: undefined | undefined;
|
|
8390
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8391
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8392
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8393
|
+
maxFeePerGas?: bigint | undefined;
|
|
8394
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8395
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8396
|
+
} | {
|
|
8397
|
+
accessList?: viem0.AccessList | undefined;
|
|
8398
|
+
authorizationList?: undefined | undefined;
|
|
8399
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8400
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8401
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8402
|
+
maxFeePerGas?: bigint | undefined;
|
|
8403
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8404
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8405
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
8406
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
8407
|
+
} | {
|
|
8408
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
8409
|
+
} | {
|
|
8410
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
8411
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
8412
|
+
accessList?: viem0.AccessList | undefined;
|
|
8413
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8414
|
+
blobs?: undefined | undefined;
|
|
8415
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8416
|
+
gasPrice?: undefined | undefined;
|
|
8417
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8418
|
+
maxFeePerGas?: bigint | undefined;
|
|
8419
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8420
|
+
sidecars?: undefined | undefined;
|
|
8421
|
+
} | {
|
|
8422
|
+
accessList?: viem0.AccessList | undefined;
|
|
8423
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8424
|
+
blobs?: undefined | undefined;
|
|
8425
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8426
|
+
gasPrice?: undefined | undefined;
|
|
8427
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8428
|
+
maxFeePerGas?: bigint | undefined;
|
|
8429
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8430
|
+
sidecars?: undefined | undefined;
|
|
8431
|
+
}) & {
|
|
8432
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
8433
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_3 extends "legacy" ? viem0.TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem0.GetTransactionType<request, (request extends {
|
|
8434
|
+
accessList?: undefined | undefined;
|
|
8435
|
+
authorizationList?: undefined | undefined;
|
|
8436
|
+
blobs?: undefined | undefined;
|
|
8437
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8438
|
+
gasPrice?: bigint | undefined;
|
|
8439
|
+
sidecars?: undefined | undefined;
|
|
8440
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
8441
|
+
accessList?: viem0.AccessList | undefined;
|
|
8442
|
+
authorizationList?: undefined | undefined;
|
|
8443
|
+
blobs?: undefined | undefined;
|
|
8444
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8445
|
+
gasPrice?: undefined | undefined;
|
|
8446
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8447
|
+
maxFeePerGas?: bigint | undefined;
|
|
8448
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8449
|
+
sidecars?: undefined | undefined;
|
|
8450
|
+
} & (viem0.OneOf<{
|
|
8451
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
8452
|
+
} | {
|
|
8453
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
8454
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
8455
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
8456
|
+
}) ? "eip1559" : never) | (request extends {
|
|
8457
|
+
accessList?: viem0.AccessList | undefined;
|
|
8458
|
+
authorizationList?: undefined | undefined;
|
|
8459
|
+
blobs?: undefined | undefined;
|
|
8460
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8461
|
+
gasPrice?: bigint | undefined;
|
|
8462
|
+
sidecars?: undefined | undefined;
|
|
8463
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8464
|
+
maxFeePerGas?: undefined | undefined;
|
|
8465
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
8466
|
+
} & {
|
|
8467
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
8468
|
+
} ? "eip2930" : never) | (request extends ({
|
|
8469
|
+
accessList?: viem0.AccessList | undefined;
|
|
8470
|
+
authorizationList?: undefined | undefined;
|
|
8471
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8472
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8473
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8474
|
+
maxFeePerGas?: bigint | undefined;
|
|
8475
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8476
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8477
|
+
} | {
|
|
8478
|
+
accessList?: viem0.AccessList | undefined;
|
|
8479
|
+
authorizationList?: undefined | undefined;
|
|
8480
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8481
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8482
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8483
|
+
maxFeePerGas?: bigint | undefined;
|
|
8484
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8485
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8486
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
8487
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
8488
|
+
} | {
|
|
8489
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
8490
|
+
} | {
|
|
8491
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
8492
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
8493
|
+
accessList?: viem0.AccessList | undefined;
|
|
8494
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8495
|
+
blobs?: undefined | undefined;
|
|
8496
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8497
|
+
gasPrice?: undefined | undefined;
|
|
8498
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8499
|
+
maxFeePerGas?: bigint | undefined;
|
|
8500
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8501
|
+
sidecars?: undefined | undefined;
|
|
8502
|
+
} | {
|
|
8503
|
+
accessList?: viem0.AccessList | undefined;
|
|
8504
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8505
|
+
blobs?: undefined | undefined;
|
|
8506
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8507
|
+
gasPrice?: undefined | undefined;
|
|
8508
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8509
|
+
maxFeePerGas?: bigint | undefined;
|
|
8510
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8511
|
+
sidecars?: undefined | undefined;
|
|
8512
|
+
}) & {
|
|
8513
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
8514
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
8515
|
+
accessList?: undefined | undefined;
|
|
8516
|
+
authorizationList?: undefined | undefined;
|
|
8517
|
+
blobs?: undefined | undefined;
|
|
8518
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8519
|
+
gasPrice?: bigint | undefined;
|
|
8520
|
+
sidecars?: undefined | undefined;
|
|
8521
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
8522
|
+
accessList?: viem0.AccessList | undefined;
|
|
8523
|
+
authorizationList?: undefined | undefined;
|
|
8524
|
+
blobs?: undefined | undefined;
|
|
8525
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8526
|
+
gasPrice?: undefined | undefined;
|
|
8527
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8528
|
+
maxFeePerGas?: bigint | undefined;
|
|
8529
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8530
|
+
sidecars?: undefined | undefined;
|
|
8531
|
+
} & (viem0.OneOf<{
|
|
8532
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
8533
|
+
} | {
|
|
8534
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
8535
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
8536
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
8537
|
+
}) ? "eip1559" : never) | (request extends {
|
|
8538
|
+
accessList?: viem0.AccessList | undefined;
|
|
8539
|
+
authorizationList?: undefined | undefined;
|
|
8540
|
+
blobs?: undefined | undefined;
|
|
8541
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8542
|
+
gasPrice?: bigint | undefined;
|
|
8543
|
+
sidecars?: undefined | undefined;
|
|
8544
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8545
|
+
maxFeePerGas?: undefined | undefined;
|
|
8546
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
8547
|
+
} & {
|
|
8548
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
8549
|
+
} ? "eip2930" : never) | (request extends ({
|
|
8550
|
+
accessList?: viem0.AccessList | undefined;
|
|
8551
|
+
authorizationList?: undefined | undefined;
|
|
8552
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8553
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8554
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8555
|
+
maxFeePerGas?: bigint | undefined;
|
|
8556
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8557
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8558
|
+
} | {
|
|
8559
|
+
accessList?: viem0.AccessList | undefined;
|
|
8560
|
+
authorizationList?: undefined | undefined;
|
|
8561
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8562
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8563
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8564
|
+
maxFeePerGas?: bigint | undefined;
|
|
8565
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8566
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8567
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
8568
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
8569
|
+
} | {
|
|
8570
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
8571
|
+
} | {
|
|
8572
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
8573
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
8574
|
+
accessList?: viem0.AccessList | undefined;
|
|
8575
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8576
|
+
blobs?: undefined | undefined;
|
|
8577
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8578
|
+
gasPrice?: undefined | undefined;
|
|
8579
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8580
|
+
maxFeePerGas?: bigint | undefined;
|
|
8581
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8582
|
+
sidecars?: undefined | undefined;
|
|
8583
|
+
} | {
|
|
8584
|
+
accessList?: viem0.AccessList | undefined;
|
|
8585
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8586
|
+
blobs?: undefined | undefined;
|
|
8587
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8588
|
+
gasPrice?: undefined | undefined;
|
|
8589
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8590
|
+
maxFeePerGas?: bigint | undefined;
|
|
8591
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8592
|
+
sidecars?: undefined | undefined;
|
|
8593
|
+
}) & {
|
|
8594
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
8595
|
+
} ? "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"] : viem0.GetTransactionType<request, (request extends {
|
|
8596
|
+
accessList?: undefined | undefined;
|
|
8597
|
+
authorizationList?: undefined | undefined;
|
|
8598
|
+
blobs?: undefined | undefined;
|
|
8599
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8600
|
+
gasPrice?: bigint | undefined;
|
|
8601
|
+
sidecars?: undefined | undefined;
|
|
8602
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
8603
|
+
accessList?: viem0.AccessList | undefined;
|
|
8604
|
+
authorizationList?: undefined | undefined;
|
|
8605
|
+
blobs?: undefined | undefined;
|
|
8606
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8607
|
+
gasPrice?: undefined | undefined;
|
|
8608
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8609
|
+
maxFeePerGas?: bigint | undefined;
|
|
8610
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8611
|
+
sidecars?: undefined | undefined;
|
|
8612
|
+
} & (viem0.OneOf<{
|
|
8613
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
8614
|
+
} | {
|
|
8615
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
8616
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
8617
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
8618
|
+
}) ? "eip1559" : never) | (request extends {
|
|
8619
|
+
accessList?: viem0.AccessList | undefined;
|
|
8620
|
+
authorizationList?: undefined | undefined;
|
|
8621
|
+
blobs?: undefined | undefined;
|
|
8622
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8623
|
+
gasPrice?: bigint | undefined;
|
|
8624
|
+
sidecars?: undefined | undefined;
|
|
8625
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8626
|
+
maxFeePerGas?: undefined | undefined;
|
|
8627
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
8628
|
+
} & {
|
|
8629
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
8630
|
+
} ? "eip2930" : never) | (request extends ({
|
|
8631
|
+
accessList?: viem0.AccessList | undefined;
|
|
8632
|
+
authorizationList?: undefined | undefined;
|
|
8633
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8634
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8635
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8636
|
+
maxFeePerGas?: bigint | undefined;
|
|
8637
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8638
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8639
|
+
} | {
|
|
8640
|
+
accessList?: viem0.AccessList | undefined;
|
|
8641
|
+
authorizationList?: undefined | undefined;
|
|
8642
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8643
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8644
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8645
|
+
maxFeePerGas?: bigint | undefined;
|
|
8646
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8647
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8648
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
8649
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
8650
|
+
} | {
|
|
8651
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
8652
|
+
} | {
|
|
8653
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
8654
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
8655
|
+
accessList?: viem0.AccessList | undefined;
|
|
8656
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8657
|
+
blobs?: undefined | undefined;
|
|
8658
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8659
|
+
gasPrice?: undefined | undefined;
|
|
8660
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8661
|
+
maxFeePerGas?: bigint | undefined;
|
|
8662
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8663
|
+
sidecars?: undefined | undefined;
|
|
8664
|
+
} | {
|
|
8665
|
+
accessList?: viem0.AccessList | undefined;
|
|
8666
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8667
|
+
blobs?: undefined | undefined;
|
|
8668
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8669
|
+
gasPrice?: undefined | undefined;
|
|
8670
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8671
|
+
maxFeePerGas?: bigint | undefined;
|
|
8672
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8673
|
+
sidecars?: undefined | undefined;
|
|
8674
|
+
}) & {
|
|
8675
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
8676
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
8677
|
+
accessList?: undefined | undefined;
|
|
8678
|
+
authorizationList?: undefined | undefined;
|
|
8679
|
+
blobs?: undefined | undefined;
|
|
8680
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8681
|
+
gasPrice?: bigint | undefined;
|
|
8682
|
+
sidecars?: undefined | undefined;
|
|
8683
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
8684
|
+
accessList?: viem0.AccessList | undefined;
|
|
8685
|
+
authorizationList?: undefined | undefined;
|
|
8686
|
+
blobs?: undefined | undefined;
|
|
8687
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8688
|
+
gasPrice?: undefined | undefined;
|
|
8689
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8690
|
+
maxFeePerGas?: bigint | undefined;
|
|
8691
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8692
|
+
sidecars?: undefined | undefined;
|
|
8693
|
+
} & (viem0.OneOf<{
|
|
8694
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
8695
|
+
} | {
|
|
8696
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
8697
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
8698
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
8699
|
+
}) ? "eip1559" : never) | (request extends {
|
|
8700
|
+
accessList?: viem0.AccessList | undefined;
|
|
8701
|
+
authorizationList?: undefined | undefined;
|
|
8702
|
+
blobs?: undefined | undefined;
|
|
8703
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8704
|
+
gasPrice?: bigint | undefined;
|
|
8705
|
+
sidecars?: undefined | undefined;
|
|
8706
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8707
|
+
maxFeePerGas?: undefined | undefined;
|
|
8708
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
8709
|
+
} & {
|
|
8710
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
8711
|
+
} ? "eip2930" : never) | (request extends ({
|
|
8712
|
+
accessList?: viem0.AccessList | undefined;
|
|
8713
|
+
authorizationList?: undefined | undefined;
|
|
8714
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8715
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8716
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8717
|
+
maxFeePerGas?: bigint | undefined;
|
|
8718
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8719
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8720
|
+
} | {
|
|
8721
|
+
accessList?: viem0.AccessList | undefined;
|
|
8722
|
+
authorizationList?: undefined | undefined;
|
|
8723
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8724
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8725
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8726
|
+
maxFeePerGas?: bigint | undefined;
|
|
8727
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8728
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8729
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
8730
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
8731
|
+
} | {
|
|
8732
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
8733
|
+
} | {
|
|
8734
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
8735
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
8736
|
+
accessList?: viem0.AccessList | undefined;
|
|
8737
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8738
|
+
blobs?: undefined | undefined;
|
|
8739
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8740
|
+
gasPrice?: undefined | undefined;
|
|
8741
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8742
|
+
maxFeePerGas?: bigint | undefined;
|
|
8743
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8744
|
+
sidecars?: undefined | undefined;
|
|
8745
|
+
} | {
|
|
8746
|
+
accessList?: viem0.AccessList | undefined;
|
|
8747
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8748
|
+
blobs?: undefined | undefined;
|
|
8749
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8750
|
+
gasPrice?: undefined | undefined;
|
|
8751
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8752
|
+
maxFeePerGas?: bigint | undefined;
|
|
8753
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8754
|
+
sidecars?: undefined | undefined;
|
|
8755
|
+
}) & {
|
|
8756
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
8757
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_4 extends "eip1559" ? viem0.TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem0.GetTransactionType<request, (request extends {
|
|
8758
|
+
accessList?: undefined | undefined;
|
|
8759
|
+
authorizationList?: undefined | undefined;
|
|
8760
|
+
blobs?: undefined | undefined;
|
|
8761
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8762
|
+
gasPrice?: bigint | undefined;
|
|
8763
|
+
sidecars?: undefined | undefined;
|
|
8764
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
8765
|
+
accessList?: viem0.AccessList | undefined;
|
|
8766
|
+
authorizationList?: undefined | undefined;
|
|
8767
|
+
blobs?: undefined | undefined;
|
|
8768
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8769
|
+
gasPrice?: undefined | undefined;
|
|
8770
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8771
|
+
maxFeePerGas?: bigint | undefined;
|
|
8772
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8773
|
+
sidecars?: undefined | undefined;
|
|
8774
|
+
} & (viem0.OneOf<{
|
|
8775
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
8776
|
+
} | {
|
|
8777
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
8778
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
8779
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
8780
|
+
}) ? "eip1559" : never) | (request extends {
|
|
8781
|
+
accessList?: viem0.AccessList | undefined;
|
|
8782
|
+
authorizationList?: undefined | undefined;
|
|
8783
|
+
blobs?: undefined | undefined;
|
|
8784
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8785
|
+
gasPrice?: bigint | undefined;
|
|
8786
|
+
sidecars?: undefined | undefined;
|
|
8787
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8788
|
+
maxFeePerGas?: undefined | undefined;
|
|
8789
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
8790
|
+
} & {
|
|
8791
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
8792
|
+
} ? "eip2930" : never) | (request extends ({
|
|
8793
|
+
accessList?: viem0.AccessList | undefined;
|
|
8794
|
+
authorizationList?: undefined | undefined;
|
|
8795
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8796
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8797
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8798
|
+
maxFeePerGas?: bigint | undefined;
|
|
8799
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8800
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8801
|
+
} | {
|
|
8802
|
+
accessList?: viem0.AccessList | undefined;
|
|
8803
|
+
authorizationList?: undefined | undefined;
|
|
8804
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8805
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8806
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8807
|
+
maxFeePerGas?: bigint | undefined;
|
|
8808
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8809
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8810
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
8811
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
8812
|
+
} | {
|
|
8813
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
8814
|
+
} | {
|
|
8815
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
8816
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
8817
|
+
accessList?: viem0.AccessList | undefined;
|
|
8818
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8819
|
+
blobs?: undefined | undefined;
|
|
8820
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8821
|
+
gasPrice?: undefined | undefined;
|
|
8822
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8823
|
+
maxFeePerGas?: bigint | undefined;
|
|
8824
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8825
|
+
sidecars?: undefined | undefined;
|
|
8826
|
+
} | {
|
|
8827
|
+
accessList?: viem0.AccessList | undefined;
|
|
8828
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8829
|
+
blobs?: undefined | undefined;
|
|
8830
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8831
|
+
gasPrice?: undefined | undefined;
|
|
8832
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8833
|
+
maxFeePerGas?: bigint | undefined;
|
|
8834
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8835
|
+
sidecars?: undefined | undefined;
|
|
8836
|
+
}) & {
|
|
8837
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
8838
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
8839
|
+
accessList?: undefined | undefined;
|
|
8840
|
+
authorizationList?: undefined | undefined;
|
|
8841
|
+
blobs?: undefined | undefined;
|
|
8842
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8843
|
+
gasPrice?: bigint | undefined;
|
|
8844
|
+
sidecars?: undefined | undefined;
|
|
8845
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
8846
|
+
accessList?: viem0.AccessList | undefined;
|
|
8847
|
+
authorizationList?: undefined | undefined;
|
|
8848
|
+
blobs?: undefined | undefined;
|
|
8849
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8850
|
+
gasPrice?: undefined | undefined;
|
|
8851
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8852
|
+
maxFeePerGas?: bigint | undefined;
|
|
8853
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8854
|
+
sidecars?: undefined | undefined;
|
|
8855
|
+
} & (viem0.OneOf<{
|
|
8856
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
8857
|
+
} | {
|
|
8858
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
8859
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
8860
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
8861
|
+
}) ? "eip1559" : never) | (request extends {
|
|
8862
|
+
accessList?: viem0.AccessList | undefined;
|
|
8863
|
+
authorizationList?: undefined | undefined;
|
|
8864
|
+
blobs?: undefined | undefined;
|
|
8865
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8866
|
+
gasPrice?: bigint | undefined;
|
|
8867
|
+
sidecars?: undefined | undefined;
|
|
8868
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8869
|
+
maxFeePerGas?: undefined | undefined;
|
|
8870
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
8871
|
+
} & {
|
|
8872
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
8873
|
+
} ? "eip2930" : never) | (request extends ({
|
|
8874
|
+
accessList?: viem0.AccessList | undefined;
|
|
8875
|
+
authorizationList?: undefined | undefined;
|
|
8876
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8877
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8878
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8879
|
+
maxFeePerGas?: bigint | undefined;
|
|
8880
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8881
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8882
|
+
} | {
|
|
8883
|
+
accessList?: viem0.AccessList | undefined;
|
|
8884
|
+
authorizationList?: undefined | undefined;
|
|
8885
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8886
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8887
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8888
|
+
maxFeePerGas?: bigint | undefined;
|
|
8889
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8890
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8891
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
8892
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
8893
|
+
} | {
|
|
8894
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
8895
|
+
} | {
|
|
8896
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
8897
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
8898
|
+
accessList?: viem0.AccessList | undefined;
|
|
8899
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8900
|
+
blobs?: undefined | undefined;
|
|
8901
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8902
|
+
gasPrice?: undefined | undefined;
|
|
8903
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8904
|
+
maxFeePerGas?: bigint | undefined;
|
|
8905
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8906
|
+
sidecars?: undefined | undefined;
|
|
8907
|
+
} | {
|
|
8908
|
+
accessList?: viem0.AccessList | undefined;
|
|
8909
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8910
|
+
blobs?: undefined | undefined;
|
|
8911
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8912
|
+
gasPrice?: undefined | undefined;
|
|
8913
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8914
|
+
maxFeePerGas?: bigint | undefined;
|
|
8915
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8916
|
+
sidecars?: undefined | undefined;
|
|
8917
|
+
}) & {
|
|
8918
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
8919
|
+
} ? "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"] : viem0.GetTransactionType<request, (request extends {
|
|
8920
|
+
accessList?: undefined | undefined;
|
|
8921
|
+
authorizationList?: undefined | undefined;
|
|
8922
|
+
blobs?: undefined | undefined;
|
|
8923
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8924
|
+
gasPrice?: bigint | undefined;
|
|
8925
|
+
sidecars?: undefined | undefined;
|
|
8926
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
8927
|
+
accessList?: viem0.AccessList | undefined;
|
|
8928
|
+
authorizationList?: undefined | undefined;
|
|
8929
|
+
blobs?: undefined | undefined;
|
|
8930
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8931
|
+
gasPrice?: undefined | undefined;
|
|
8932
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8933
|
+
maxFeePerGas?: bigint | undefined;
|
|
8934
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8935
|
+
sidecars?: undefined | undefined;
|
|
8936
|
+
} & (viem0.OneOf<{
|
|
8937
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
8938
|
+
} | {
|
|
8939
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
8940
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
8941
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
8942
|
+
}) ? "eip1559" : never) | (request extends {
|
|
8943
|
+
accessList?: viem0.AccessList | undefined;
|
|
8944
|
+
authorizationList?: undefined | undefined;
|
|
8945
|
+
blobs?: undefined | undefined;
|
|
8946
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8947
|
+
gasPrice?: bigint | undefined;
|
|
8948
|
+
sidecars?: undefined | undefined;
|
|
8949
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8950
|
+
maxFeePerGas?: undefined | undefined;
|
|
8951
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
8952
|
+
} & {
|
|
8953
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
8954
|
+
} ? "eip2930" : never) | (request extends ({
|
|
8955
|
+
accessList?: viem0.AccessList | undefined;
|
|
8956
|
+
authorizationList?: undefined | undefined;
|
|
8957
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8958
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8959
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8960
|
+
maxFeePerGas?: bigint | undefined;
|
|
8961
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8962
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8963
|
+
} | {
|
|
8964
|
+
accessList?: viem0.AccessList | undefined;
|
|
8965
|
+
authorizationList?: undefined | undefined;
|
|
8966
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
8967
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
8968
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
8969
|
+
maxFeePerGas?: bigint | undefined;
|
|
8970
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8971
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
8972
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
8973
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
8974
|
+
} | {
|
|
8975
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
8976
|
+
} | {
|
|
8977
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
8978
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
8979
|
+
accessList?: viem0.AccessList | undefined;
|
|
8980
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8981
|
+
blobs?: undefined | undefined;
|
|
8982
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8983
|
+
gasPrice?: undefined | undefined;
|
|
8984
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8985
|
+
maxFeePerGas?: bigint | undefined;
|
|
8986
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8987
|
+
sidecars?: undefined | undefined;
|
|
8988
|
+
} | {
|
|
8989
|
+
accessList?: viem0.AccessList | undefined;
|
|
8990
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
8991
|
+
blobs?: undefined | undefined;
|
|
8992
|
+
blobVersionedHashes?: undefined | undefined;
|
|
8993
|
+
gasPrice?: undefined | undefined;
|
|
8994
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
8995
|
+
maxFeePerGas?: bigint | undefined;
|
|
8996
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
8997
|
+
sidecars?: undefined | undefined;
|
|
8998
|
+
}) & {
|
|
8999
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
9000
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
9001
|
+
accessList?: undefined | undefined;
|
|
9002
|
+
authorizationList?: undefined | undefined;
|
|
9003
|
+
blobs?: undefined | undefined;
|
|
9004
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9005
|
+
gasPrice?: bigint | undefined;
|
|
9006
|
+
sidecars?: undefined | undefined;
|
|
9007
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
9008
|
+
accessList?: viem0.AccessList | undefined;
|
|
9009
|
+
authorizationList?: undefined | undefined;
|
|
9010
|
+
blobs?: undefined | undefined;
|
|
9011
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9012
|
+
gasPrice?: undefined | undefined;
|
|
9013
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9014
|
+
maxFeePerGas?: bigint | undefined;
|
|
9015
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9016
|
+
sidecars?: undefined | undefined;
|
|
9017
|
+
} & (viem0.OneOf<{
|
|
9018
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
9019
|
+
} | {
|
|
9020
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
9021
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
9022
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
9023
|
+
}) ? "eip1559" : never) | (request extends {
|
|
9024
|
+
accessList?: viem0.AccessList | undefined;
|
|
9025
|
+
authorizationList?: undefined | undefined;
|
|
9026
|
+
blobs?: undefined | undefined;
|
|
9027
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9028
|
+
gasPrice?: bigint | undefined;
|
|
9029
|
+
sidecars?: undefined | undefined;
|
|
9030
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9031
|
+
maxFeePerGas?: undefined | undefined;
|
|
9032
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
9033
|
+
} & {
|
|
9034
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
9035
|
+
} ? "eip2930" : never) | (request extends ({
|
|
9036
|
+
accessList?: viem0.AccessList | undefined;
|
|
9037
|
+
authorizationList?: undefined | undefined;
|
|
9038
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9039
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9040
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9041
|
+
maxFeePerGas?: bigint | undefined;
|
|
9042
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9043
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9044
|
+
} | {
|
|
9045
|
+
accessList?: viem0.AccessList | undefined;
|
|
9046
|
+
authorizationList?: undefined | undefined;
|
|
9047
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9048
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9049
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9050
|
+
maxFeePerGas?: bigint | undefined;
|
|
9051
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9052
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9053
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
9054
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
9055
|
+
} | {
|
|
9056
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9057
|
+
} | {
|
|
9058
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
9059
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9060
|
+
accessList?: viem0.AccessList | undefined;
|
|
9061
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9062
|
+
blobs?: undefined | undefined;
|
|
9063
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9064
|
+
gasPrice?: undefined | undefined;
|
|
9065
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9066
|
+
maxFeePerGas?: bigint | undefined;
|
|
9067
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9068
|
+
sidecars?: undefined | undefined;
|
|
9069
|
+
} | {
|
|
9070
|
+
accessList?: viem0.AccessList | undefined;
|
|
9071
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9072
|
+
blobs?: undefined | undefined;
|
|
9073
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9074
|
+
gasPrice?: undefined | undefined;
|
|
9075
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9076
|
+
maxFeePerGas?: bigint | undefined;
|
|
9077
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9078
|
+
sidecars?: undefined | undefined;
|
|
9079
|
+
}) & {
|
|
9080
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
9081
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_5 extends "eip2930" ? viem0.TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem0.GetTransactionType<request, (request extends {
|
|
9082
|
+
accessList?: undefined | undefined;
|
|
9083
|
+
authorizationList?: undefined | undefined;
|
|
9084
|
+
blobs?: undefined | undefined;
|
|
9085
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9086
|
+
gasPrice?: bigint | undefined;
|
|
9087
|
+
sidecars?: undefined | undefined;
|
|
9088
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
9089
|
+
accessList?: viem0.AccessList | undefined;
|
|
9090
|
+
authorizationList?: undefined | undefined;
|
|
9091
|
+
blobs?: undefined | undefined;
|
|
9092
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9093
|
+
gasPrice?: undefined | undefined;
|
|
9094
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9095
|
+
maxFeePerGas?: bigint | undefined;
|
|
9096
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9097
|
+
sidecars?: undefined | undefined;
|
|
9098
|
+
} & (viem0.OneOf<{
|
|
9099
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
9100
|
+
} | {
|
|
9101
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
9102
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
9103
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
9104
|
+
}) ? "eip1559" : never) | (request extends {
|
|
9105
|
+
accessList?: viem0.AccessList | undefined;
|
|
9106
|
+
authorizationList?: undefined | undefined;
|
|
9107
|
+
blobs?: undefined | undefined;
|
|
9108
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9109
|
+
gasPrice?: bigint | undefined;
|
|
9110
|
+
sidecars?: undefined | undefined;
|
|
9111
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9112
|
+
maxFeePerGas?: undefined | undefined;
|
|
9113
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
9114
|
+
} & {
|
|
9115
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
9116
|
+
} ? "eip2930" : never) | (request extends ({
|
|
9117
|
+
accessList?: viem0.AccessList | undefined;
|
|
9118
|
+
authorizationList?: undefined | undefined;
|
|
9119
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9120
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9121
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9122
|
+
maxFeePerGas?: bigint | undefined;
|
|
9123
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9124
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9125
|
+
} | {
|
|
9126
|
+
accessList?: viem0.AccessList | undefined;
|
|
9127
|
+
authorizationList?: undefined | undefined;
|
|
9128
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9129
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9130
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9131
|
+
maxFeePerGas?: bigint | undefined;
|
|
9132
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9133
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9134
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
9135
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
9136
|
+
} | {
|
|
9137
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9138
|
+
} | {
|
|
9139
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
9140
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9141
|
+
accessList?: viem0.AccessList | undefined;
|
|
9142
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9143
|
+
blobs?: undefined | undefined;
|
|
9144
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9145
|
+
gasPrice?: undefined | undefined;
|
|
9146
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9147
|
+
maxFeePerGas?: bigint | undefined;
|
|
9148
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9149
|
+
sidecars?: undefined | undefined;
|
|
9150
|
+
} | {
|
|
9151
|
+
accessList?: viem0.AccessList | undefined;
|
|
9152
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9153
|
+
blobs?: undefined | undefined;
|
|
9154
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9155
|
+
gasPrice?: undefined | undefined;
|
|
9156
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9157
|
+
maxFeePerGas?: bigint | undefined;
|
|
9158
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9159
|
+
sidecars?: undefined | undefined;
|
|
9160
|
+
}) & {
|
|
9161
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
9162
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
9163
|
+
accessList?: undefined | undefined;
|
|
9164
|
+
authorizationList?: undefined | undefined;
|
|
9165
|
+
blobs?: undefined | undefined;
|
|
9166
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9167
|
+
gasPrice?: bigint | undefined;
|
|
9168
|
+
sidecars?: undefined | undefined;
|
|
9169
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
9170
|
+
accessList?: viem0.AccessList | undefined;
|
|
9171
|
+
authorizationList?: undefined | undefined;
|
|
9172
|
+
blobs?: undefined | undefined;
|
|
9173
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9174
|
+
gasPrice?: undefined | undefined;
|
|
9175
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9176
|
+
maxFeePerGas?: bigint | undefined;
|
|
9177
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9178
|
+
sidecars?: undefined | undefined;
|
|
9179
|
+
} & (viem0.OneOf<{
|
|
9180
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
9181
|
+
} | {
|
|
9182
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
9183
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
9184
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
9185
|
+
}) ? "eip1559" : never) | (request extends {
|
|
9186
|
+
accessList?: viem0.AccessList | undefined;
|
|
9187
|
+
authorizationList?: undefined | undefined;
|
|
9188
|
+
blobs?: undefined | undefined;
|
|
9189
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9190
|
+
gasPrice?: bigint | undefined;
|
|
9191
|
+
sidecars?: undefined | undefined;
|
|
9192
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9193
|
+
maxFeePerGas?: undefined | undefined;
|
|
9194
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
9195
|
+
} & {
|
|
9196
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
9197
|
+
} ? "eip2930" : never) | (request extends ({
|
|
9198
|
+
accessList?: viem0.AccessList | undefined;
|
|
9199
|
+
authorizationList?: undefined | undefined;
|
|
9200
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9201
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9202
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9203
|
+
maxFeePerGas?: bigint | undefined;
|
|
9204
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9205
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9206
|
+
} | {
|
|
9207
|
+
accessList?: viem0.AccessList | undefined;
|
|
9208
|
+
authorizationList?: undefined | undefined;
|
|
9209
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9210
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9211
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9212
|
+
maxFeePerGas?: bigint | undefined;
|
|
9213
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9214
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9215
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
9216
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
9217
|
+
} | {
|
|
9218
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9219
|
+
} | {
|
|
9220
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
9221
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9222
|
+
accessList?: viem0.AccessList | undefined;
|
|
9223
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9224
|
+
blobs?: undefined | undefined;
|
|
9225
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9226
|
+
gasPrice?: undefined | undefined;
|
|
9227
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9228
|
+
maxFeePerGas?: bigint | undefined;
|
|
9229
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9230
|
+
sidecars?: undefined | undefined;
|
|
9231
|
+
} | {
|
|
9232
|
+
accessList?: viem0.AccessList | undefined;
|
|
9233
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9234
|
+
blobs?: undefined | undefined;
|
|
9235
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9236
|
+
gasPrice?: undefined | undefined;
|
|
9237
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9238
|
+
maxFeePerGas?: bigint | undefined;
|
|
9239
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9240
|
+
sidecars?: undefined | undefined;
|
|
9241
|
+
}) & {
|
|
9242
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
9243
|
+
} ? "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"] : viem0.GetTransactionType<request, (request extends {
|
|
9244
|
+
accessList?: undefined | undefined;
|
|
9245
|
+
authorizationList?: undefined | undefined;
|
|
9246
|
+
blobs?: undefined | undefined;
|
|
9247
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9248
|
+
gasPrice?: bigint | undefined;
|
|
9249
|
+
sidecars?: undefined | undefined;
|
|
9250
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
9251
|
+
accessList?: viem0.AccessList | undefined;
|
|
9252
|
+
authorizationList?: undefined | undefined;
|
|
9253
|
+
blobs?: undefined | undefined;
|
|
9254
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9255
|
+
gasPrice?: undefined | undefined;
|
|
9256
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9257
|
+
maxFeePerGas?: bigint | undefined;
|
|
9258
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9259
|
+
sidecars?: undefined | undefined;
|
|
9260
|
+
} & (viem0.OneOf<{
|
|
9261
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
9262
|
+
} | {
|
|
9263
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
9264
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
9265
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
9266
|
+
}) ? "eip1559" : never) | (request extends {
|
|
9267
|
+
accessList?: viem0.AccessList | undefined;
|
|
9268
|
+
authorizationList?: undefined | undefined;
|
|
9269
|
+
blobs?: undefined | undefined;
|
|
9270
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9271
|
+
gasPrice?: bigint | undefined;
|
|
9272
|
+
sidecars?: undefined | undefined;
|
|
9273
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9274
|
+
maxFeePerGas?: undefined | undefined;
|
|
9275
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
9276
|
+
} & {
|
|
9277
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
9278
|
+
} ? "eip2930" : never) | (request extends ({
|
|
9279
|
+
accessList?: viem0.AccessList | undefined;
|
|
9280
|
+
authorizationList?: undefined | undefined;
|
|
9281
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9282
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9283
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9284
|
+
maxFeePerGas?: bigint | undefined;
|
|
9285
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9286
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9287
|
+
} | {
|
|
9288
|
+
accessList?: viem0.AccessList | undefined;
|
|
9289
|
+
authorizationList?: undefined | undefined;
|
|
9290
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9291
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9292
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9293
|
+
maxFeePerGas?: bigint | undefined;
|
|
9294
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9295
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9296
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
9297
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
9298
|
+
} | {
|
|
9299
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9300
|
+
} | {
|
|
9301
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
9302
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9303
|
+
accessList?: viem0.AccessList | undefined;
|
|
9304
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9305
|
+
blobs?: undefined | undefined;
|
|
9306
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9307
|
+
gasPrice?: undefined | undefined;
|
|
9308
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9309
|
+
maxFeePerGas?: bigint | undefined;
|
|
9310
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9311
|
+
sidecars?: undefined | undefined;
|
|
9312
|
+
} | {
|
|
9313
|
+
accessList?: viem0.AccessList | undefined;
|
|
9314
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9315
|
+
blobs?: undefined | undefined;
|
|
9316
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9317
|
+
gasPrice?: undefined | undefined;
|
|
9318
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9319
|
+
maxFeePerGas?: bigint | undefined;
|
|
9320
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9321
|
+
sidecars?: undefined | undefined;
|
|
9322
|
+
}) & {
|
|
9323
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
9324
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
9325
|
+
accessList?: undefined | undefined;
|
|
9326
|
+
authorizationList?: undefined | undefined;
|
|
9327
|
+
blobs?: undefined | undefined;
|
|
9328
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9329
|
+
gasPrice?: bigint | undefined;
|
|
9330
|
+
sidecars?: undefined | undefined;
|
|
9331
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
9332
|
+
accessList?: viem0.AccessList | undefined;
|
|
9333
|
+
authorizationList?: undefined | undefined;
|
|
9334
|
+
blobs?: undefined | undefined;
|
|
9335
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9336
|
+
gasPrice?: undefined | undefined;
|
|
9337
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9338
|
+
maxFeePerGas?: bigint | undefined;
|
|
9339
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9340
|
+
sidecars?: undefined | undefined;
|
|
9341
|
+
} & (viem0.OneOf<{
|
|
9342
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
9343
|
+
} | {
|
|
9344
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
9345
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
9346
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
9347
|
+
}) ? "eip1559" : never) | (request extends {
|
|
9348
|
+
accessList?: viem0.AccessList | undefined;
|
|
9349
|
+
authorizationList?: undefined | undefined;
|
|
9350
|
+
blobs?: undefined | undefined;
|
|
9351
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9352
|
+
gasPrice?: bigint | undefined;
|
|
9353
|
+
sidecars?: undefined | undefined;
|
|
9354
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9355
|
+
maxFeePerGas?: undefined | undefined;
|
|
9356
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
9357
|
+
} & {
|
|
9358
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
9359
|
+
} ? "eip2930" : never) | (request extends ({
|
|
9360
|
+
accessList?: viem0.AccessList | undefined;
|
|
9361
|
+
authorizationList?: undefined | undefined;
|
|
9362
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9363
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9364
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9365
|
+
maxFeePerGas?: bigint | undefined;
|
|
9366
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9367
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9368
|
+
} | {
|
|
9369
|
+
accessList?: viem0.AccessList | undefined;
|
|
9370
|
+
authorizationList?: undefined | undefined;
|
|
9371
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9372
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9373
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9374
|
+
maxFeePerGas?: bigint | undefined;
|
|
9375
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9376
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9377
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
9378
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
9379
|
+
} | {
|
|
9380
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9381
|
+
} | {
|
|
9382
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
9383
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9384
|
+
accessList?: viem0.AccessList | undefined;
|
|
9385
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9386
|
+
blobs?: undefined | undefined;
|
|
9387
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9388
|
+
gasPrice?: undefined | undefined;
|
|
9389
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9390
|
+
maxFeePerGas?: bigint | undefined;
|
|
9391
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9392
|
+
sidecars?: undefined | undefined;
|
|
9393
|
+
} | {
|
|
9394
|
+
accessList?: viem0.AccessList | undefined;
|
|
9395
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9396
|
+
blobs?: undefined | undefined;
|
|
9397
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9398
|
+
gasPrice?: undefined | undefined;
|
|
9399
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9400
|
+
maxFeePerGas?: bigint | undefined;
|
|
9401
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9402
|
+
sidecars?: undefined | undefined;
|
|
9403
|
+
}) & {
|
|
9404
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
9405
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_6 extends "eip4844" ? viem0.TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem0.GetTransactionType<request, (request extends {
|
|
9406
|
+
accessList?: undefined | undefined;
|
|
9407
|
+
authorizationList?: undefined | undefined;
|
|
9408
|
+
blobs?: undefined | undefined;
|
|
9409
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9410
|
+
gasPrice?: bigint | undefined;
|
|
9411
|
+
sidecars?: undefined | undefined;
|
|
9412
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
9413
|
+
accessList?: viem0.AccessList | undefined;
|
|
9414
|
+
authorizationList?: undefined | undefined;
|
|
9415
|
+
blobs?: undefined | undefined;
|
|
9416
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9417
|
+
gasPrice?: undefined | undefined;
|
|
9418
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9419
|
+
maxFeePerGas?: bigint | undefined;
|
|
9420
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9421
|
+
sidecars?: undefined | undefined;
|
|
9422
|
+
} & (viem0.OneOf<{
|
|
9423
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
9424
|
+
} | {
|
|
9425
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
9426
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
9427
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
9428
|
+
}) ? "eip1559" : never) | (request extends {
|
|
9429
|
+
accessList?: viem0.AccessList | undefined;
|
|
9430
|
+
authorizationList?: undefined | undefined;
|
|
9431
|
+
blobs?: undefined | undefined;
|
|
9432
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9433
|
+
gasPrice?: bigint | undefined;
|
|
9434
|
+
sidecars?: undefined | undefined;
|
|
9435
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9436
|
+
maxFeePerGas?: undefined | undefined;
|
|
9437
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
9438
|
+
} & {
|
|
9439
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
9440
|
+
} ? "eip2930" : never) | (request extends ({
|
|
9441
|
+
accessList?: viem0.AccessList | undefined;
|
|
9442
|
+
authorizationList?: undefined | undefined;
|
|
9443
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9444
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9445
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9446
|
+
maxFeePerGas?: bigint | undefined;
|
|
9447
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9448
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9449
|
+
} | {
|
|
9450
|
+
accessList?: viem0.AccessList | undefined;
|
|
9451
|
+
authorizationList?: undefined | undefined;
|
|
9452
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9453
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9454
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9455
|
+
maxFeePerGas?: bigint | undefined;
|
|
9456
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9457
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9458
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
9459
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
9460
|
+
} | {
|
|
9461
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9462
|
+
} | {
|
|
9463
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
9464
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9465
|
+
accessList?: viem0.AccessList | undefined;
|
|
9466
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9467
|
+
blobs?: undefined | undefined;
|
|
9468
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9469
|
+
gasPrice?: undefined | undefined;
|
|
9470
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9471
|
+
maxFeePerGas?: bigint | undefined;
|
|
9472
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9473
|
+
sidecars?: undefined | undefined;
|
|
9474
|
+
} | {
|
|
9475
|
+
accessList?: viem0.AccessList | undefined;
|
|
9476
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9477
|
+
blobs?: undefined | undefined;
|
|
9478
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9479
|
+
gasPrice?: undefined | undefined;
|
|
9480
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9481
|
+
maxFeePerGas?: bigint | undefined;
|
|
9482
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9483
|
+
sidecars?: undefined | undefined;
|
|
9484
|
+
}) & {
|
|
9485
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
9486
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
9487
|
+
accessList?: undefined | undefined;
|
|
9488
|
+
authorizationList?: undefined | undefined;
|
|
9489
|
+
blobs?: undefined | undefined;
|
|
9490
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9491
|
+
gasPrice?: bigint | undefined;
|
|
9492
|
+
sidecars?: undefined | undefined;
|
|
9493
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
9494
|
+
accessList?: viem0.AccessList | undefined;
|
|
9495
|
+
authorizationList?: undefined | undefined;
|
|
9496
|
+
blobs?: undefined | undefined;
|
|
9497
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9498
|
+
gasPrice?: undefined | undefined;
|
|
9499
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9500
|
+
maxFeePerGas?: bigint | undefined;
|
|
9501
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9502
|
+
sidecars?: undefined | undefined;
|
|
9503
|
+
} & (viem0.OneOf<{
|
|
9504
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
9505
|
+
} | {
|
|
9506
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
9507
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
9508
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
9509
|
+
}) ? "eip1559" : never) | (request extends {
|
|
9510
|
+
accessList?: viem0.AccessList | undefined;
|
|
9511
|
+
authorizationList?: undefined | undefined;
|
|
9512
|
+
blobs?: undefined | undefined;
|
|
9513
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9514
|
+
gasPrice?: bigint | undefined;
|
|
9515
|
+
sidecars?: undefined | undefined;
|
|
9516
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9517
|
+
maxFeePerGas?: undefined | undefined;
|
|
9518
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
9519
|
+
} & {
|
|
9520
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
9521
|
+
} ? "eip2930" : never) | (request extends ({
|
|
9522
|
+
accessList?: viem0.AccessList | undefined;
|
|
9523
|
+
authorizationList?: undefined | undefined;
|
|
9524
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9525
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9526
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9527
|
+
maxFeePerGas?: bigint | undefined;
|
|
9528
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9529
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9530
|
+
} | {
|
|
9531
|
+
accessList?: viem0.AccessList | undefined;
|
|
9532
|
+
authorizationList?: undefined | undefined;
|
|
9533
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9534
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9535
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9536
|
+
maxFeePerGas?: bigint | undefined;
|
|
9537
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9538
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9539
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
9540
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
9541
|
+
} | {
|
|
9542
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9543
|
+
} | {
|
|
9544
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
9545
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9546
|
+
accessList?: viem0.AccessList | undefined;
|
|
9547
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9548
|
+
blobs?: undefined | undefined;
|
|
9549
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9550
|
+
gasPrice?: undefined | undefined;
|
|
9551
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9552
|
+
maxFeePerGas?: bigint | undefined;
|
|
9553
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9554
|
+
sidecars?: undefined | undefined;
|
|
9555
|
+
} | {
|
|
9556
|
+
accessList?: viem0.AccessList | undefined;
|
|
9557
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9558
|
+
blobs?: undefined | undefined;
|
|
9559
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9560
|
+
gasPrice?: undefined | undefined;
|
|
9561
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9562
|
+
maxFeePerGas?: bigint | undefined;
|
|
9563
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9564
|
+
sidecars?: undefined | undefined;
|
|
9565
|
+
}) & {
|
|
9566
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
9567
|
+
} ? "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"] : viem0.GetTransactionType<request, (request extends {
|
|
9568
|
+
accessList?: undefined | undefined;
|
|
9569
|
+
authorizationList?: undefined | undefined;
|
|
9570
|
+
blobs?: undefined | undefined;
|
|
9571
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9572
|
+
gasPrice?: bigint | undefined;
|
|
9573
|
+
sidecars?: undefined | undefined;
|
|
9574
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
9575
|
+
accessList?: viem0.AccessList | undefined;
|
|
9576
|
+
authorizationList?: undefined | undefined;
|
|
9577
|
+
blobs?: undefined | undefined;
|
|
9578
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9579
|
+
gasPrice?: undefined | undefined;
|
|
9580
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9581
|
+
maxFeePerGas?: bigint | undefined;
|
|
9582
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9583
|
+
sidecars?: undefined | undefined;
|
|
9584
|
+
} & (viem0.OneOf<{
|
|
9585
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
9586
|
+
} | {
|
|
9587
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
9588
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
9589
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
9590
|
+
}) ? "eip1559" : never) | (request extends {
|
|
9591
|
+
accessList?: viem0.AccessList | undefined;
|
|
9592
|
+
authorizationList?: undefined | undefined;
|
|
9593
|
+
blobs?: undefined | undefined;
|
|
9594
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9595
|
+
gasPrice?: bigint | undefined;
|
|
9596
|
+
sidecars?: undefined | undefined;
|
|
9597
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9598
|
+
maxFeePerGas?: undefined | undefined;
|
|
9599
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
9600
|
+
} & {
|
|
9601
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
9602
|
+
} ? "eip2930" : never) | (request extends ({
|
|
9603
|
+
accessList?: viem0.AccessList | undefined;
|
|
9604
|
+
authorizationList?: undefined | undefined;
|
|
9605
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9606
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9607
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9608
|
+
maxFeePerGas?: bigint | undefined;
|
|
9609
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9610
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9611
|
+
} | {
|
|
9612
|
+
accessList?: viem0.AccessList | undefined;
|
|
9613
|
+
authorizationList?: undefined | undefined;
|
|
9614
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9615
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9616
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9617
|
+
maxFeePerGas?: bigint | undefined;
|
|
9618
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9619
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9620
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
9621
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
9622
|
+
} | {
|
|
9623
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9624
|
+
} | {
|
|
9625
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
9626
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9627
|
+
accessList?: viem0.AccessList | undefined;
|
|
9628
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9629
|
+
blobs?: undefined | undefined;
|
|
9630
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9631
|
+
gasPrice?: undefined | undefined;
|
|
9632
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9633
|
+
maxFeePerGas?: bigint | undefined;
|
|
9634
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9635
|
+
sidecars?: undefined | undefined;
|
|
9636
|
+
} | {
|
|
9637
|
+
accessList?: viem0.AccessList | undefined;
|
|
9638
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9639
|
+
blobs?: undefined | undefined;
|
|
9640
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9641
|
+
gasPrice?: undefined | undefined;
|
|
9642
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9643
|
+
maxFeePerGas?: bigint | undefined;
|
|
9644
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9645
|
+
sidecars?: undefined | undefined;
|
|
9646
|
+
}) & {
|
|
9647
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
9648
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
9649
|
+
accessList?: undefined | undefined;
|
|
9650
|
+
authorizationList?: undefined | undefined;
|
|
9651
|
+
blobs?: undefined | undefined;
|
|
9652
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9653
|
+
gasPrice?: bigint | undefined;
|
|
9654
|
+
sidecars?: undefined | undefined;
|
|
9655
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
9656
|
+
accessList?: viem0.AccessList | undefined;
|
|
9657
|
+
authorizationList?: undefined | undefined;
|
|
9658
|
+
blobs?: undefined | undefined;
|
|
9659
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9660
|
+
gasPrice?: undefined | undefined;
|
|
9661
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9662
|
+
maxFeePerGas?: bigint | undefined;
|
|
9663
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9664
|
+
sidecars?: undefined | undefined;
|
|
9665
|
+
} & (viem0.OneOf<{
|
|
9666
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
9667
|
+
} | {
|
|
9668
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
9669
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
9670
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
9671
|
+
}) ? "eip1559" : never) | (request extends {
|
|
9672
|
+
accessList?: viem0.AccessList | undefined;
|
|
9673
|
+
authorizationList?: undefined | undefined;
|
|
9674
|
+
blobs?: undefined | undefined;
|
|
9675
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9676
|
+
gasPrice?: bigint | undefined;
|
|
9677
|
+
sidecars?: undefined | undefined;
|
|
9678
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9679
|
+
maxFeePerGas?: undefined | undefined;
|
|
9680
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
9681
|
+
} & {
|
|
9682
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
9683
|
+
} ? "eip2930" : never) | (request extends ({
|
|
9684
|
+
accessList?: viem0.AccessList | undefined;
|
|
9685
|
+
authorizationList?: undefined | undefined;
|
|
9686
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9687
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9688
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9689
|
+
maxFeePerGas?: bigint | undefined;
|
|
9690
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9691
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9692
|
+
} | {
|
|
9693
|
+
accessList?: viem0.AccessList | undefined;
|
|
9694
|
+
authorizationList?: undefined | undefined;
|
|
9695
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9696
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9697
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9698
|
+
maxFeePerGas?: bigint | undefined;
|
|
9699
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9700
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9701
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
9702
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
9703
|
+
} | {
|
|
9704
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9705
|
+
} | {
|
|
9706
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
9707
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9708
|
+
accessList?: viem0.AccessList | undefined;
|
|
9709
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9710
|
+
blobs?: undefined | undefined;
|
|
9711
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9712
|
+
gasPrice?: undefined | undefined;
|
|
9713
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9714
|
+
maxFeePerGas?: bigint | undefined;
|
|
9715
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9716
|
+
sidecars?: undefined | undefined;
|
|
9717
|
+
} | {
|
|
9718
|
+
accessList?: viem0.AccessList | undefined;
|
|
9719
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9720
|
+
blobs?: undefined | undefined;
|
|
9721
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9722
|
+
gasPrice?: undefined | undefined;
|
|
9723
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9724
|
+
maxFeePerGas?: bigint | undefined;
|
|
9725
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9726
|
+
sidecars?: undefined | undefined;
|
|
9727
|
+
}) & {
|
|
9728
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
9729
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_7 extends "eip7702" ? viem0.TransactionRequestEIP7702 : never : never : never)> extends true ? unknown : viem0.ExactPartial<((request["type"] extends string | undefined ? request["type"] : viem0.GetTransactionType<request, (request extends {
|
|
9730
|
+
accessList?: undefined | undefined;
|
|
9731
|
+
authorizationList?: undefined | undefined;
|
|
9732
|
+
blobs?: undefined | undefined;
|
|
9733
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9734
|
+
gasPrice?: bigint | undefined;
|
|
9735
|
+
sidecars?: undefined | undefined;
|
|
9736
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
9737
|
+
accessList?: viem0.AccessList | undefined;
|
|
9738
|
+
authorizationList?: undefined | undefined;
|
|
9739
|
+
blobs?: undefined | undefined;
|
|
9740
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9741
|
+
gasPrice?: undefined | undefined;
|
|
9742
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9743
|
+
maxFeePerGas?: bigint | undefined;
|
|
9744
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9745
|
+
sidecars?: undefined | undefined;
|
|
9746
|
+
} & (viem0.OneOf<{
|
|
9747
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
9748
|
+
} | {
|
|
9749
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
9750
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
9751
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
9752
|
+
}) ? "eip1559" : never) | (request extends {
|
|
9753
|
+
accessList?: viem0.AccessList | undefined;
|
|
9754
|
+
authorizationList?: undefined | undefined;
|
|
9755
|
+
blobs?: undefined | undefined;
|
|
9756
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9757
|
+
gasPrice?: bigint | undefined;
|
|
9758
|
+
sidecars?: undefined | undefined;
|
|
9759
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9760
|
+
maxFeePerGas?: undefined | undefined;
|
|
9761
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
9762
|
+
} & {
|
|
9763
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
9764
|
+
} ? "eip2930" : never) | (request extends ({
|
|
9765
|
+
accessList?: viem0.AccessList | undefined;
|
|
9766
|
+
authorizationList?: undefined | undefined;
|
|
9767
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9768
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9769
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9770
|
+
maxFeePerGas?: bigint | undefined;
|
|
9771
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9772
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9773
|
+
} | {
|
|
9774
|
+
accessList?: viem0.AccessList | undefined;
|
|
9775
|
+
authorizationList?: undefined | undefined;
|
|
9776
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9777
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9778
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9779
|
+
maxFeePerGas?: bigint | undefined;
|
|
9780
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9781
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9782
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
9783
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
9784
|
+
} | {
|
|
9785
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9786
|
+
} | {
|
|
9787
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
9788
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9789
|
+
accessList?: viem0.AccessList | undefined;
|
|
9790
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9791
|
+
blobs?: undefined | undefined;
|
|
9792
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9793
|
+
gasPrice?: undefined | undefined;
|
|
9794
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9795
|
+
maxFeePerGas?: bigint | undefined;
|
|
9796
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9797
|
+
sidecars?: undefined | undefined;
|
|
9798
|
+
} | {
|
|
9799
|
+
accessList?: viem0.AccessList | undefined;
|
|
9800
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9801
|
+
blobs?: undefined | undefined;
|
|
9802
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9803
|
+
gasPrice?: undefined | undefined;
|
|
9804
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9805
|
+
maxFeePerGas?: bigint | undefined;
|
|
9806
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9807
|
+
sidecars?: undefined | undefined;
|
|
9808
|
+
}) & {
|
|
9809
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
9810
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
9811
|
+
accessList?: undefined | undefined;
|
|
9812
|
+
authorizationList?: undefined | undefined;
|
|
9813
|
+
blobs?: undefined | undefined;
|
|
9814
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9815
|
+
gasPrice?: bigint | undefined;
|
|
9816
|
+
sidecars?: undefined | undefined;
|
|
9817
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
9818
|
+
accessList?: viem0.AccessList | undefined;
|
|
9819
|
+
authorizationList?: undefined | undefined;
|
|
9820
|
+
blobs?: undefined | undefined;
|
|
9821
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9822
|
+
gasPrice?: undefined | undefined;
|
|
9823
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9824
|
+
maxFeePerGas?: bigint | undefined;
|
|
9825
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9826
|
+
sidecars?: undefined | undefined;
|
|
9827
|
+
} & (viem0.OneOf<{
|
|
9828
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
9829
|
+
} | {
|
|
9830
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
9831
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
9832
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
9833
|
+
}) ? "eip1559" : never) | (request extends {
|
|
9834
|
+
accessList?: viem0.AccessList | undefined;
|
|
9835
|
+
authorizationList?: undefined | undefined;
|
|
9836
|
+
blobs?: undefined | undefined;
|
|
9837
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9838
|
+
gasPrice?: bigint | undefined;
|
|
9839
|
+
sidecars?: undefined | undefined;
|
|
9840
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9841
|
+
maxFeePerGas?: undefined | undefined;
|
|
9842
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
9843
|
+
} & {
|
|
9844
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
9845
|
+
} ? "eip2930" : never) | (request extends ({
|
|
9846
|
+
accessList?: viem0.AccessList | undefined;
|
|
9847
|
+
authorizationList?: undefined | undefined;
|
|
9848
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9849
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9850
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9851
|
+
maxFeePerGas?: bigint | undefined;
|
|
9852
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9853
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9854
|
+
} | {
|
|
9855
|
+
accessList?: viem0.AccessList | undefined;
|
|
9856
|
+
authorizationList?: undefined | undefined;
|
|
9857
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9858
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9859
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9860
|
+
maxFeePerGas?: bigint | undefined;
|
|
9861
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9862
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9863
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
9864
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
9865
|
+
} | {
|
|
9866
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9867
|
+
} | {
|
|
9868
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
9869
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9870
|
+
accessList?: viem0.AccessList | undefined;
|
|
9871
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9872
|
+
blobs?: undefined | undefined;
|
|
9873
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9874
|
+
gasPrice?: undefined | undefined;
|
|
9875
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9876
|
+
maxFeePerGas?: bigint | undefined;
|
|
9877
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9878
|
+
sidecars?: undefined | undefined;
|
|
9879
|
+
} | {
|
|
9880
|
+
accessList?: viem0.AccessList | undefined;
|
|
9881
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9882
|
+
blobs?: undefined | undefined;
|
|
9883
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9884
|
+
gasPrice?: undefined | undefined;
|
|
9885
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9886
|
+
maxFeePerGas?: bigint | undefined;
|
|
9887
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9888
|
+
sidecars?: undefined | undefined;
|
|
9889
|
+
}) & {
|
|
9890
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
9891
|
+
} ? "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"] : viem0.GetTransactionType<request, (request extends {
|
|
9892
|
+
accessList?: undefined | undefined;
|
|
9893
|
+
authorizationList?: undefined | undefined;
|
|
9894
|
+
blobs?: undefined | undefined;
|
|
9895
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9896
|
+
gasPrice?: bigint | undefined;
|
|
9897
|
+
sidecars?: undefined | undefined;
|
|
9898
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
9899
|
+
accessList?: viem0.AccessList | undefined;
|
|
9900
|
+
authorizationList?: undefined | undefined;
|
|
9901
|
+
blobs?: undefined | undefined;
|
|
9902
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9903
|
+
gasPrice?: undefined | undefined;
|
|
9904
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9905
|
+
maxFeePerGas?: bigint | undefined;
|
|
9906
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9907
|
+
sidecars?: undefined | undefined;
|
|
9908
|
+
} & (viem0.OneOf<{
|
|
9909
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
9910
|
+
} | {
|
|
9911
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
9912
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
9913
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
9914
|
+
}) ? "eip1559" : never) | (request extends {
|
|
9915
|
+
accessList?: viem0.AccessList | undefined;
|
|
9916
|
+
authorizationList?: undefined | undefined;
|
|
9917
|
+
blobs?: undefined | undefined;
|
|
9918
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9919
|
+
gasPrice?: bigint | undefined;
|
|
9920
|
+
sidecars?: undefined | undefined;
|
|
9921
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9922
|
+
maxFeePerGas?: undefined | undefined;
|
|
9923
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
9924
|
+
} & {
|
|
9925
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
9926
|
+
} ? "eip2930" : never) | (request extends ({
|
|
9927
|
+
accessList?: viem0.AccessList | undefined;
|
|
9928
|
+
authorizationList?: undefined | undefined;
|
|
9929
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9930
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9931
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9932
|
+
maxFeePerGas?: bigint | undefined;
|
|
9933
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9934
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9935
|
+
} | {
|
|
9936
|
+
accessList?: viem0.AccessList | undefined;
|
|
9937
|
+
authorizationList?: undefined | undefined;
|
|
9938
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
9939
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9940
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9941
|
+
maxFeePerGas?: bigint | undefined;
|
|
9942
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9943
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
9944
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
9945
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
9946
|
+
} | {
|
|
9947
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9948
|
+
} | {
|
|
9949
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
9950
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9951
|
+
accessList?: viem0.AccessList | undefined;
|
|
9952
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9953
|
+
blobs?: undefined | undefined;
|
|
9954
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9955
|
+
gasPrice?: undefined | undefined;
|
|
9956
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9957
|
+
maxFeePerGas?: bigint | undefined;
|
|
9958
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9959
|
+
sidecars?: undefined | undefined;
|
|
9960
|
+
} | {
|
|
9961
|
+
accessList?: viem0.AccessList | undefined;
|
|
9962
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
9963
|
+
blobs?: undefined | undefined;
|
|
9964
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9965
|
+
gasPrice?: undefined | undefined;
|
|
9966
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9967
|
+
maxFeePerGas?: bigint | undefined;
|
|
9968
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9969
|
+
sidecars?: undefined | undefined;
|
|
9970
|
+
}) & {
|
|
9971
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
9972
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
9973
|
+
accessList?: undefined | undefined;
|
|
9974
|
+
authorizationList?: undefined | undefined;
|
|
9975
|
+
blobs?: undefined | undefined;
|
|
9976
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9977
|
+
gasPrice?: bigint | undefined;
|
|
9978
|
+
sidecars?: undefined | undefined;
|
|
9979
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
9980
|
+
accessList?: viem0.AccessList | undefined;
|
|
9981
|
+
authorizationList?: undefined | undefined;
|
|
9982
|
+
blobs?: undefined | undefined;
|
|
9983
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9984
|
+
gasPrice?: undefined | undefined;
|
|
9985
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9986
|
+
maxFeePerGas?: bigint | undefined;
|
|
9987
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9988
|
+
sidecars?: undefined | undefined;
|
|
9989
|
+
} & (viem0.OneOf<{
|
|
9990
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
9991
|
+
} | {
|
|
9992
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
9993
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
9994
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
9995
|
+
}) ? "eip1559" : never) | (request extends {
|
|
9996
|
+
accessList?: viem0.AccessList | undefined;
|
|
9997
|
+
authorizationList?: undefined | undefined;
|
|
9998
|
+
blobs?: undefined | undefined;
|
|
9999
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10000
|
+
gasPrice?: bigint | undefined;
|
|
10001
|
+
sidecars?: undefined | undefined;
|
|
10002
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10003
|
+
maxFeePerGas?: undefined | undefined;
|
|
10004
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
10005
|
+
} & {
|
|
10006
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
10007
|
+
} ? "eip2930" : never) | (request extends ({
|
|
10008
|
+
accessList?: viem0.AccessList | undefined;
|
|
10009
|
+
authorizationList?: undefined | undefined;
|
|
10010
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10011
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10012
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10013
|
+
maxFeePerGas?: bigint | undefined;
|
|
10014
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10015
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10016
|
+
} | {
|
|
10017
|
+
accessList?: viem0.AccessList | undefined;
|
|
10018
|
+
authorizationList?: undefined | undefined;
|
|
10019
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10020
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10021
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10022
|
+
maxFeePerGas?: bigint | undefined;
|
|
10023
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10024
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10025
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
10026
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
10027
|
+
} | {
|
|
10028
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
10029
|
+
} | {
|
|
10030
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
10031
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
10032
|
+
accessList?: viem0.AccessList | undefined;
|
|
10033
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10034
|
+
blobs?: undefined | undefined;
|
|
10035
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10036
|
+
gasPrice?: undefined | undefined;
|
|
10037
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10038
|
+
maxFeePerGas?: bigint | undefined;
|
|
10039
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10040
|
+
sidecars?: undefined | undefined;
|
|
10041
|
+
} | {
|
|
10042
|
+
accessList?: viem0.AccessList | undefined;
|
|
10043
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10044
|
+
blobs?: undefined | undefined;
|
|
10045
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10046
|
+
gasPrice?: undefined | undefined;
|
|
10047
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10048
|
+
maxFeePerGas?: bigint | undefined;
|
|
10049
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10050
|
+
sidecars?: undefined | undefined;
|
|
10051
|
+
}) & {
|
|
10052
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
10053
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_8 extends "legacy" ? viem0.TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem0.GetTransactionType<request, (request extends {
|
|
10054
|
+
accessList?: undefined | undefined;
|
|
10055
|
+
authorizationList?: undefined | undefined;
|
|
10056
|
+
blobs?: undefined | undefined;
|
|
10057
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10058
|
+
gasPrice?: bigint | undefined;
|
|
10059
|
+
sidecars?: undefined | undefined;
|
|
10060
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
10061
|
+
accessList?: viem0.AccessList | undefined;
|
|
10062
|
+
authorizationList?: undefined | undefined;
|
|
10063
|
+
blobs?: undefined | undefined;
|
|
10064
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10065
|
+
gasPrice?: undefined | undefined;
|
|
10066
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10067
|
+
maxFeePerGas?: bigint | undefined;
|
|
10068
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10069
|
+
sidecars?: undefined | undefined;
|
|
10070
|
+
} & (viem0.OneOf<{
|
|
10071
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
10072
|
+
} | {
|
|
10073
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
10074
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
10075
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
10076
|
+
}) ? "eip1559" : never) | (request extends {
|
|
10077
|
+
accessList?: viem0.AccessList | undefined;
|
|
10078
|
+
authorizationList?: undefined | undefined;
|
|
10079
|
+
blobs?: undefined | undefined;
|
|
10080
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10081
|
+
gasPrice?: bigint | undefined;
|
|
10082
|
+
sidecars?: undefined | undefined;
|
|
10083
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10084
|
+
maxFeePerGas?: undefined | undefined;
|
|
10085
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
10086
|
+
} & {
|
|
10087
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
10088
|
+
} ? "eip2930" : never) | (request extends ({
|
|
10089
|
+
accessList?: viem0.AccessList | undefined;
|
|
10090
|
+
authorizationList?: undefined | undefined;
|
|
10091
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10092
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10093
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10094
|
+
maxFeePerGas?: bigint | undefined;
|
|
10095
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10096
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10097
|
+
} | {
|
|
10098
|
+
accessList?: viem0.AccessList | undefined;
|
|
10099
|
+
authorizationList?: undefined | undefined;
|
|
10100
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10101
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10102
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10103
|
+
maxFeePerGas?: bigint | undefined;
|
|
10104
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10105
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10106
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
10107
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
10108
|
+
} | {
|
|
10109
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
10110
|
+
} | {
|
|
10111
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
10112
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
10113
|
+
accessList?: viem0.AccessList | undefined;
|
|
10114
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10115
|
+
blobs?: undefined | undefined;
|
|
10116
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10117
|
+
gasPrice?: undefined | undefined;
|
|
10118
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10119
|
+
maxFeePerGas?: bigint | undefined;
|
|
10120
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10121
|
+
sidecars?: undefined | undefined;
|
|
10122
|
+
} | {
|
|
10123
|
+
accessList?: viem0.AccessList | undefined;
|
|
10124
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10125
|
+
blobs?: undefined | undefined;
|
|
10126
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10127
|
+
gasPrice?: undefined | undefined;
|
|
10128
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10129
|
+
maxFeePerGas?: bigint | undefined;
|
|
10130
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10131
|
+
sidecars?: undefined | undefined;
|
|
10132
|
+
}) & {
|
|
10133
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
10134
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
10135
|
+
accessList?: undefined | undefined;
|
|
10136
|
+
authorizationList?: undefined | undefined;
|
|
10137
|
+
blobs?: undefined | undefined;
|
|
10138
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10139
|
+
gasPrice?: bigint | undefined;
|
|
10140
|
+
sidecars?: undefined | undefined;
|
|
10141
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
10142
|
+
accessList?: viem0.AccessList | undefined;
|
|
10143
|
+
authorizationList?: undefined | undefined;
|
|
10144
|
+
blobs?: undefined | undefined;
|
|
10145
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10146
|
+
gasPrice?: undefined | undefined;
|
|
10147
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10148
|
+
maxFeePerGas?: bigint | undefined;
|
|
10149
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10150
|
+
sidecars?: undefined | undefined;
|
|
10151
|
+
} & (viem0.OneOf<{
|
|
10152
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
10153
|
+
} | {
|
|
10154
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
10155
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
10156
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
10157
|
+
}) ? "eip1559" : never) | (request extends {
|
|
10158
|
+
accessList?: viem0.AccessList | undefined;
|
|
10159
|
+
authorizationList?: undefined | undefined;
|
|
10160
|
+
blobs?: undefined | undefined;
|
|
10161
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10162
|
+
gasPrice?: bigint | undefined;
|
|
10163
|
+
sidecars?: undefined | undefined;
|
|
10164
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10165
|
+
maxFeePerGas?: undefined | undefined;
|
|
10166
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
10167
|
+
} & {
|
|
10168
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
10169
|
+
} ? "eip2930" : never) | (request extends ({
|
|
10170
|
+
accessList?: viem0.AccessList | undefined;
|
|
10171
|
+
authorizationList?: undefined | undefined;
|
|
10172
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10173
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10174
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10175
|
+
maxFeePerGas?: bigint | undefined;
|
|
10176
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10177
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10178
|
+
} | {
|
|
10179
|
+
accessList?: viem0.AccessList | undefined;
|
|
10180
|
+
authorizationList?: undefined | undefined;
|
|
10181
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10182
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10183
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10184
|
+
maxFeePerGas?: bigint | undefined;
|
|
10185
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10186
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10187
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
10188
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
10189
|
+
} | {
|
|
10190
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
10191
|
+
} | {
|
|
10192
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
10193
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
10194
|
+
accessList?: viem0.AccessList | undefined;
|
|
10195
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10196
|
+
blobs?: undefined | undefined;
|
|
10197
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10198
|
+
gasPrice?: undefined | undefined;
|
|
10199
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10200
|
+
maxFeePerGas?: bigint | undefined;
|
|
10201
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10202
|
+
sidecars?: undefined | undefined;
|
|
10203
|
+
} | {
|
|
10204
|
+
accessList?: viem0.AccessList | undefined;
|
|
10205
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10206
|
+
blobs?: undefined | undefined;
|
|
10207
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10208
|
+
gasPrice?: undefined | undefined;
|
|
10209
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10210
|
+
maxFeePerGas?: bigint | undefined;
|
|
10211
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10212
|
+
sidecars?: undefined | undefined;
|
|
10213
|
+
}) & {
|
|
10214
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
10215
|
+
} ? "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"] : viem0.GetTransactionType<request, (request extends {
|
|
10216
|
+
accessList?: undefined | undefined;
|
|
10217
|
+
authorizationList?: undefined | undefined;
|
|
10218
|
+
blobs?: undefined | undefined;
|
|
10219
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10220
|
+
gasPrice?: bigint | undefined;
|
|
10221
|
+
sidecars?: undefined | undefined;
|
|
10222
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
10223
|
+
accessList?: viem0.AccessList | undefined;
|
|
10224
|
+
authorizationList?: undefined | undefined;
|
|
10225
|
+
blobs?: undefined | undefined;
|
|
10226
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10227
|
+
gasPrice?: undefined | undefined;
|
|
10228
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10229
|
+
maxFeePerGas?: bigint | undefined;
|
|
10230
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10231
|
+
sidecars?: undefined | undefined;
|
|
10232
|
+
} & (viem0.OneOf<{
|
|
10233
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
10234
|
+
} | {
|
|
10235
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
10236
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
10237
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
10238
|
+
}) ? "eip1559" : never) | (request extends {
|
|
10239
|
+
accessList?: viem0.AccessList | undefined;
|
|
10240
|
+
authorizationList?: undefined | undefined;
|
|
10241
|
+
blobs?: undefined | undefined;
|
|
10242
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10243
|
+
gasPrice?: bigint | undefined;
|
|
10244
|
+
sidecars?: undefined | undefined;
|
|
10245
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10246
|
+
maxFeePerGas?: undefined | undefined;
|
|
10247
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
10248
|
+
} & {
|
|
10249
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
10250
|
+
} ? "eip2930" : never) | (request extends ({
|
|
10251
|
+
accessList?: viem0.AccessList | undefined;
|
|
10252
|
+
authorizationList?: undefined | undefined;
|
|
10253
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10254
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10255
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10256
|
+
maxFeePerGas?: bigint | undefined;
|
|
10257
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10258
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10259
|
+
} | {
|
|
10260
|
+
accessList?: viem0.AccessList | undefined;
|
|
10261
|
+
authorizationList?: undefined | undefined;
|
|
10262
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10263
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10264
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10265
|
+
maxFeePerGas?: bigint | undefined;
|
|
10266
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10267
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10268
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
10269
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
10270
|
+
} | {
|
|
10271
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
10272
|
+
} | {
|
|
10273
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
10274
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
10275
|
+
accessList?: viem0.AccessList | undefined;
|
|
10276
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10277
|
+
blobs?: undefined | undefined;
|
|
10278
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10279
|
+
gasPrice?: undefined | undefined;
|
|
10280
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10281
|
+
maxFeePerGas?: bigint | undefined;
|
|
10282
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10283
|
+
sidecars?: undefined | undefined;
|
|
10284
|
+
} | {
|
|
10285
|
+
accessList?: viem0.AccessList | undefined;
|
|
10286
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10287
|
+
blobs?: undefined | undefined;
|
|
10288
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10289
|
+
gasPrice?: undefined | undefined;
|
|
10290
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10291
|
+
maxFeePerGas?: bigint | undefined;
|
|
10292
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10293
|
+
sidecars?: undefined | undefined;
|
|
10294
|
+
}) & {
|
|
10295
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
10296
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
10297
|
+
accessList?: undefined | undefined;
|
|
10298
|
+
authorizationList?: undefined | undefined;
|
|
10299
|
+
blobs?: undefined | undefined;
|
|
10300
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10301
|
+
gasPrice?: bigint | undefined;
|
|
10302
|
+
sidecars?: undefined | undefined;
|
|
10303
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
10304
|
+
accessList?: viem0.AccessList | undefined;
|
|
10305
|
+
authorizationList?: undefined | undefined;
|
|
10306
|
+
blobs?: undefined | undefined;
|
|
10307
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10308
|
+
gasPrice?: undefined | undefined;
|
|
10309
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10310
|
+
maxFeePerGas?: bigint | undefined;
|
|
10311
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10312
|
+
sidecars?: undefined | undefined;
|
|
10313
|
+
} & (viem0.OneOf<{
|
|
10314
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
10315
|
+
} | {
|
|
10316
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
10317
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
10318
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
10319
|
+
}) ? "eip1559" : never) | (request extends {
|
|
10320
|
+
accessList?: viem0.AccessList | undefined;
|
|
10321
|
+
authorizationList?: undefined | undefined;
|
|
10322
|
+
blobs?: undefined | undefined;
|
|
10323
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10324
|
+
gasPrice?: bigint | undefined;
|
|
10325
|
+
sidecars?: undefined | undefined;
|
|
10326
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10327
|
+
maxFeePerGas?: undefined | undefined;
|
|
10328
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
10329
|
+
} & {
|
|
10330
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
10331
|
+
} ? "eip2930" : never) | (request extends ({
|
|
10332
|
+
accessList?: viem0.AccessList | undefined;
|
|
10333
|
+
authorizationList?: undefined | undefined;
|
|
10334
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10335
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10336
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10337
|
+
maxFeePerGas?: bigint | undefined;
|
|
10338
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10339
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10340
|
+
} | {
|
|
10341
|
+
accessList?: viem0.AccessList | undefined;
|
|
10342
|
+
authorizationList?: undefined | undefined;
|
|
10343
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10344
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10345
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10346
|
+
maxFeePerGas?: bigint | undefined;
|
|
10347
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10348
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10349
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
10350
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
10351
|
+
} | {
|
|
10352
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
10353
|
+
} | {
|
|
10354
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
10355
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
10356
|
+
accessList?: viem0.AccessList | undefined;
|
|
10357
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10358
|
+
blobs?: undefined | undefined;
|
|
10359
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10360
|
+
gasPrice?: undefined | undefined;
|
|
10361
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10362
|
+
maxFeePerGas?: bigint | undefined;
|
|
10363
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10364
|
+
sidecars?: undefined | undefined;
|
|
10365
|
+
} | {
|
|
10366
|
+
accessList?: viem0.AccessList | undefined;
|
|
10367
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10368
|
+
blobs?: undefined | undefined;
|
|
10369
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10370
|
+
gasPrice?: undefined | undefined;
|
|
10371
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10372
|
+
maxFeePerGas?: bigint | undefined;
|
|
10373
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10374
|
+
sidecars?: undefined | undefined;
|
|
10375
|
+
}) & {
|
|
10376
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
10377
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_9 extends "eip1559" ? viem0.TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem0.GetTransactionType<request, (request extends {
|
|
10378
|
+
accessList?: undefined | undefined;
|
|
10379
|
+
authorizationList?: undefined | undefined;
|
|
10380
|
+
blobs?: undefined | undefined;
|
|
10381
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10382
|
+
gasPrice?: bigint | undefined;
|
|
10383
|
+
sidecars?: undefined | undefined;
|
|
10384
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
10385
|
+
accessList?: viem0.AccessList | undefined;
|
|
10386
|
+
authorizationList?: undefined | undefined;
|
|
10387
|
+
blobs?: undefined | undefined;
|
|
10388
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10389
|
+
gasPrice?: undefined | undefined;
|
|
10390
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10391
|
+
maxFeePerGas?: bigint | undefined;
|
|
10392
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10393
|
+
sidecars?: undefined | undefined;
|
|
10394
|
+
} & (viem0.OneOf<{
|
|
10395
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
10396
|
+
} | {
|
|
10397
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
10398
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
10399
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
10400
|
+
}) ? "eip1559" : never) | (request extends {
|
|
10401
|
+
accessList?: viem0.AccessList | undefined;
|
|
10402
|
+
authorizationList?: undefined | undefined;
|
|
10403
|
+
blobs?: undefined | undefined;
|
|
10404
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10405
|
+
gasPrice?: bigint | undefined;
|
|
10406
|
+
sidecars?: undefined | undefined;
|
|
10407
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10408
|
+
maxFeePerGas?: undefined | undefined;
|
|
10409
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
10410
|
+
} & {
|
|
10411
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
10412
|
+
} ? "eip2930" : never) | (request extends ({
|
|
10413
|
+
accessList?: viem0.AccessList | undefined;
|
|
10414
|
+
authorizationList?: undefined | undefined;
|
|
10415
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10416
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10417
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10418
|
+
maxFeePerGas?: bigint | undefined;
|
|
10419
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10420
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10421
|
+
} | {
|
|
10422
|
+
accessList?: viem0.AccessList | undefined;
|
|
10423
|
+
authorizationList?: undefined | undefined;
|
|
10424
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10425
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10426
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10427
|
+
maxFeePerGas?: bigint | undefined;
|
|
10428
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10429
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10430
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
10431
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
10432
|
+
} | {
|
|
10433
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
10434
|
+
} | {
|
|
10435
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
10436
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
10437
|
+
accessList?: viem0.AccessList | undefined;
|
|
10438
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10439
|
+
blobs?: undefined | undefined;
|
|
10440
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10441
|
+
gasPrice?: undefined | undefined;
|
|
10442
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10443
|
+
maxFeePerGas?: bigint | undefined;
|
|
10444
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10445
|
+
sidecars?: undefined | undefined;
|
|
10446
|
+
} | {
|
|
10447
|
+
accessList?: viem0.AccessList | undefined;
|
|
10448
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10449
|
+
blobs?: undefined | undefined;
|
|
10450
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10451
|
+
gasPrice?: undefined | undefined;
|
|
10452
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10453
|
+
maxFeePerGas?: bigint | undefined;
|
|
10454
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10455
|
+
sidecars?: undefined | undefined;
|
|
10456
|
+
}) & {
|
|
10457
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
10458
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
10459
|
+
accessList?: undefined | undefined;
|
|
10460
|
+
authorizationList?: undefined | undefined;
|
|
10461
|
+
blobs?: undefined | undefined;
|
|
10462
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10463
|
+
gasPrice?: bigint | undefined;
|
|
10464
|
+
sidecars?: undefined | undefined;
|
|
10465
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
10466
|
+
accessList?: viem0.AccessList | undefined;
|
|
10467
|
+
authorizationList?: undefined | undefined;
|
|
10468
|
+
blobs?: undefined | undefined;
|
|
10469
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10470
|
+
gasPrice?: undefined | undefined;
|
|
10471
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10472
|
+
maxFeePerGas?: bigint | undefined;
|
|
10473
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10474
|
+
sidecars?: undefined | undefined;
|
|
10475
|
+
} & (viem0.OneOf<{
|
|
10476
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
10477
|
+
} | {
|
|
10478
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
10479
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
10480
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
10481
|
+
}) ? "eip1559" : never) | (request extends {
|
|
10482
|
+
accessList?: viem0.AccessList | undefined;
|
|
10483
|
+
authorizationList?: undefined | undefined;
|
|
10484
|
+
blobs?: undefined | undefined;
|
|
10485
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10486
|
+
gasPrice?: bigint | undefined;
|
|
10487
|
+
sidecars?: undefined | undefined;
|
|
10488
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10489
|
+
maxFeePerGas?: undefined | undefined;
|
|
10490
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
10491
|
+
} & {
|
|
10492
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
10493
|
+
} ? "eip2930" : never) | (request extends ({
|
|
10494
|
+
accessList?: viem0.AccessList | undefined;
|
|
10495
|
+
authorizationList?: undefined | undefined;
|
|
10496
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10497
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10498
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10499
|
+
maxFeePerGas?: bigint | undefined;
|
|
10500
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10501
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10502
|
+
} | {
|
|
10503
|
+
accessList?: viem0.AccessList | undefined;
|
|
10504
|
+
authorizationList?: undefined | undefined;
|
|
10505
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10506
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10507
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10508
|
+
maxFeePerGas?: bigint | undefined;
|
|
10509
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10510
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10511
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
10512
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
10513
|
+
} | {
|
|
10514
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
10515
|
+
} | {
|
|
10516
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
10517
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
10518
|
+
accessList?: viem0.AccessList | undefined;
|
|
10519
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10520
|
+
blobs?: undefined | undefined;
|
|
10521
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10522
|
+
gasPrice?: undefined | undefined;
|
|
10523
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10524
|
+
maxFeePerGas?: bigint | undefined;
|
|
10525
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10526
|
+
sidecars?: undefined | undefined;
|
|
10527
|
+
} | {
|
|
10528
|
+
accessList?: viem0.AccessList | undefined;
|
|
10529
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10530
|
+
blobs?: undefined | undefined;
|
|
10531
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10532
|
+
gasPrice?: undefined | undefined;
|
|
10533
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10534
|
+
maxFeePerGas?: bigint | undefined;
|
|
10535
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10536
|
+
sidecars?: undefined | undefined;
|
|
10537
|
+
}) & {
|
|
10538
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
10539
|
+
} ? "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"] : viem0.GetTransactionType<request, (request extends {
|
|
10540
|
+
accessList?: undefined | undefined;
|
|
10541
|
+
authorizationList?: undefined | undefined;
|
|
10542
|
+
blobs?: undefined | undefined;
|
|
10543
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10544
|
+
gasPrice?: bigint | undefined;
|
|
10545
|
+
sidecars?: undefined | undefined;
|
|
10546
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
10547
|
+
accessList?: viem0.AccessList | undefined;
|
|
10548
|
+
authorizationList?: undefined | undefined;
|
|
10549
|
+
blobs?: undefined | undefined;
|
|
10550
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10551
|
+
gasPrice?: undefined | undefined;
|
|
10552
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10553
|
+
maxFeePerGas?: bigint | undefined;
|
|
10554
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10555
|
+
sidecars?: undefined | undefined;
|
|
10556
|
+
} & (viem0.OneOf<{
|
|
10557
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
10558
|
+
} | {
|
|
10559
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
10560
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
10561
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
10562
|
+
}) ? "eip1559" : never) | (request extends {
|
|
10563
|
+
accessList?: viem0.AccessList | undefined;
|
|
10564
|
+
authorizationList?: undefined | undefined;
|
|
10565
|
+
blobs?: undefined | undefined;
|
|
10566
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10567
|
+
gasPrice?: bigint | undefined;
|
|
10568
|
+
sidecars?: undefined | undefined;
|
|
10569
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10570
|
+
maxFeePerGas?: undefined | undefined;
|
|
10571
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
10572
|
+
} & {
|
|
10573
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
10574
|
+
} ? "eip2930" : never) | (request extends ({
|
|
10575
|
+
accessList?: viem0.AccessList | undefined;
|
|
10576
|
+
authorizationList?: undefined | undefined;
|
|
10577
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10578
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10579
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10580
|
+
maxFeePerGas?: bigint | undefined;
|
|
10581
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10582
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10583
|
+
} | {
|
|
10584
|
+
accessList?: viem0.AccessList | undefined;
|
|
10585
|
+
authorizationList?: undefined | undefined;
|
|
10586
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10587
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10588
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10589
|
+
maxFeePerGas?: bigint | undefined;
|
|
10590
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10591
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10592
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
10593
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
10594
|
+
} | {
|
|
10595
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
10596
|
+
} | {
|
|
10597
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
10598
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
10599
|
+
accessList?: viem0.AccessList | undefined;
|
|
10600
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10601
|
+
blobs?: undefined | undefined;
|
|
10602
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10603
|
+
gasPrice?: undefined | undefined;
|
|
10604
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10605
|
+
maxFeePerGas?: bigint | undefined;
|
|
10606
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10607
|
+
sidecars?: undefined | undefined;
|
|
10608
|
+
} | {
|
|
10609
|
+
accessList?: viem0.AccessList | undefined;
|
|
10610
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10611
|
+
blobs?: undefined | undefined;
|
|
10612
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10613
|
+
gasPrice?: undefined | undefined;
|
|
10614
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10615
|
+
maxFeePerGas?: bigint | undefined;
|
|
10616
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10617
|
+
sidecars?: undefined | undefined;
|
|
10618
|
+
}) & {
|
|
10619
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
10620
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
10621
|
+
accessList?: undefined | undefined;
|
|
10622
|
+
authorizationList?: undefined | undefined;
|
|
10623
|
+
blobs?: undefined | undefined;
|
|
10624
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10625
|
+
gasPrice?: bigint | undefined;
|
|
10626
|
+
sidecars?: undefined | undefined;
|
|
10627
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
10628
|
+
accessList?: viem0.AccessList | undefined;
|
|
10629
|
+
authorizationList?: undefined | undefined;
|
|
10630
|
+
blobs?: undefined | undefined;
|
|
10631
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10632
|
+
gasPrice?: undefined | undefined;
|
|
10633
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10634
|
+
maxFeePerGas?: bigint | undefined;
|
|
10635
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10636
|
+
sidecars?: undefined | undefined;
|
|
10637
|
+
} & (viem0.OneOf<{
|
|
10638
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
10639
|
+
} | {
|
|
10640
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
10641
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
10642
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
10643
|
+
}) ? "eip1559" : never) | (request extends {
|
|
10644
|
+
accessList?: viem0.AccessList | undefined;
|
|
10645
|
+
authorizationList?: undefined | undefined;
|
|
10646
|
+
blobs?: undefined | undefined;
|
|
10647
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10648
|
+
gasPrice?: bigint | undefined;
|
|
10649
|
+
sidecars?: undefined | undefined;
|
|
10650
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10651
|
+
maxFeePerGas?: undefined | undefined;
|
|
10652
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
10653
|
+
} & {
|
|
10654
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
10655
|
+
} ? "eip2930" : never) | (request extends ({
|
|
10656
|
+
accessList?: viem0.AccessList | undefined;
|
|
10657
|
+
authorizationList?: undefined | undefined;
|
|
10658
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10659
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10660
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10661
|
+
maxFeePerGas?: bigint | undefined;
|
|
10662
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10663
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10664
|
+
} | {
|
|
10665
|
+
accessList?: viem0.AccessList | undefined;
|
|
10666
|
+
authorizationList?: undefined | undefined;
|
|
10667
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10668
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10669
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10670
|
+
maxFeePerGas?: bigint | undefined;
|
|
10671
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10672
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10673
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
10674
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
10675
|
+
} | {
|
|
10676
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
10677
|
+
} | {
|
|
10678
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
10679
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
10680
|
+
accessList?: viem0.AccessList | undefined;
|
|
10681
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10682
|
+
blobs?: undefined | undefined;
|
|
10683
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10684
|
+
gasPrice?: undefined | undefined;
|
|
10685
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10686
|
+
maxFeePerGas?: bigint | undefined;
|
|
10687
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10688
|
+
sidecars?: undefined | undefined;
|
|
10689
|
+
} | {
|
|
10690
|
+
accessList?: viem0.AccessList | undefined;
|
|
10691
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10692
|
+
blobs?: undefined | undefined;
|
|
10693
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10694
|
+
gasPrice?: undefined | undefined;
|
|
10695
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10696
|
+
maxFeePerGas?: bigint | undefined;
|
|
10697
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10698
|
+
sidecars?: undefined | undefined;
|
|
10699
|
+
}) & {
|
|
10700
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
10701
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_10 extends "eip2930" ? viem0.TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem0.GetTransactionType<request, (request extends {
|
|
10702
|
+
accessList?: undefined | undefined;
|
|
10703
|
+
authorizationList?: undefined | undefined;
|
|
10704
|
+
blobs?: undefined | undefined;
|
|
10705
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10706
|
+
gasPrice?: bigint | undefined;
|
|
10707
|
+
sidecars?: undefined | undefined;
|
|
10708
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
10709
|
+
accessList?: viem0.AccessList | undefined;
|
|
10710
|
+
authorizationList?: undefined | undefined;
|
|
10711
|
+
blobs?: undefined | undefined;
|
|
10712
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10713
|
+
gasPrice?: undefined | undefined;
|
|
10714
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10715
|
+
maxFeePerGas?: bigint | undefined;
|
|
10716
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10717
|
+
sidecars?: undefined | undefined;
|
|
10718
|
+
} & (viem0.OneOf<{
|
|
10719
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
10720
|
+
} | {
|
|
10721
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
10722
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
10723
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
10724
|
+
}) ? "eip1559" : never) | (request extends {
|
|
10725
|
+
accessList?: viem0.AccessList | undefined;
|
|
10726
|
+
authorizationList?: undefined | undefined;
|
|
10727
|
+
blobs?: undefined | undefined;
|
|
10728
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10729
|
+
gasPrice?: bigint | undefined;
|
|
10730
|
+
sidecars?: undefined | undefined;
|
|
10731
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10732
|
+
maxFeePerGas?: undefined | undefined;
|
|
10733
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
10734
|
+
} & {
|
|
10735
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
10736
|
+
} ? "eip2930" : never) | (request extends ({
|
|
10737
|
+
accessList?: viem0.AccessList | undefined;
|
|
10738
|
+
authorizationList?: undefined | undefined;
|
|
10739
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10740
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10741
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10742
|
+
maxFeePerGas?: bigint | undefined;
|
|
10743
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10744
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10745
|
+
} | {
|
|
10746
|
+
accessList?: viem0.AccessList | undefined;
|
|
10747
|
+
authorizationList?: undefined | undefined;
|
|
10748
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10749
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10750
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10751
|
+
maxFeePerGas?: bigint | undefined;
|
|
10752
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10753
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10754
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
10755
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
10756
|
+
} | {
|
|
10757
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
10758
|
+
} | {
|
|
10759
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
10760
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
10761
|
+
accessList?: viem0.AccessList | undefined;
|
|
10762
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10763
|
+
blobs?: undefined | undefined;
|
|
10764
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10765
|
+
gasPrice?: undefined | undefined;
|
|
10766
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10767
|
+
maxFeePerGas?: bigint | undefined;
|
|
10768
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10769
|
+
sidecars?: undefined | undefined;
|
|
10770
|
+
} | {
|
|
10771
|
+
accessList?: viem0.AccessList | undefined;
|
|
10772
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10773
|
+
blobs?: undefined | undefined;
|
|
10774
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10775
|
+
gasPrice?: undefined | undefined;
|
|
10776
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10777
|
+
maxFeePerGas?: bigint | undefined;
|
|
10778
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10779
|
+
sidecars?: undefined | undefined;
|
|
10780
|
+
}) & {
|
|
10781
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
10782
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
10783
|
+
accessList?: undefined | undefined;
|
|
10784
|
+
authorizationList?: undefined | undefined;
|
|
10785
|
+
blobs?: undefined | undefined;
|
|
10786
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10787
|
+
gasPrice?: bigint | undefined;
|
|
10788
|
+
sidecars?: undefined | undefined;
|
|
10789
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
10790
|
+
accessList?: viem0.AccessList | undefined;
|
|
10791
|
+
authorizationList?: undefined | undefined;
|
|
10792
|
+
blobs?: undefined | undefined;
|
|
10793
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10794
|
+
gasPrice?: undefined | undefined;
|
|
10795
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10796
|
+
maxFeePerGas?: bigint | undefined;
|
|
10797
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10798
|
+
sidecars?: undefined | undefined;
|
|
10799
|
+
} & (viem0.OneOf<{
|
|
10800
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
10801
|
+
} | {
|
|
10802
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
10803
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
10804
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
10805
|
+
}) ? "eip1559" : never) | (request extends {
|
|
10806
|
+
accessList?: viem0.AccessList | undefined;
|
|
10807
|
+
authorizationList?: undefined | undefined;
|
|
10808
|
+
blobs?: undefined | undefined;
|
|
10809
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10810
|
+
gasPrice?: bigint | undefined;
|
|
10811
|
+
sidecars?: undefined | undefined;
|
|
10812
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10813
|
+
maxFeePerGas?: undefined | undefined;
|
|
10814
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
10815
|
+
} & {
|
|
10816
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
10817
|
+
} ? "eip2930" : never) | (request extends ({
|
|
10818
|
+
accessList?: viem0.AccessList | undefined;
|
|
10819
|
+
authorizationList?: undefined | undefined;
|
|
10820
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10821
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10822
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10823
|
+
maxFeePerGas?: bigint | undefined;
|
|
10824
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10825
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10826
|
+
} | {
|
|
10827
|
+
accessList?: viem0.AccessList | undefined;
|
|
10828
|
+
authorizationList?: undefined | undefined;
|
|
10829
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10830
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10831
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10832
|
+
maxFeePerGas?: bigint | undefined;
|
|
10833
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10834
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10835
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
10836
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
10837
|
+
} | {
|
|
10838
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
10839
|
+
} | {
|
|
10840
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
10841
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
10842
|
+
accessList?: viem0.AccessList | undefined;
|
|
10843
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10844
|
+
blobs?: undefined | undefined;
|
|
10845
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10846
|
+
gasPrice?: undefined | undefined;
|
|
10847
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10848
|
+
maxFeePerGas?: bigint | undefined;
|
|
10849
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10850
|
+
sidecars?: undefined | undefined;
|
|
10851
|
+
} | {
|
|
10852
|
+
accessList?: viem0.AccessList | undefined;
|
|
10853
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10854
|
+
blobs?: undefined | undefined;
|
|
10855
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10856
|
+
gasPrice?: undefined | undefined;
|
|
10857
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10858
|
+
maxFeePerGas?: bigint | undefined;
|
|
10859
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10860
|
+
sidecars?: undefined | undefined;
|
|
10861
|
+
}) & {
|
|
10862
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
10863
|
+
} ? "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"] : viem0.GetTransactionType<request, (request extends {
|
|
10864
|
+
accessList?: undefined | undefined;
|
|
10865
|
+
authorizationList?: undefined | undefined;
|
|
10866
|
+
blobs?: undefined | undefined;
|
|
10867
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10868
|
+
gasPrice?: bigint | undefined;
|
|
10869
|
+
sidecars?: undefined | undefined;
|
|
10870
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
10871
|
+
accessList?: viem0.AccessList | undefined;
|
|
10872
|
+
authorizationList?: undefined | undefined;
|
|
10873
|
+
blobs?: undefined | undefined;
|
|
10874
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10875
|
+
gasPrice?: undefined | undefined;
|
|
10876
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10877
|
+
maxFeePerGas?: bigint | undefined;
|
|
10878
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10879
|
+
sidecars?: undefined | undefined;
|
|
10880
|
+
} & (viem0.OneOf<{
|
|
10881
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
10882
|
+
} | {
|
|
10883
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
10884
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
10885
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
10886
|
+
}) ? "eip1559" : never) | (request extends {
|
|
10887
|
+
accessList?: viem0.AccessList | undefined;
|
|
10888
|
+
authorizationList?: undefined | undefined;
|
|
10889
|
+
blobs?: undefined | undefined;
|
|
10890
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10891
|
+
gasPrice?: bigint | undefined;
|
|
10892
|
+
sidecars?: undefined | undefined;
|
|
10893
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10894
|
+
maxFeePerGas?: undefined | undefined;
|
|
10895
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
10896
|
+
} & {
|
|
10897
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
10898
|
+
} ? "eip2930" : never) | (request extends ({
|
|
10899
|
+
accessList?: viem0.AccessList | undefined;
|
|
10900
|
+
authorizationList?: undefined | undefined;
|
|
10901
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10902
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10903
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10904
|
+
maxFeePerGas?: bigint | undefined;
|
|
10905
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10906
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10907
|
+
} | {
|
|
10908
|
+
accessList?: viem0.AccessList | undefined;
|
|
10909
|
+
authorizationList?: undefined | undefined;
|
|
10910
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10911
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10912
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10913
|
+
maxFeePerGas?: bigint | undefined;
|
|
10914
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10915
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10916
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
10917
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
10918
|
+
} | {
|
|
10919
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
10920
|
+
} | {
|
|
10921
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
10922
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
10923
|
+
accessList?: viem0.AccessList | undefined;
|
|
10924
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10925
|
+
blobs?: undefined | undefined;
|
|
10926
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10927
|
+
gasPrice?: undefined | undefined;
|
|
10928
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10929
|
+
maxFeePerGas?: bigint | undefined;
|
|
10930
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10931
|
+
sidecars?: undefined | undefined;
|
|
10932
|
+
} | {
|
|
10933
|
+
accessList?: viem0.AccessList | undefined;
|
|
10934
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
10935
|
+
blobs?: undefined | undefined;
|
|
10936
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10937
|
+
gasPrice?: undefined | undefined;
|
|
10938
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10939
|
+
maxFeePerGas?: bigint | undefined;
|
|
10940
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10941
|
+
sidecars?: undefined | undefined;
|
|
10942
|
+
}) & {
|
|
10943
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
10944
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
10945
|
+
accessList?: undefined | undefined;
|
|
10946
|
+
authorizationList?: undefined | undefined;
|
|
10947
|
+
blobs?: undefined | undefined;
|
|
10948
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10949
|
+
gasPrice?: bigint | undefined;
|
|
10950
|
+
sidecars?: undefined | undefined;
|
|
10951
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
10952
|
+
accessList?: viem0.AccessList | undefined;
|
|
10953
|
+
authorizationList?: undefined | undefined;
|
|
10954
|
+
blobs?: undefined | undefined;
|
|
10955
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10956
|
+
gasPrice?: undefined | undefined;
|
|
10957
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10958
|
+
maxFeePerGas?: bigint | undefined;
|
|
10959
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10960
|
+
sidecars?: undefined | undefined;
|
|
10961
|
+
} & (viem0.OneOf<{
|
|
10962
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
10963
|
+
} | {
|
|
10964
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
10965
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
10966
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
10967
|
+
}) ? "eip1559" : never) | (request extends {
|
|
10968
|
+
accessList?: viem0.AccessList | undefined;
|
|
10969
|
+
authorizationList?: undefined | undefined;
|
|
10970
|
+
blobs?: undefined | undefined;
|
|
10971
|
+
blobVersionedHashes?: undefined | undefined;
|
|
10972
|
+
gasPrice?: bigint | undefined;
|
|
10973
|
+
sidecars?: undefined | undefined;
|
|
10974
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
10975
|
+
maxFeePerGas?: undefined | undefined;
|
|
10976
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
10977
|
+
} & {
|
|
10978
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
10979
|
+
} ? "eip2930" : never) | (request extends ({
|
|
10980
|
+
accessList?: viem0.AccessList | undefined;
|
|
10981
|
+
authorizationList?: undefined | undefined;
|
|
10982
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10983
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10984
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10985
|
+
maxFeePerGas?: bigint | undefined;
|
|
10986
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10987
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10988
|
+
} | {
|
|
10989
|
+
accessList?: viem0.AccessList | undefined;
|
|
10990
|
+
authorizationList?: undefined | undefined;
|
|
10991
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
10992
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
10993
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
10994
|
+
maxFeePerGas?: bigint | undefined;
|
|
10995
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
10996
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
10997
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
10998
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
10999
|
+
} | {
|
|
11000
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
11001
|
+
} | {
|
|
11002
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
11003
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
11004
|
+
accessList?: viem0.AccessList | undefined;
|
|
11005
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
11006
|
+
blobs?: undefined | undefined;
|
|
11007
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11008
|
+
gasPrice?: undefined | undefined;
|
|
11009
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11010
|
+
maxFeePerGas?: bigint | undefined;
|
|
11011
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11012
|
+
sidecars?: undefined | undefined;
|
|
11013
|
+
} | {
|
|
11014
|
+
accessList?: viem0.AccessList | undefined;
|
|
11015
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
11016
|
+
blobs?: undefined | undefined;
|
|
11017
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11018
|
+
gasPrice?: undefined | undefined;
|
|
11019
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11020
|
+
maxFeePerGas?: bigint | undefined;
|
|
11021
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11022
|
+
sidecars?: undefined | undefined;
|
|
11023
|
+
}) & {
|
|
11024
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
11025
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_11 extends "eip4844" ? viem0.TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem0.GetTransactionType<request, (request extends {
|
|
11026
|
+
accessList?: undefined | undefined;
|
|
11027
|
+
authorizationList?: undefined | undefined;
|
|
11028
|
+
blobs?: undefined | undefined;
|
|
11029
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11030
|
+
gasPrice?: bigint | undefined;
|
|
11031
|
+
sidecars?: undefined | undefined;
|
|
11032
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
11033
|
+
accessList?: viem0.AccessList | undefined;
|
|
11034
|
+
authorizationList?: undefined | undefined;
|
|
11035
|
+
blobs?: undefined | undefined;
|
|
11036
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11037
|
+
gasPrice?: undefined | undefined;
|
|
11038
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11039
|
+
maxFeePerGas?: bigint | undefined;
|
|
11040
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11041
|
+
sidecars?: undefined | undefined;
|
|
11042
|
+
} & (viem0.OneOf<{
|
|
11043
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
11044
|
+
} | {
|
|
11045
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
11046
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
11047
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
11048
|
+
}) ? "eip1559" : never) | (request extends {
|
|
11049
|
+
accessList?: viem0.AccessList | undefined;
|
|
11050
|
+
authorizationList?: undefined | undefined;
|
|
11051
|
+
blobs?: undefined | undefined;
|
|
11052
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11053
|
+
gasPrice?: bigint | undefined;
|
|
11054
|
+
sidecars?: undefined | undefined;
|
|
11055
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11056
|
+
maxFeePerGas?: undefined | undefined;
|
|
11057
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
11058
|
+
} & {
|
|
11059
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
11060
|
+
} ? "eip2930" : never) | (request extends ({
|
|
11061
|
+
accessList?: viem0.AccessList | undefined;
|
|
11062
|
+
authorizationList?: undefined | undefined;
|
|
11063
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
11064
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
11065
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
11066
|
+
maxFeePerGas?: bigint | undefined;
|
|
11067
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11068
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
11069
|
+
} | {
|
|
11070
|
+
accessList?: viem0.AccessList | undefined;
|
|
11071
|
+
authorizationList?: undefined | undefined;
|
|
11072
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
11073
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
11074
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
11075
|
+
maxFeePerGas?: bigint | undefined;
|
|
11076
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11077
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
11078
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
11079
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
11080
|
+
} | {
|
|
11081
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
11082
|
+
} | {
|
|
11083
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
11084
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
11085
|
+
accessList?: viem0.AccessList | undefined;
|
|
11086
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
11087
|
+
blobs?: undefined | undefined;
|
|
11088
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11089
|
+
gasPrice?: undefined | undefined;
|
|
11090
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11091
|
+
maxFeePerGas?: bigint | undefined;
|
|
11092
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11093
|
+
sidecars?: undefined | undefined;
|
|
11094
|
+
} | {
|
|
11095
|
+
accessList?: viem0.AccessList | undefined;
|
|
11096
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
11097
|
+
blobs?: undefined | undefined;
|
|
11098
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11099
|
+
gasPrice?: undefined | undefined;
|
|
11100
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11101
|
+
maxFeePerGas?: bigint | undefined;
|
|
11102
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11103
|
+
sidecars?: undefined | undefined;
|
|
11104
|
+
}) & {
|
|
11105
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
11106
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
11107
|
+
accessList?: undefined | undefined;
|
|
11108
|
+
authorizationList?: undefined | undefined;
|
|
11109
|
+
blobs?: undefined | undefined;
|
|
11110
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11111
|
+
gasPrice?: bigint | undefined;
|
|
11112
|
+
sidecars?: undefined | undefined;
|
|
11113
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
11114
|
+
accessList?: viem0.AccessList | undefined;
|
|
11115
|
+
authorizationList?: undefined | undefined;
|
|
11116
|
+
blobs?: undefined | undefined;
|
|
11117
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11118
|
+
gasPrice?: undefined | undefined;
|
|
11119
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11120
|
+
maxFeePerGas?: bigint | undefined;
|
|
11121
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11122
|
+
sidecars?: undefined | undefined;
|
|
11123
|
+
} & (viem0.OneOf<{
|
|
11124
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
11125
|
+
} | {
|
|
11126
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
11127
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
11128
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
11129
|
+
}) ? "eip1559" : never) | (request extends {
|
|
11130
|
+
accessList?: viem0.AccessList | undefined;
|
|
11131
|
+
authorizationList?: undefined | undefined;
|
|
11132
|
+
blobs?: undefined | undefined;
|
|
11133
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11134
|
+
gasPrice?: bigint | undefined;
|
|
11135
|
+
sidecars?: undefined | undefined;
|
|
11136
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11137
|
+
maxFeePerGas?: undefined | undefined;
|
|
11138
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
11139
|
+
} & {
|
|
11140
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
11141
|
+
} ? "eip2930" : never) | (request extends ({
|
|
11142
|
+
accessList?: viem0.AccessList | undefined;
|
|
11143
|
+
authorizationList?: undefined | undefined;
|
|
11144
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
11145
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
11146
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
11147
|
+
maxFeePerGas?: bigint | undefined;
|
|
11148
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11149
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
11150
|
+
} | {
|
|
11151
|
+
accessList?: viem0.AccessList | undefined;
|
|
11152
|
+
authorizationList?: undefined | undefined;
|
|
11153
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
11154
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
11155
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
11156
|
+
maxFeePerGas?: bigint | undefined;
|
|
11157
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11158
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
11159
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
11160
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
11161
|
+
} | {
|
|
11162
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
11163
|
+
} | {
|
|
11164
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
11165
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
11166
|
+
accessList?: viem0.AccessList | undefined;
|
|
11167
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
11168
|
+
blobs?: undefined | undefined;
|
|
11169
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11170
|
+
gasPrice?: undefined | undefined;
|
|
11171
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11172
|
+
maxFeePerGas?: bigint | undefined;
|
|
11173
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11174
|
+
sidecars?: undefined | undefined;
|
|
11175
|
+
} | {
|
|
11176
|
+
accessList?: viem0.AccessList | undefined;
|
|
11177
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
11178
|
+
blobs?: undefined | undefined;
|
|
11179
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11180
|
+
gasPrice?: undefined | undefined;
|
|
11181
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11182
|
+
maxFeePerGas?: bigint | undefined;
|
|
11183
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11184
|
+
sidecars?: undefined | undefined;
|
|
11185
|
+
}) & {
|
|
11186
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
11187
|
+
} ? "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"] : viem0.GetTransactionType<request, (request extends {
|
|
11188
|
+
accessList?: undefined | undefined;
|
|
11189
|
+
authorizationList?: undefined | undefined;
|
|
11190
|
+
blobs?: undefined | undefined;
|
|
11191
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11192
|
+
gasPrice?: bigint | undefined;
|
|
11193
|
+
sidecars?: undefined | undefined;
|
|
11194
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
11195
|
+
accessList?: viem0.AccessList | undefined;
|
|
11196
|
+
authorizationList?: undefined | undefined;
|
|
11197
|
+
blobs?: undefined | undefined;
|
|
11198
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11199
|
+
gasPrice?: undefined | undefined;
|
|
11200
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11201
|
+
maxFeePerGas?: bigint | undefined;
|
|
11202
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11203
|
+
sidecars?: undefined | undefined;
|
|
11204
|
+
} & (viem0.OneOf<{
|
|
11205
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
11206
|
+
} | {
|
|
11207
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
11208
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
11209
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
11210
|
+
}) ? "eip1559" : never) | (request extends {
|
|
11211
|
+
accessList?: viem0.AccessList | undefined;
|
|
11212
|
+
authorizationList?: undefined | undefined;
|
|
11213
|
+
blobs?: undefined | undefined;
|
|
11214
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11215
|
+
gasPrice?: bigint | undefined;
|
|
11216
|
+
sidecars?: undefined | undefined;
|
|
11217
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11218
|
+
maxFeePerGas?: undefined | undefined;
|
|
11219
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
11220
|
+
} & {
|
|
11221
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
11222
|
+
} ? "eip2930" : never) | (request extends ({
|
|
11223
|
+
accessList?: viem0.AccessList | undefined;
|
|
11224
|
+
authorizationList?: undefined | undefined;
|
|
11225
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
11226
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
11227
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
11228
|
+
maxFeePerGas?: bigint | undefined;
|
|
11229
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11230
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
11231
|
+
} | {
|
|
11232
|
+
accessList?: viem0.AccessList | undefined;
|
|
11233
|
+
authorizationList?: undefined | undefined;
|
|
11234
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
11235
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
11236
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
11237
|
+
maxFeePerGas?: bigint | undefined;
|
|
11238
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11239
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
11240
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
11241
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
11242
|
+
} | {
|
|
11243
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
11244
|
+
} | {
|
|
11245
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
11246
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
11247
|
+
accessList?: viem0.AccessList | undefined;
|
|
11248
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
11249
|
+
blobs?: undefined | undefined;
|
|
11250
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11251
|
+
gasPrice?: undefined | undefined;
|
|
11252
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11253
|
+
maxFeePerGas?: bigint | undefined;
|
|
11254
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11255
|
+
sidecars?: undefined | undefined;
|
|
11256
|
+
} | {
|
|
11257
|
+
accessList?: viem0.AccessList | undefined;
|
|
11258
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
11259
|
+
blobs?: undefined | undefined;
|
|
11260
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11261
|
+
gasPrice?: undefined | undefined;
|
|
11262
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11263
|
+
maxFeePerGas?: bigint | undefined;
|
|
11264
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11265
|
+
sidecars?: undefined | undefined;
|
|
11266
|
+
}) & {
|
|
11267
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
11268
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem0.GetTransactionType<request, (request extends {
|
|
11269
|
+
accessList?: undefined | undefined;
|
|
11270
|
+
authorizationList?: undefined | undefined;
|
|
11271
|
+
blobs?: undefined | undefined;
|
|
11272
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11273
|
+
gasPrice?: bigint | undefined;
|
|
11274
|
+
sidecars?: undefined | undefined;
|
|
11275
|
+
} & viem0.FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
11276
|
+
accessList?: viem0.AccessList | undefined;
|
|
11277
|
+
authorizationList?: undefined | undefined;
|
|
11278
|
+
blobs?: undefined | undefined;
|
|
11279
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11280
|
+
gasPrice?: undefined | undefined;
|
|
11281
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11282
|
+
maxFeePerGas?: bigint | undefined;
|
|
11283
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11284
|
+
sidecars?: undefined | undefined;
|
|
11285
|
+
} & (viem0.OneOf<{
|
|
11286
|
+
maxFeePerGas: viem0.FeeValuesEIP1559["maxFeePerGas"];
|
|
11287
|
+
} | {
|
|
11288
|
+
maxPriorityFeePerGas: viem0.FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
11289
|
+
}, viem0.FeeValuesEIP1559> & {
|
|
11290
|
+
accessList?: viem0.TransactionSerializableEIP2930["accessList"] | undefined;
|
|
11291
|
+
}) ? "eip1559" : never) | (request extends {
|
|
11292
|
+
accessList?: viem0.AccessList | undefined;
|
|
11293
|
+
authorizationList?: undefined | undefined;
|
|
11294
|
+
blobs?: undefined | undefined;
|
|
11295
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11296
|
+
gasPrice?: bigint | undefined;
|
|
11297
|
+
sidecars?: undefined | undefined;
|
|
11298
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11299
|
+
maxFeePerGas?: undefined | undefined;
|
|
11300
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
11301
|
+
} & {
|
|
11302
|
+
accessList: viem0.TransactionSerializableEIP2930["accessList"];
|
|
11303
|
+
} ? "eip2930" : never) | (request extends ({
|
|
11304
|
+
accessList?: viem0.AccessList | undefined;
|
|
11305
|
+
authorizationList?: undefined | undefined;
|
|
11306
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
11307
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
11308
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
11309
|
+
maxFeePerGas?: bigint | undefined;
|
|
11310
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11311
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
11312
|
+
} | {
|
|
11313
|
+
accessList?: viem0.AccessList | undefined;
|
|
11314
|
+
authorizationList?: undefined | undefined;
|
|
11315
|
+
blobs?: readonly `0x${string}`[] | readonly viem0.ByteArray[] | undefined;
|
|
11316
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
11317
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
11318
|
+
maxFeePerGas?: bigint | undefined;
|
|
11319
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11320
|
+
sidecars?: false | readonly viem0.BlobSidecar<`0x${string}`>[] | undefined;
|
|
11321
|
+
}) & (viem0.ExactPartial<viem0.FeeValuesEIP4844> & viem0.OneOf<{
|
|
11322
|
+
blobs: viem0.TransactionSerializableEIP4844["blobs"];
|
|
11323
|
+
} | {
|
|
11324
|
+
blobVersionedHashes: viem0.TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
11325
|
+
} | {
|
|
11326
|
+
sidecars: viem0.TransactionSerializableEIP4844["sidecars"];
|
|
11327
|
+
}, viem0.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
11328
|
+
accessList?: viem0.AccessList | undefined;
|
|
11329
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
11330
|
+
blobs?: undefined | undefined;
|
|
11331
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11332
|
+
gasPrice?: undefined | undefined;
|
|
11333
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11334
|
+
maxFeePerGas?: bigint | undefined;
|
|
11335
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11336
|
+
sidecars?: undefined | undefined;
|
|
11337
|
+
} | {
|
|
11338
|
+
accessList?: viem0.AccessList | undefined;
|
|
11339
|
+
authorizationList?: viem0.SignedAuthorizationList | undefined;
|
|
11340
|
+
blobs?: undefined | undefined;
|
|
11341
|
+
blobVersionedHashes?: undefined | undefined;
|
|
11342
|
+
gasPrice?: undefined | undefined;
|
|
11343
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
11344
|
+
maxFeePerGas?: bigint | undefined;
|
|
11345
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
11346
|
+
sidecars?: undefined | undefined;
|
|
11347
|
+
}) & {
|
|
11348
|
+
authorizationList: viem0.TransactionSerializableEIP7702["authorizationList"];
|
|
11349
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? viem0.TransactionRequestEIP7702 : never : never : never)>> & {
|
|
11350
|
+
chainId?: number | undefined;
|
|
11351
|
+
}, (request["parameters"] extends readonly viem0.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "chainId" | "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem0.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "chainId" | "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: T[K] } : never>;
|
|
11352
|
+
readContract: <const abi extends viem0.Abi | readonly unknown[], functionName extends viem0.ContractFunctionName<abi, "pure" | "view">, const args extends viem0.ContractFunctionArgs<abi, "pure" | "view", functionName>>(args: viem0.ReadContractParameters<abi, functionName, args>) => Promise<viem0.ReadContractReturnType<abi, functionName, args>>;
|
|
11353
|
+
sendRawTransaction: (args: viem0.SendRawTransactionParameters) => Promise<viem0.SendRawTransactionReturnType>;
|
|
11354
|
+
simulate: <const calls extends readonly unknown[]>(args: viem0.SimulateBlocksParameters<calls>) => Promise<viem0.SimulateBlocksReturnType<calls>>;
|
|
11355
|
+
simulateBlocks: <const calls extends readonly unknown[]>(args: viem0.SimulateBlocksParameters<calls>) => Promise<viem0.SimulateBlocksReturnType<calls>>;
|
|
11356
|
+
simulateCalls: <const calls extends readonly unknown[]>(args: viem0.SimulateCallsParameters<calls>) => Promise<viem0.SimulateCallsReturnType<calls>>;
|
|
11357
|
+
simulateContract: <const abi extends viem0.Abi | readonly unknown[], functionName extends viem0.ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends viem0.ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends Chain | undefined, accountOverride extends viem0.Account | viem0.Address | undefined = undefined>(args: viem0.SimulateContractParameters<abi, functionName, args_1, Chain, chainOverride, accountOverride>) => Promise<viem0.SimulateContractReturnType<abi, functionName, args_1, Chain, undefined, chainOverride, accountOverride>>;
|
|
11358
|
+
verifyMessage: (args: viem0.VerifyMessageActionParameters) => Promise<viem0.VerifyMessageActionReturnType>;
|
|
11359
|
+
verifySiweMessage: (args: {
|
|
11360
|
+
blockNumber?: bigint | undefined | undefined;
|
|
11361
|
+
blockTag?: viem0.BlockTag | undefined;
|
|
11362
|
+
address?: `0x${string}` | undefined;
|
|
11363
|
+
nonce?: string | undefined | undefined;
|
|
11364
|
+
domain?: string | undefined | undefined;
|
|
11365
|
+
scheme?: string | undefined | undefined;
|
|
11366
|
+
time?: Date | undefined;
|
|
11367
|
+
message: string;
|
|
11368
|
+
signature: viem0.Hex;
|
|
11369
|
+
}) => Promise<boolean>;
|
|
11370
|
+
verifyTypedData: (args: viem0.VerifyTypedDataActionParameters) => Promise<viem0.VerifyTypedDataActionReturnType>;
|
|
11371
|
+
uninstallFilter: (args: viem0.UninstallFilterParameters) => Promise<viem0.UninstallFilterReturnType>;
|
|
11372
|
+
waitForTransactionReceipt: (args: viem0.WaitForTransactionReceiptParameters<Chain>) => Promise<viem0.TransactionReceipt>;
|
|
11373
|
+
watchBlockNumber: (args: viem0.WatchBlockNumberParameters) => viem0.WatchBlockNumberReturnType;
|
|
11374
|
+
watchBlocks: <includeTransactions extends boolean = false, blockTag extends viem0.BlockTag = "latest">(args: viem0.WatchBlocksParameters<viem0.HttpTransport<viem0.RpcSchema | undefined, boolean>, Chain, includeTransactions, blockTag>) => viem0.WatchBlocksReturnType;
|
|
11375
|
+
watchContractEvent: <const abi extends viem0.Abi | readonly unknown[], eventName extends viem0.ContractEventName<abi>, strict extends boolean | undefined = undefined>(args: viem0.WatchContractEventParameters<abi, eventName, strict, viem0.HttpTransport<viem0.RpcSchema | undefined, boolean>>) => viem0.WatchContractEventReturnType;
|
|
11376
|
+
watchEvent: <const abiEvent extends viem0.AbiEvent | undefined = undefined, const abiEvents extends readonly viem0.AbiEvent[] | readonly unknown[] | undefined = (abiEvent extends viem0.AbiEvent ? [abiEvent] : undefined), strict extends boolean | undefined = undefined>(args: viem0.WatchEventParameters<abiEvent, abiEvents, strict, viem0.HttpTransport<viem0.RpcSchema | undefined, boolean>>) => viem0.WatchEventReturnType;
|
|
11377
|
+
watchPendingTransactions: (args: viem0.WatchPendingTransactionsParameters<viem0.HttpTransport<viem0.RpcSchema | undefined, boolean>>) => viem0.WatchPendingTransactionsReturnType;
|
|
11378
|
+
} & viem0.WalletActions<Chain, undefined>>;
|
|
11379
|
+
/**
|
|
11380
|
+
* Schema for the viem client options.
|
|
11381
|
+
*/
|
|
11382
|
+
declare const GetChainIdOptionsSchema: z.ZodObject<{
|
|
11383
|
+
accessToken: z.ZodOptional<z.ZodString>;
|
|
11384
|
+
rpcUrl: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
11385
|
+
httpTransportConfig: z.ZodOptional<z.ZodAny>;
|
|
11386
|
+
}, z.core.$strip>;
|
|
11387
|
+
/**
|
|
11388
|
+
* Type representing the validated get chain id options.
|
|
11389
|
+
*/
|
|
7721
11390
|
type GetChainIdOptions = Omit<z.infer<typeof GetChainIdOptionsSchema>, "httpTransportConfig"> & {
|
|
7722
11391
|
httpTransportConfig?: HttpTransportConfig;
|
|
7723
11392
|
};
|
|
@@ -7751,6 +11420,27 @@ type GetChainIdOptions = Omit<z.infer<typeof GetChainIdOptionsSchema>, "httpTran
|
|
|
7751
11420
|
* ```
|
|
7752
11421
|
*/
|
|
7753
11422
|
declare function getChainId(options: GetChainIdOptions): Promise<number>;
|
|
11423
|
+
/**
|
|
11424
|
+
* CHAIN RESOLUTION STRATEGY: Two-tier lookup optimizes for both known and custom chains.
|
|
11425
|
+
*
|
|
11426
|
+
* Tier 1: Known chains (Ethereum mainnet, common testnets, L2s)
|
|
11427
|
+
* - O(1) lookup from pre-built map
|
|
11428
|
+
* - No caching needed (references are stable)
|
|
11429
|
+
* - Ignores custom RPC URLs (uses viem's defaults)
|
|
11430
|
+
*
|
|
11431
|
+
* Tier 2: Custom chains (private networks, development chains)
|
|
11432
|
+
* - LRU cached to handle dynamic discovery
|
|
11433
|
+
* - Full parameter consideration for cache key
|
|
11434
|
+
* - ETH defaults for unknown chains (SettleMint platform assumption)
|
|
11435
|
+
*
|
|
11436
|
+
* TRADEOFF: Memory usage vs performance - separate strategies prevent cache pollution
|
|
11437
|
+
* of known chains with custom RPC configurations.
|
|
11438
|
+
*/
|
|
11439
|
+
declare function getChain({
|
|
11440
|
+
chainId,
|
|
11441
|
+
chainName,
|
|
11442
|
+
rpcUrl
|
|
11443
|
+
}: Pick<ClientOptions, "chainId" | "chainName" | "rpcUrl">): Chain;
|
|
7754
11444
|
//#endregion
|
|
7755
|
-
export { type AddressOrObject, ClientOptions, ClientOptionsSchema, type CreateWalletParameters, type CreateWalletResponse, type CreateWalletVerificationChallengesParameters, type CreateWalletVerificationChallengesResponse, type CreateWalletVerificationParameters, type CreateWalletVerificationResponse, type DeleteWalletVerificationParameters, type DeleteWalletVerificationResponse, GetChainIdOptions, GetChainIdOptionsSchema, type GetWalletVerificationsParameters, type GetWalletVerificationsResponse, OTPAlgorithm, type VerificationResult, type VerifyWalletVerificationChallengeParameters, type VerifyWalletVerificationChallengeResponse, type WalletInfo, type WalletOTPVerificationInfo, type WalletPincodeVerificationInfo, type WalletSecretCodesVerificationInfo, type WalletVerification, type WalletVerificationChallenge, type WalletVerificationInfo, WalletVerificationOptions, WalletVerificationType, getChainId, getPublicClient, getWalletClient };
|
|
11445
|
+
export { type AddressOrObject, type AddressOrObjectWithChallengeId, ClientOptions, ClientOptionsSchema, type CreateWalletParameters, type CreateWalletResponse, type CreateWalletVerificationChallengeParameters, type CreateWalletVerificationChallengeResponse, type CreateWalletVerificationChallengesParameters, type CreateWalletVerificationChallengesResponse, type CreateWalletVerificationParameters, type CreateWalletVerificationResponse, type DeleteWalletVerificationParameters, type DeleteWalletVerificationResponse, GetChainIdOptions, GetChainIdOptionsSchema, type GetWalletVerificationsParameters, type GetWalletVerificationsResponse, OTPAlgorithm, type VerificationResult, type VerifyWalletVerificationChallengeParameters, type VerifyWalletVerificationChallengeResponse, type WalletInfo, type WalletOTPVerificationInfo, type WalletPincodeVerificationInfo, type WalletSecretCodesVerificationInfo, type WalletVerification, type WalletVerificationChallenge, type WalletVerificationChallengeData, type WalletVerificationInfo, WalletVerificationOptions, WalletVerificationType, getChainId, getPublicClient, getWalletClient };
|
|
7756
11446
|
//# sourceMappingURL=viem.d.ts.map
|