@deserialize/multi-vm-wallet 1.2.21 → 1.2.22

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.
@@ -1,4 +1,4 @@
1
- import { type PublicClient, type Address, type Hash, type TransactionReceipt } from 'viem';
1
+ import { type PublicClient, type Address } from 'viem';
2
2
  import { TransactionType } from '../constant';
3
3
  export interface EVMTransactionHistoryItem {
4
4
  hash: string;
@@ -53,3635 +53,3 @@ export declare function getEVMTransactionHistory(client: PublicClient, walletAdd
53
53
  * This is the recommended approach for production use
54
54
  */
55
55
  export declare function getEVMTransactionHistoryWithAPI(client: PublicClient, walletAddress: Address, apiEndpoint: string, apiKey: string, options?: TransactionHistoryOptions): Promise<EVMTransactionHistoryItem[]>;
56
- /**
57
- * Helper function to create a client
58
- */
59
- export declare function createEVMClient(rpcUrl: string): {
60
- account: undefined;
61
- batch?: {
62
- multicall?: boolean | import("viem").Prettify<import("viem").MulticallBatchOptions> | undefined;
63
- } | undefined;
64
- cacheTime: number;
65
- ccipRead?: false | {
66
- request?: (parameters: import("viem").CcipRequestParameters) => Promise<import("viem/_types/utils/ccip").CcipRequestReturnType>;
67
- } | undefined;
68
- chain: undefined;
69
- experimental_blockTag?: import("viem").BlockTag | undefined;
70
- key: string;
71
- name: string;
72
- pollingInterval: number;
73
- request: import("viem").EIP1193RequestFn<import("viem").PublicRpcSchema>;
74
- transport: import("viem").TransportConfig<"http", import("viem").EIP1193RequestFn> & {
75
- fetchOptions?: import("viem").HttpTransportConfig["fetchOptions"] | undefined;
76
- url?: string | undefined;
77
- };
78
- type: string;
79
- uid: string;
80
- call: (parameters: import("viem").CallParameters<undefined>) => Promise<import("viem").CallReturnType>;
81
- createAccessList: (parameters: import("viem").CreateAccessListParameters<undefined>) => Promise<{
82
- accessList: import("viem").AccessList;
83
- gasUsed: bigint;
84
- }>;
85
- createBlockFilter: () => Promise<import("viem").CreateBlockFilterReturnType>;
86
- createContractEventFilter: <const abi extends import("viem").Abi | readonly unknown[], eventName extends import("viem").ContractEventName<abi> | undefined, args extends import("viem").MaybeExtractEventArgsFromAbi<abi, eventName> | undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").CreateContractEventFilterParameters<abi, eventName, args, strict, fromBlock, toBlock>) => Promise<import("viem").CreateContractEventFilterReturnType<abi, eventName, args, strict, fromBlock, toBlock>>;
87
- createEventFilter: <const abiEvent extends import("viem").AbiEvent | undefined = undefined, const abiEvents extends readonly import("viem").AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import("viem").AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, _EventName extends string | undefined = import("viem").MaybeAbiEventName<abiEvent>, _Args extends import("viem").MaybeExtractEventArgsFromAbi<abiEvents, _EventName> | undefined = undefined>(args?: import("viem").CreateEventFilterParameters<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args> | undefined) => Promise<import("viem").CreateEventFilterReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args>>;
88
- createPendingTransactionFilter: () => Promise<import("viem").CreatePendingTransactionFilterReturnType>;
89
- estimateContractGas: <chain extends import("viem").Chain | undefined, const abi extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, args extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>>(args: import("viem").EstimateContractGasParameters<abi, functionName, args, chain>) => Promise<import("viem").EstimateContractGasReturnType>;
90
- estimateGas: (args: import("viem").EstimateGasParameters<undefined>) => Promise<import("viem").EstimateGasReturnType>;
91
- getBalance: (args: import("viem").GetBalanceParameters) => Promise<import("viem").GetBalanceReturnType>;
92
- getBlobBaseFee: () => Promise<import("viem").GetBlobBaseFeeReturnType>;
93
- getBlock: <includeTransactions extends boolean = false, blockTag extends import("viem").BlockTag = "latest">(args?: import("viem").GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
94
- number: blockTag extends "pending" ? null : bigint;
95
- gasLimit: bigint;
96
- nonce: blockTag extends "pending" ? null : `0x${string}`;
97
- gasUsed: bigint;
98
- hash: blockTag extends "pending" ? null : `0x${string}`;
99
- logsBloom: blockTag extends "pending" ? null : `0x${string}`;
100
- baseFeePerGas: bigint | null;
101
- blobGasUsed: bigint;
102
- difficulty: bigint;
103
- excessBlobGas: bigint;
104
- extraData: import("viem").Hex;
105
- miner: Address;
106
- mixHash: Hash;
107
- parentBeaconBlockRoot?: `0x${string}` | undefined;
108
- parentHash: Hash;
109
- receiptsRoot: import("viem").Hex;
110
- sealFields: import("viem").Hex[];
111
- sha3Uncles: Hash;
112
- size: bigint;
113
- stateRoot: Hash;
114
- timestamp: bigint;
115
- totalDifficulty: bigint | null;
116
- transactionsRoot: Hash;
117
- uncles: Hash[];
118
- withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
119
- withdrawalsRoot?: `0x${string}` | undefined;
120
- transactions: includeTransactions extends true ? ({
121
- gas: bigint;
122
- to: Address | null;
123
- value: bigint;
124
- gasPrice: bigint;
125
- maxFeePerGas?: undefined | undefined;
126
- maxPriorityFeePerGas?: undefined | undefined;
127
- nonce: number;
128
- type: "legacy";
129
- from: Address;
130
- blobVersionedHashes?: undefined | undefined;
131
- maxFeePerBlobGas?: undefined | undefined;
132
- accessList?: undefined | undefined;
133
- authorizationList?: undefined | undefined;
134
- hash: Hash;
135
- r: import("viem").Hex;
136
- s: import("viem").Hex;
137
- v: bigint;
138
- yParity?: undefined | undefined;
139
- input: import("viem").Hex;
140
- typeHex: import("viem").Hex | null;
141
- chainId?: number | undefined;
142
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
143
- 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;
144
- 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;
145
- } | {
146
- gas: bigint;
147
- to: Address | null;
148
- value: bigint;
149
- gasPrice: bigint;
150
- maxFeePerGas?: undefined | undefined;
151
- maxPriorityFeePerGas?: undefined | undefined;
152
- nonce: number;
153
- type: "eip2930";
154
- from: Address;
155
- blobVersionedHashes?: undefined | undefined;
156
- maxFeePerBlobGas?: undefined | undefined;
157
- accessList: import("viem").AccessList;
158
- authorizationList?: undefined | undefined;
159
- hash: Hash;
160
- r: import("viem").Hex;
161
- s: import("viem").Hex;
162
- v: bigint;
163
- yParity: number;
164
- input: import("viem").Hex;
165
- typeHex: import("viem").Hex | null;
166
- chainId: number;
167
- 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;
168
- 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;
169
- 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;
170
- } | {
171
- gas: bigint;
172
- to: Address | null;
173
- value: bigint;
174
- gasPrice?: undefined | undefined;
175
- maxFeePerGas: bigint;
176
- maxPriorityFeePerGas: bigint;
177
- nonce: number;
178
- type: "eip1559";
179
- from: Address;
180
- blobVersionedHashes?: undefined | undefined;
181
- maxFeePerBlobGas?: undefined | undefined;
182
- accessList: import("viem").AccessList;
183
- authorizationList?: undefined | undefined;
184
- hash: Hash;
185
- r: import("viem").Hex;
186
- s: import("viem").Hex;
187
- v: bigint;
188
- yParity: number;
189
- input: import("viem").Hex;
190
- typeHex: import("viem").Hex | null;
191
- chainId: number;
192
- 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;
193
- 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;
194
- 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;
195
- } | {
196
- gas: bigint;
197
- to: Address | null;
198
- value: bigint;
199
- gasPrice?: undefined | undefined;
200
- maxFeePerGas: bigint;
201
- maxPriorityFeePerGas: bigint;
202
- nonce: number;
203
- type: "eip4844";
204
- from: Address;
205
- blobVersionedHashes: readonly import("viem").Hex[];
206
- maxFeePerBlobGas: bigint;
207
- accessList: import("viem").AccessList;
208
- authorizationList?: undefined | undefined;
209
- hash: Hash;
210
- r: import("viem").Hex;
211
- s: import("viem").Hex;
212
- v: bigint;
213
- yParity: number;
214
- input: import("viem").Hex;
215
- typeHex: import("viem").Hex | null;
216
- chainId: number;
217
- 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;
218
- 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;
219
- 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;
220
- } | {
221
- gas: bigint;
222
- to: Address | null;
223
- value: bigint;
224
- gasPrice?: undefined | undefined;
225
- maxFeePerGas: bigint;
226
- maxPriorityFeePerGas: bigint;
227
- nonce: number;
228
- type: "eip7702";
229
- from: Address;
230
- blobVersionedHashes?: undefined | undefined;
231
- maxFeePerBlobGas?: undefined | undefined;
232
- accessList: import("viem").AccessList;
233
- authorizationList: import("viem").SignedAuthorizationList;
234
- hash: Hash;
235
- r: import("viem").Hex;
236
- s: import("viem").Hex;
237
- v: bigint;
238
- yParity: number;
239
- input: import("viem").Hex;
240
- typeHex: import("viem").Hex | null;
241
- chainId: number;
242
- 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;
243
- 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;
244
- 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;
245
- })[] : `0x${string}`[];
246
- }>;
247
- getBlockNumber: (args?: import("viem").GetBlockNumberParameters | undefined) => Promise<import("viem").GetBlockNumberReturnType>;
248
- getBlockTransactionCount: (args?: import("viem").GetBlockTransactionCountParameters | undefined) => Promise<import("viem").GetBlockTransactionCountReturnType>;
249
- getBytecode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
250
- getChainId: () => Promise<import("viem").GetChainIdReturnType>;
251
- getCode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
252
- getContractEvents: <const abi extends import("viem").Abi | readonly unknown[], eventName extends import("viem").ContractEventName<abi> | undefined = undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").GetContractEventsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<import("viem").GetContractEventsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
253
- getEip712Domain: (args: import("viem").GetEip712DomainParameters) => Promise<import("viem").GetEip712DomainReturnType>;
254
- getEnsAddress: (args: import("viem").GetEnsAddressParameters) => Promise<import("viem").GetEnsAddressReturnType>;
255
- getEnsAvatar: (args: import("viem").GetEnsAvatarParameters) => Promise<import("viem").GetEnsAvatarReturnType>;
256
- getEnsName: (args: import("viem").GetEnsNameParameters) => Promise<import("viem").GetEnsNameReturnType>;
257
- getEnsResolver: (args: import("viem").GetEnsResolverParameters) => Promise<import("viem").GetEnsResolverReturnType>;
258
- getEnsText: (args: import("viem").GetEnsTextParameters) => Promise<import("viem").GetEnsTextReturnType>;
259
- getFeeHistory: (args: import("viem").GetFeeHistoryParameters) => Promise<import("viem").GetFeeHistoryReturnType>;
260
- estimateFeesPerGas: <chainOverride extends import("viem").Chain | undefined = undefined, type extends import("viem").FeeValuesType = "eip1559">(args?: import("viem").EstimateFeesPerGasParameters<undefined, chainOverride, type> | undefined) => Promise<import("viem").EstimateFeesPerGasReturnType<type>>;
261
- getFilterChanges: <filterType extends import("viem").FilterType, const abi extends import("viem").Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").GetFilterChangesParameters<filterType, abi, eventName, strict, fromBlock, toBlock>) => Promise<import("viem").GetFilterChangesReturnType<filterType, abi, eventName, strict, fromBlock, toBlock>>;
262
- getFilterLogs: <const abi extends import("viem").Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").GetFilterLogsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<import("viem").GetFilterLogsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
263
- getGasPrice: () => Promise<import("viem").GetGasPriceReturnType>;
264
- getLogs: <const abiEvent extends import("viem").AbiEvent | undefined = undefined, const abiEvents extends readonly import("viem").AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import("viem").AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args?: import("viem").GetLogsParameters<abiEvent, abiEvents, strict, fromBlock, toBlock> | undefined) => Promise<import("viem").GetLogsReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock>>;
265
- getProof: (args: import("viem").GetProofParameters) => Promise<import("viem").GetProofReturnType>;
266
- estimateMaxPriorityFeePerGas: <chainOverride extends import("viem").Chain | undefined = undefined>(args?: {
267
- chain: chainOverride | null;
268
- } | undefined) => Promise<import("viem").EstimateMaxPriorityFeePerGasReturnType>;
269
- getStorageAt: (args: import("viem").GetStorageAtParameters) => Promise<import("viem").GetStorageAtReturnType>;
270
- getTransaction: <blockTag extends import("viem").BlockTag = "latest">(args: import("viem").GetTransactionParameters<blockTag>) => Promise<{
271
- gas: bigint;
272
- to: Address | null;
273
- value: bigint;
274
- gasPrice: bigint;
275
- maxFeePerGas?: undefined | undefined;
276
- maxPriorityFeePerGas?: undefined | undefined;
277
- nonce: number;
278
- type: "legacy";
279
- from: Address;
280
- blobVersionedHashes?: undefined | undefined;
281
- maxFeePerBlobGas?: undefined | undefined;
282
- accessList?: undefined | undefined;
283
- authorizationList?: undefined | undefined;
284
- hash: Hash;
285
- r: import("viem").Hex;
286
- s: import("viem").Hex;
287
- v: bigint;
288
- yParity?: undefined | undefined;
289
- input: import("viem").Hex;
290
- typeHex: import("viem").Hex | null;
291
- chainId?: number | undefined;
292
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
293
- 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;
294
- 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;
295
- } | {
296
- gas: bigint;
297
- to: Address | null;
298
- value: bigint;
299
- gasPrice: bigint;
300
- maxFeePerGas?: undefined | undefined;
301
- maxPriorityFeePerGas?: undefined | undefined;
302
- nonce: number;
303
- type: "eip2930";
304
- from: Address;
305
- blobVersionedHashes?: undefined | undefined;
306
- maxFeePerBlobGas?: undefined | undefined;
307
- accessList: import("viem").AccessList;
308
- authorizationList?: undefined | undefined;
309
- hash: Hash;
310
- r: import("viem").Hex;
311
- s: import("viem").Hex;
312
- v: bigint;
313
- yParity: number;
314
- input: import("viem").Hex;
315
- typeHex: import("viem").Hex | null;
316
- chainId: number;
317
- 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;
318
- 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;
319
- 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;
320
- } | {
321
- gas: bigint;
322
- to: Address | null;
323
- value: bigint;
324
- gasPrice?: undefined | undefined;
325
- maxFeePerGas: bigint;
326
- maxPriorityFeePerGas: bigint;
327
- nonce: number;
328
- type: "eip1559";
329
- from: Address;
330
- blobVersionedHashes?: undefined | undefined;
331
- maxFeePerBlobGas?: undefined | undefined;
332
- accessList: import("viem").AccessList;
333
- authorizationList?: undefined | undefined;
334
- hash: Hash;
335
- r: import("viem").Hex;
336
- s: import("viem").Hex;
337
- v: bigint;
338
- yParity: number;
339
- input: import("viem").Hex;
340
- typeHex: import("viem").Hex | null;
341
- chainId: number;
342
- 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;
343
- 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;
344
- 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;
345
- } | {
346
- gas: bigint;
347
- to: Address | null;
348
- value: bigint;
349
- gasPrice?: undefined | undefined;
350
- maxFeePerGas: bigint;
351
- maxPriorityFeePerGas: bigint;
352
- nonce: number;
353
- type: "eip4844";
354
- from: Address;
355
- blobVersionedHashes: readonly import("viem").Hex[];
356
- maxFeePerBlobGas: bigint;
357
- accessList: import("viem").AccessList;
358
- authorizationList?: undefined | undefined;
359
- hash: Hash;
360
- r: import("viem").Hex;
361
- s: import("viem").Hex;
362
- v: bigint;
363
- yParity: number;
364
- input: import("viem").Hex;
365
- typeHex: import("viem").Hex | null;
366
- chainId: number;
367
- 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;
368
- 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;
369
- 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;
370
- } | {
371
- gas: bigint;
372
- to: Address | null;
373
- value: bigint;
374
- gasPrice?: undefined | undefined;
375
- maxFeePerGas: bigint;
376
- maxPriorityFeePerGas: bigint;
377
- nonce: number;
378
- type: "eip7702";
379
- from: Address;
380
- blobVersionedHashes?: undefined | undefined;
381
- maxFeePerBlobGas?: undefined | undefined;
382
- accessList: import("viem").AccessList;
383
- authorizationList: import("viem").SignedAuthorizationList;
384
- hash: Hash;
385
- r: import("viem").Hex;
386
- s: import("viem").Hex;
387
- v: bigint;
388
- yParity: number;
389
- input: import("viem").Hex;
390
- typeHex: import("viem").Hex | null;
391
- chainId: number;
392
- 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;
393
- 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;
394
- 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;
395
- }>;
396
- getTransactionConfirmations: (args: import("viem").GetTransactionConfirmationsParameters<undefined>) => Promise<import("viem").GetTransactionConfirmationsReturnType>;
397
- getTransactionCount: (args: import("viem").GetTransactionCountParameters) => Promise<import("viem").GetTransactionCountReturnType>;
398
- getTransactionReceipt: (args: import("viem").GetTransactionReceiptParameters) => Promise<TransactionReceipt>;
399
- multicall: <const contracts extends readonly unknown[], allowFailure extends boolean = true>(args: import("viem").MulticallParameters<contracts, allowFailure>) => Promise<import("viem").MulticallReturnType<contracts, allowFailure>>;
400
- prepareTransactionRequest: <const request extends import("viem").PrepareTransactionRequestRequest<undefined, chainOverride>, chainOverride extends import("viem").Chain | undefined = undefined, accountOverride extends import("viem").Account | Address | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<undefined, import("viem").Account | undefined, chainOverride, accountOverride, request>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<undefined, chainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<undefined, chainOverride> ? T_1 extends import("viem").Chain ? {
401
- chain: T_1;
402
- } : {
403
- chain?: undefined;
404
- } : never : never) & (import("viem").DeriveAccount<import("viem").Account | undefined, accountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<import("viem").Account | undefined, accountOverride> ? T_2 extends import("viem").Account ? {
405
- account: T_2;
406
- from: Address;
407
- } : {
408
- account?: undefined;
409
- from?: undefined;
410
- } : never : never), import("viem").IsNever<((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
411
- accessList?: undefined | undefined;
412
- authorizationList?: undefined | undefined;
413
- blobs?: undefined | undefined;
414
- blobVersionedHashes?: undefined | undefined;
415
- gasPrice?: bigint | undefined;
416
- sidecars?: undefined | undefined;
417
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
418
- accessList?: import("viem").AccessList | undefined;
419
- authorizationList?: undefined | undefined;
420
- blobs?: undefined | undefined;
421
- blobVersionedHashes?: undefined | undefined;
422
- gasPrice?: undefined | undefined;
423
- maxFeePerBlobGas?: undefined | undefined;
424
- maxFeePerGas?: bigint | undefined;
425
- maxPriorityFeePerGas?: bigint | undefined;
426
- sidecars?: undefined | undefined;
427
- } & (import("viem").OneOf<{
428
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
429
- } | {
430
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
431
- }, import("viem").FeeValuesEIP1559> & {
432
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
433
- }) ? "eip1559" : never) | (request extends {
434
- accessList?: import("viem").AccessList | undefined;
435
- authorizationList?: undefined | undefined;
436
- blobs?: undefined | undefined;
437
- blobVersionedHashes?: undefined | undefined;
438
- gasPrice?: bigint | undefined;
439
- sidecars?: undefined | undefined;
440
- maxFeePerBlobGas?: undefined | undefined;
441
- maxFeePerGas?: undefined | undefined;
442
- maxPriorityFeePerGas?: undefined | undefined;
443
- } & {
444
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
445
- } ? "eip2930" : never) | (request extends ({
446
- accessList?: import("viem").AccessList | undefined;
447
- authorizationList?: undefined | undefined;
448
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
449
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
450
- maxFeePerBlobGas?: bigint | undefined;
451
- maxFeePerGas?: bigint | undefined;
452
- maxPriorityFeePerGas?: bigint | undefined;
453
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
454
- } | {
455
- accessList?: import("viem").AccessList | undefined;
456
- authorizationList?: undefined | undefined;
457
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
458
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
459
- maxFeePerBlobGas?: bigint | undefined;
460
- maxFeePerGas?: bigint | undefined;
461
- maxPriorityFeePerGas?: bigint | undefined;
462
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
463
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
464
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
465
- } | {
466
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
467
- } | {
468
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
469
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
470
- accessList?: import("viem").AccessList | undefined;
471
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
472
- blobs?: undefined | undefined;
473
- blobVersionedHashes?: undefined | undefined;
474
- gasPrice?: undefined | undefined;
475
- maxFeePerBlobGas?: undefined | undefined;
476
- maxFeePerGas?: bigint | undefined;
477
- maxPriorityFeePerGas?: bigint | undefined;
478
- sidecars?: undefined | undefined;
479
- } | {
480
- accessList?: import("viem").AccessList | undefined;
481
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
482
- blobs?: undefined | undefined;
483
- blobVersionedHashes?: undefined | undefined;
484
- gasPrice?: undefined | undefined;
485
- maxFeePerBlobGas?: undefined | undefined;
486
- maxFeePerGas?: bigint | undefined;
487
- maxPriorityFeePerGas?: bigint | undefined;
488
- sidecars?: undefined | undefined;
489
- }) & {
490
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
491
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
492
- accessList?: undefined | undefined;
493
- authorizationList?: undefined | undefined;
494
- blobs?: undefined | undefined;
495
- blobVersionedHashes?: undefined | undefined;
496
- gasPrice?: bigint | undefined;
497
- sidecars?: undefined | undefined;
498
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
499
- accessList?: import("viem").AccessList | undefined;
500
- authorizationList?: undefined | undefined;
501
- blobs?: undefined | undefined;
502
- blobVersionedHashes?: undefined | undefined;
503
- gasPrice?: undefined | undefined;
504
- maxFeePerBlobGas?: undefined | undefined;
505
- maxFeePerGas?: bigint | undefined;
506
- maxPriorityFeePerGas?: bigint | undefined;
507
- sidecars?: undefined | undefined;
508
- } & (import("viem").OneOf<{
509
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
510
- } | {
511
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
512
- }, import("viem").FeeValuesEIP1559> & {
513
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
514
- }) ? "eip1559" : never) | (request extends {
515
- accessList?: import("viem").AccessList | undefined;
516
- authorizationList?: undefined | undefined;
517
- blobs?: undefined | undefined;
518
- blobVersionedHashes?: undefined | undefined;
519
- gasPrice?: bigint | undefined;
520
- sidecars?: undefined | undefined;
521
- maxFeePerBlobGas?: undefined | undefined;
522
- maxFeePerGas?: undefined | undefined;
523
- maxPriorityFeePerGas?: undefined | undefined;
524
- } & {
525
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
526
- } ? "eip2930" : never) | (request extends ({
527
- accessList?: import("viem").AccessList | undefined;
528
- authorizationList?: undefined | undefined;
529
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
530
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
531
- maxFeePerBlobGas?: bigint | undefined;
532
- maxFeePerGas?: bigint | undefined;
533
- maxPriorityFeePerGas?: bigint | undefined;
534
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
535
- } | {
536
- accessList?: import("viem").AccessList | undefined;
537
- authorizationList?: undefined | undefined;
538
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
539
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
540
- maxFeePerBlobGas?: bigint | undefined;
541
- maxFeePerGas?: bigint | undefined;
542
- maxPriorityFeePerGas?: bigint | undefined;
543
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
544
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
545
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
546
- } | {
547
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
548
- } | {
549
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
550
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
551
- accessList?: import("viem").AccessList | undefined;
552
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
553
- blobs?: undefined | undefined;
554
- blobVersionedHashes?: undefined | undefined;
555
- gasPrice?: undefined | undefined;
556
- maxFeePerBlobGas?: undefined | undefined;
557
- maxFeePerGas?: bigint | undefined;
558
- maxPriorityFeePerGas?: bigint | undefined;
559
- sidecars?: undefined | undefined;
560
- } | {
561
- accessList?: import("viem").AccessList | undefined;
562
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
563
- blobs?: undefined | undefined;
564
- blobVersionedHashes?: undefined | undefined;
565
- gasPrice?: undefined | undefined;
566
- maxFeePerBlobGas?: undefined | undefined;
567
- maxFeePerGas?: bigint | undefined;
568
- maxPriorityFeePerGas?: bigint | undefined;
569
- sidecars?: undefined | undefined;
570
- }) & {
571
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
572
- } ? "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"] : import("viem").GetTransactionType<request, (request extends {
573
- accessList?: undefined | undefined;
574
- authorizationList?: undefined | undefined;
575
- blobs?: undefined | undefined;
576
- blobVersionedHashes?: undefined | undefined;
577
- gasPrice?: bigint | undefined;
578
- sidecars?: undefined | undefined;
579
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
580
- accessList?: import("viem").AccessList | undefined;
581
- authorizationList?: undefined | undefined;
582
- blobs?: undefined | undefined;
583
- blobVersionedHashes?: undefined | undefined;
584
- gasPrice?: undefined | undefined;
585
- maxFeePerBlobGas?: undefined | undefined;
586
- maxFeePerGas?: bigint | undefined;
587
- maxPriorityFeePerGas?: bigint | undefined;
588
- sidecars?: undefined | undefined;
589
- } & (import("viem").OneOf<{
590
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
591
- } | {
592
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
593
- }, import("viem").FeeValuesEIP1559> & {
594
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
595
- }) ? "eip1559" : never) | (request extends {
596
- accessList?: import("viem").AccessList | undefined;
597
- authorizationList?: undefined | undefined;
598
- blobs?: undefined | undefined;
599
- blobVersionedHashes?: undefined | undefined;
600
- gasPrice?: bigint | undefined;
601
- sidecars?: undefined | undefined;
602
- maxFeePerBlobGas?: undefined | undefined;
603
- maxFeePerGas?: undefined | undefined;
604
- maxPriorityFeePerGas?: undefined | undefined;
605
- } & {
606
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
607
- } ? "eip2930" : never) | (request extends ({
608
- accessList?: import("viem").AccessList | undefined;
609
- authorizationList?: undefined | undefined;
610
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
611
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
612
- maxFeePerBlobGas?: bigint | undefined;
613
- maxFeePerGas?: bigint | undefined;
614
- maxPriorityFeePerGas?: bigint | undefined;
615
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
616
- } | {
617
- accessList?: import("viem").AccessList | undefined;
618
- authorizationList?: undefined | undefined;
619
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
620
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
621
- maxFeePerBlobGas?: bigint | undefined;
622
- maxFeePerGas?: bigint | undefined;
623
- maxPriorityFeePerGas?: bigint | undefined;
624
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
625
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
626
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
627
- } | {
628
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
629
- } | {
630
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
631
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
632
- accessList?: import("viem").AccessList | undefined;
633
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
634
- blobs?: undefined | undefined;
635
- blobVersionedHashes?: undefined | undefined;
636
- gasPrice?: undefined | undefined;
637
- maxFeePerBlobGas?: undefined | undefined;
638
- maxFeePerGas?: bigint | undefined;
639
- maxPriorityFeePerGas?: bigint | undefined;
640
- sidecars?: undefined | undefined;
641
- } | {
642
- accessList?: import("viem").AccessList | undefined;
643
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
644
- blobs?: undefined | undefined;
645
- blobVersionedHashes?: undefined | undefined;
646
- gasPrice?: undefined | undefined;
647
- maxFeePerBlobGas?: undefined | undefined;
648
- maxFeePerGas?: bigint | undefined;
649
- maxPriorityFeePerGas?: bigint | undefined;
650
- sidecars?: undefined | undefined;
651
- }) & {
652
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
653
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
654
- accessList?: undefined | undefined;
655
- authorizationList?: undefined | undefined;
656
- blobs?: undefined | undefined;
657
- blobVersionedHashes?: undefined | undefined;
658
- gasPrice?: bigint | undefined;
659
- sidecars?: undefined | undefined;
660
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
661
- accessList?: import("viem").AccessList | undefined;
662
- authorizationList?: undefined | undefined;
663
- blobs?: undefined | undefined;
664
- blobVersionedHashes?: undefined | undefined;
665
- gasPrice?: undefined | undefined;
666
- maxFeePerBlobGas?: undefined | undefined;
667
- maxFeePerGas?: bigint | undefined;
668
- maxPriorityFeePerGas?: bigint | undefined;
669
- sidecars?: undefined | undefined;
670
- } & (import("viem").OneOf<{
671
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
672
- } | {
673
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
674
- }, import("viem").FeeValuesEIP1559> & {
675
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
676
- }) ? "eip1559" : never) | (request extends {
677
- accessList?: import("viem").AccessList | undefined;
678
- authorizationList?: undefined | undefined;
679
- blobs?: undefined | undefined;
680
- blobVersionedHashes?: undefined | undefined;
681
- gasPrice?: bigint | undefined;
682
- sidecars?: undefined | undefined;
683
- maxFeePerBlobGas?: undefined | undefined;
684
- maxFeePerGas?: undefined | undefined;
685
- maxPriorityFeePerGas?: undefined | undefined;
686
- } & {
687
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
688
- } ? "eip2930" : never) | (request extends ({
689
- accessList?: import("viem").AccessList | undefined;
690
- authorizationList?: undefined | undefined;
691
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
692
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
693
- maxFeePerBlobGas?: bigint | undefined;
694
- maxFeePerGas?: bigint | undefined;
695
- maxPriorityFeePerGas?: bigint | undefined;
696
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
697
- } | {
698
- accessList?: import("viem").AccessList | undefined;
699
- authorizationList?: undefined | undefined;
700
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
701
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
702
- maxFeePerBlobGas?: bigint | undefined;
703
- maxFeePerGas?: bigint | undefined;
704
- maxPriorityFeePerGas?: bigint | undefined;
705
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
706
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
707
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
708
- } | {
709
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
710
- } | {
711
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
712
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
713
- accessList?: import("viem").AccessList | undefined;
714
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
715
- blobs?: undefined | undefined;
716
- blobVersionedHashes?: undefined | undefined;
717
- gasPrice?: undefined | undefined;
718
- maxFeePerBlobGas?: undefined | undefined;
719
- maxFeePerGas?: bigint | undefined;
720
- maxPriorityFeePerGas?: bigint | undefined;
721
- sidecars?: undefined | undefined;
722
- } | {
723
- accessList?: import("viem").AccessList | undefined;
724
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
725
- blobs?: undefined | undefined;
726
- blobVersionedHashes?: undefined | undefined;
727
- gasPrice?: undefined | undefined;
728
- maxFeePerBlobGas?: undefined | undefined;
729
- maxFeePerGas?: bigint | undefined;
730
- maxPriorityFeePerGas?: bigint | undefined;
731
- sidecars?: undefined | undefined;
732
- }) & {
733
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
734
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_3 extends "legacy" ? import("viem").TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
735
- accessList?: undefined | undefined;
736
- authorizationList?: undefined | undefined;
737
- blobs?: undefined | undefined;
738
- blobVersionedHashes?: undefined | undefined;
739
- gasPrice?: bigint | undefined;
740
- sidecars?: undefined | undefined;
741
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
742
- accessList?: import("viem").AccessList | undefined;
743
- authorizationList?: undefined | undefined;
744
- blobs?: undefined | undefined;
745
- blobVersionedHashes?: undefined | undefined;
746
- gasPrice?: undefined | undefined;
747
- maxFeePerBlobGas?: undefined | undefined;
748
- maxFeePerGas?: bigint | undefined;
749
- maxPriorityFeePerGas?: bigint | undefined;
750
- sidecars?: undefined | undefined;
751
- } & (import("viem").OneOf<{
752
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
753
- } | {
754
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
755
- }, import("viem").FeeValuesEIP1559> & {
756
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
757
- }) ? "eip1559" : never) | (request extends {
758
- accessList?: import("viem").AccessList | undefined;
759
- authorizationList?: undefined | undefined;
760
- blobs?: undefined | undefined;
761
- blobVersionedHashes?: undefined | undefined;
762
- gasPrice?: bigint | undefined;
763
- sidecars?: undefined | undefined;
764
- maxFeePerBlobGas?: undefined | undefined;
765
- maxFeePerGas?: undefined | undefined;
766
- maxPriorityFeePerGas?: undefined | undefined;
767
- } & {
768
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
769
- } ? "eip2930" : never) | (request extends ({
770
- accessList?: import("viem").AccessList | undefined;
771
- authorizationList?: undefined | undefined;
772
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
773
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
774
- maxFeePerBlobGas?: bigint | undefined;
775
- maxFeePerGas?: bigint | undefined;
776
- maxPriorityFeePerGas?: bigint | undefined;
777
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
778
- } | {
779
- accessList?: import("viem").AccessList | undefined;
780
- authorizationList?: undefined | undefined;
781
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
782
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
783
- maxFeePerBlobGas?: bigint | undefined;
784
- maxFeePerGas?: bigint | undefined;
785
- maxPriorityFeePerGas?: bigint | undefined;
786
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
787
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
788
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
789
- } | {
790
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
791
- } | {
792
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
793
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
794
- accessList?: import("viem").AccessList | undefined;
795
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
796
- blobs?: undefined | undefined;
797
- blobVersionedHashes?: undefined | undefined;
798
- gasPrice?: undefined | undefined;
799
- maxFeePerBlobGas?: undefined | undefined;
800
- maxFeePerGas?: bigint | undefined;
801
- maxPriorityFeePerGas?: bigint | undefined;
802
- sidecars?: undefined | undefined;
803
- } | {
804
- accessList?: import("viem").AccessList | undefined;
805
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
806
- blobs?: undefined | undefined;
807
- blobVersionedHashes?: undefined | undefined;
808
- gasPrice?: undefined | undefined;
809
- maxFeePerBlobGas?: undefined | undefined;
810
- maxFeePerGas?: bigint | undefined;
811
- maxPriorityFeePerGas?: bigint | undefined;
812
- sidecars?: undefined | undefined;
813
- }) & {
814
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
815
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
816
- accessList?: undefined | undefined;
817
- authorizationList?: undefined | undefined;
818
- blobs?: undefined | undefined;
819
- blobVersionedHashes?: undefined | undefined;
820
- gasPrice?: bigint | undefined;
821
- sidecars?: undefined | undefined;
822
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
823
- accessList?: import("viem").AccessList | undefined;
824
- authorizationList?: undefined | undefined;
825
- blobs?: undefined | undefined;
826
- blobVersionedHashes?: undefined | undefined;
827
- gasPrice?: undefined | undefined;
828
- maxFeePerBlobGas?: undefined | undefined;
829
- maxFeePerGas?: bigint | undefined;
830
- maxPriorityFeePerGas?: bigint | undefined;
831
- sidecars?: undefined | undefined;
832
- } & (import("viem").OneOf<{
833
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
834
- } | {
835
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
836
- }, import("viem").FeeValuesEIP1559> & {
837
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
838
- }) ? "eip1559" : never) | (request extends {
839
- accessList?: import("viem").AccessList | undefined;
840
- authorizationList?: undefined | undefined;
841
- blobs?: undefined | undefined;
842
- blobVersionedHashes?: undefined | undefined;
843
- gasPrice?: bigint | undefined;
844
- sidecars?: undefined | undefined;
845
- maxFeePerBlobGas?: undefined | undefined;
846
- maxFeePerGas?: undefined | undefined;
847
- maxPriorityFeePerGas?: undefined | undefined;
848
- } & {
849
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
850
- } ? "eip2930" : never) | (request extends ({
851
- accessList?: import("viem").AccessList | undefined;
852
- authorizationList?: undefined | undefined;
853
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
854
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
855
- maxFeePerBlobGas?: bigint | undefined;
856
- maxFeePerGas?: bigint | undefined;
857
- maxPriorityFeePerGas?: bigint | undefined;
858
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
859
- } | {
860
- accessList?: import("viem").AccessList | undefined;
861
- authorizationList?: undefined | undefined;
862
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
863
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
864
- maxFeePerBlobGas?: bigint | undefined;
865
- maxFeePerGas?: bigint | undefined;
866
- maxPriorityFeePerGas?: bigint | undefined;
867
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
868
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
869
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
870
- } | {
871
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
872
- } | {
873
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
874
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
875
- accessList?: import("viem").AccessList | undefined;
876
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
877
- blobs?: undefined | undefined;
878
- blobVersionedHashes?: undefined | undefined;
879
- gasPrice?: undefined | undefined;
880
- maxFeePerBlobGas?: undefined | undefined;
881
- maxFeePerGas?: bigint | undefined;
882
- maxPriorityFeePerGas?: bigint | undefined;
883
- sidecars?: undefined | undefined;
884
- } | {
885
- accessList?: import("viem").AccessList | undefined;
886
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
887
- blobs?: undefined | undefined;
888
- blobVersionedHashes?: undefined | undefined;
889
- gasPrice?: undefined | undefined;
890
- maxFeePerBlobGas?: undefined | undefined;
891
- maxFeePerGas?: bigint | undefined;
892
- maxPriorityFeePerGas?: bigint | undefined;
893
- sidecars?: undefined | undefined;
894
- }) & {
895
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
896
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_4 ? T_4 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
897
- accessList?: undefined | undefined;
898
- authorizationList?: undefined | undefined;
899
- blobs?: undefined | undefined;
900
- blobVersionedHashes?: undefined | undefined;
901
- gasPrice?: bigint | undefined;
902
- sidecars?: undefined | undefined;
903
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
904
- accessList?: import("viem").AccessList | undefined;
905
- authorizationList?: undefined | undefined;
906
- blobs?: undefined | undefined;
907
- blobVersionedHashes?: undefined | undefined;
908
- gasPrice?: undefined | undefined;
909
- maxFeePerBlobGas?: undefined | undefined;
910
- maxFeePerGas?: bigint | undefined;
911
- maxPriorityFeePerGas?: bigint | undefined;
912
- sidecars?: undefined | undefined;
913
- } & (import("viem").OneOf<{
914
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
915
- } | {
916
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
917
- }, import("viem").FeeValuesEIP1559> & {
918
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
919
- }) ? "eip1559" : never) | (request extends {
920
- accessList?: import("viem").AccessList | undefined;
921
- authorizationList?: undefined | undefined;
922
- blobs?: undefined | undefined;
923
- blobVersionedHashes?: undefined | undefined;
924
- gasPrice?: bigint | undefined;
925
- sidecars?: undefined | undefined;
926
- maxFeePerBlobGas?: undefined | undefined;
927
- maxFeePerGas?: undefined | undefined;
928
- maxPriorityFeePerGas?: undefined | undefined;
929
- } & {
930
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
931
- } ? "eip2930" : never) | (request extends ({
932
- accessList?: import("viem").AccessList | undefined;
933
- authorizationList?: undefined | undefined;
934
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
935
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
936
- maxFeePerBlobGas?: bigint | undefined;
937
- maxFeePerGas?: bigint | undefined;
938
- maxPriorityFeePerGas?: bigint | undefined;
939
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
940
- } | {
941
- accessList?: import("viem").AccessList | undefined;
942
- authorizationList?: undefined | undefined;
943
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
944
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
945
- maxFeePerBlobGas?: bigint | undefined;
946
- maxFeePerGas?: bigint | undefined;
947
- maxPriorityFeePerGas?: bigint | undefined;
948
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
949
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
950
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
951
- } | {
952
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
953
- } | {
954
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
955
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
956
- accessList?: import("viem").AccessList | undefined;
957
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
958
- blobs?: undefined | undefined;
959
- blobVersionedHashes?: undefined | undefined;
960
- gasPrice?: undefined | undefined;
961
- maxFeePerBlobGas?: undefined | undefined;
962
- maxFeePerGas?: bigint | undefined;
963
- maxPriorityFeePerGas?: bigint | undefined;
964
- sidecars?: undefined | undefined;
965
- } | {
966
- accessList?: import("viem").AccessList | undefined;
967
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
968
- blobs?: undefined | undefined;
969
- blobVersionedHashes?: undefined | undefined;
970
- gasPrice?: undefined | undefined;
971
- maxFeePerBlobGas?: undefined | undefined;
972
- maxFeePerGas?: bigint | undefined;
973
- maxPriorityFeePerGas?: bigint | undefined;
974
- sidecars?: undefined | undefined;
975
- }) & {
976
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
977
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
978
- accessList?: undefined | undefined;
979
- authorizationList?: undefined | undefined;
980
- blobs?: undefined | undefined;
981
- blobVersionedHashes?: undefined | undefined;
982
- gasPrice?: bigint | undefined;
983
- sidecars?: undefined | undefined;
984
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
985
- accessList?: import("viem").AccessList | undefined;
986
- authorizationList?: undefined | undefined;
987
- blobs?: undefined | undefined;
988
- blobVersionedHashes?: undefined | undefined;
989
- gasPrice?: undefined | undefined;
990
- maxFeePerBlobGas?: undefined | undefined;
991
- maxFeePerGas?: bigint | undefined;
992
- maxPriorityFeePerGas?: bigint | undefined;
993
- sidecars?: undefined | undefined;
994
- } & (import("viem").OneOf<{
995
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
996
- } | {
997
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
998
- }, import("viem").FeeValuesEIP1559> & {
999
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1000
- }) ? "eip1559" : never) | (request extends {
1001
- accessList?: import("viem").AccessList | undefined;
1002
- authorizationList?: undefined | undefined;
1003
- blobs?: undefined | undefined;
1004
- blobVersionedHashes?: undefined | undefined;
1005
- gasPrice?: bigint | undefined;
1006
- sidecars?: undefined | undefined;
1007
- maxFeePerBlobGas?: undefined | undefined;
1008
- maxFeePerGas?: undefined | undefined;
1009
- maxPriorityFeePerGas?: undefined | undefined;
1010
- } & {
1011
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1012
- } ? "eip2930" : never) | (request extends ({
1013
- accessList?: import("viem").AccessList | undefined;
1014
- authorizationList?: undefined | undefined;
1015
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1016
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1017
- maxFeePerBlobGas?: bigint | undefined;
1018
- maxFeePerGas?: bigint | undefined;
1019
- maxPriorityFeePerGas?: bigint | undefined;
1020
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1021
- } | {
1022
- accessList?: import("viem").AccessList | undefined;
1023
- authorizationList?: undefined | undefined;
1024
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1025
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1026
- maxFeePerBlobGas?: bigint | undefined;
1027
- maxFeePerGas?: bigint | undefined;
1028
- maxPriorityFeePerGas?: bigint | undefined;
1029
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1030
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1031
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1032
- } | {
1033
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1034
- } | {
1035
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1036
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1037
- accessList?: import("viem").AccessList | undefined;
1038
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1039
- blobs?: undefined | undefined;
1040
- blobVersionedHashes?: undefined | undefined;
1041
- gasPrice?: undefined | undefined;
1042
- maxFeePerBlobGas?: undefined | undefined;
1043
- maxFeePerGas?: bigint | undefined;
1044
- maxPriorityFeePerGas?: bigint | undefined;
1045
- sidecars?: undefined | undefined;
1046
- } | {
1047
- accessList?: import("viem").AccessList | undefined;
1048
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1049
- blobs?: undefined | undefined;
1050
- blobVersionedHashes?: undefined | undefined;
1051
- gasPrice?: undefined | undefined;
1052
- maxFeePerBlobGas?: undefined | undefined;
1053
- maxFeePerGas?: bigint | undefined;
1054
- maxPriorityFeePerGas?: bigint | undefined;
1055
- sidecars?: undefined | undefined;
1056
- }) & {
1057
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1058
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_4 extends "eip1559" ? import("viem").TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1059
- accessList?: undefined | undefined;
1060
- authorizationList?: undefined | undefined;
1061
- blobs?: undefined | undefined;
1062
- blobVersionedHashes?: undefined | undefined;
1063
- gasPrice?: bigint | undefined;
1064
- sidecars?: undefined | undefined;
1065
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1066
- accessList?: import("viem").AccessList | undefined;
1067
- authorizationList?: undefined | undefined;
1068
- blobs?: undefined | undefined;
1069
- blobVersionedHashes?: undefined | undefined;
1070
- gasPrice?: undefined | undefined;
1071
- maxFeePerBlobGas?: undefined | undefined;
1072
- maxFeePerGas?: bigint | undefined;
1073
- maxPriorityFeePerGas?: bigint | undefined;
1074
- sidecars?: undefined | undefined;
1075
- } & (import("viem").OneOf<{
1076
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1077
- } | {
1078
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1079
- }, import("viem").FeeValuesEIP1559> & {
1080
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1081
- }) ? "eip1559" : never) | (request extends {
1082
- accessList?: import("viem").AccessList | undefined;
1083
- authorizationList?: undefined | undefined;
1084
- blobs?: undefined | undefined;
1085
- blobVersionedHashes?: undefined | undefined;
1086
- gasPrice?: bigint | undefined;
1087
- sidecars?: undefined | undefined;
1088
- maxFeePerBlobGas?: undefined | undefined;
1089
- maxFeePerGas?: undefined | undefined;
1090
- maxPriorityFeePerGas?: undefined | undefined;
1091
- } & {
1092
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1093
- } ? "eip2930" : never) | (request extends ({
1094
- accessList?: import("viem").AccessList | undefined;
1095
- authorizationList?: undefined | undefined;
1096
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1097
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1098
- maxFeePerBlobGas?: bigint | undefined;
1099
- maxFeePerGas?: bigint | undefined;
1100
- maxPriorityFeePerGas?: bigint | undefined;
1101
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1102
- } | {
1103
- accessList?: import("viem").AccessList | undefined;
1104
- authorizationList?: undefined | undefined;
1105
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1106
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1107
- maxFeePerBlobGas?: bigint | undefined;
1108
- maxFeePerGas?: bigint | undefined;
1109
- maxPriorityFeePerGas?: bigint | undefined;
1110
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1111
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1112
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1113
- } | {
1114
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1115
- } | {
1116
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1117
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1118
- accessList?: import("viem").AccessList | undefined;
1119
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1120
- blobs?: undefined | undefined;
1121
- blobVersionedHashes?: undefined | undefined;
1122
- gasPrice?: undefined | undefined;
1123
- maxFeePerBlobGas?: undefined | undefined;
1124
- maxFeePerGas?: bigint | undefined;
1125
- maxPriorityFeePerGas?: bigint | undefined;
1126
- sidecars?: undefined | undefined;
1127
- } | {
1128
- accessList?: import("viem").AccessList | undefined;
1129
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1130
- blobs?: undefined | undefined;
1131
- blobVersionedHashes?: undefined | undefined;
1132
- gasPrice?: undefined | undefined;
1133
- maxFeePerBlobGas?: undefined | undefined;
1134
- maxFeePerGas?: bigint | undefined;
1135
- maxPriorityFeePerGas?: bigint | undefined;
1136
- sidecars?: undefined | undefined;
1137
- }) & {
1138
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1139
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1140
- accessList?: undefined | undefined;
1141
- authorizationList?: undefined | undefined;
1142
- blobs?: undefined | undefined;
1143
- blobVersionedHashes?: undefined | undefined;
1144
- gasPrice?: bigint | undefined;
1145
- sidecars?: undefined | undefined;
1146
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1147
- accessList?: import("viem").AccessList | undefined;
1148
- authorizationList?: undefined | undefined;
1149
- blobs?: undefined | undefined;
1150
- blobVersionedHashes?: undefined | undefined;
1151
- gasPrice?: undefined | undefined;
1152
- maxFeePerBlobGas?: undefined | undefined;
1153
- maxFeePerGas?: bigint | undefined;
1154
- maxPriorityFeePerGas?: bigint | undefined;
1155
- sidecars?: undefined | undefined;
1156
- } & (import("viem").OneOf<{
1157
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1158
- } | {
1159
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1160
- }, import("viem").FeeValuesEIP1559> & {
1161
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1162
- }) ? "eip1559" : never) | (request extends {
1163
- accessList?: import("viem").AccessList | undefined;
1164
- authorizationList?: undefined | undefined;
1165
- blobs?: undefined | undefined;
1166
- blobVersionedHashes?: undefined | undefined;
1167
- gasPrice?: bigint | undefined;
1168
- sidecars?: undefined | undefined;
1169
- maxFeePerBlobGas?: undefined | undefined;
1170
- maxFeePerGas?: undefined | undefined;
1171
- maxPriorityFeePerGas?: undefined | undefined;
1172
- } & {
1173
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1174
- } ? "eip2930" : never) | (request extends ({
1175
- accessList?: import("viem").AccessList | undefined;
1176
- authorizationList?: undefined | undefined;
1177
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1178
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1179
- maxFeePerBlobGas?: bigint | undefined;
1180
- maxFeePerGas?: bigint | undefined;
1181
- maxPriorityFeePerGas?: bigint | undefined;
1182
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1183
- } | {
1184
- accessList?: import("viem").AccessList | undefined;
1185
- authorizationList?: undefined | undefined;
1186
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1187
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1188
- maxFeePerBlobGas?: bigint | undefined;
1189
- maxFeePerGas?: bigint | undefined;
1190
- maxPriorityFeePerGas?: bigint | undefined;
1191
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1192
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1193
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1194
- } | {
1195
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1196
- } | {
1197
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1198
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1199
- accessList?: import("viem").AccessList | undefined;
1200
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1201
- blobs?: undefined | undefined;
1202
- blobVersionedHashes?: undefined | undefined;
1203
- gasPrice?: undefined | undefined;
1204
- maxFeePerBlobGas?: undefined | undefined;
1205
- maxFeePerGas?: bigint | undefined;
1206
- maxPriorityFeePerGas?: bigint | undefined;
1207
- sidecars?: undefined | undefined;
1208
- } | {
1209
- accessList?: import("viem").AccessList | undefined;
1210
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1211
- blobs?: undefined | undefined;
1212
- blobVersionedHashes?: undefined | undefined;
1213
- gasPrice?: undefined | undefined;
1214
- maxFeePerBlobGas?: undefined | undefined;
1215
- maxFeePerGas?: bigint | undefined;
1216
- maxPriorityFeePerGas?: bigint | undefined;
1217
- sidecars?: undefined | undefined;
1218
- }) & {
1219
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1220
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_5 ? T_5 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1221
- accessList?: undefined | undefined;
1222
- authorizationList?: undefined | undefined;
1223
- blobs?: undefined | undefined;
1224
- blobVersionedHashes?: undefined | undefined;
1225
- gasPrice?: bigint | undefined;
1226
- sidecars?: undefined | undefined;
1227
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1228
- accessList?: import("viem").AccessList | undefined;
1229
- authorizationList?: undefined | undefined;
1230
- blobs?: undefined | undefined;
1231
- blobVersionedHashes?: undefined | undefined;
1232
- gasPrice?: undefined | undefined;
1233
- maxFeePerBlobGas?: undefined | undefined;
1234
- maxFeePerGas?: bigint | undefined;
1235
- maxPriorityFeePerGas?: bigint | undefined;
1236
- sidecars?: undefined | undefined;
1237
- } & (import("viem").OneOf<{
1238
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1239
- } | {
1240
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1241
- }, import("viem").FeeValuesEIP1559> & {
1242
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1243
- }) ? "eip1559" : never) | (request extends {
1244
- accessList?: import("viem").AccessList | undefined;
1245
- authorizationList?: undefined | undefined;
1246
- blobs?: undefined | undefined;
1247
- blobVersionedHashes?: undefined | undefined;
1248
- gasPrice?: bigint | undefined;
1249
- sidecars?: undefined | undefined;
1250
- maxFeePerBlobGas?: undefined | undefined;
1251
- maxFeePerGas?: undefined | undefined;
1252
- maxPriorityFeePerGas?: undefined | undefined;
1253
- } & {
1254
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1255
- } ? "eip2930" : never) | (request extends ({
1256
- accessList?: import("viem").AccessList | undefined;
1257
- authorizationList?: undefined | undefined;
1258
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1259
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1260
- maxFeePerBlobGas?: bigint | undefined;
1261
- maxFeePerGas?: bigint | undefined;
1262
- maxPriorityFeePerGas?: bigint | undefined;
1263
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1264
- } | {
1265
- accessList?: import("viem").AccessList | undefined;
1266
- authorizationList?: undefined | undefined;
1267
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1268
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1269
- maxFeePerBlobGas?: bigint | undefined;
1270
- maxFeePerGas?: bigint | undefined;
1271
- maxPriorityFeePerGas?: bigint | undefined;
1272
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1273
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1274
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1275
- } | {
1276
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1277
- } | {
1278
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1279
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1280
- accessList?: import("viem").AccessList | undefined;
1281
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1282
- blobs?: undefined | undefined;
1283
- blobVersionedHashes?: undefined | undefined;
1284
- gasPrice?: undefined | undefined;
1285
- maxFeePerBlobGas?: undefined | undefined;
1286
- maxFeePerGas?: bigint | undefined;
1287
- maxPriorityFeePerGas?: bigint | undefined;
1288
- sidecars?: undefined | undefined;
1289
- } | {
1290
- accessList?: import("viem").AccessList | undefined;
1291
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1292
- blobs?: undefined | undefined;
1293
- blobVersionedHashes?: undefined | undefined;
1294
- gasPrice?: undefined | undefined;
1295
- maxFeePerBlobGas?: undefined | undefined;
1296
- maxFeePerGas?: bigint | undefined;
1297
- maxPriorityFeePerGas?: bigint | undefined;
1298
- sidecars?: undefined | undefined;
1299
- }) & {
1300
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1301
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1302
- accessList?: undefined | undefined;
1303
- authorizationList?: undefined | undefined;
1304
- blobs?: undefined | undefined;
1305
- blobVersionedHashes?: undefined | undefined;
1306
- gasPrice?: bigint | undefined;
1307
- sidecars?: undefined | undefined;
1308
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1309
- accessList?: import("viem").AccessList | undefined;
1310
- authorizationList?: undefined | undefined;
1311
- blobs?: undefined | undefined;
1312
- blobVersionedHashes?: undefined | undefined;
1313
- gasPrice?: undefined | undefined;
1314
- maxFeePerBlobGas?: undefined | undefined;
1315
- maxFeePerGas?: bigint | undefined;
1316
- maxPriorityFeePerGas?: bigint | undefined;
1317
- sidecars?: undefined | undefined;
1318
- } & (import("viem").OneOf<{
1319
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1320
- } | {
1321
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1322
- }, import("viem").FeeValuesEIP1559> & {
1323
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1324
- }) ? "eip1559" : never) | (request extends {
1325
- accessList?: import("viem").AccessList | undefined;
1326
- authorizationList?: undefined | undefined;
1327
- blobs?: undefined | undefined;
1328
- blobVersionedHashes?: undefined | undefined;
1329
- gasPrice?: bigint | undefined;
1330
- sidecars?: undefined | undefined;
1331
- maxFeePerBlobGas?: undefined | undefined;
1332
- maxFeePerGas?: undefined | undefined;
1333
- maxPriorityFeePerGas?: undefined | undefined;
1334
- } & {
1335
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1336
- } ? "eip2930" : never) | (request extends ({
1337
- accessList?: import("viem").AccessList | undefined;
1338
- authorizationList?: undefined | undefined;
1339
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1340
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1341
- maxFeePerBlobGas?: bigint | undefined;
1342
- maxFeePerGas?: bigint | undefined;
1343
- maxPriorityFeePerGas?: bigint | undefined;
1344
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1345
- } | {
1346
- accessList?: import("viem").AccessList | undefined;
1347
- authorizationList?: undefined | undefined;
1348
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1349
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1350
- maxFeePerBlobGas?: bigint | undefined;
1351
- maxFeePerGas?: bigint | undefined;
1352
- maxPriorityFeePerGas?: bigint | undefined;
1353
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1354
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1355
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1356
- } | {
1357
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1358
- } | {
1359
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1360
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1361
- accessList?: import("viem").AccessList | undefined;
1362
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1363
- blobs?: undefined | undefined;
1364
- blobVersionedHashes?: undefined | undefined;
1365
- gasPrice?: undefined | undefined;
1366
- maxFeePerBlobGas?: undefined | undefined;
1367
- maxFeePerGas?: bigint | undefined;
1368
- maxPriorityFeePerGas?: bigint | undefined;
1369
- sidecars?: undefined | undefined;
1370
- } | {
1371
- accessList?: import("viem").AccessList | undefined;
1372
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1373
- blobs?: undefined | undefined;
1374
- blobVersionedHashes?: undefined | undefined;
1375
- gasPrice?: undefined | undefined;
1376
- maxFeePerBlobGas?: undefined | undefined;
1377
- maxFeePerGas?: bigint | undefined;
1378
- maxPriorityFeePerGas?: bigint | undefined;
1379
- sidecars?: undefined | undefined;
1380
- }) & {
1381
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1382
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_5 extends "eip2930" ? import("viem").TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1383
- accessList?: undefined | undefined;
1384
- authorizationList?: undefined | undefined;
1385
- blobs?: undefined | undefined;
1386
- blobVersionedHashes?: undefined | undefined;
1387
- gasPrice?: bigint | undefined;
1388
- sidecars?: undefined | undefined;
1389
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1390
- accessList?: import("viem").AccessList | undefined;
1391
- authorizationList?: undefined | undefined;
1392
- blobs?: undefined | undefined;
1393
- blobVersionedHashes?: undefined | undefined;
1394
- gasPrice?: undefined | undefined;
1395
- maxFeePerBlobGas?: undefined | undefined;
1396
- maxFeePerGas?: bigint | undefined;
1397
- maxPriorityFeePerGas?: bigint | undefined;
1398
- sidecars?: undefined | undefined;
1399
- } & (import("viem").OneOf<{
1400
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1401
- } | {
1402
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1403
- }, import("viem").FeeValuesEIP1559> & {
1404
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1405
- }) ? "eip1559" : never) | (request extends {
1406
- accessList?: import("viem").AccessList | undefined;
1407
- authorizationList?: undefined | undefined;
1408
- blobs?: undefined | undefined;
1409
- blobVersionedHashes?: undefined | undefined;
1410
- gasPrice?: bigint | undefined;
1411
- sidecars?: undefined | undefined;
1412
- maxFeePerBlobGas?: undefined | undefined;
1413
- maxFeePerGas?: undefined | undefined;
1414
- maxPriorityFeePerGas?: undefined | undefined;
1415
- } & {
1416
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1417
- } ? "eip2930" : never) | (request extends ({
1418
- accessList?: import("viem").AccessList | undefined;
1419
- authorizationList?: undefined | undefined;
1420
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1421
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1422
- maxFeePerBlobGas?: bigint | undefined;
1423
- maxFeePerGas?: bigint | undefined;
1424
- maxPriorityFeePerGas?: bigint | undefined;
1425
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1426
- } | {
1427
- accessList?: import("viem").AccessList | undefined;
1428
- authorizationList?: undefined | undefined;
1429
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1430
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1431
- maxFeePerBlobGas?: bigint | undefined;
1432
- maxFeePerGas?: bigint | undefined;
1433
- maxPriorityFeePerGas?: bigint | undefined;
1434
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1435
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1436
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1437
- } | {
1438
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1439
- } | {
1440
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1441
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1442
- accessList?: import("viem").AccessList | undefined;
1443
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1444
- blobs?: undefined | undefined;
1445
- blobVersionedHashes?: undefined | undefined;
1446
- gasPrice?: undefined | undefined;
1447
- maxFeePerBlobGas?: undefined | undefined;
1448
- maxFeePerGas?: bigint | undefined;
1449
- maxPriorityFeePerGas?: bigint | undefined;
1450
- sidecars?: undefined | undefined;
1451
- } | {
1452
- accessList?: import("viem").AccessList | undefined;
1453
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1454
- blobs?: undefined | undefined;
1455
- blobVersionedHashes?: undefined | undefined;
1456
- gasPrice?: undefined | undefined;
1457
- maxFeePerBlobGas?: undefined | undefined;
1458
- maxFeePerGas?: bigint | undefined;
1459
- maxPriorityFeePerGas?: bigint | undefined;
1460
- sidecars?: undefined | undefined;
1461
- }) & {
1462
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1463
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1464
- accessList?: undefined | undefined;
1465
- authorizationList?: undefined | undefined;
1466
- blobs?: undefined | undefined;
1467
- blobVersionedHashes?: undefined | undefined;
1468
- gasPrice?: bigint | undefined;
1469
- sidecars?: undefined | undefined;
1470
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1471
- accessList?: import("viem").AccessList | undefined;
1472
- authorizationList?: undefined | undefined;
1473
- blobs?: undefined | undefined;
1474
- blobVersionedHashes?: undefined | undefined;
1475
- gasPrice?: undefined | undefined;
1476
- maxFeePerBlobGas?: undefined | undefined;
1477
- maxFeePerGas?: bigint | undefined;
1478
- maxPriorityFeePerGas?: bigint | undefined;
1479
- sidecars?: undefined | undefined;
1480
- } & (import("viem").OneOf<{
1481
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1482
- } | {
1483
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1484
- }, import("viem").FeeValuesEIP1559> & {
1485
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1486
- }) ? "eip1559" : never) | (request extends {
1487
- accessList?: import("viem").AccessList | undefined;
1488
- authorizationList?: undefined | undefined;
1489
- blobs?: undefined | undefined;
1490
- blobVersionedHashes?: undefined | undefined;
1491
- gasPrice?: bigint | undefined;
1492
- sidecars?: undefined | undefined;
1493
- maxFeePerBlobGas?: undefined | undefined;
1494
- maxFeePerGas?: undefined | undefined;
1495
- maxPriorityFeePerGas?: undefined | undefined;
1496
- } & {
1497
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1498
- } ? "eip2930" : never) | (request extends ({
1499
- accessList?: import("viem").AccessList | undefined;
1500
- authorizationList?: undefined | undefined;
1501
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1502
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1503
- maxFeePerBlobGas?: bigint | undefined;
1504
- maxFeePerGas?: bigint | undefined;
1505
- maxPriorityFeePerGas?: bigint | undefined;
1506
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1507
- } | {
1508
- accessList?: import("viem").AccessList | undefined;
1509
- authorizationList?: undefined | undefined;
1510
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1511
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1512
- maxFeePerBlobGas?: bigint | undefined;
1513
- maxFeePerGas?: bigint | undefined;
1514
- maxPriorityFeePerGas?: bigint | undefined;
1515
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1516
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1517
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1518
- } | {
1519
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1520
- } | {
1521
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1522
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1523
- accessList?: import("viem").AccessList | undefined;
1524
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1525
- blobs?: undefined | undefined;
1526
- blobVersionedHashes?: undefined | undefined;
1527
- gasPrice?: undefined | undefined;
1528
- maxFeePerBlobGas?: undefined | undefined;
1529
- maxFeePerGas?: bigint | undefined;
1530
- maxPriorityFeePerGas?: bigint | undefined;
1531
- sidecars?: undefined | undefined;
1532
- } | {
1533
- accessList?: import("viem").AccessList | undefined;
1534
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1535
- blobs?: undefined | undefined;
1536
- blobVersionedHashes?: undefined | undefined;
1537
- gasPrice?: undefined | undefined;
1538
- maxFeePerBlobGas?: undefined | undefined;
1539
- maxFeePerGas?: bigint | undefined;
1540
- maxPriorityFeePerGas?: bigint | undefined;
1541
- sidecars?: undefined | undefined;
1542
- }) & {
1543
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1544
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_6 ? T_6 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1545
- accessList?: undefined | undefined;
1546
- authorizationList?: undefined | undefined;
1547
- blobs?: undefined | undefined;
1548
- blobVersionedHashes?: undefined | undefined;
1549
- gasPrice?: bigint | undefined;
1550
- sidecars?: undefined | undefined;
1551
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1552
- accessList?: import("viem").AccessList | undefined;
1553
- authorizationList?: undefined | undefined;
1554
- blobs?: undefined | undefined;
1555
- blobVersionedHashes?: undefined | undefined;
1556
- gasPrice?: undefined | undefined;
1557
- maxFeePerBlobGas?: undefined | undefined;
1558
- maxFeePerGas?: bigint | undefined;
1559
- maxPriorityFeePerGas?: bigint | undefined;
1560
- sidecars?: undefined | undefined;
1561
- } & (import("viem").OneOf<{
1562
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1563
- } | {
1564
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1565
- }, import("viem").FeeValuesEIP1559> & {
1566
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1567
- }) ? "eip1559" : never) | (request extends {
1568
- accessList?: import("viem").AccessList | undefined;
1569
- authorizationList?: undefined | undefined;
1570
- blobs?: undefined | undefined;
1571
- blobVersionedHashes?: undefined | undefined;
1572
- gasPrice?: bigint | undefined;
1573
- sidecars?: undefined | undefined;
1574
- maxFeePerBlobGas?: undefined | undefined;
1575
- maxFeePerGas?: undefined | undefined;
1576
- maxPriorityFeePerGas?: undefined | undefined;
1577
- } & {
1578
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1579
- } ? "eip2930" : never) | (request extends ({
1580
- accessList?: import("viem").AccessList | undefined;
1581
- authorizationList?: undefined | undefined;
1582
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1583
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1584
- maxFeePerBlobGas?: bigint | undefined;
1585
- maxFeePerGas?: bigint | undefined;
1586
- maxPriorityFeePerGas?: bigint | undefined;
1587
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1588
- } | {
1589
- accessList?: import("viem").AccessList | undefined;
1590
- authorizationList?: undefined | undefined;
1591
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1592
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1593
- maxFeePerBlobGas?: bigint | undefined;
1594
- maxFeePerGas?: bigint | undefined;
1595
- maxPriorityFeePerGas?: bigint | undefined;
1596
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1597
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1598
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1599
- } | {
1600
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1601
- } | {
1602
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1603
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1604
- accessList?: import("viem").AccessList | undefined;
1605
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1606
- blobs?: undefined | undefined;
1607
- blobVersionedHashes?: undefined | undefined;
1608
- gasPrice?: undefined | undefined;
1609
- maxFeePerBlobGas?: undefined | undefined;
1610
- maxFeePerGas?: bigint | undefined;
1611
- maxPriorityFeePerGas?: bigint | undefined;
1612
- sidecars?: undefined | undefined;
1613
- } | {
1614
- accessList?: import("viem").AccessList | undefined;
1615
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1616
- blobs?: undefined | undefined;
1617
- blobVersionedHashes?: undefined | undefined;
1618
- gasPrice?: undefined | undefined;
1619
- maxFeePerBlobGas?: undefined | undefined;
1620
- maxFeePerGas?: bigint | undefined;
1621
- maxPriorityFeePerGas?: bigint | undefined;
1622
- sidecars?: undefined | undefined;
1623
- }) & {
1624
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1625
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1626
- accessList?: undefined | undefined;
1627
- authorizationList?: undefined | undefined;
1628
- blobs?: undefined | undefined;
1629
- blobVersionedHashes?: undefined | undefined;
1630
- gasPrice?: bigint | undefined;
1631
- sidecars?: undefined | undefined;
1632
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1633
- accessList?: import("viem").AccessList | undefined;
1634
- authorizationList?: undefined | undefined;
1635
- blobs?: undefined | undefined;
1636
- blobVersionedHashes?: undefined | undefined;
1637
- gasPrice?: undefined | undefined;
1638
- maxFeePerBlobGas?: undefined | undefined;
1639
- maxFeePerGas?: bigint | undefined;
1640
- maxPriorityFeePerGas?: bigint | undefined;
1641
- sidecars?: undefined | undefined;
1642
- } & (import("viem").OneOf<{
1643
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1644
- } | {
1645
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1646
- }, import("viem").FeeValuesEIP1559> & {
1647
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1648
- }) ? "eip1559" : never) | (request extends {
1649
- accessList?: import("viem").AccessList | undefined;
1650
- authorizationList?: undefined | undefined;
1651
- blobs?: undefined | undefined;
1652
- blobVersionedHashes?: undefined | undefined;
1653
- gasPrice?: bigint | undefined;
1654
- sidecars?: undefined | undefined;
1655
- maxFeePerBlobGas?: undefined | undefined;
1656
- maxFeePerGas?: undefined | undefined;
1657
- maxPriorityFeePerGas?: undefined | undefined;
1658
- } & {
1659
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1660
- } ? "eip2930" : never) | (request extends ({
1661
- accessList?: import("viem").AccessList | undefined;
1662
- authorizationList?: undefined | undefined;
1663
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1664
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1665
- maxFeePerBlobGas?: bigint | undefined;
1666
- maxFeePerGas?: bigint | undefined;
1667
- maxPriorityFeePerGas?: bigint | undefined;
1668
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1669
- } | {
1670
- accessList?: import("viem").AccessList | undefined;
1671
- authorizationList?: undefined | undefined;
1672
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1673
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1674
- maxFeePerBlobGas?: bigint | undefined;
1675
- maxFeePerGas?: bigint | undefined;
1676
- maxPriorityFeePerGas?: bigint | undefined;
1677
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1678
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1679
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1680
- } | {
1681
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1682
- } | {
1683
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1684
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1685
- accessList?: import("viem").AccessList | undefined;
1686
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1687
- blobs?: undefined | undefined;
1688
- blobVersionedHashes?: undefined | undefined;
1689
- gasPrice?: undefined | undefined;
1690
- maxFeePerBlobGas?: undefined | undefined;
1691
- maxFeePerGas?: bigint | undefined;
1692
- maxPriorityFeePerGas?: bigint | undefined;
1693
- sidecars?: undefined | undefined;
1694
- } | {
1695
- accessList?: import("viem").AccessList | undefined;
1696
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1697
- blobs?: undefined | undefined;
1698
- blobVersionedHashes?: undefined | undefined;
1699
- gasPrice?: undefined | undefined;
1700
- maxFeePerBlobGas?: undefined | undefined;
1701
- maxFeePerGas?: bigint | undefined;
1702
- maxPriorityFeePerGas?: bigint | undefined;
1703
- sidecars?: undefined | undefined;
1704
- }) & {
1705
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1706
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_6 extends "eip4844" ? import("viem").TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1707
- accessList?: undefined | undefined;
1708
- authorizationList?: undefined | undefined;
1709
- blobs?: undefined | undefined;
1710
- blobVersionedHashes?: undefined | undefined;
1711
- gasPrice?: bigint | undefined;
1712
- sidecars?: undefined | undefined;
1713
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1714
- accessList?: import("viem").AccessList | undefined;
1715
- authorizationList?: undefined | undefined;
1716
- blobs?: undefined | undefined;
1717
- blobVersionedHashes?: undefined | undefined;
1718
- gasPrice?: undefined | undefined;
1719
- maxFeePerBlobGas?: undefined | undefined;
1720
- maxFeePerGas?: bigint | undefined;
1721
- maxPriorityFeePerGas?: bigint | undefined;
1722
- sidecars?: undefined | undefined;
1723
- } & (import("viem").OneOf<{
1724
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1725
- } | {
1726
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1727
- }, import("viem").FeeValuesEIP1559> & {
1728
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1729
- }) ? "eip1559" : never) | (request extends {
1730
- accessList?: import("viem").AccessList | undefined;
1731
- authorizationList?: undefined | undefined;
1732
- blobs?: undefined | undefined;
1733
- blobVersionedHashes?: undefined | undefined;
1734
- gasPrice?: bigint | undefined;
1735
- sidecars?: undefined | undefined;
1736
- maxFeePerBlobGas?: undefined | undefined;
1737
- maxFeePerGas?: undefined | undefined;
1738
- maxPriorityFeePerGas?: undefined | undefined;
1739
- } & {
1740
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1741
- } ? "eip2930" : never) | (request extends ({
1742
- accessList?: import("viem").AccessList | undefined;
1743
- authorizationList?: undefined | undefined;
1744
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1745
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1746
- maxFeePerBlobGas?: bigint | undefined;
1747
- maxFeePerGas?: bigint | undefined;
1748
- maxPriorityFeePerGas?: bigint | undefined;
1749
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1750
- } | {
1751
- accessList?: import("viem").AccessList | undefined;
1752
- authorizationList?: undefined | undefined;
1753
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1754
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1755
- maxFeePerBlobGas?: bigint | undefined;
1756
- maxFeePerGas?: bigint | undefined;
1757
- maxPriorityFeePerGas?: bigint | undefined;
1758
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1759
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1760
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1761
- } | {
1762
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1763
- } | {
1764
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1765
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1766
- accessList?: import("viem").AccessList | undefined;
1767
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1768
- blobs?: undefined | undefined;
1769
- blobVersionedHashes?: undefined | undefined;
1770
- gasPrice?: undefined | undefined;
1771
- maxFeePerBlobGas?: undefined | undefined;
1772
- maxFeePerGas?: bigint | undefined;
1773
- maxPriorityFeePerGas?: bigint | undefined;
1774
- sidecars?: undefined | undefined;
1775
- } | {
1776
- accessList?: import("viem").AccessList | undefined;
1777
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1778
- blobs?: undefined | undefined;
1779
- blobVersionedHashes?: undefined | undefined;
1780
- gasPrice?: undefined | undefined;
1781
- maxFeePerBlobGas?: undefined | undefined;
1782
- maxFeePerGas?: bigint | undefined;
1783
- maxPriorityFeePerGas?: bigint | undefined;
1784
- sidecars?: undefined | undefined;
1785
- }) & {
1786
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1787
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1788
- accessList?: undefined | undefined;
1789
- authorizationList?: undefined | undefined;
1790
- blobs?: undefined | undefined;
1791
- blobVersionedHashes?: undefined | undefined;
1792
- gasPrice?: bigint | undefined;
1793
- sidecars?: undefined | undefined;
1794
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1795
- accessList?: import("viem").AccessList | undefined;
1796
- authorizationList?: undefined | undefined;
1797
- blobs?: undefined | undefined;
1798
- blobVersionedHashes?: undefined | undefined;
1799
- gasPrice?: undefined | undefined;
1800
- maxFeePerBlobGas?: undefined | undefined;
1801
- maxFeePerGas?: bigint | undefined;
1802
- maxPriorityFeePerGas?: bigint | undefined;
1803
- sidecars?: undefined | undefined;
1804
- } & (import("viem").OneOf<{
1805
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1806
- } | {
1807
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1808
- }, import("viem").FeeValuesEIP1559> & {
1809
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1810
- }) ? "eip1559" : never) | (request extends {
1811
- accessList?: import("viem").AccessList | undefined;
1812
- authorizationList?: undefined | undefined;
1813
- blobs?: undefined | undefined;
1814
- blobVersionedHashes?: undefined | undefined;
1815
- gasPrice?: bigint | undefined;
1816
- sidecars?: undefined | undefined;
1817
- maxFeePerBlobGas?: undefined | undefined;
1818
- maxFeePerGas?: undefined | undefined;
1819
- maxPriorityFeePerGas?: undefined | undefined;
1820
- } & {
1821
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1822
- } ? "eip2930" : never) | (request extends ({
1823
- accessList?: import("viem").AccessList | undefined;
1824
- authorizationList?: undefined | undefined;
1825
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1826
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1827
- maxFeePerBlobGas?: bigint | undefined;
1828
- maxFeePerGas?: bigint | undefined;
1829
- maxPriorityFeePerGas?: bigint | undefined;
1830
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1831
- } | {
1832
- accessList?: import("viem").AccessList | undefined;
1833
- authorizationList?: undefined | undefined;
1834
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1835
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1836
- maxFeePerBlobGas?: bigint | undefined;
1837
- maxFeePerGas?: bigint | undefined;
1838
- maxPriorityFeePerGas?: bigint | undefined;
1839
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1840
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1841
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1842
- } | {
1843
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1844
- } | {
1845
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1846
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1847
- accessList?: import("viem").AccessList | undefined;
1848
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1849
- blobs?: undefined | undefined;
1850
- blobVersionedHashes?: undefined | undefined;
1851
- gasPrice?: undefined | undefined;
1852
- maxFeePerBlobGas?: undefined | undefined;
1853
- maxFeePerGas?: bigint | undefined;
1854
- maxPriorityFeePerGas?: bigint | undefined;
1855
- sidecars?: undefined | undefined;
1856
- } | {
1857
- accessList?: import("viem").AccessList | undefined;
1858
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1859
- blobs?: undefined | undefined;
1860
- blobVersionedHashes?: undefined | undefined;
1861
- gasPrice?: undefined | undefined;
1862
- maxFeePerBlobGas?: undefined | undefined;
1863
- maxFeePerGas?: bigint | undefined;
1864
- maxPriorityFeePerGas?: bigint | undefined;
1865
- sidecars?: undefined | undefined;
1866
- }) & {
1867
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1868
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_7 ? T_7 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1869
- accessList?: undefined | undefined;
1870
- authorizationList?: undefined | undefined;
1871
- blobs?: undefined | undefined;
1872
- blobVersionedHashes?: undefined | undefined;
1873
- gasPrice?: bigint | undefined;
1874
- sidecars?: undefined | undefined;
1875
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1876
- accessList?: import("viem").AccessList | undefined;
1877
- authorizationList?: undefined | undefined;
1878
- blobs?: undefined | undefined;
1879
- blobVersionedHashes?: undefined | undefined;
1880
- gasPrice?: undefined | undefined;
1881
- maxFeePerBlobGas?: undefined | undefined;
1882
- maxFeePerGas?: bigint | undefined;
1883
- maxPriorityFeePerGas?: bigint | undefined;
1884
- sidecars?: undefined | undefined;
1885
- } & (import("viem").OneOf<{
1886
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1887
- } | {
1888
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1889
- }, import("viem").FeeValuesEIP1559> & {
1890
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1891
- }) ? "eip1559" : never) | (request extends {
1892
- accessList?: import("viem").AccessList | undefined;
1893
- authorizationList?: undefined | undefined;
1894
- blobs?: undefined | undefined;
1895
- blobVersionedHashes?: undefined | undefined;
1896
- gasPrice?: bigint | undefined;
1897
- sidecars?: undefined | undefined;
1898
- maxFeePerBlobGas?: undefined | undefined;
1899
- maxFeePerGas?: undefined | undefined;
1900
- maxPriorityFeePerGas?: undefined | undefined;
1901
- } & {
1902
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1903
- } ? "eip2930" : never) | (request extends ({
1904
- accessList?: import("viem").AccessList | undefined;
1905
- authorizationList?: undefined | undefined;
1906
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1907
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1908
- maxFeePerBlobGas?: bigint | undefined;
1909
- maxFeePerGas?: bigint | undefined;
1910
- maxPriorityFeePerGas?: bigint | undefined;
1911
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1912
- } | {
1913
- accessList?: import("viem").AccessList | undefined;
1914
- authorizationList?: undefined | undefined;
1915
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1916
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1917
- maxFeePerBlobGas?: bigint | undefined;
1918
- maxFeePerGas?: bigint | undefined;
1919
- maxPriorityFeePerGas?: bigint | undefined;
1920
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1921
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1922
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1923
- } | {
1924
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1925
- } | {
1926
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1927
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1928
- accessList?: import("viem").AccessList | undefined;
1929
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1930
- blobs?: undefined | undefined;
1931
- blobVersionedHashes?: undefined | undefined;
1932
- gasPrice?: undefined | undefined;
1933
- maxFeePerBlobGas?: undefined | undefined;
1934
- maxFeePerGas?: bigint | undefined;
1935
- maxPriorityFeePerGas?: bigint | undefined;
1936
- sidecars?: undefined | undefined;
1937
- } | {
1938
- accessList?: import("viem").AccessList | undefined;
1939
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1940
- blobs?: undefined | undefined;
1941
- blobVersionedHashes?: undefined | undefined;
1942
- gasPrice?: undefined | undefined;
1943
- maxFeePerBlobGas?: undefined | undefined;
1944
- maxFeePerGas?: bigint | undefined;
1945
- maxPriorityFeePerGas?: bigint | undefined;
1946
- sidecars?: undefined | undefined;
1947
- }) & {
1948
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1949
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1950
- accessList?: undefined | undefined;
1951
- authorizationList?: undefined | undefined;
1952
- blobs?: undefined | undefined;
1953
- blobVersionedHashes?: undefined | undefined;
1954
- gasPrice?: bigint | undefined;
1955
- sidecars?: undefined | undefined;
1956
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1957
- accessList?: import("viem").AccessList | undefined;
1958
- authorizationList?: undefined | undefined;
1959
- blobs?: undefined | undefined;
1960
- blobVersionedHashes?: undefined | undefined;
1961
- gasPrice?: undefined | undefined;
1962
- maxFeePerBlobGas?: undefined | undefined;
1963
- maxFeePerGas?: bigint | undefined;
1964
- maxPriorityFeePerGas?: bigint | undefined;
1965
- sidecars?: undefined | undefined;
1966
- } & (import("viem").OneOf<{
1967
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1968
- } | {
1969
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1970
- }, import("viem").FeeValuesEIP1559> & {
1971
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1972
- }) ? "eip1559" : never) | (request extends {
1973
- accessList?: import("viem").AccessList | undefined;
1974
- authorizationList?: undefined | undefined;
1975
- blobs?: undefined | undefined;
1976
- blobVersionedHashes?: undefined | undefined;
1977
- gasPrice?: bigint | undefined;
1978
- sidecars?: undefined | undefined;
1979
- maxFeePerBlobGas?: undefined | undefined;
1980
- maxFeePerGas?: undefined | undefined;
1981
- maxPriorityFeePerGas?: undefined | undefined;
1982
- } & {
1983
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1984
- } ? "eip2930" : never) | (request extends ({
1985
- accessList?: import("viem").AccessList | undefined;
1986
- authorizationList?: undefined | undefined;
1987
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1988
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1989
- maxFeePerBlobGas?: bigint | undefined;
1990
- maxFeePerGas?: bigint | undefined;
1991
- maxPriorityFeePerGas?: bigint | undefined;
1992
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1993
- } | {
1994
- accessList?: import("viem").AccessList | undefined;
1995
- authorizationList?: undefined | undefined;
1996
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1997
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1998
- maxFeePerBlobGas?: bigint | undefined;
1999
- maxFeePerGas?: bigint | undefined;
2000
- maxPriorityFeePerGas?: bigint | undefined;
2001
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2002
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2003
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2004
- } | {
2005
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2006
- } | {
2007
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2008
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2009
- accessList?: import("viem").AccessList | undefined;
2010
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2011
- blobs?: undefined | undefined;
2012
- blobVersionedHashes?: undefined | undefined;
2013
- gasPrice?: undefined | undefined;
2014
- maxFeePerBlobGas?: undefined | undefined;
2015
- maxFeePerGas?: bigint | undefined;
2016
- maxPriorityFeePerGas?: bigint | undefined;
2017
- sidecars?: undefined | undefined;
2018
- } | {
2019
- accessList?: import("viem").AccessList | undefined;
2020
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2021
- blobs?: undefined | undefined;
2022
- blobVersionedHashes?: undefined | undefined;
2023
- gasPrice?: undefined | undefined;
2024
- maxFeePerBlobGas?: undefined | undefined;
2025
- maxFeePerGas?: bigint | undefined;
2026
- maxPriorityFeePerGas?: bigint | undefined;
2027
- sidecars?: undefined | undefined;
2028
- }) & {
2029
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2030
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_7 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)> extends true ? unknown : import("viem").ExactPartial<((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
2031
- accessList?: undefined | undefined;
2032
- authorizationList?: undefined | undefined;
2033
- blobs?: undefined | undefined;
2034
- blobVersionedHashes?: undefined | undefined;
2035
- gasPrice?: bigint | undefined;
2036
- sidecars?: undefined | undefined;
2037
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2038
- accessList?: import("viem").AccessList | undefined;
2039
- authorizationList?: undefined | undefined;
2040
- blobs?: undefined | undefined;
2041
- blobVersionedHashes?: undefined | undefined;
2042
- gasPrice?: undefined | undefined;
2043
- maxFeePerBlobGas?: undefined | undefined;
2044
- maxFeePerGas?: bigint | undefined;
2045
- maxPriorityFeePerGas?: bigint | undefined;
2046
- sidecars?: undefined | undefined;
2047
- } & (import("viem").OneOf<{
2048
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2049
- } | {
2050
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2051
- }, import("viem").FeeValuesEIP1559> & {
2052
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2053
- }) ? "eip1559" : never) | (request extends {
2054
- accessList?: import("viem").AccessList | undefined;
2055
- authorizationList?: undefined | undefined;
2056
- blobs?: undefined | undefined;
2057
- blobVersionedHashes?: undefined | undefined;
2058
- gasPrice?: bigint | undefined;
2059
- sidecars?: undefined | undefined;
2060
- maxFeePerBlobGas?: undefined | undefined;
2061
- maxFeePerGas?: undefined | undefined;
2062
- maxPriorityFeePerGas?: undefined | undefined;
2063
- } & {
2064
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2065
- } ? "eip2930" : never) | (request extends ({
2066
- accessList?: import("viem").AccessList | undefined;
2067
- authorizationList?: undefined | undefined;
2068
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2069
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2070
- maxFeePerBlobGas?: bigint | undefined;
2071
- maxFeePerGas?: bigint | undefined;
2072
- maxPriorityFeePerGas?: bigint | undefined;
2073
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2074
- } | {
2075
- accessList?: import("viem").AccessList | undefined;
2076
- authorizationList?: undefined | undefined;
2077
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2078
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2079
- maxFeePerBlobGas?: bigint | undefined;
2080
- maxFeePerGas?: bigint | undefined;
2081
- maxPriorityFeePerGas?: bigint | undefined;
2082
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2083
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2084
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2085
- } | {
2086
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2087
- } | {
2088
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2089
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2090
- accessList?: import("viem").AccessList | undefined;
2091
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2092
- blobs?: undefined | undefined;
2093
- blobVersionedHashes?: undefined | undefined;
2094
- gasPrice?: undefined | undefined;
2095
- maxFeePerBlobGas?: undefined | undefined;
2096
- maxFeePerGas?: bigint | undefined;
2097
- maxPriorityFeePerGas?: bigint | undefined;
2098
- sidecars?: undefined | undefined;
2099
- } | {
2100
- accessList?: import("viem").AccessList | undefined;
2101
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2102
- blobs?: undefined | undefined;
2103
- blobVersionedHashes?: undefined | undefined;
2104
- gasPrice?: undefined | undefined;
2105
- maxFeePerBlobGas?: undefined | undefined;
2106
- maxFeePerGas?: bigint | undefined;
2107
- maxPriorityFeePerGas?: bigint | undefined;
2108
- sidecars?: undefined | undefined;
2109
- }) & {
2110
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2111
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2112
- accessList?: undefined | undefined;
2113
- authorizationList?: undefined | undefined;
2114
- blobs?: undefined | undefined;
2115
- blobVersionedHashes?: undefined | undefined;
2116
- gasPrice?: bigint | undefined;
2117
- sidecars?: undefined | undefined;
2118
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2119
- accessList?: import("viem").AccessList | undefined;
2120
- authorizationList?: undefined | undefined;
2121
- blobs?: undefined | undefined;
2122
- blobVersionedHashes?: undefined | undefined;
2123
- gasPrice?: undefined | undefined;
2124
- maxFeePerBlobGas?: undefined | undefined;
2125
- maxFeePerGas?: bigint | undefined;
2126
- maxPriorityFeePerGas?: bigint | undefined;
2127
- sidecars?: undefined | undefined;
2128
- } & (import("viem").OneOf<{
2129
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2130
- } | {
2131
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2132
- }, import("viem").FeeValuesEIP1559> & {
2133
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2134
- }) ? "eip1559" : never) | (request extends {
2135
- accessList?: import("viem").AccessList | undefined;
2136
- authorizationList?: undefined | undefined;
2137
- blobs?: undefined | undefined;
2138
- blobVersionedHashes?: undefined | undefined;
2139
- gasPrice?: bigint | undefined;
2140
- sidecars?: undefined | undefined;
2141
- maxFeePerBlobGas?: undefined | undefined;
2142
- maxFeePerGas?: undefined | undefined;
2143
- maxPriorityFeePerGas?: undefined | undefined;
2144
- } & {
2145
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2146
- } ? "eip2930" : never) | (request extends ({
2147
- accessList?: import("viem").AccessList | undefined;
2148
- authorizationList?: undefined | undefined;
2149
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2150
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2151
- maxFeePerBlobGas?: bigint | undefined;
2152
- maxFeePerGas?: bigint | undefined;
2153
- maxPriorityFeePerGas?: bigint | undefined;
2154
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2155
- } | {
2156
- accessList?: import("viem").AccessList | undefined;
2157
- authorizationList?: undefined | undefined;
2158
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2159
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2160
- maxFeePerBlobGas?: bigint | undefined;
2161
- maxFeePerGas?: bigint | undefined;
2162
- maxPriorityFeePerGas?: bigint | undefined;
2163
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2164
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2165
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2166
- } | {
2167
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2168
- } | {
2169
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2170
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2171
- accessList?: import("viem").AccessList | undefined;
2172
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2173
- blobs?: undefined | undefined;
2174
- blobVersionedHashes?: undefined | undefined;
2175
- gasPrice?: undefined | undefined;
2176
- maxFeePerBlobGas?: undefined | undefined;
2177
- maxFeePerGas?: bigint | undefined;
2178
- maxPriorityFeePerGas?: bigint | undefined;
2179
- sidecars?: undefined | undefined;
2180
- } | {
2181
- accessList?: import("viem").AccessList | undefined;
2182
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2183
- blobs?: undefined | undefined;
2184
- blobVersionedHashes?: undefined | undefined;
2185
- gasPrice?: undefined | undefined;
2186
- maxFeePerBlobGas?: undefined | undefined;
2187
- maxFeePerGas?: bigint | undefined;
2188
- maxPriorityFeePerGas?: bigint | undefined;
2189
- sidecars?: undefined | undefined;
2190
- }) & {
2191
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2192
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_8 ? T_8 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
2193
- accessList?: undefined | undefined;
2194
- authorizationList?: undefined | undefined;
2195
- blobs?: undefined | undefined;
2196
- blobVersionedHashes?: undefined | undefined;
2197
- gasPrice?: bigint | undefined;
2198
- sidecars?: undefined | undefined;
2199
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2200
- accessList?: import("viem").AccessList | undefined;
2201
- authorizationList?: undefined | undefined;
2202
- blobs?: undefined | undefined;
2203
- blobVersionedHashes?: undefined | undefined;
2204
- gasPrice?: undefined | undefined;
2205
- maxFeePerBlobGas?: undefined | undefined;
2206
- maxFeePerGas?: bigint | undefined;
2207
- maxPriorityFeePerGas?: bigint | undefined;
2208
- sidecars?: undefined | undefined;
2209
- } & (import("viem").OneOf<{
2210
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2211
- } | {
2212
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2213
- }, import("viem").FeeValuesEIP1559> & {
2214
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2215
- }) ? "eip1559" : never) | (request extends {
2216
- accessList?: import("viem").AccessList | undefined;
2217
- authorizationList?: undefined | undefined;
2218
- blobs?: undefined | undefined;
2219
- blobVersionedHashes?: undefined | undefined;
2220
- gasPrice?: bigint | undefined;
2221
- sidecars?: undefined | undefined;
2222
- maxFeePerBlobGas?: undefined | undefined;
2223
- maxFeePerGas?: undefined | undefined;
2224
- maxPriorityFeePerGas?: undefined | undefined;
2225
- } & {
2226
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2227
- } ? "eip2930" : never) | (request extends ({
2228
- accessList?: import("viem").AccessList | undefined;
2229
- authorizationList?: undefined | undefined;
2230
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2231
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2232
- maxFeePerBlobGas?: bigint | undefined;
2233
- maxFeePerGas?: bigint | undefined;
2234
- maxPriorityFeePerGas?: bigint | undefined;
2235
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2236
- } | {
2237
- accessList?: import("viem").AccessList | undefined;
2238
- authorizationList?: undefined | undefined;
2239
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2240
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2241
- maxFeePerBlobGas?: bigint | undefined;
2242
- maxFeePerGas?: bigint | undefined;
2243
- maxPriorityFeePerGas?: bigint | undefined;
2244
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2245
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2246
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2247
- } | {
2248
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2249
- } | {
2250
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2251
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2252
- accessList?: import("viem").AccessList | undefined;
2253
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2254
- blobs?: undefined | undefined;
2255
- blobVersionedHashes?: undefined | undefined;
2256
- gasPrice?: undefined | undefined;
2257
- maxFeePerBlobGas?: undefined | undefined;
2258
- maxFeePerGas?: bigint | undefined;
2259
- maxPriorityFeePerGas?: bigint | undefined;
2260
- sidecars?: undefined | undefined;
2261
- } | {
2262
- accessList?: import("viem").AccessList | undefined;
2263
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2264
- blobs?: undefined | undefined;
2265
- blobVersionedHashes?: undefined | undefined;
2266
- gasPrice?: undefined | undefined;
2267
- maxFeePerBlobGas?: undefined | undefined;
2268
- maxFeePerGas?: bigint | undefined;
2269
- maxPriorityFeePerGas?: bigint | undefined;
2270
- sidecars?: undefined | undefined;
2271
- }) & {
2272
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2273
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2274
- accessList?: undefined | undefined;
2275
- authorizationList?: undefined | undefined;
2276
- blobs?: undefined | undefined;
2277
- blobVersionedHashes?: undefined | undefined;
2278
- gasPrice?: bigint | undefined;
2279
- sidecars?: undefined | undefined;
2280
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2281
- accessList?: import("viem").AccessList | undefined;
2282
- authorizationList?: undefined | undefined;
2283
- blobs?: undefined | undefined;
2284
- blobVersionedHashes?: undefined | undefined;
2285
- gasPrice?: undefined | undefined;
2286
- maxFeePerBlobGas?: undefined | undefined;
2287
- maxFeePerGas?: bigint | undefined;
2288
- maxPriorityFeePerGas?: bigint | undefined;
2289
- sidecars?: undefined | undefined;
2290
- } & (import("viem").OneOf<{
2291
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2292
- } | {
2293
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2294
- }, import("viem").FeeValuesEIP1559> & {
2295
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2296
- }) ? "eip1559" : never) | (request extends {
2297
- accessList?: import("viem").AccessList | undefined;
2298
- authorizationList?: undefined | undefined;
2299
- blobs?: undefined | undefined;
2300
- blobVersionedHashes?: undefined | undefined;
2301
- gasPrice?: bigint | undefined;
2302
- sidecars?: undefined | undefined;
2303
- maxFeePerBlobGas?: undefined | undefined;
2304
- maxFeePerGas?: undefined | undefined;
2305
- maxPriorityFeePerGas?: undefined | undefined;
2306
- } & {
2307
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2308
- } ? "eip2930" : never) | (request extends ({
2309
- accessList?: import("viem").AccessList | undefined;
2310
- authorizationList?: undefined | undefined;
2311
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2312
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2313
- maxFeePerBlobGas?: bigint | undefined;
2314
- maxFeePerGas?: bigint | undefined;
2315
- maxPriorityFeePerGas?: bigint | undefined;
2316
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2317
- } | {
2318
- accessList?: import("viem").AccessList | undefined;
2319
- authorizationList?: undefined | undefined;
2320
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2321
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2322
- maxFeePerBlobGas?: bigint | undefined;
2323
- maxFeePerGas?: bigint | undefined;
2324
- maxPriorityFeePerGas?: bigint | undefined;
2325
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2326
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2327
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2328
- } | {
2329
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2330
- } | {
2331
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2332
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2333
- accessList?: import("viem").AccessList | undefined;
2334
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2335
- blobs?: undefined | undefined;
2336
- blobVersionedHashes?: undefined | undefined;
2337
- gasPrice?: undefined | undefined;
2338
- maxFeePerBlobGas?: undefined | undefined;
2339
- maxFeePerGas?: bigint | undefined;
2340
- maxPriorityFeePerGas?: bigint | undefined;
2341
- sidecars?: undefined | undefined;
2342
- } | {
2343
- accessList?: import("viem").AccessList | undefined;
2344
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2345
- blobs?: undefined | undefined;
2346
- blobVersionedHashes?: undefined | undefined;
2347
- gasPrice?: undefined | undefined;
2348
- maxFeePerBlobGas?: undefined | undefined;
2349
- maxFeePerGas?: bigint | undefined;
2350
- maxPriorityFeePerGas?: bigint | undefined;
2351
- sidecars?: undefined | undefined;
2352
- }) & {
2353
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2354
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_8 extends "legacy" ? import("viem").TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
2355
- accessList?: undefined | undefined;
2356
- authorizationList?: undefined | undefined;
2357
- blobs?: undefined | undefined;
2358
- blobVersionedHashes?: undefined | undefined;
2359
- gasPrice?: bigint | undefined;
2360
- sidecars?: undefined | undefined;
2361
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2362
- accessList?: import("viem").AccessList | undefined;
2363
- authorizationList?: undefined | undefined;
2364
- blobs?: undefined | undefined;
2365
- blobVersionedHashes?: undefined | undefined;
2366
- gasPrice?: undefined | undefined;
2367
- maxFeePerBlobGas?: undefined | undefined;
2368
- maxFeePerGas?: bigint | undefined;
2369
- maxPriorityFeePerGas?: bigint | undefined;
2370
- sidecars?: undefined | undefined;
2371
- } & (import("viem").OneOf<{
2372
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2373
- } | {
2374
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2375
- }, import("viem").FeeValuesEIP1559> & {
2376
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2377
- }) ? "eip1559" : never) | (request extends {
2378
- accessList?: import("viem").AccessList | undefined;
2379
- authorizationList?: undefined | undefined;
2380
- blobs?: undefined | undefined;
2381
- blobVersionedHashes?: undefined | undefined;
2382
- gasPrice?: bigint | undefined;
2383
- sidecars?: undefined | undefined;
2384
- maxFeePerBlobGas?: undefined | undefined;
2385
- maxFeePerGas?: undefined | undefined;
2386
- maxPriorityFeePerGas?: undefined | undefined;
2387
- } & {
2388
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2389
- } ? "eip2930" : never) | (request extends ({
2390
- accessList?: import("viem").AccessList | undefined;
2391
- authorizationList?: undefined | undefined;
2392
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2393
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2394
- maxFeePerBlobGas?: bigint | undefined;
2395
- maxFeePerGas?: bigint | undefined;
2396
- maxPriorityFeePerGas?: bigint | undefined;
2397
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2398
- } | {
2399
- accessList?: import("viem").AccessList | undefined;
2400
- authorizationList?: undefined | undefined;
2401
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2402
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2403
- maxFeePerBlobGas?: bigint | undefined;
2404
- maxFeePerGas?: bigint | undefined;
2405
- maxPriorityFeePerGas?: bigint | undefined;
2406
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2407
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2408
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2409
- } | {
2410
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2411
- } | {
2412
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2413
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2414
- accessList?: import("viem").AccessList | undefined;
2415
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2416
- blobs?: undefined | undefined;
2417
- blobVersionedHashes?: undefined | undefined;
2418
- gasPrice?: undefined | undefined;
2419
- maxFeePerBlobGas?: undefined | undefined;
2420
- maxFeePerGas?: bigint | undefined;
2421
- maxPriorityFeePerGas?: bigint | undefined;
2422
- sidecars?: undefined | undefined;
2423
- } | {
2424
- accessList?: import("viem").AccessList | undefined;
2425
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2426
- blobs?: undefined | undefined;
2427
- blobVersionedHashes?: undefined | undefined;
2428
- gasPrice?: undefined | undefined;
2429
- maxFeePerBlobGas?: undefined | undefined;
2430
- maxFeePerGas?: bigint | undefined;
2431
- maxPriorityFeePerGas?: bigint | undefined;
2432
- sidecars?: undefined | undefined;
2433
- }) & {
2434
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2435
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2436
- accessList?: undefined | undefined;
2437
- authorizationList?: undefined | undefined;
2438
- blobs?: undefined | undefined;
2439
- blobVersionedHashes?: undefined | undefined;
2440
- gasPrice?: bigint | undefined;
2441
- sidecars?: undefined | undefined;
2442
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2443
- accessList?: import("viem").AccessList | undefined;
2444
- authorizationList?: undefined | undefined;
2445
- blobs?: undefined | undefined;
2446
- blobVersionedHashes?: undefined | undefined;
2447
- gasPrice?: undefined | undefined;
2448
- maxFeePerBlobGas?: undefined | undefined;
2449
- maxFeePerGas?: bigint | undefined;
2450
- maxPriorityFeePerGas?: bigint | undefined;
2451
- sidecars?: undefined | undefined;
2452
- } & (import("viem").OneOf<{
2453
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2454
- } | {
2455
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2456
- }, import("viem").FeeValuesEIP1559> & {
2457
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2458
- }) ? "eip1559" : never) | (request extends {
2459
- accessList?: import("viem").AccessList | undefined;
2460
- authorizationList?: undefined | undefined;
2461
- blobs?: undefined | undefined;
2462
- blobVersionedHashes?: undefined | undefined;
2463
- gasPrice?: bigint | undefined;
2464
- sidecars?: undefined | undefined;
2465
- maxFeePerBlobGas?: undefined | undefined;
2466
- maxFeePerGas?: undefined | undefined;
2467
- maxPriorityFeePerGas?: undefined | undefined;
2468
- } & {
2469
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2470
- } ? "eip2930" : never) | (request extends ({
2471
- accessList?: import("viem").AccessList | undefined;
2472
- authorizationList?: undefined | undefined;
2473
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2474
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2475
- maxFeePerBlobGas?: bigint | undefined;
2476
- maxFeePerGas?: bigint | undefined;
2477
- maxPriorityFeePerGas?: bigint | undefined;
2478
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2479
- } | {
2480
- accessList?: import("viem").AccessList | undefined;
2481
- authorizationList?: undefined | undefined;
2482
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2483
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2484
- maxFeePerBlobGas?: bigint | undefined;
2485
- maxFeePerGas?: bigint | undefined;
2486
- maxPriorityFeePerGas?: bigint | undefined;
2487
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2488
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2489
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2490
- } | {
2491
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2492
- } | {
2493
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2494
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2495
- accessList?: import("viem").AccessList | undefined;
2496
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2497
- blobs?: undefined | undefined;
2498
- blobVersionedHashes?: undefined | undefined;
2499
- gasPrice?: undefined | undefined;
2500
- maxFeePerBlobGas?: undefined | undefined;
2501
- maxFeePerGas?: bigint | undefined;
2502
- maxPriorityFeePerGas?: bigint | undefined;
2503
- sidecars?: undefined | undefined;
2504
- } | {
2505
- accessList?: import("viem").AccessList | undefined;
2506
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2507
- blobs?: undefined | undefined;
2508
- blobVersionedHashes?: undefined | undefined;
2509
- gasPrice?: undefined | undefined;
2510
- maxFeePerBlobGas?: undefined | undefined;
2511
- maxFeePerGas?: bigint | undefined;
2512
- maxPriorityFeePerGas?: bigint | undefined;
2513
- sidecars?: undefined | undefined;
2514
- }) & {
2515
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2516
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_9 ? T_9 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
2517
- accessList?: undefined | undefined;
2518
- authorizationList?: undefined | undefined;
2519
- blobs?: undefined | undefined;
2520
- blobVersionedHashes?: undefined | undefined;
2521
- gasPrice?: bigint | undefined;
2522
- sidecars?: undefined | undefined;
2523
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2524
- accessList?: import("viem").AccessList | undefined;
2525
- authorizationList?: undefined | undefined;
2526
- blobs?: undefined | undefined;
2527
- blobVersionedHashes?: undefined | undefined;
2528
- gasPrice?: undefined | undefined;
2529
- maxFeePerBlobGas?: undefined | undefined;
2530
- maxFeePerGas?: bigint | undefined;
2531
- maxPriorityFeePerGas?: bigint | undefined;
2532
- sidecars?: undefined | undefined;
2533
- } & (import("viem").OneOf<{
2534
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2535
- } | {
2536
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2537
- }, import("viem").FeeValuesEIP1559> & {
2538
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2539
- }) ? "eip1559" : never) | (request extends {
2540
- accessList?: import("viem").AccessList | undefined;
2541
- authorizationList?: undefined | undefined;
2542
- blobs?: undefined | undefined;
2543
- blobVersionedHashes?: undefined | undefined;
2544
- gasPrice?: bigint | undefined;
2545
- sidecars?: undefined | undefined;
2546
- maxFeePerBlobGas?: undefined | undefined;
2547
- maxFeePerGas?: undefined | undefined;
2548
- maxPriorityFeePerGas?: undefined | undefined;
2549
- } & {
2550
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2551
- } ? "eip2930" : never) | (request extends ({
2552
- accessList?: import("viem").AccessList | undefined;
2553
- authorizationList?: undefined | undefined;
2554
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2555
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2556
- maxFeePerBlobGas?: bigint | undefined;
2557
- maxFeePerGas?: bigint | undefined;
2558
- maxPriorityFeePerGas?: bigint | undefined;
2559
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2560
- } | {
2561
- accessList?: import("viem").AccessList | undefined;
2562
- authorizationList?: undefined | undefined;
2563
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2564
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2565
- maxFeePerBlobGas?: bigint | undefined;
2566
- maxFeePerGas?: bigint | undefined;
2567
- maxPriorityFeePerGas?: bigint | undefined;
2568
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2569
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2570
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2571
- } | {
2572
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2573
- } | {
2574
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2575
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2576
- accessList?: import("viem").AccessList | undefined;
2577
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2578
- blobs?: undefined | undefined;
2579
- blobVersionedHashes?: undefined | undefined;
2580
- gasPrice?: undefined | undefined;
2581
- maxFeePerBlobGas?: undefined | undefined;
2582
- maxFeePerGas?: bigint | undefined;
2583
- maxPriorityFeePerGas?: bigint | undefined;
2584
- sidecars?: undefined | undefined;
2585
- } | {
2586
- accessList?: import("viem").AccessList | undefined;
2587
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2588
- blobs?: undefined | undefined;
2589
- blobVersionedHashes?: undefined | undefined;
2590
- gasPrice?: undefined | undefined;
2591
- maxFeePerBlobGas?: undefined | undefined;
2592
- maxFeePerGas?: bigint | undefined;
2593
- maxPriorityFeePerGas?: bigint | undefined;
2594
- sidecars?: undefined | undefined;
2595
- }) & {
2596
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2597
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2598
- accessList?: undefined | undefined;
2599
- authorizationList?: undefined | undefined;
2600
- blobs?: undefined | undefined;
2601
- blobVersionedHashes?: undefined | undefined;
2602
- gasPrice?: bigint | undefined;
2603
- sidecars?: undefined | undefined;
2604
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2605
- accessList?: import("viem").AccessList | undefined;
2606
- authorizationList?: undefined | undefined;
2607
- blobs?: undefined | undefined;
2608
- blobVersionedHashes?: undefined | undefined;
2609
- gasPrice?: undefined | undefined;
2610
- maxFeePerBlobGas?: undefined | undefined;
2611
- maxFeePerGas?: bigint | undefined;
2612
- maxPriorityFeePerGas?: bigint | undefined;
2613
- sidecars?: undefined | undefined;
2614
- } & (import("viem").OneOf<{
2615
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2616
- } | {
2617
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2618
- }, import("viem").FeeValuesEIP1559> & {
2619
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2620
- }) ? "eip1559" : never) | (request extends {
2621
- accessList?: import("viem").AccessList | undefined;
2622
- authorizationList?: undefined | undefined;
2623
- blobs?: undefined | undefined;
2624
- blobVersionedHashes?: undefined | undefined;
2625
- gasPrice?: bigint | undefined;
2626
- sidecars?: undefined | undefined;
2627
- maxFeePerBlobGas?: undefined | undefined;
2628
- maxFeePerGas?: undefined | undefined;
2629
- maxPriorityFeePerGas?: undefined | undefined;
2630
- } & {
2631
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2632
- } ? "eip2930" : never) | (request extends ({
2633
- accessList?: import("viem").AccessList | undefined;
2634
- authorizationList?: undefined | undefined;
2635
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2636
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2637
- maxFeePerBlobGas?: bigint | undefined;
2638
- maxFeePerGas?: bigint | undefined;
2639
- maxPriorityFeePerGas?: bigint | undefined;
2640
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2641
- } | {
2642
- accessList?: import("viem").AccessList | undefined;
2643
- authorizationList?: undefined | undefined;
2644
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2645
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2646
- maxFeePerBlobGas?: bigint | undefined;
2647
- maxFeePerGas?: bigint | undefined;
2648
- maxPriorityFeePerGas?: bigint | undefined;
2649
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2650
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2651
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2652
- } | {
2653
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2654
- } | {
2655
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2656
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2657
- accessList?: import("viem").AccessList | undefined;
2658
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2659
- blobs?: undefined | undefined;
2660
- blobVersionedHashes?: undefined | undefined;
2661
- gasPrice?: undefined | undefined;
2662
- maxFeePerBlobGas?: undefined | undefined;
2663
- maxFeePerGas?: bigint | undefined;
2664
- maxPriorityFeePerGas?: bigint | undefined;
2665
- sidecars?: undefined | undefined;
2666
- } | {
2667
- accessList?: import("viem").AccessList | undefined;
2668
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2669
- blobs?: undefined | undefined;
2670
- blobVersionedHashes?: undefined | undefined;
2671
- gasPrice?: undefined | undefined;
2672
- maxFeePerBlobGas?: undefined | undefined;
2673
- maxFeePerGas?: bigint | undefined;
2674
- maxPriorityFeePerGas?: bigint | undefined;
2675
- sidecars?: undefined | undefined;
2676
- }) & {
2677
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2678
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_9 extends "eip1559" ? import("viem").TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
2679
- accessList?: undefined | undefined;
2680
- authorizationList?: undefined | undefined;
2681
- blobs?: undefined | undefined;
2682
- blobVersionedHashes?: undefined | undefined;
2683
- gasPrice?: bigint | undefined;
2684
- sidecars?: undefined | undefined;
2685
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2686
- accessList?: import("viem").AccessList | undefined;
2687
- authorizationList?: undefined | undefined;
2688
- blobs?: undefined | undefined;
2689
- blobVersionedHashes?: undefined | undefined;
2690
- gasPrice?: undefined | undefined;
2691
- maxFeePerBlobGas?: undefined | undefined;
2692
- maxFeePerGas?: bigint | undefined;
2693
- maxPriorityFeePerGas?: bigint | undefined;
2694
- sidecars?: undefined | undefined;
2695
- } & (import("viem").OneOf<{
2696
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2697
- } | {
2698
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2699
- }, import("viem").FeeValuesEIP1559> & {
2700
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2701
- }) ? "eip1559" : never) | (request extends {
2702
- accessList?: import("viem").AccessList | undefined;
2703
- authorizationList?: undefined | undefined;
2704
- blobs?: undefined | undefined;
2705
- blobVersionedHashes?: undefined | undefined;
2706
- gasPrice?: bigint | undefined;
2707
- sidecars?: undefined | undefined;
2708
- maxFeePerBlobGas?: undefined | undefined;
2709
- maxFeePerGas?: undefined | undefined;
2710
- maxPriorityFeePerGas?: undefined | undefined;
2711
- } & {
2712
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2713
- } ? "eip2930" : never) | (request extends ({
2714
- accessList?: import("viem").AccessList | undefined;
2715
- authorizationList?: undefined | undefined;
2716
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2717
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2718
- maxFeePerBlobGas?: bigint | undefined;
2719
- maxFeePerGas?: bigint | undefined;
2720
- maxPriorityFeePerGas?: bigint | undefined;
2721
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2722
- } | {
2723
- accessList?: import("viem").AccessList | undefined;
2724
- authorizationList?: undefined | undefined;
2725
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2726
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2727
- maxFeePerBlobGas?: bigint | undefined;
2728
- maxFeePerGas?: bigint | undefined;
2729
- maxPriorityFeePerGas?: bigint | undefined;
2730
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2731
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2732
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2733
- } | {
2734
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2735
- } | {
2736
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2737
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2738
- accessList?: import("viem").AccessList | undefined;
2739
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2740
- blobs?: undefined | undefined;
2741
- blobVersionedHashes?: undefined | undefined;
2742
- gasPrice?: undefined | undefined;
2743
- maxFeePerBlobGas?: undefined | undefined;
2744
- maxFeePerGas?: bigint | undefined;
2745
- maxPriorityFeePerGas?: bigint | undefined;
2746
- sidecars?: undefined | undefined;
2747
- } | {
2748
- accessList?: import("viem").AccessList | undefined;
2749
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2750
- blobs?: undefined | undefined;
2751
- blobVersionedHashes?: undefined | undefined;
2752
- gasPrice?: undefined | undefined;
2753
- maxFeePerBlobGas?: undefined | undefined;
2754
- maxFeePerGas?: bigint | undefined;
2755
- maxPriorityFeePerGas?: bigint | undefined;
2756
- sidecars?: undefined | undefined;
2757
- }) & {
2758
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2759
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2760
- accessList?: undefined | undefined;
2761
- authorizationList?: undefined | undefined;
2762
- blobs?: undefined | undefined;
2763
- blobVersionedHashes?: undefined | undefined;
2764
- gasPrice?: bigint | undefined;
2765
- sidecars?: undefined | undefined;
2766
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2767
- accessList?: import("viem").AccessList | undefined;
2768
- authorizationList?: undefined | undefined;
2769
- blobs?: undefined | undefined;
2770
- blobVersionedHashes?: undefined | undefined;
2771
- gasPrice?: undefined | undefined;
2772
- maxFeePerBlobGas?: undefined | undefined;
2773
- maxFeePerGas?: bigint | undefined;
2774
- maxPriorityFeePerGas?: bigint | undefined;
2775
- sidecars?: undefined | undefined;
2776
- } & (import("viem").OneOf<{
2777
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2778
- } | {
2779
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2780
- }, import("viem").FeeValuesEIP1559> & {
2781
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2782
- }) ? "eip1559" : never) | (request extends {
2783
- accessList?: import("viem").AccessList | undefined;
2784
- authorizationList?: undefined | undefined;
2785
- blobs?: undefined | undefined;
2786
- blobVersionedHashes?: undefined | undefined;
2787
- gasPrice?: bigint | undefined;
2788
- sidecars?: undefined | undefined;
2789
- maxFeePerBlobGas?: undefined | undefined;
2790
- maxFeePerGas?: undefined | undefined;
2791
- maxPriorityFeePerGas?: undefined | undefined;
2792
- } & {
2793
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2794
- } ? "eip2930" : never) | (request extends ({
2795
- accessList?: import("viem").AccessList | undefined;
2796
- authorizationList?: undefined | undefined;
2797
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2798
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2799
- maxFeePerBlobGas?: bigint | undefined;
2800
- maxFeePerGas?: bigint | undefined;
2801
- maxPriorityFeePerGas?: bigint | undefined;
2802
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2803
- } | {
2804
- accessList?: import("viem").AccessList | undefined;
2805
- authorizationList?: undefined | undefined;
2806
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2807
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2808
- maxFeePerBlobGas?: bigint | undefined;
2809
- maxFeePerGas?: bigint | undefined;
2810
- maxPriorityFeePerGas?: bigint | undefined;
2811
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2812
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2813
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2814
- } | {
2815
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2816
- } | {
2817
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2818
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2819
- accessList?: import("viem").AccessList | undefined;
2820
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2821
- blobs?: undefined | undefined;
2822
- blobVersionedHashes?: undefined | undefined;
2823
- gasPrice?: undefined | undefined;
2824
- maxFeePerBlobGas?: undefined | undefined;
2825
- maxFeePerGas?: bigint | undefined;
2826
- maxPriorityFeePerGas?: bigint | undefined;
2827
- sidecars?: undefined | undefined;
2828
- } | {
2829
- accessList?: import("viem").AccessList | undefined;
2830
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2831
- blobs?: undefined | undefined;
2832
- blobVersionedHashes?: undefined | undefined;
2833
- gasPrice?: undefined | undefined;
2834
- maxFeePerBlobGas?: undefined | undefined;
2835
- maxFeePerGas?: bigint | undefined;
2836
- maxPriorityFeePerGas?: bigint | undefined;
2837
- sidecars?: undefined | undefined;
2838
- }) & {
2839
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2840
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_10 ? T_10 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
2841
- accessList?: undefined | undefined;
2842
- authorizationList?: undefined | undefined;
2843
- blobs?: undefined | undefined;
2844
- blobVersionedHashes?: undefined | undefined;
2845
- gasPrice?: bigint | undefined;
2846
- sidecars?: undefined | undefined;
2847
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2848
- accessList?: import("viem").AccessList | undefined;
2849
- authorizationList?: undefined | undefined;
2850
- blobs?: undefined | undefined;
2851
- blobVersionedHashes?: undefined | undefined;
2852
- gasPrice?: undefined | undefined;
2853
- maxFeePerBlobGas?: undefined | undefined;
2854
- maxFeePerGas?: bigint | undefined;
2855
- maxPriorityFeePerGas?: bigint | undefined;
2856
- sidecars?: undefined | undefined;
2857
- } & (import("viem").OneOf<{
2858
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2859
- } | {
2860
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2861
- }, import("viem").FeeValuesEIP1559> & {
2862
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2863
- }) ? "eip1559" : never) | (request extends {
2864
- accessList?: import("viem").AccessList | undefined;
2865
- authorizationList?: undefined | undefined;
2866
- blobs?: undefined | undefined;
2867
- blobVersionedHashes?: undefined | undefined;
2868
- gasPrice?: bigint | undefined;
2869
- sidecars?: undefined | undefined;
2870
- maxFeePerBlobGas?: undefined | undefined;
2871
- maxFeePerGas?: undefined | undefined;
2872
- maxPriorityFeePerGas?: undefined | undefined;
2873
- } & {
2874
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2875
- } ? "eip2930" : never) | (request extends ({
2876
- accessList?: import("viem").AccessList | undefined;
2877
- authorizationList?: undefined | undefined;
2878
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2879
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2880
- maxFeePerBlobGas?: bigint | undefined;
2881
- maxFeePerGas?: bigint | undefined;
2882
- maxPriorityFeePerGas?: bigint | undefined;
2883
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2884
- } | {
2885
- accessList?: import("viem").AccessList | undefined;
2886
- authorizationList?: undefined | undefined;
2887
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2888
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2889
- maxFeePerBlobGas?: bigint | undefined;
2890
- maxFeePerGas?: bigint | undefined;
2891
- maxPriorityFeePerGas?: bigint | undefined;
2892
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2893
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2894
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2895
- } | {
2896
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2897
- } | {
2898
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2899
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2900
- accessList?: import("viem").AccessList | undefined;
2901
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2902
- blobs?: undefined | undefined;
2903
- blobVersionedHashes?: undefined | undefined;
2904
- gasPrice?: undefined | undefined;
2905
- maxFeePerBlobGas?: undefined | undefined;
2906
- maxFeePerGas?: bigint | undefined;
2907
- maxPriorityFeePerGas?: bigint | undefined;
2908
- sidecars?: undefined | undefined;
2909
- } | {
2910
- accessList?: import("viem").AccessList | undefined;
2911
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2912
- blobs?: undefined | undefined;
2913
- blobVersionedHashes?: undefined | undefined;
2914
- gasPrice?: undefined | undefined;
2915
- maxFeePerBlobGas?: undefined | undefined;
2916
- maxFeePerGas?: bigint | undefined;
2917
- maxPriorityFeePerGas?: bigint | undefined;
2918
- sidecars?: undefined | undefined;
2919
- }) & {
2920
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2921
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2922
- accessList?: undefined | undefined;
2923
- authorizationList?: undefined | undefined;
2924
- blobs?: undefined | undefined;
2925
- blobVersionedHashes?: undefined | undefined;
2926
- gasPrice?: bigint | undefined;
2927
- sidecars?: undefined | undefined;
2928
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2929
- accessList?: import("viem").AccessList | undefined;
2930
- authorizationList?: undefined | undefined;
2931
- blobs?: undefined | undefined;
2932
- blobVersionedHashes?: undefined | undefined;
2933
- gasPrice?: undefined | undefined;
2934
- maxFeePerBlobGas?: undefined | undefined;
2935
- maxFeePerGas?: bigint | undefined;
2936
- maxPriorityFeePerGas?: bigint | undefined;
2937
- sidecars?: undefined | undefined;
2938
- } & (import("viem").OneOf<{
2939
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2940
- } | {
2941
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2942
- }, import("viem").FeeValuesEIP1559> & {
2943
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2944
- }) ? "eip1559" : never) | (request extends {
2945
- accessList?: import("viem").AccessList | undefined;
2946
- authorizationList?: undefined | undefined;
2947
- blobs?: undefined | undefined;
2948
- blobVersionedHashes?: undefined | undefined;
2949
- gasPrice?: bigint | undefined;
2950
- sidecars?: undefined | undefined;
2951
- maxFeePerBlobGas?: undefined | undefined;
2952
- maxFeePerGas?: undefined | undefined;
2953
- maxPriorityFeePerGas?: undefined | undefined;
2954
- } & {
2955
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2956
- } ? "eip2930" : never) | (request extends ({
2957
- accessList?: import("viem").AccessList | undefined;
2958
- authorizationList?: undefined | undefined;
2959
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2960
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2961
- maxFeePerBlobGas?: bigint | undefined;
2962
- maxFeePerGas?: bigint | undefined;
2963
- maxPriorityFeePerGas?: bigint | undefined;
2964
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2965
- } | {
2966
- accessList?: import("viem").AccessList | undefined;
2967
- authorizationList?: undefined | undefined;
2968
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2969
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2970
- maxFeePerBlobGas?: bigint | undefined;
2971
- maxFeePerGas?: bigint | undefined;
2972
- maxPriorityFeePerGas?: bigint | undefined;
2973
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2974
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2975
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2976
- } | {
2977
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2978
- } | {
2979
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2980
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2981
- accessList?: import("viem").AccessList | undefined;
2982
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2983
- blobs?: undefined | undefined;
2984
- blobVersionedHashes?: undefined | undefined;
2985
- gasPrice?: undefined | undefined;
2986
- maxFeePerBlobGas?: undefined | undefined;
2987
- maxFeePerGas?: bigint | undefined;
2988
- maxPriorityFeePerGas?: bigint | undefined;
2989
- sidecars?: undefined | undefined;
2990
- } | {
2991
- accessList?: import("viem").AccessList | undefined;
2992
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2993
- blobs?: undefined | undefined;
2994
- blobVersionedHashes?: undefined | undefined;
2995
- gasPrice?: undefined | undefined;
2996
- maxFeePerBlobGas?: undefined | undefined;
2997
- maxFeePerGas?: bigint | undefined;
2998
- maxPriorityFeePerGas?: bigint | undefined;
2999
- sidecars?: undefined | undefined;
3000
- }) & {
3001
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3002
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_10 extends "eip2930" ? import("viem").TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
3003
- accessList?: undefined | undefined;
3004
- authorizationList?: undefined | undefined;
3005
- blobs?: undefined | undefined;
3006
- blobVersionedHashes?: undefined | undefined;
3007
- gasPrice?: bigint | undefined;
3008
- sidecars?: undefined | undefined;
3009
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3010
- accessList?: import("viem").AccessList | undefined;
3011
- authorizationList?: undefined | undefined;
3012
- blobs?: undefined | undefined;
3013
- blobVersionedHashes?: undefined | undefined;
3014
- gasPrice?: undefined | undefined;
3015
- maxFeePerBlobGas?: undefined | undefined;
3016
- maxFeePerGas?: bigint | undefined;
3017
- maxPriorityFeePerGas?: bigint | undefined;
3018
- sidecars?: undefined | undefined;
3019
- } & (import("viem").OneOf<{
3020
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3021
- } | {
3022
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3023
- }, import("viem").FeeValuesEIP1559> & {
3024
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3025
- }) ? "eip1559" : never) | (request extends {
3026
- accessList?: import("viem").AccessList | undefined;
3027
- authorizationList?: undefined | undefined;
3028
- blobs?: undefined | undefined;
3029
- blobVersionedHashes?: undefined | undefined;
3030
- gasPrice?: bigint | undefined;
3031
- sidecars?: undefined | undefined;
3032
- maxFeePerBlobGas?: undefined | undefined;
3033
- maxFeePerGas?: undefined | undefined;
3034
- maxPriorityFeePerGas?: undefined | undefined;
3035
- } & {
3036
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3037
- } ? "eip2930" : never) | (request extends ({
3038
- accessList?: import("viem").AccessList | undefined;
3039
- authorizationList?: undefined | undefined;
3040
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3041
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3042
- maxFeePerBlobGas?: bigint | undefined;
3043
- maxFeePerGas?: bigint | undefined;
3044
- maxPriorityFeePerGas?: bigint | undefined;
3045
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3046
- } | {
3047
- accessList?: import("viem").AccessList | undefined;
3048
- authorizationList?: undefined | undefined;
3049
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3050
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3051
- maxFeePerBlobGas?: bigint | undefined;
3052
- maxFeePerGas?: bigint | undefined;
3053
- maxPriorityFeePerGas?: bigint | undefined;
3054
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3055
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3056
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3057
- } | {
3058
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3059
- } | {
3060
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3061
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3062
- accessList?: import("viem").AccessList | undefined;
3063
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3064
- blobs?: undefined | undefined;
3065
- blobVersionedHashes?: undefined | undefined;
3066
- gasPrice?: undefined | undefined;
3067
- maxFeePerBlobGas?: undefined | undefined;
3068
- maxFeePerGas?: bigint | undefined;
3069
- maxPriorityFeePerGas?: bigint | undefined;
3070
- sidecars?: undefined | undefined;
3071
- } | {
3072
- accessList?: import("viem").AccessList | undefined;
3073
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3074
- blobs?: undefined | undefined;
3075
- blobVersionedHashes?: undefined | undefined;
3076
- gasPrice?: undefined | undefined;
3077
- maxFeePerBlobGas?: undefined | undefined;
3078
- maxFeePerGas?: bigint | undefined;
3079
- maxPriorityFeePerGas?: bigint | undefined;
3080
- sidecars?: undefined | undefined;
3081
- }) & {
3082
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3083
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
3084
- accessList?: undefined | undefined;
3085
- authorizationList?: undefined | undefined;
3086
- blobs?: undefined | undefined;
3087
- blobVersionedHashes?: undefined | undefined;
3088
- gasPrice?: bigint | undefined;
3089
- sidecars?: undefined | undefined;
3090
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3091
- accessList?: import("viem").AccessList | undefined;
3092
- authorizationList?: undefined | undefined;
3093
- blobs?: undefined | undefined;
3094
- blobVersionedHashes?: undefined | undefined;
3095
- gasPrice?: undefined | undefined;
3096
- maxFeePerBlobGas?: undefined | undefined;
3097
- maxFeePerGas?: bigint | undefined;
3098
- maxPriorityFeePerGas?: bigint | undefined;
3099
- sidecars?: undefined | undefined;
3100
- } & (import("viem").OneOf<{
3101
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3102
- } | {
3103
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3104
- }, import("viem").FeeValuesEIP1559> & {
3105
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3106
- }) ? "eip1559" : never) | (request extends {
3107
- accessList?: import("viem").AccessList | undefined;
3108
- authorizationList?: undefined | undefined;
3109
- blobs?: undefined | undefined;
3110
- blobVersionedHashes?: undefined | undefined;
3111
- gasPrice?: bigint | undefined;
3112
- sidecars?: undefined | undefined;
3113
- maxFeePerBlobGas?: undefined | undefined;
3114
- maxFeePerGas?: undefined | undefined;
3115
- maxPriorityFeePerGas?: undefined | undefined;
3116
- } & {
3117
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3118
- } ? "eip2930" : never) | (request extends ({
3119
- accessList?: import("viem").AccessList | undefined;
3120
- authorizationList?: undefined | undefined;
3121
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3122
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3123
- maxFeePerBlobGas?: bigint | undefined;
3124
- maxFeePerGas?: bigint | undefined;
3125
- maxPriorityFeePerGas?: bigint | undefined;
3126
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3127
- } | {
3128
- accessList?: import("viem").AccessList | undefined;
3129
- authorizationList?: undefined | undefined;
3130
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3131
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3132
- maxFeePerBlobGas?: bigint | undefined;
3133
- maxFeePerGas?: bigint | undefined;
3134
- maxPriorityFeePerGas?: bigint | undefined;
3135
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3136
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3137
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3138
- } | {
3139
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3140
- } | {
3141
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3142
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3143
- accessList?: import("viem").AccessList | undefined;
3144
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3145
- blobs?: undefined | undefined;
3146
- blobVersionedHashes?: undefined | undefined;
3147
- gasPrice?: undefined | undefined;
3148
- maxFeePerBlobGas?: undefined | undefined;
3149
- maxFeePerGas?: bigint | undefined;
3150
- maxPriorityFeePerGas?: bigint | undefined;
3151
- sidecars?: undefined | undefined;
3152
- } | {
3153
- accessList?: import("viem").AccessList | undefined;
3154
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3155
- blobs?: undefined | undefined;
3156
- blobVersionedHashes?: undefined | undefined;
3157
- gasPrice?: undefined | undefined;
3158
- maxFeePerBlobGas?: undefined | undefined;
3159
- maxFeePerGas?: bigint | undefined;
3160
- maxPriorityFeePerGas?: bigint | undefined;
3161
- sidecars?: undefined | undefined;
3162
- }) & {
3163
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3164
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_11 ? T_11 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
3165
- accessList?: undefined | undefined;
3166
- authorizationList?: undefined | undefined;
3167
- blobs?: undefined | undefined;
3168
- blobVersionedHashes?: undefined | undefined;
3169
- gasPrice?: bigint | undefined;
3170
- sidecars?: undefined | undefined;
3171
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3172
- accessList?: import("viem").AccessList | undefined;
3173
- authorizationList?: undefined | undefined;
3174
- blobs?: undefined | undefined;
3175
- blobVersionedHashes?: undefined | undefined;
3176
- gasPrice?: undefined | undefined;
3177
- maxFeePerBlobGas?: undefined | undefined;
3178
- maxFeePerGas?: bigint | undefined;
3179
- maxPriorityFeePerGas?: bigint | undefined;
3180
- sidecars?: undefined | undefined;
3181
- } & (import("viem").OneOf<{
3182
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3183
- } | {
3184
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3185
- }, import("viem").FeeValuesEIP1559> & {
3186
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3187
- }) ? "eip1559" : never) | (request extends {
3188
- accessList?: import("viem").AccessList | undefined;
3189
- authorizationList?: undefined | undefined;
3190
- blobs?: undefined | undefined;
3191
- blobVersionedHashes?: undefined | undefined;
3192
- gasPrice?: bigint | undefined;
3193
- sidecars?: undefined | undefined;
3194
- maxFeePerBlobGas?: undefined | undefined;
3195
- maxFeePerGas?: undefined | undefined;
3196
- maxPriorityFeePerGas?: undefined | undefined;
3197
- } & {
3198
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3199
- } ? "eip2930" : never) | (request extends ({
3200
- accessList?: import("viem").AccessList | undefined;
3201
- authorizationList?: undefined | undefined;
3202
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3203
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3204
- maxFeePerBlobGas?: bigint | undefined;
3205
- maxFeePerGas?: bigint | undefined;
3206
- maxPriorityFeePerGas?: bigint | undefined;
3207
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3208
- } | {
3209
- accessList?: import("viem").AccessList | undefined;
3210
- authorizationList?: undefined | undefined;
3211
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3212
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3213
- maxFeePerBlobGas?: bigint | undefined;
3214
- maxFeePerGas?: bigint | undefined;
3215
- maxPriorityFeePerGas?: bigint | undefined;
3216
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3217
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3218
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3219
- } | {
3220
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3221
- } | {
3222
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3223
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3224
- accessList?: import("viem").AccessList | undefined;
3225
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3226
- blobs?: undefined | undefined;
3227
- blobVersionedHashes?: undefined | undefined;
3228
- gasPrice?: undefined | undefined;
3229
- maxFeePerBlobGas?: undefined | undefined;
3230
- maxFeePerGas?: bigint | undefined;
3231
- maxPriorityFeePerGas?: bigint | undefined;
3232
- sidecars?: undefined | undefined;
3233
- } | {
3234
- accessList?: import("viem").AccessList | undefined;
3235
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3236
- blobs?: undefined | undefined;
3237
- blobVersionedHashes?: undefined | undefined;
3238
- gasPrice?: undefined | undefined;
3239
- maxFeePerBlobGas?: undefined | undefined;
3240
- maxFeePerGas?: bigint | undefined;
3241
- maxPriorityFeePerGas?: bigint | undefined;
3242
- sidecars?: undefined | undefined;
3243
- }) & {
3244
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3245
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
3246
- accessList?: undefined | undefined;
3247
- authorizationList?: undefined | undefined;
3248
- blobs?: undefined | undefined;
3249
- blobVersionedHashes?: undefined | undefined;
3250
- gasPrice?: bigint | undefined;
3251
- sidecars?: undefined | undefined;
3252
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3253
- accessList?: import("viem").AccessList | undefined;
3254
- authorizationList?: undefined | undefined;
3255
- blobs?: undefined | undefined;
3256
- blobVersionedHashes?: undefined | undefined;
3257
- gasPrice?: undefined | undefined;
3258
- maxFeePerBlobGas?: undefined | undefined;
3259
- maxFeePerGas?: bigint | undefined;
3260
- maxPriorityFeePerGas?: bigint | undefined;
3261
- sidecars?: undefined | undefined;
3262
- } & (import("viem").OneOf<{
3263
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3264
- } | {
3265
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3266
- }, import("viem").FeeValuesEIP1559> & {
3267
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3268
- }) ? "eip1559" : never) | (request extends {
3269
- accessList?: import("viem").AccessList | undefined;
3270
- authorizationList?: undefined | undefined;
3271
- blobs?: undefined | undefined;
3272
- blobVersionedHashes?: undefined | undefined;
3273
- gasPrice?: bigint | undefined;
3274
- sidecars?: undefined | undefined;
3275
- maxFeePerBlobGas?: undefined | undefined;
3276
- maxFeePerGas?: undefined | undefined;
3277
- maxPriorityFeePerGas?: undefined | undefined;
3278
- } & {
3279
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3280
- } ? "eip2930" : never) | (request extends ({
3281
- accessList?: import("viem").AccessList | undefined;
3282
- authorizationList?: undefined | undefined;
3283
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3284
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3285
- maxFeePerBlobGas?: bigint | undefined;
3286
- maxFeePerGas?: bigint | undefined;
3287
- maxPriorityFeePerGas?: bigint | undefined;
3288
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3289
- } | {
3290
- accessList?: import("viem").AccessList | undefined;
3291
- authorizationList?: undefined | undefined;
3292
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3293
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3294
- maxFeePerBlobGas?: bigint | undefined;
3295
- maxFeePerGas?: bigint | undefined;
3296
- maxPriorityFeePerGas?: bigint | undefined;
3297
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3298
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3299
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3300
- } | {
3301
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3302
- } | {
3303
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3304
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3305
- accessList?: import("viem").AccessList | undefined;
3306
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3307
- blobs?: undefined | undefined;
3308
- blobVersionedHashes?: undefined | undefined;
3309
- gasPrice?: undefined | undefined;
3310
- maxFeePerBlobGas?: undefined | undefined;
3311
- maxFeePerGas?: bigint | undefined;
3312
- maxPriorityFeePerGas?: bigint | undefined;
3313
- sidecars?: undefined | undefined;
3314
- } | {
3315
- accessList?: import("viem").AccessList | undefined;
3316
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3317
- blobs?: undefined | undefined;
3318
- blobVersionedHashes?: undefined | undefined;
3319
- gasPrice?: undefined | undefined;
3320
- maxFeePerBlobGas?: undefined | undefined;
3321
- maxFeePerGas?: bigint | undefined;
3322
- maxPriorityFeePerGas?: bigint | undefined;
3323
- sidecars?: undefined | undefined;
3324
- }) & {
3325
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3326
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_11 extends "eip4844" ? import("viem").TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
3327
- accessList?: undefined | undefined;
3328
- authorizationList?: undefined | undefined;
3329
- blobs?: undefined | undefined;
3330
- blobVersionedHashes?: undefined | undefined;
3331
- gasPrice?: bigint | undefined;
3332
- sidecars?: undefined | undefined;
3333
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3334
- accessList?: import("viem").AccessList | undefined;
3335
- authorizationList?: undefined | undefined;
3336
- blobs?: undefined | undefined;
3337
- blobVersionedHashes?: undefined | undefined;
3338
- gasPrice?: undefined | undefined;
3339
- maxFeePerBlobGas?: undefined | undefined;
3340
- maxFeePerGas?: bigint | undefined;
3341
- maxPriorityFeePerGas?: bigint | undefined;
3342
- sidecars?: undefined | undefined;
3343
- } & (import("viem").OneOf<{
3344
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3345
- } | {
3346
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3347
- }, import("viem").FeeValuesEIP1559> & {
3348
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3349
- }) ? "eip1559" : never) | (request extends {
3350
- accessList?: import("viem").AccessList | undefined;
3351
- authorizationList?: undefined | undefined;
3352
- blobs?: undefined | undefined;
3353
- blobVersionedHashes?: undefined | undefined;
3354
- gasPrice?: bigint | undefined;
3355
- sidecars?: undefined | undefined;
3356
- maxFeePerBlobGas?: undefined | undefined;
3357
- maxFeePerGas?: undefined | undefined;
3358
- maxPriorityFeePerGas?: undefined | undefined;
3359
- } & {
3360
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3361
- } ? "eip2930" : never) | (request extends ({
3362
- accessList?: import("viem").AccessList | undefined;
3363
- authorizationList?: undefined | undefined;
3364
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3365
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3366
- maxFeePerBlobGas?: bigint | undefined;
3367
- maxFeePerGas?: bigint | undefined;
3368
- maxPriorityFeePerGas?: bigint | undefined;
3369
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3370
- } | {
3371
- accessList?: import("viem").AccessList | undefined;
3372
- authorizationList?: undefined | undefined;
3373
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3374
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3375
- maxFeePerBlobGas?: bigint | undefined;
3376
- maxFeePerGas?: bigint | undefined;
3377
- maxPriorityFeePerGas?: bigint | undefined;
3378
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3379
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3380
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3381
- } | {
3382
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3383
- } | {
3384
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3385
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3386
- accessList?: import("viem").AccessList | undefined;
3387
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3388
- blobs?: undefined | undefined;
3389
- blobVersionedHashes?: undefined | undefined;
3390
- gasPrice?: undefined | undefined;
3391
- maxFeePerBlobGas?: undefined | undefined;
3392
- maxFeePerGas?: bigint | undefined;
3393
- maxPriorityFeePerGas?: bigint | undefined;
3394
- sidecars?: undefined | undefined;
3395
- } | {
3396
- accessList?: import("viem").AccessList | undefined;
3397
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3398
- blobs?: undefined | undefined;
3399
- blobVersionedHashes?: undefined | undefined;
3400
- gasPrice?: undefined | undefined;
3401
- maxFeePerBlobGas?: undefined | undefined;
3402
- maxFeePerGas?: bigint | undefined;
3403
- maxPriorityFeePerGas?: bigint | undefined;
3404
- sidecars?: undefined | undefined;
3405
- }) & {
3406
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3407
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
3408
- accessList?: undefined | undefined;
3409
- authorizationList?: undefined | undefined;
3410
- blobs?: undefined | undefined;
3411
- blobVersionedHashes?: undefined | undefined;
3412
- gasPrice?: bigint | undefined;
3413
- sidecars?: undefined | undefined;
3414
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3415
- accessList?: import("viem").AccessList | undefined;
3416
- authorizationList?: undefined | undefined;
3417
- blobs?: undefined | undefined;
3418
- blobVersionedHashes?: undefined | undefined;
3419
- gasPrice?: undefined | undefined;
3420
- maxFeePerBlobGas?: undefined | undefined;
3421
- maxFeePerGas?: bigint | undefined;
3422
- maxPriorityFeePerGas?: bigint | undefined;
3423
- sidecars?: undefined | undefined;
3424
- } & (import("viem").OneOf<{
3425
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3426
- } | {
3427
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3428
- }, import("viem").FeeValuesEIP1559> & {
3429
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3430
- }) ? "eip1559" : never) | (request extends {
3431
- accessList?: import("viem").AccessList | undefined;
3432
- authorizationList?: undefined | undefined;
3433
- blobs?: undefined | undefined;
3434
- blobVersionedHashes?: undefined | undefined;
3435
- gasPrice?: bigint | undefined;
3436
- sidecars?: undefined | undefined;
3437
- maxFeePerBlobGas?: undefined | undefined;
3438
- maxFeePerGas?: undefined | undefined;
3439
- maxPriorityFeePerGas?: undefined | undefined;
3440
- } & {
3441
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3442
- } ? "eip2930" : never) | (request extends ({
3443
- accessList?: import("viem").AccessList | undefined;
3444
- authorizationList?: undefined | undefined;
3445
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3446
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3447
- maxFeePerBlobGas?: bigint | undefined;
3448
- maxFeePerGas?: bigint | undefined;
3449
- maxPriorityFeePerGas?: bigint | undefined;
3450
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3451
- } | {
3452
- accessList?: import("viem").AccessList | undefined;
3453
- authorizationList?: undefined | undefined;
3454
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3455
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3456
- maxFeePerBlobGas?: bigint | undefined;
3457
- maxFeePerGas?: bigint | undefined;
3458
- maxPriorityFeePerGas?: bigint | undefined;
3459
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3460
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3461
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3462
- } | {
3463
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3464
- } | {
3465
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3466
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3467
- accessList?: import("viem").AccessList | undefined;
3468
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3469
- blobs?: undefined | undefined;
3470
- blobVersionedHashes?: undefined | undefined;
3471
- gasPrice?: undefined | undefined;
3472
- maxFeePerBlobGas?: undefined | undefined;
3473
- maxFeePerGas?: bigint | undefined;
3474
- maxPriorityFeePerGas?: bigint | undefined;
3475
- sidecars?: undefined | undefined;
3476
- } | {
3477
- accessList?: import("viem").AccessList | undefined;
3478
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3479
- blobs?: undefined | undefined;
3480
- blobVersionedHashes?: undefined | undefined;
3481
- gasPrice?: undefined | undefined;
3482
- maxFeePerBlobGas?: undefined | undefined;
3483
- maxFeePerGas?: bigint | undefined;
3484
- maxPriorityFeePerGas?: bigint | undefined;
3485
- sidecars?: undefined | undefined;
3486
- }) & {
3487
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3488
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_12 ? T_12 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
3489
- accessList?: undefined | undefined;
3490
- authorizationList?: undefined | undefined;
3491
- blobs?: undefined | undefined;
3492
- blobVersionedHashes?: undefined | undefined;
3493
- gasPrice?: bigint | undefined;
3494
- sidecars?: undefined | undefined;
3495
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3496
- accessList?: import("viem").AccessList | undefined;
3497
- authorizationList?: undefined | undefined;
3498
- blobs?: undefined | undefined;
3499
- blobVersionedHashes?: undefined | undefined;
3500
- gasPrice?: undefined | undefined;
3501
- maxFeePerBlobGas?: undefined | undefined;
3502
- maxFeePerGas?: bigint | undefined;
3503
- maxPriorityFeePerGas?: bigint | undefined;
3504
- sidecars?: undefined | undefined;
3505
- } & (import("viem").OneOf<{
3506
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3507
- } | {
3508
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3509
- }, import("viem").FeeValuesEIP1559> & {
3510
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3511
- }) ? "eip1559" : never) | (request extends {
3512
- accessList?: import("viem").AccessList | undefined;
3513
- authorizationList?: undefined | undefined;
3514
- blobs?: undefined | undefined;
3515
- blobVersionedHashes?: undefined | undefined;
3516
- gasPrice?: bigint | undefined;
3517
- sidecars?: undefined | undefined;
3518
- maxFeePerBlobGas?: undefined | undefined;
3519
- maxFeePerGas?: undefined | undefined;
3520
- maxPriorityFeePerGas?: undefined | undefined;
3521
- } & {
3522
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3523
- } ? "eip2930" : never) | (request extends ({
3524
- accessList?: import("viem").AccessList | undefined;
3525
- authorizationList?: undefined | undefined;
3526
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3527
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3528
- maxFeePerBlobGas?: bigint | undefined;
3529
- maxFeePerGas?: bigint | undefined;
3530
- maxPriorityFeePerGas?: bigint | undefined;
3531
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3532
- } | {
3533
- accessList?: import("viem").AccessList | undefined;
3534
- authorizationList?: undefined | undefined;
3535
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3536
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3537
- maxFeePerBlobGas?: bigint | undefined;
3538
- maxFeePerGas?: bigint | undefined;
3539
- maxPriorityFeePerGas?: bigint | undefined;
3540
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3541
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3542
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3543
- } | {
3544
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3545
- } | {
3546
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3547
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3548
- accessList?: import("viem").AccessList | undefined;
3549
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3550
- blobs?: undefined | undefined;
3551
- blobVersionedHashes?: undefined | undefined;
3552
- gasPrice?: undefined | undefined;
3553
- maxFeePerBlobGas?: undefined | undefined;
3554
- maxFeePerGas?: bigint | undefined;
3555
- maxPriorityFeePerGas?: bigint | undefined;
3556
- sidecars?: undefined | undefined;
3557
- } | {
3558
- accessList?: import("viem").AccessList | undefined;
3559
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3560
- blobs?: undefined | undefined;
3561
- blobVersionedHashes?: undefined | undefined;
3562
- gasPrice?: undefined | undefined;
3563
- maxFeePerBlobGas?: undefined | undefined;
3564
- maxFeePerGas?: bigint | undefined;
3565
- maxPriorityFeePerGas?: bigint | undefined;
3566
- sidecars?: undefined | undefined;
3567
- }) & {
3568
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3569
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
3570
- accessList?: undefined | undefined;
3571
- authorizationList?: undefined | undefined;
3572
- blobs?: undefined | undefined;
3573
- blobVersionedHashes?: undefined | undefined;
3574
- gasPrice?: bigint | undefined;
3575
- sidecars?: undefined | undefined;
3576
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3577
- accessList?: import("viem").AccessList | undefined;
3578
- authorizationList?: undefined | undefined;
3579
- blobs?: undefined | undefined;
3580
- blobVersionedHashes?: undefined | undefined;
3581
- gasPrice?: undefined | undefined;
3582
- maxFeePerBlobGas?: undefined | undefined;
3583
- maxFeePerGas?: bigint | undefined;
3584
- maxPriorityFeePerGas?: bigint | undefined;
3585
- sidecars?: undefined | undefined;
3586
- } & (import("viem").OneOf<{
3587
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3588
- } | {
3589
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3590
- }, import("viem").FeeValuesEIP1559> & {
3591
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3592
- }) ? "eip1559" : never) | (request extends {
3593
- accessList?: import("viem").AccessList | undefined;
3594
- authorizationList?: undefined | undefined;
3595
- blobs?: undefined | undefined;
3596
- blobVersionedHashes?: undefined | undefined;
3597
- gasPrice?: bigint | undefined;
3598
- sidecars?: undefined | undefined;
3599
- maxFeePerBlobGas?: undefined | undefined;
3600
- maxFeePerGas?: undefined | undefined;
3601
- maxPriorityFeePerGas?: undefined | undefined;
3602
- } & {
3603
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3604
- } ? "eip2930" : never) | (request extends ({
3605
- accessList?: import("viem").AccessList | undefined;
3606
- authorizationList?: undefined | undefined;
3607
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3608
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3609
- maxFeePerBlobGas?: bigint | undefined;
3610
- maxFeePerGas?: bigint | undefined;
3611
- maxPriorityFeePerGas?: bigint | undefined;
3612
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3613
- } | {
3614
- accessList?: import("viem").AccessList | undefined;
3615
- authorizationList?: undefined | undefined;
3616
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3617
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3618
- maxFeePerBlobGas?: bigint | undefined;
3619
- maxFeePerGas?: bigint | undefined;
3620
- maxPriorityFeePerGas?: bigint | undefined;
3621
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3622
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3623
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3624
- } | {
3625
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3626
- } | {
3627
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3628
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3629
- accessList?: import("viem").AccessList | undefined;
3630
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3631
- blobs?: undefined | undefined;
3632
- blobVersionedHashes?: undefined | undefined;
3633
- gasPrice?: undefined | undefined;
3634
- maxFeePerBlobGas?: undefined | undefined;
3635
- maxFeePerGas?: bigint | undefined;
3636
- maxPriorityFeePerGas?: bigint | undefined;
3637
- sidecars?: undefined | undefined;
3638
- } | {
3639
- accessList?: import("viem").AccessList | undefined;
3640
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
3641
- blobs?: undefined | undefined;
3642
- blobVersionedHashes?: undefined | undefined;
3643
- gasPrice?: undefined | undefined;
3644
- maxFeePerBlobGas?: undefined | undefined;
3645
- maxFeePerGas?: bigint | undefined;
3646
- maxPriorityFeePerGas?: bigint | undefined;
3647
- sidecars?: undefined | undefined;
3648
- }) & {
3649
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3650
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
3651
- chainId?: number | undefined;
3652
- }, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "fees" | "chainId") ? 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>;
3653
- readContract: <const abi extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "pure" | "view">, const args extends import("viem").ContractFunctionArgs<abi, "pure" | "view", functionName>>(args: import("viem").ReadContractParameters<abi, functionName, args>) => Promise<import("viem").ReadContractReturnType<abi, functionName, args>>;
3654
- sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<import("viem").SendRawTransactionReturnType>;
3655
- sendRawTransactionSync: (args: import("viem").SendRawTransactionSyncParameters) => Promise<TransactionReceipt>;
3656
- simulate: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
3657
- simulateBlocks: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
3658
- simulateCalls: <const calls extends readonly unknown[]>(args: import("viem").SimulateCallsParameters<calls>) => Promise<import("viem").SimulateCallsReturnType<calls>>;
3659
- simulateContract: <const abi extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends import("viem").Chain | undefined, accountOverride extends import("viem").Account | Address | undefined = undefined>(args: import("viem").SimulateContractParameters<abi, functionName, args_1, undefined, chainOverride, accountOverride>) => Promise<import("viem").SimulateContractReturnType<abi, functionName, args_1, undefined, import("viem").Account | undefined, chainOverride, accountOverride>>;
3660
- verifyHash: (args: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>;
3661
- verifyMessage: (args: import("viem").VerifyMessageActionParameters) => Promise<import("viem").VerifyMessageActionReturnType>;
3662
- verifySiweMessage: (args: import("viem/_types/actions/siwe/verifySiweMessage").VerifySiweMessageParameters) => Promise<import("viem/_types/actions/siwe/verifySiweMessage").VerifySiweMessageReturnType>;
3663
- verifyTypedData: (args: import("viem").VerifyTypedDataActionParameters) => Promise<import("viem").VerifyTypedDataActionReturnType>;
3664
- uninstallFilter: (args: import("viem").UninstallFilterParameters) => Promise<import("viem").UninstallFilterReturnType>;
3665
- waitForTransactionReceipt: (args: import("viem").WaitForTransactionReceiptParameters<undefined>) => Promise<TransactionReceipt>;
3666
- watchBlockNumber: (args: import("viem").WatchBlockNumberParameters) => import("viem").WatchBlockNumberReturnType;
3667
- watchBlocks: <includeTransactions extends boolean = false, blockTag extends import("viem").BlockTag = "latest">(args: import("viem").WatchBlocksParameters<import("viem").HttpTransport<undefined, false>, undefined, includeTransactions, blockTag>) => import("viem").WatchBlocksReturnType;
3668
- watchContractEvent: <const abi extends import("viem").Abi | readonly unknown[], eventName extends import("viem").ContractEventName<abi>, strict extends boolean | undefined = undefined>(args: import("viem").WatchContractEventParameters<abi, eventName, strict, import("viem").HttpTransport<undefined, false>>) => import("viem").WatchContractEventReturnType;
3669
- watchEvent: <const abiEvent extends import("viem").AbiEvent | undefined = undefined, const abiEvents extends readonly import("viem").AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import("viem").AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined>(args: import("viem").WatchEventParameters<abiEvent, abiEvents, strict, import("viem").HttpTransport<undefined, false>>) => import("viem").WatchEventReturnType;
3670
- watchPendingTransactions: (args: import("viem").WatchPendingTransactionsParameters<import("viem").HttpTransport<undefined, false>>) => import("viem").WatchPendingTransactionsReturnType;
3671
- extend: <const client extends {
3672
- [x: string]: unknown;
3673
- account?: undefined;
3674
- batch?: undefined;
3675
- cacheTime?: undefined;
3676
- ccipRead?: undefined;
3677
- chain?: undefined;
3678
- experimental_blockTag?: undefined;
3679
- key?: undefined;
3680
- name?: undefined;
3681
- pollingInterval?: undefined;
3682
- request?: undefined;
3683
- transport?: undefined;
3684
- type?: undefined;
3685
- uid?: undefined;
3686
- } & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, undefined, undefined>, "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "prepareTransactionRequest" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<undefined, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<import("viem").HttpTransport<undefined, false>, undefined, undefined, import("viem").PublicRpcSchema, import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, undefined>>) => client) => import("viem").Client<import("viem").HttpTransport<undefined, false>, undefined, undefined, import("viem").PublicRpcSchema, { [K in keyof client]: client[K]; } & import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, undefined>>;
3687
- };