@centrifuge/sdk 1.21.0 → 1.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,9 +1,9 @@
1
1
  import { Observable } from 'rxjs';
2
- import { type Account, type Chain } from 'viem';
2
+ import { type Chain } from 'viem';
3
3
  import { Investor } from './entities/Investor.js';
4
4
  import { Pool } from './entities/Pool.js';
5
5
  import { type CrosschainMessageIncludes } from './entities/crosschainMessages.js';
6
- import type { CurrencyDetails, DerivedConfig, HexString, UserProvidedConfig } from './types/index.js';
6
+ import type { Client, CurrencyDetails, DerivedConfig, HexString, UserProvidedConfig } from './types/index.js';
7
7
  import { PoolMetadataInput } from './types/poolInput.js';
8
8
  import type { Query } from './types/query.js';
9
9
  import type { MarketplaceWorkflow } from './types/workflow.js';
@@ -13,3033 +13,7 @@ import { AssetId, CentrifugeId, PoolId } from './utils/types.js';
13
13
  export declare class Centrifuge {
14
14
  #private;
15
15
  get config(): DerivedConfig;
16
- getClient(centrifugeId: CentrifugeId): Query<{
17
- account: undefined;
18
- batch?: import("viem").ClientConfig["batch"] | undefined;
19
- cacheTime: number;
20
- ccipRead?: import("viem").ClientConfig["ccipRead"] | undefined;
21
- chain: Chain;
22
- dataSuffix?: import("viem").DataSuffix | undefined;
23
- experimental_blockTag?: import("viem").BlockTag | undefined;
24
- key: string;
25
- name: string;
26
- pollingInterval: number;
27
- request: import("viem").EIP1193RequestFn<import("viem").PublicRpcSchema>;
28
- transport: any;
29
- type: string;
30
- uid: string;
31
- call: (parameters: import("viem").CallParameters<Chain>) => Promise<import("viem").CallReturnType>;
32
- createAccessList: (parameters: import("viem").CreateAccessListParameters<Chain>) => Promise<{
33
- accessList: import("viem").AccessList;
34
- gasUsed: bigint;
35
- }>;
36
- createBlockFilter: () => Promise<import("viem").CreateBlockFilterReturnType>;
37
- 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>>;
38
- 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>>;
39
- createPendingTransactionFilter: () => Promise<import("viem").CreatePendingTransactionFilterReturnType>;
40
- estimateContractGas: <chain extends 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>;
41
- estimateGas: (args: import("viem").EstimateGasParameters<Chain>) => Promise<import("viem").EstimateGasReturnType>;
42
- fillTransaction: <chainOverride extends Chain | undefined = undefined, accountOverride extends Account | import("viem").Address | undefined = undefined>(args: import("viem").FillTransactionParameters<Chain, Account | undefined, chainOverride, accountOverride>) => Promise<import("viem").FillTransactionReturnType<Chain, chainOverride>>;
43
- getBalance: (args: import("viem").GetBalanceParameters) => Promise<import("viem").GetBalanceReturnType>;
44
- getBlobBaseFee: () => Promise<import("viem").GetBlobBaseFeeReturnType>;
45
- getBlock: <includeTransactions extends boolean = false, blockTag extends import("viem").BlockTag = "latest">(args?: import("viem").GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
46
- number: blockTag extends "pending" ? null : bigint;
47
- nonce: blockTag extends "pending" ? null : `0x${string}`;
48
- hash: blockTag extends "pending" ? null : `0x${string}`;
49
- size: bigint;
50
- logsBloom: blockTag extends "pending" ? null : `0x${string}`;
51
- baseFeePerGas: bigint | null;
52
- blobGasUsed: bigint;
53
- difficulty: bigint;
54
- excessBlobGas: bigint;
55
- extraData: import("viem").Hex;
56
- gasLimit: bigint;
57
- gasUsed: bigint;
58
- miner: import("viem").Address;
59
- mixHash: import("viem").Hash;
60
- parentBeaconBlockRoot?: import("viem").Hex | undefined;
61
- parentHash: import("viem").Hash;
62
- receiptsRoot: import("viem").Hex;
63
- sealFields: import("viem").Hex[];
64
- sha3Uncles: import("viem").Hash;
65
- stateRoot: import("viem").Hash;
66
- timestamp: bigint;
67
- totalDifficulty: bigint | null;
68
- transactionsRoot: import("viem").Hash;
69
- uncles: import("viem").Hash[];
70
- withdrawals?: import("viem").Withdrawal[] | undefined;
71
- withdrawalsRoot?: import("viem").Hex | undefined;
72
- transactions: includeTransactions extends true ? ({
73
- r: import("viem").Hex;
74
- s: import("viem").Hex;
75
- v: bigint;
76
- value: bigint;
77
- type: "legacy";
78
- to: import("viem").Address | null;
79
- from: import("viem").Address;
80
- gas: bigint;
81
- nonce: number;
82
- blobVersionedHashes?: undefined;
83
- gasPrice: bigint;
84
- maxFeePerBlobGas?: undefined;
85
- maxFeePerGas?: undefined;
86
- maxPriorityFeePerGas?: undefined;
87
- accessList?: undefined;
88
- authorizationList?: undefined;
89
- hash: import("viem").Hash;
90
- yParity?: undefined;
91
- chainId?: number | undefined;
92
- blockTimestamp?: bigint | undefined;
93
- input: import("viem").Hex;
94
- typeHex: import("viem").Hex | null;
95
- blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
96
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
97
- 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;
98
- } | {
99
- r: import("viem").Hex;
100
- s: import("viem").Hex;
101
- v: bigint;
102
- value: bigint;
103
- type: "eip2930";
104
- to: import("viem").Address | null;
105
- from: import("viem").Address;
106
- gas: bigint;
107
- nonce: number;
108
- blobVersionedHashes?: undefined;
109
- gasPrice: bigint;
110
- maxFeePerBlobGas?: undefined;
111
- maxFeePerGas?: undefined;
112
- maxPriorityFeePerGas?: undefined;
113
- accessList: import("viem").AccessList;
114
- authorizationList?: undefined;
115
- hash: import("viem").Hash;
116
- yParity: number;
117
- chainId: number;
118
- blockTimestamp?: bigint | undefined;
119
- input: import("viem").Hex;
120
- typeHex: import("viem").Hex | null;
121
- blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
122
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
123
- 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;
124
- } | {
125
- r: import("viem").Hex;
126
- s: import("viem").Hex;
127
- v: bigint;
128
- value: bigint;
129
- type: "eip1559";
130
- to: import("viem").Address | null;
131
- from: import("viem").Address;
132
- gas: bigint;
133
- nonce: number;
134
- blobVersionedHashes?: undefined;
135
- gasPrice?: undefined;
136
- maxFeePerBlobGas?: undefined;
137
- maxFeePerGas: bigint;
138
- maxPriorityFeePerGas: bigint;
139
- accessList: import("viem").AccessList;
140
- authorizationList?: undefined;
141
- hash: import("viem").Hash;
142
- yParity: number;
143
- chainId: number;
144
- blockTimestamp?: bigint | undefined;
145
- input: import("viem").Hex;
146
- typeHex: import("viem").Hex | null;
147
- blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
148
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
149
- 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;
150
- } | {
151
- r: import("viem").Hex;
152
- s: import("viem").Hex;
153
- v: bigint;
154
- value: bigint;
155
- type: "eip4844";
156
- to: import("viem").Address | null;
157
- from: import("viem").Address;
158
- gas: bigint;
159
- nonce: number;
160
- blobVersionedHashes: readonly import("viem").Hex[];
161
- gasPrice?: undefined;
162
- maxFeePerBlobGas: bigint;
163
- maxFeePerGas: bigint;
164
- maxPriorityFeePerGas: bigint;
165
- accessList: import("viem").AccessList;
166
- authorizationList?: undefined;
167
- hash: import("viem").Hash;
168
- yParity: number;
169
- chainId: number;
170
- blockTimestamp?: bigint | undefined;
171
- input: import("viem").Hex;
172
- typeHex: import("viem").Hex | null;
173
- blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
174
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
175
- 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;
176
- } | {
177
- r: import("viem").Hex;
178
- s: import("viem").Hex;
179
- v: bigint;
180
- value: bigint;
181
- type: "eip7702";
182
- to: import("viem").Address | null;
183
- from: import("viem").Address;
184
- gas: bigint;
185
- nonce: number;
186
- blobVersionedHashes?: undefined;
187
- gasPrice?: undefined;
188
- maxFeePerBlobGas?: undefined;
189
- maxFeePerGas: bigint;
190
- maxPriorityFeePerGas: bigint;
191
- accessList: import("viem").AccessList;
192
- authorizationList: import("viem").SignedAuthorizationList;
193
- hash: import("viem").Hash;
194
- yParity: number;
195
- chainId: number;
196
- blockTimestamp?: bigint | undefined;
197
- input: import("viem").Hex;
198
- typeHex: import("viem").Hex | null;
199
- blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
200
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
201
- 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;
202
- })[] : `0x${string}`[];
203
- }>;
204
- getBlockReceipts: (args?: import("viem").GetBlockReceiptsParameters | undefined) => Promise<import("viem").GetBlockReceiptsReturnType<Chain>>;
205
- getBlockNumber: (args?: import("viem").GetBlockNumberParameters | undefined) => Promise<import("viem").GetBlockNumberReturnType>;
206
- getBlockTransactionCount: (args?: import("viem").GetBlockTransactionCountParameters | undefined) => Promise<import("viem").GetBlockTransactionCountReturnType>;
207
- getBytecode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
208
- getChainId: () => Promise<import("viem").GetChainIdReturnType>;
209
- getCode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
210
- 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>>;
211
- getDelegation: (args: import("viem").GetDelegationParameters) => Promise<import("viem").GetDelegationReturnType>;
212
- getEip712Domain: (args: import("viem").GetEip712DomainParameters) => Promise<import("viem").GetEip712DomainReturnType>;
213
- getEnsAddress: (args: import("viem").GetEnsAddressParameters) => Promise<import("viem").GetEnsAddressReturnType>;
214
- getEnsAvatar: (args: import("viem").GetEnsAvatarParameters) => Promise<import("viem").GetEnsAvatarReturnType>;
215
- getEnsName: (args: import("viem").GetEnsNameParameters) => Promise<import("viem").GetEnsNameReturnType>;
216
- getEnsResolver: (args: import("viem").GetEnsResolverParameters) => Promise<import("viem").GetEnsResolverReturnType>;
217
- getEnsText: (args: import("viem").GetEnsTextParameters) => Promise<import("viem").GetEnsTextReturnType>;
218
- getFeeHistory: (args: import("viem").GetFeeHistoryParameters) => Promise<import("viem").GetFeeHistoryReturnType>;
219
- estimateFeesPerGas: <chainOverride extends Chain | undefined = undefined, type extends import("viem").FeeValuesType = "eip1559">(args?: import("viem").EstimateFeesPerGasParameters<Chain, chainOverride, type> | undefined) => Promise<import("viem").EstimateFeesPerGasReturnType<type>>;
220
- 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>>;
221
- 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>>;
222
- getGasPrice: () => Promise<import("viem").GetGasPriceReturnType>;
223
- 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>>;
224
- getProof: (args: import("viem").GetProofParameters) => Promise<import("viem").GetProofReturnType>;
225
- estimateMaxPriorityFeePerGas: <chainOverride extends Chain | undefined = undefined>(args?: {
226
- chain?: chainOverride | null | undefined;
227
- } | undefined) => Promise<import("viem").EstimateMaxPriorityFeePerGasReturnType>;
228
- getStorageAt: (args: import("viem").GetStorageAtParameters) => Promise<import("viem").GetStorageAtReturnType>;
229
- getTransaction: <blockTag extends import("viem").BlockTag = "latest">(args: import("viem").GetTransactionParameters<blockTag>) => Promise<{
230
- r: import("viem").Hex;
231
- s: import("viem").Hex;
232
- v: bigint;
233
- value: bigint;
234
- type: "legacy";
235
- to: import("viem").Address | null;
236
- from: import("viem").Address;
237
- gas: bigint;
238
- nonce: number;
239
- blobVersionedHashes?: undefined;
240
- gasPrice: bigint;
241
- maxFeePerBlobGas?: undefined;
242
- maxFeePerGas?: undefined;
243
- maxPriorityFeePerGas?: undefined;
244
- accessList?: undefined;
245
- authorizationList?: undefined;
246
- hash: import("viem").Hash;
247
- yParity?: undefined;
248
- chainId?: number | undefined;
249
- blockTimestamp?: bigint | undefined;
250
- input: import("viem").Hex;
251
- typeHex: import("viem").Hex | null;
252
- blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
253
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
254
- 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;
255
- } | {
256
- r: import("viem").Hex;
257
- s: import("viem").Hex;
258
- v: bigint;
259
- value: bigint;
260
- type: "eip2930";
261
- to: import("viem").Address | null;
262
- from: import("viem").Address;
263
- gas: bigint;
264
- nonce: number;
265
- blobVersionedHashes?: undefined;
266
- gasPrice: bigint;
267
- maxFeePerBlobGas?: undefined;
268
- maxFeePerGas?: undefined;
269
- maxPriorityFeePerGas?: undefined;
270
- accessList: import("viem").AccessList;
271
- authorizationList?: undefined;
272
- hash: import("viem").Hash;
273
- yParity: number;
274
- chainId: number;
275
- blockTimestamp?: bigint | undefined;
276
- input: import("viem").Hex;
277
- typeHex: import("viem").Hex | null;
278
- blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
279
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
280
- 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;
281
- } | {
282
- r: import("viem").Hex;
283
- s: import("viem").Hex;
284
- v: bigint;
285
- value: bigint;
286
- type: "eip1559";
287
- to: import("viem").Address | null;
288
- from: import("viem").Address;
289
- gas: bigint;
290
- nonce: number;
291
- blobVersionedHashes?: undefined;
292
- gasPrice?: undefined;
293
- maxFeePerBlobGas?: undefined;
294
- maxFeePerGas: bigint;
295
- maxPriorityFeePerGas: bigint;
296
- accessList: import("viem").AccessList;
297
- authorizationList?: undefined;
298
- hash: import("viem").Hash;
299
- yParity: number;
300
- chainId: number;
301
- blockTimestamp?: bigint | undefined;
302
- input: import("viem").Hex;
303
- typeHex: import("viem").Hex | null;
304
- blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
305
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
306
- 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;
307
- } | {
308
- r: import("viem").Hex;
309
- s: import("viem").Hex;
310
- v: bigint;
311
- value: bigint;
312
- type: "eip4844";
313
- to: import("viem").Address | null;
314
- from: import("viem").Address;
315
- gas: bigint;
316
- nonce: number;
317
- blobVersionedHashes: readonly import("viem").Hex[];
318
- gasPrice?: undefined;
319
- maxFeePerBlobGas: bigint;
320
- maxFeePerGas: bigint;
321
- maxPriorityFeePerGas: bigint;
322
- accessList: import("viem").AccessList;
323
- authorizationList?: undefined;
324
- hash: import("viem").Hash;
325
- yParity: number;
326
- chainId: number;
327
- blockTimestamp?: bigint | undefined;
328
- input: import("viem").Hex;
329
- typeHex: import("viem").Hex | null;
330
- blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
331
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
332
- 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;
333
- } | {
334
- r: import("viem").Hex;
335
- s: import("viem").Hex;
336
- v: bigint;
337
- value: bigint;
338
- type: "eip7702";
339
- to: import("viem").Address | null;
340
- from: import("viem").Address;
341
- gas: bigint;
342
- nonce: number;
343
- blobVersionedHashes?: undefined;
344
- gasPrice?: undefined;
345
- maxFeePerBlobGas?: undefined;
346
- maxFeePerGas: bigint;
347
- maxPriorityFeePerGas: bigint;
348
- accessList: import("viem").AccessList;
349
- authorizationList: import("viem").SignedAuthorizationList;
350
- hash: import("viem").Hash;
351
- yParity: number;
352
- chainId: number;
353
- blockTimestamp?: bigint | undefined;
354
- input: import("viem").Hex;
355
- typeHex: import("viem").Hex | null;
356
- blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
357
- blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
358
- 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;
359
- }>;
360
- getTransactionConfirmations: (args: import("viem").GetTransactionConfirmationsParameters<Chain>) => Promise<import("viem").GetTransactionConfirmationsReturnType>;
361
- getTransactionCount: (args: import("viem").GetTransactionCountParameters) => Promise<import("viem").GetTransactionCountReturnType>;
362
- getTransactionReceipt: (args: import("viem").GetTransactionReceiptParameters) => Promise<import("viem").TransactionReceipt>;
363
- multicall: <const contracts extends readonly unknown[], allowFailure extends boolean = true>(args: import("viem").MulticallParameters<contracts, allowFailure>) => Promise<import("viem").MulticallReturnType<contracts, allowFailure>>;
364
- prepareTransactionRequest: <const request extends import("viem").PrepareTransactionRequestRequest<Chain, chainOverride>, chainOverride extends Chain | undefined = undefined, accountOverride extends Account | import("viem").Address | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<Chain, Account | undefined, chainOverride, accountOverride, request>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain, chainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<Chain, chainOverride> ? T_1 extends Chain ? {
365
- chain: T_1;
366
- } : {
367
- chain?: undefined;
368
- } : never : never) & (import("viem").DeriveAccount<Account | undefined, accountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<Account | undefined, accountOverride> ? T_2 extends Account ? {
369
- account: T_2;
370
- from: import("viem").Address;
371
- } : {
372
- account?: undefined;
373
- from?: undefined;
374
- } : never : never), import("viem").IsNever<import("viem").ExtractFormattedTransactionRequest<import("viem").DeriveChain<Chain, chainOverride>, {
375
- type?: ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
376
- accessList?: undefined;
377
- authorizationList?: undefined;
378
- blobs?: undefined;
379
- blobVersionedHashes?: undefined;
380
- gasPrice?: bigint | undefined;
381
- sidecars?: undefined;
382
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
383
- accessList?: import("viem").AccessList | undefined;
384
- authorizationList?: undefined;
385
- blobs?: undefined;
386
- blobVersionedHashes?: undefined;
387
- gasPrice?: undefined;
388
- maxFeePerBlobGas?: undefined;
389
- maxFeePerGas?: bigint | undefined;
390
- maxPriorityFeePerGas?: bigint | undefined;
391
- sidecars?: undefined;
392
- } & (import("viem").OneOf<{
393
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
394
- } | {
395
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
396
- }, import("viem").FeeValuesEIP1559> & {
397
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
398
- }) ? "eip1559" : never) | (request extends {
399
- accessList?: import("viem").AccessList | undefined;
400
- authorizationList?: undefined;
401
- blobs?: undefined;
402
- blobVersionedHashes?: undefined;
403
- gasPrice?: bigint | undefined;
404
- sidecars?: undefined;
405
- maxFeePerBlobGas?: undefined;
406
- maxFeePerGas?: undefined;
407
- maxPriorityFeePerGas?: undefined;
408
- } & {
409
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
410
- } ? "eip2930" : never) | (request extends ({
411
- accessList?: import("viem").AccessList | undefined;
412
- authorizationList?: undefined;
413
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
414
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
415
- maxFeePerBlobGas?: bigint | undefined;
416
- maxFeePerGas?: bigint | undefined;
417
- maxPriorityFeePerGas?: bigint | undefined;
418
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
419
- } | {
420
- accessList?: import("viem").AccessList | undefined;
421
- authorizationList?: undefined;
422
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
423
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
424
- maxFeePerBlobGas?: bigint | undefined;
425
- maxFeePerGas?: bigint | undefined;
426
- maxPriorityFeePerGas?: bigint | undefined;
427
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
428
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
429
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
430
- } | {
431
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
432
- } | {
433
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
434
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
435
- accessList?: import("viem").AccessList | undefined;
436
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
437
- blobs?: undefined;
438
- blobVersionedHashes?: undefined;
439
- gasPrice?: undefined;
440
- maxFeePerBlobGas?: undefined;
441
- maxFeePerGas?: bigint | undefined;
442
- maxPriorityFeePerGas?: bigint | undefined;
443
- sidecars?: undefined;
444
- } | {
445
- accessList?: import("viem").AccessList | undefined;
446
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
447
- blobs?: undefined;
448
- blobVersionedHashes?: undefined;
449
- gasPrice?: undefined;
450
- maxFeePerBlobGas?: undefined;
451
- maxFeePerGas?: bigint | undefined;
452
- maxPriorityFeePerGas?: bigint | undefined;
453
- sidecars?: undefined;
454
- }) & {
455
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
456
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
457
- accessList?: undefined;
458
- authorizationList?: undefined;
459
- blobs?: undefined;
460
- blobVersionedHashes?: undefined;
461
- gasPrice?: bigint | undefined;
462
- sidecars?: undefined;
463
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
464
- accessList?: import("viem").AccessList | undefined;
465
- authorizationList?: undefined;
466
- blobs?: undefined;
467
- blobVersionedHashes?: undefined;
468
- gasPrice?: undefined;
469
- maxFeePerBlobGas?: undefined;
470
- maxFeePerGas?: bigint | undefined;
471
- maxPriorityFeePerGas?: bigint | undefined;
472
- sidecars?: undefined;
473
- } & (import("viem").OneOf<{
474
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
475
- } | {
476
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
477
- }, import("viem").FeeValuesEIP1559> & {
478
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
479
- }) ? "eip1559" : never) | (request extends {
480
- accessList?: import("viem").AccessList | undefined;
481
- authorizationList?: undefined;
482
- blobs?: undefined;
483
- blobVersionedHashes?: undefined;
484
- gasPrice?: bigint | undefined;
485
- sidecars?: undefined;
486
- maxFeePerBlobGas?: undefined;
487
- maxFeePerGas?: undefined;
488
- maxPriorityFeePerGas?: undefined;
489
- } & {
490
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
491
- } ? "eip2930" : never) | (request extends ({
492
- accessList?: import("viem").AccessList | undefined;
493
- authorizationList?: undefined;
494
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
495
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
496
- maxFeePerBlobGas?: bigint | undefined;
497
- maxFeePerGas?: bigint | undefined;
498
- maxPriorityFeePerGas?: bigint | undefined;
499
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
500
- } | {
501
- accessList?: import("viem").AccessList | undefined;
502
- authorizationList?: undefined;
503
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
504
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
505
- maxFeePerBlobGas?: bigint | undefined;
506
- maxFeePerGas?: bigint | undefined;
507
- maxPriorityFeePerGas?: bigint | undefined;
508
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
509
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
510
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
511
- } | {
512
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
513
- } | {
514
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
515
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
516
- accessList?: import("viem").AccessList | undefined;
517
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
518
- blobs?: undefined;
519
- blobVersionedHashes?: undefined;
520
- gasPrice?: undefined;
521
- maxFeePerBlobGas?: undefined;
522
- maxFeePerGas?: bigint | undefined;
523
- maxPriorityFeePerGas?: bigint | undefined;
524
- sidecars?: undefined;
525
- } | {
526
- accessList?: import("viem").AccessList | undefined;
527
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
528
- blobs?: undefined;
529
- blobVersionedHashes?: undefined;
530
- gasPrice?: undefined;
531
- maxFeePerBlobGas?: undefined;
532
- maxFeePerGas?: bigint | undefined;
533
- maxPriorityFeePerGas?: bigint | undefined;
534
- sidecars?: undefined;
535
- }) & {
536
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
537
- } ? "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 {
538
- accessList?: undefined;
539
- authorizationList?: undefined;
540
- blobs?: undefined;
541
- blobVersionedHashes?: undefined;
542
- gasPrice?: bigint | undefined;
543
- sidecars?: undefined;
544
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
545
- accessList?: import("viem").AccessList | undefined;
546
- authorizationList?: undefined;
547
- blobs?: undefined;
548
- blobVersionedHashes?: undefined;
549
- gasPrice?: undefined;
550
- maxFeePerBlobGas?: undefined;
551
- maxFeePerGas?: bigint | undefined;
552
- maxPriorityFeePerGas?: bigint | undefined;
553
- sidecars?: undefined;
554
- } & (import("viem").OneOf<{
555
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
556
- } | {
557
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
558
- }, import("viem").FeeValuesEIP1559> & {
559
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
560
- }) ? "eip1559" : never) | (request extends {
561
- accessList?: import("viem").AccessList | undefined;
562
- authorizationList?: undefined;
563
- blobs?: undefined;
564
- blobVersionedHashes?: undefined;
565
- gasPrice?: bigint | undefined;
566
- sidecars?: undefined;
567
- maxFeePerBlobGas?: undefined;
568
- maxFeePerGas?: undefined;
569
- maxPriorityFeePerGas?: undefined;
570
- } & {
571
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
572
- } ? "eip2930" : never) | (request extends ({
573
- accessList?: import("viem").AccessList | undefined;
574
- authorizationList?: undefined;
575
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
576
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
577
- maxFeePerBlobGas?: bigint | undefined;
578
- maxFeePerGas?: bigint | undefined;
579
- maxPriorityFeePerGas?: bigint | undefined;
580
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
581
- } | {
582
- accessList?: import("viem").AccessList | undefined;
583
- authorizationList?: undefined;
584
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
585
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
586
- maxFeePerBlobGas?: bigint | undefined;
587
- maxFeePerGas?: bigint | undefined;
588
- maxPriorityFeePerGas?: bigint | undefined;
589
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
590
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
591
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
592
- } | {
593
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
594
- } | {
595
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
596
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
597
- accessList?: import("viem").AccessList | undefined;
598
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
599
- blobs?: undefined;
600
- blobVersionedHashes?: undefined;
601
- gasPrice?: undefined;
602
- maxFeePerBlobGas?: undefined;
603
- maxFeePerGas?: bigint | undefined;
604
- maxPriorityFeePerGas?: bigint | undefined;
605
- sidecars?: undefined;
606
- } | {
607
- accessList?: import("viem").AccessList | undefined;
608
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
609
- blobs?: undefined;
610
- blobVersionedHashes?: undefined;
611
- gasPrice?: undefined;
612
- maxFeePerBlobGas?: undefined;
613
- maxFeePerGas?: bigint | undefined;
614
- maxPriorityFeePerGas?: bigint | undefined;
615
- sidecars?: undefined;
616
- }) & {
617
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
618
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
619
- accessList?: undefined;
620
- authorizationList?: undefined;
621
- blobs?: undefined;
622
- blobVersionedHashes?: undefined;
623
- gasPrice?: bigint | undefined;
624
- sidecars?: undefined;
625
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
626
- accessList?: import("viem").AccessList | undefined;
627
- authorizationList?: undefined;
628
- blobs?: undefined;
629
- blobVersionedHashes?: undefined;
630
- gasPrice?: undefined;
631
- maxFeePerBlobGas?: undefined;
632
- maxFeePerGas?: bigint | undefined;
633
- maxPriorityFeePerGas?: bigint | undefined;
634
- sidecars?: undefined;
635
- } & (import("viem").OneOf<{
636
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
637
- } | {
638
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
639
- }, import("viem").FeeValuesEIP1559> & {
640
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
641
- }) ? "eip1559" : never) | (request extends {
642
- accessList?: import("viem").AccessList | undefined;
643
- authorizationList?: undefined;
644
- blobs?: undefined;
645
- blobVersionedHashes?: undefined;
646
- gasPrice?: bigint | undefined;
647
- sidecars?: undefined;
648
- maxFeePerBlobGas?: undefined;
649
- maxFeePerGas?: undefined;
650
- maxPriorityFeePerGas?: undefined;
651
- } & {
652
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
653
- } ? "eip2930" : never) | (request extends ({
654
- accessList?: import("viem").AccessList | undefined;
655
- authorizationList?: undefined;
656
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
657
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
658
- maxFeePerBlobGas?: bigint | undefined;
659
- maxFeePerGas?: bigint | undefined;
660
- maxPriorityFeePerGas?: bigint | undefined;
661
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
662
- } | {
663
- accessList?: import("viem").AccessList | undefined;
664
- authorizationList?: undefined;
665
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
666
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
667
- maxFeePerBlobGas?: bigint | undefined;
668
- maxFeePerGas?: bigint | undefined;
669
- maxPriorityFeePerGas?: bigint | undefined;
670
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
671
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
672
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
673
- } | {
674
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
675
- } | {
676
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
677
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
678
- accessList?: import("viem").AccessList | undefined;
679
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
680
- blobs?: undefined;
681
- blobVersionedHashes?: undefined;
682
- gasPrice?: undefined;
683
- maxFeePerBlobGas?: undefined;
684
- maxFeePerGas?: bigint | undefined;
685
- maxPriorityFeePerGas?: bigint | undefined;
686
- sidecars?: undefined;
687
- } | {
688
- accessList?: import("viem").AccessList | undefined;
689
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
690
- blobs?: undefined;
691
- blobVersionedHashes?: undefined;
692
- gasPrice?: undefined;
693
- maxFeePerBlobGas?: undefined;
694
- maxFeePerGas?: bigint | undefined;
695
- maxPriorityFeePerGas?: bigint | undefined;
696
- sidecars?: undefined;
697
- }) & {
698
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
699
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_3 extends string ? T_3 : undefined : never : never) | undefined;
700
- }, import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from">, ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
701
- accessList?: undefined;
702
- authorizationList?: undefined;
703
- blobs?: undefined;
704
- blobVersionedHashes?: undefined;
705
- gasPrice?: bigint | undefined;
706
- sidecars?: undefined;
707
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
708
- accessList?: import("viem").AccessList | undefined;
709
- authorizationList?: undefined;
710
- blobs?: undefined;
711
- blobVersionedHashes?: undefined;
712
- gasPrice?: undefined;
713
- maxFeePerBlobGas?: undefined;
714
- maxFeePerGas?: bigint | undefined;
715
- maxPriorityFeePerGas?: bigint | undefined;
716
- sidecars?: undefined;
717
- } & (import("viem").OneOf<{
718
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
719
- } | {
720
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
721
- }, import("viem").FeeValuesEIP1559> & {
722
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
723
- }) ? "eip1559" : never) | (request extends {
724
- accessList?: import("viem").AccessList | undefined;
725
- authorizationList?: undefined;
726
- blobs?: undefined;
727
- blobVersionedHashes?: undefined;
728
- gasPrice?: bigint | undefined;
729
- sidecars?: undefined;
730
- maxFeePerBlobGas?: undefined;
731
- maxFeePerGas?: undefined;
732
- maxPriorityFeePerGas?: undefined;
733
- } & {
734
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
735
- } ? "eip2930" : never) | (request extends ({
736
- accessList?: import("viem").AccessList | undefined;
737
- authorizationList?: undefined;
738
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
739
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
740
- maxFeePerBlobGas?: bigint | undefined;
741
- maxFeePerGas?: bigint | undefined;
742
- maxPriorityFeePerGas?: bigint | undefined;
743
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
744
- } | {
745
- accessList?: import("viem").AccessList | undefined;
746
- authorizationList?: undefined;
747
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
748
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
749
- maxFeePerBlobGas?: bigint | undefined;
750
- maxFeePerGas?: bigint | undefined;
751
- maxPriorityFeePerGas?: bigint | undefined;
752
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
753
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
754
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
755
- } | {
756
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
757
- } | {
758
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
759
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
760
- accessList?: import("viem").AccessList | undefined;
761
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
762
- blobs?: undefined;
763
- blobVersionedHashes?: undefined;
764
- gasPrice?: undefined;
765
- maxFeePerBlobGas?: undefined;
766
- maxFeePerGas?: bigint | undefined;
767
- maxPriorityFeePerGas?: bigint | undefined;
768
- sidecars?: undefined;
769
- } | {
770
- accessList?: import("viem").AccessList | undefined;
771
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
772
- blobs?: undefined;
773
- blobVersionedHashes?: undefined;
774
- gasPrice?: undefined;
775
- maxFeePerBlobGas?: undefined;
776
- maxFeePerGas?: bigint | undefined;
777
- maxPriorityFeePerGas?: bigint | undefined;
778
- sidecars?: undefined;
779
- }) & {
780
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
781
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
782
- accessList?: undefined;
783
- authorizationList?: undefined;
784
- blobs?: undefined;
785
- blobVersionedHashes?: undefined;
786
- gasPrice?: bigint | undefined;
787
- sidecars?: undefined;
788
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
789
- accessList?: import("viem").AccessList | undefined;
790
- authorizationList?: undefined;
791
- blobs?: undefined;
792
- blobVersionedHashes?: undefined;
793
- gasPrice?: undefined;
794
- maxFeePerBlobGas?: undefined;
795
- maxFeePerGas?: bigint | undefined;
796
- maxPriorityFeePerGas?: bigint | undefined;
797
- sidecars?: undefined;
798
- } & (import("viem").OneOf<{
799
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
800
- } | {
801
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
802
- }, import("viem").FeeValuesEIP1559> & {
803
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
804
- }) ? "eip1559" : never) | (request extends {
805
- accessList?: import("viem").AccessList | undefined;
806
- authorizationList?: undefined;
807
- blobs?: undefined;
808
- blobVersionedHashes?: undefined;
809
- gasPrice?: bigint | undefined;
810
- sidecars?: undefined;
811
- maxFeePerBlobGas?: undefined;
812
- maxFeePerGas?: undefined;
813
- maxPriorityFeePerGas?: undefined;
814
- } & {
815
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
816
- } ? "eip2930" : never) | (request extends ({
817
- accessList?: import("viem").AccessList | undefined;
818
- authorizationList?: undefined;
819
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
820
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
821
- maxFeePerBlobGas?: bigint | undefined;
822
- maxFeePerGas?: bigint | undefined;
823
- maxPriorityFeePerGas?: bigint | undefined;
824
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
825
- } | {
826
- accessList?: import("viem").AccessList | undefined;
827
- authorizationList?: undefined;
828
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
829
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
830
- maxFeePerBlobGas?: bigint | undefined;
831
- maxFeePerGas?: bigint | undefined;
832
- maxPriorityFeePerGas?: bigint | undefined;
833
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
834
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
835
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
836
- } | {
837
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
838
- } | {
839
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
840
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
841
- accessList?: import("viem").AccessList | undefined;
842
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
843
- blobs?: undefined;
844
- blobVersionedHashes?: undefined;
845
- gasPrice?: undefined;
846
- maxFeePerBlobGas?: undefined;
847
- maxFeePerGas?: bigint | undefined;
848
- maxPriorityFeePerGas?: bigint | undefined;
849
- sidecars?: undefined;
850
- } | {
851
- accessList?: import("viem").AccessList | undefined;
852
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
853
- blobs?: undefined;
854
- blobVersionedHashes?: undefined;
855
- gasPrice?: undefined;
856
- maxFeePerBlobGas?: undefined;
857
- maxFeePerGas?: bigint | undefined;
858
- maxPriorityFeePerGas?: bigint | undefined;
859
- sidecars?: undefined;
860
- }) & {
861
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
862
- } ? "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 {
863
- accessList?: undefined;
864
- authorizationList?: undefined;
865
- blobs?: undefined;
866
- blobVersionedHashes?: undefined;
867
- gasPrice?: bigint | undefined;
868
- sidecars?: undefined;
869
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
870
- accessList?: import("viem").AccessList | undefined;
871
- authorizationList?: undefined;
872
- blobs?: undefined;
873
- blobVersionedHashes?: undefined;
874
- gasPrice?: undefined;
875
- maxFeePerBlobGas?: undefined;
876
- maxFeePerGas?: bigint | undefined;
877
- maxPriorityFeePerGas?: bigint | undefined;
878
- sidecars?: undefined;
879
- } & (import("viem").OneOf<{
880
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
881
- } | {
882
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
883
- }, import("viem").FeeValuesEIP1559> & {
884
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
885
- }) ? "eip1559" : never) | (request extends {
886
- accessList?: import("viem").AccessList | undefined;
887
- authorizationList?: undefined;
888
- blobs?: undefined;
889
- blobVersionedHashes?: undefined;
890
- gasPrice?: bigint | undefined;
891
- sidecars?: undefined;
892
- maxFeePerBlobGas?: undefined;
893
- maxFeePerGas?: undefined;
894
- maxPriorityFeePerGas?: undefined;
895
- } & {
896
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
897
- } ? "eip2930" : never) | (request extends ({
898
- accessList?: import("viem").AccessList | undefined;
899
- authorizationList?: undefined;
900
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
901
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
902
- maxFeePerBlobGas?: bigint | undefined;
903
- maxFeePerGas?: bigint | undefined;
904
- maxPriorityFeePerGas?: bigint | undefined;
905
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
906
- } | {
907
- accessList?: import("viem").AccessList | undefined;
908
- authorizationList?: undefined;
909
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
910
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
911
- maxFeePerBlobGas?: bigint | undefined;
912
- maxFeePerGas?: bigint | undefined;
913
- maxPriorityFeePerGas?: bigint | undefined;
914
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
915
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
916
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
917
- } | {
918
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
919
- } | {
920
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
921
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
922
- accessList?: import("viem").AccessList | undefined;
923
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
924
- blobs?: undefined;
925
- blobVersionedHashes?: undefined;
926
- gasPrice?: undefined;
927
- maxFeePerBlobGas?: undefined;
928
- maxFeePerGas?: bigint | undefined;
929
- maxPriorityFeePerGas?: bigint | undefined;
930
- sidecars?: undefined;
931
- } | {
932
- accessList?: import("viem").AccessList | undefined;
933
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
934
- blobs?: undefined;
935
- blobVersionedHashes?: undefined;
936
- gasPrice?: undefined;
937
- maxFeePerBlobGas?: undefined;
938
- maxFeePerGas?: bigint | undefined;
939
- maxPriorityFeePerGas?: bigint | undefined;
940
- sidecars?: undefined;
941
- }) & {
942
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
943
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
944
- accessList?: undefined;
945
- authorizationList?: undefined;
946
- blobs?: undefined;
947
- blobVersionedHashes?: undefined;
948
- gasPrice?: bigint | undefined;
949
- sidecars?: undefined;
950
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
951
- accessList?: import("viem").AccessList | undefined;
952
- authorizationList?: undefined;
953
- blobs?: undefined;
954
- blobVersionedHashes?: undefined;
955
- gasPrice?: undefined;
956
- maxFeePerBlobGas?: undefined;
957
- maxFeePerGas?: bigint | undefined;
958
- maxPriorityFeePerGas?: bigint | undefined;
959
- sidecars?: undefined;
960
- } & (import("viem").OneOf<{
961
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
962
- } | {
963
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
964
- }, import("viem").FeeValuesEIP1559> & {
965
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
966
- }) ? "eip1559" : never) | (request extends {
967
- accessList?: import("viem").AccessList | undefined;
968
- authorizationList?: undefined;
969
- blobs?: undefined;
970
- blobVersionedHashes?: undefined;
971
- gasPrice?: bigint | undefined;
972
- sidecars?: undefined;
973
- maxFeePerBlobGas?: undefined;
974
- maxFeePerGas?: undefined;
975
- maxPriorityFeePerGas?: undefined;
976
- } & {
977
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
978
- } ? "eip2930" : never) | (request extends ({
979
- accessList?: import("viem").AccessList | undefined;
980
- authorizationList?: undefined;
981
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
982
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
983
- maxFeePerBlobGas?: bigint | undefined;
984
- maxFeePerGas?: bigint | undefined;
985
- maxPriorityFeePerGas?: bigint | undefined;
986
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
987
- } | {
988
- accessList?: import("viem").AccessList | undefined;
989
- authorizationList?: undefined;
990
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
991
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
992
- maxFeePerBlobGas?: bigint | undefined;
993
- maxFeePerGas?: bigint | undefined;
994
- maxPriorityFeePerGas?: bigint | undefined;
995
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
996
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
997
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
998
- } | {
999
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1000
- } | {
1001
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1002
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1003
- accessList?: import("viem").AccessList | undefined;
1004
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1005
- blobs?: undefined;
1006
- blobVersionedHashes?: undefined;
1007
- gasPrice?: undefined;
1008
- maxFeePerBlobGas?: undefined;
1009
- maxFeePerGas?: bigint | undefined;
1010
- maxPriorityFeePerGas?: bigint | undefined;
1011
- sidecars?: undefined;
1012
- } | {
1013
- accessList?: import("viem").AccessList | undefined;
1014
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1015
- blobs?: undefined;
1016
- blobVersionedHashes?: undefined;
1017
- gasPrice?: undefined;
1018
- maxFeePerBlobGas?: undefined;
1019
- maxFeePerGas?: bigint | undefined;
1020
- maxPriorityFeePerGas?: bigint | undefined;
1021
- sidecars?: undefined;
1022
- }) & {
1023
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1024
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_3 extends string ? T_3 : undefined : never : never) | undefined>> extends true ? unknown : import("viem").ExactPartial<import("viem").ExtractFormattedTransactionRequest<import("viem").DeriveChain<Chain, chainOverride>, {
1025
- type?: ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1026
- accessList?: undefined;
1027
- authorizationList?: undefined;
1028
- blobs?: undefined;
1029
- blobVersionedHashes?: undefined;
1030
- gasPrice?: bigint | undefined;
1031
- sidecars?: undefined;
1032
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1033
- accessList?: import("viem").AccessList | undefined;
1034
- authorizationList?: undefined;
1035
- blobs?: undefined;
1036
- blobVersionedHashes?: undefined;
1037
- gasPrice?: undefined;
1038
- maxFeePerBlobGas?: undefined;
1039
- maxFeePerGas?: bigint | undefined;
1040
- maxPriorityFeePerGas?: bigint | undefined;
1041
- sidecars?: undefined;
1042
- } & (import("viem").OneOf<{
1043
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1044
- } | {
1045
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1046
- }, import("viem").FeeValuesEIP1559> & {
1047
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1048
- }) ? "eip1559" : never) | (request extends {
1049
- accessList?: import("viem").AccessList | undefined;
1050
- authorizationList?: undefined;
1051
- blobs?: undefined;
1052
- blobVersionedHashes?: undefined;
1053
- gasPrice?: bigint | undefined;
1054
- sidecars?: undefined;
1055
- maxFeePerBlobGas?: undefined;
1056
- maxFeePerGas?: undefined;
1057
- maxPriorityFeePerGas?: undefined;
1058
- } & {
1059
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1060
- } ? "eip2930" : never) | (request extends ({
1061
- accessList?: import("viem").AccessList | undefined;
1062
- authorizationList?: undefined;
1063
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1064
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1065
- maxFeePerBlobGas?: bigint | undefined;
1066
- maxFeePerGas?: bigint | undefined;
1067
- maxPriorityFeePerGas?: bigint | undefined;
1068
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1069
- } | {
1070
- accessList?: import("viem").AccessList | undefined;
1071
- authorizationList?: undefined;
1072
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1073
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1074
- maxFeePerBlobGas?: bigint | undefined;
1075
- maxFeePerGas?: bigint | undefined;
1076
- maxPriorityFeePerGas?: bigint | undefined;
1077
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1078
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1079
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1080
- } | {
1081
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1082
- } | {
1083
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1084
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1085
- accessList?: import("viem").AccessList | undefined;
1086
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1087
- blobs?: undefined;
1088
- blobVersionedHashes?: undefined;
1089
- gasPrice?: undefined;
1090
- maxFeePerBlobGas?: undefined;
1091
- maxFeePerGas?: bigint | undefined;
1092
- maxPriorityFeePerGas?: bigint | undefined;
1093
- sidecars?: undefined;
1094
- } | {
1095
- accessList?: import("viem").AccessList | undefined;
1096
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1097
- blobs?: undefined;
1098
- blobVersionedHashes?: undefined;
1099
- gasPrice?: undefined;
1100
- maxFeePerBlobGas?: undefined;
1101
- maxFeePerGas?: bigint | undefined;
1102
- maxPriorityFeePerGas?: bigint | undefined;
1103
- sidecars?: undefined;
1104
- }) & {
1105
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1106
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1107
- accessList?: undefined;
1108
- authorizationList?: undefined;
1109
- blobs?: undefined;
1110
- blobVersionedHashes?: undefined;
1111
- gasPrice?: bigint | undefined;
1112
- sidecars?: undefined;
1113
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1114
- accessList?: import("viem").AccessList | undefined;
1115
- authorizationList?: undefined;
1116
- blobs?: undefined;
1117
- blobVersionedHashes?: undefined;
1118
- gasPrice?: undefined;
1119
- maxFeePerBlobGas?: undefined;
1120
- maxFeePerGas?: bigint | undefined;
1121
- maxPriorityFeePerGas?: bigint | undefined;
1122
- sidecars?: undefined;
1123
- } & (import("viem").OneOf<{
1124
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1125
- } | {
1126
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1127
- }, import("viem").FeeValuesEIP1559> & {
1128
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1129
- }) ? "eip1559" : never) | (request extends {
1130
- accessList?: import("viem").AccessList | undefined;
1131
- authorizationList?: undefined;
1132
- blobs?: undefined;
1133
- blobVersionedHashes?: undefined;
1134
- gasPrice?: bigint | undefined;
1135
- sidecars?: undefined;
1136
- maxFeePerBlobGas?: undefined;
1137
- maxFeePerGas?: undefined;
1138
- maxPriorityFeePerGas?: undefined;
1139
- } & {
1140
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1141
- } ? "eip2930" : never) | (request extends ({
1142
- accessList?: import("viem").AccessList | undefined;
1143
- authorizationList?: undefined;
1144
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1145
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1146
- maxFeePerBlobGas?: bigint | undefined;
1147
- maxFeePerGas?: bigint | undefined;
1148
- maxPriorityFeePerGas?: bigint | undefined;
1149
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1150
- } | {
1151
- accessList?: import("viem").AccessList | undefined;
1152
- authorizationList?: undefined;
1153
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1154
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1155
- maxFeePerBlobGas?: bigint | undefined;
1156
- maxFeePerGas?: bigint | undefined;
1157
- maxPriorityFeePerGas?: bigint | undefined;
1158
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1159
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1160
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1161
- } | {
1162
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1163
- } | {
1164
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1165
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1166
- accessList?: import("viem").AccessList | undefined;
1167
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1168
- blobs?: undefined;
1169
- blobVersionedHashes?: undefined;
1170
- gasPrice?: undefined;
1171
- maxFeePerBlobGas?: undefined;
1172
- maxFeePerGas?: bigint | undefined;
1173
- maxPriorityFeePerGas?: bigint | undefined;
1174
- sidecars?: undefined;
1175
- } | {
1176
- accessList?: import("viem").AccessList | undefined;
1177
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1178
- blobs?: undefined;
1179
- blobVersionedHashes?: undefined;
1180
- gasPrice?: undefined;
1181
- maxFeePerBlobGas?: undefined;
1182
- maxFeePerGas?: bigint | undefined;
1183
- maxPriorityFeePerGas?: bigint | undefined;
1184
- sidecars?: undefined;
1185
- }) & {
1186
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1187
- } ? "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 {
1188
- accessList?: undefined;
1189
- authorizationList?: undefined;
1190
- blobs?: undefined;
1191
- blobVersionedHashes?: undefined;
1192
- gasPrice?: bigint | undefined;
1193
- sidecars?: undefined;
1194
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1195
- accessList?: import("viem").AccessList | undefined;
1196
- authorizationList?: undefined;
1197
- blobs?: undefined;
1198
- blobVersionedHashes?: undefined;
1199
- gasPrice?: undefined;
1200
- maxFeePerBlobGas?: undefined;
1201
- maxFeePerGas?: bigint | undefined;
1202
- maxPriorityFeePerGas?: bigint | undefined;
1203
- sidecars?: undefined;
1204
- } & (import("viem").OneOf<{
1205
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1206
- } | {
1207
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1208
- }, import("viem").FeeValuesEIP1559> & {
1209
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1210
- }) ? "eip1559" : never) | (request extends {
1211
- accessList?: import("viem").AccessList | undefined;
1212
- authorizationList?: undefined;
1213
- blobs?: undefined;
1214
- blobVersionedHashes?: undefined;
1215
- gasPrice?: bigint | undefined;
1216
- sidecars?: undefined;
1217
- maxFeePerBlobGas?: undefined;
1218
- maxFeePerGas?: undefined;
1219
- maxPriorityFeePerGas?: undefined;
1220
- } & {
1221
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1222
- } ? "eip2930" : never) | (request extends ({
1223
- accessList?: import("viem").AccessList | undefined;
1224
- authorizationList?: undefined;
1225
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1226
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1227
- maxFeePerBlobGas?: bigint | undefined;
1228
- maxFeePerGas?: bigint | undefined;
1229
- maxPriorityFeePerGas?: bigint | undefined;
1230
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1231
- } | {
1232
- accessList?: import("viem").AccessList | undefined;
1233
- authorizationList?: undefined;
1234
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1235
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1236
- maxFeePerBlobGas?: bigint | undefined;
1237
- maxFeePerGas?: bigint | undefined;
1238
- maxPriorityFeePerGas?: bigint | undefined;
1239
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1240
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1241
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1242
- } | {
1243
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1244
- } | {
1245
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1246
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1247
- accessList?: import("viem").AccessList | undefined;
1248
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1249
- blobs?: undefined;
1250
- blobVersionedHashes?: undefined;
1251
- gasPrice?: undefined;
1252
- maxFeePerBlobGas?: undefined;
1253
- maxFeePerGas?: bigint | undefined;
1254
- maxPriorityFeePerGas?: bigint | undefined;
1255
- sidecars?: undefined;
1256
- } | {
1257
- accessList?: import("viem").AccessList | undefined;
1258
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1259
- blobs?: undefined;
1260
- blobVersionedHashes?: undefined;
1261
- gasPrice?: undefined;
1262
- maxFeePerBlobGas?: undefined;
1263
- maxFeePerGas?: bigint | undefined;
1264
- maxPriorityFeePerGas?: bigint | undefined;
1265
- sidecars?: undefined;
1266
- }) & {
1267
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1268
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1269
- accessList?: undefined;
1270
- authorizationList?: undefined;
1271
- blobs?: undefined;
1272
- blobVersionedHashes?: undefined;
1273
- gasPrice?: bigint | undefined;
1274
- sidecars?: undefined;
1275
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1276
- accessList?: import("viem").AccessList | undefined;
1277
- authorizationList?: undefined;
1278
- blobs?: undefined;
1279
- blobVersionedHashes?: undefined;
1280
- gasPrice?: undefined;
1281
- maxFeePerBlobGas?: undefined;
1282
- maxFeePerGas?: bigint | undefined;
1283
- maxPriorityFeePerGas?: bigint | undefined;
1284
- sidecars?: undefined;
1285
- } & (import("viem").OneOf<{
1286
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1287
- } | {
1288
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1289
- }, import("viem").FeeValuesEIP1559> & {
1290
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1291
- }) ? "eip1559" : never) | (request extends {
1292
- accessList?: import("viem").AccessList | undefined;
1293
- authorizationList?: undefined;
1294
- blobs?: undefined;
1295
- blobVersionedHashes?: undefined;
1296
- gasPrice?: bigint | undefined;
1297
- sidecars?: undefined;
1298
- maxFeePerBlobGas?: undefined;
1299
- maxFeePerGas?: undefined;
1300
- maxPriorityFeePerGas?: undefined;
1301
- } & {
1302
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1303
- } ? "eip2930" : never) | (request extends ({
1304
- accessList?: import("viem").AccessList | undefined;
1305
- authorizationList?: undefined;
1306
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1307
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1308
- maxFeePerBlobGas?: bigint | undefined;
1309
- maxFeePerGas?: bigint | undefined;
1310
- maxPriorityFeePerGas?: bigint | undefined;
1311
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1312
- } | {
1313
- accessList?: import("viem").AccessList | undefined;
1314
- authorizationList?: undefined;
1315
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1316
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1317
- maxFeePerBlobGas?: bigint | undefined;
1318
- maxFeePerGas?: bigint | undefined;
1319
- maxPriorityFeePerGas?: bigint | undefined;
1320
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1321
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1322
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1323
- } | {
1324
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1325
- } | {
1326
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1327
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1328
- accessList?: import("viem").AccessList | undefined;
1329
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1330
- blobs?: undefined;
1331
- blobVersionedHashes?: undefined;
1332
- gasPrice?: undefined;
1333
- maxFeePerBlobGas?: undefined;
1334
- maxFeePerGas?: bigint | undefined;
1335
- maxPriorityFeePerGas?: bigint | undefined;
1336
- sidecars?: undefined;
1337
- } | {
1338
- accessList?: import("viem").AccessList | undefined;
1339
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1340
- blobs?: undefined;
1341
- blobVersionedHashes?: undefined;
1342
- gasPrice?: undefined;
1343
- maxFeePerBlobGas?: undefined;
1344
- maxFeePerGas?: bigint | undefined;
1345
- maxPriorityFeePerGas?: bigint | undefined;
1346
- sidecars?: undefined;
1347
- }) & {
1348
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1349
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_3 extends string ? T_3 : undefined : never : never) | undefined;
1350
- }, import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from">, ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1351
- accessList?: undefined;
1352
- authorizationList?: undefined;
1353
- blobs?: undefined;
1354
- blobVersionedHashes?: undefined;
1355
- gasPrice?: bigint | undefined;
1356
- sidecars?: undefined;
1357
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1358
- accessList?: import("viem").AccessList | undefined;
1359
- authorizationList?: undefined;
1360
- blobs?: undefined;
1361
- blobVersionedHashes?: undefined;
1362
- gasPrice?: undefined;
1363
- maxFeePerBlobGas?: undefined;
1364
- maxFeePerGas?: bigint | undefined;
1365
- maxPriorityFeePerGas?: bigint | undefined;
1366
- sidecars?: undefined;
1367
- } & (import("viem").OneOf<{
1368
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1369
- } | {
1370
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1371
- }, import("viem").FeeValuesEIP1559> & {
1372
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1373
- }) ? "eip1559" : never) | (request extends {
1374
- accessList?: import("viem").AccessList | undefined;
1375
- authorizationList?: undefined;
1376
- blobs?: undefined;
1377
- blobVersionedHashes?: undefined;
1378
- gasPrice?: bigint | undefined;
1379
- sidecars?: undefined;
1380
- maxFeePerBlobGas?: undefined;
1381
- maxFeePerGas?: undefined;
1382
- maxPriorityFeePerGas?: undefined;
1383
- } & {
1384
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1385
- } ? "eip2930" : never) | (request extends ({
1386
- accessList?: import("viem").AccessList | undefined;
1387
- authorizationList?: undefined;
1388
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1389
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1390
- maxFeePerBlobGas?: bigint | undefined;
1391
- maxFeePerGas?: bigint | undefined;
1392
- maxPriorityFeePerGas?: bigint | undefined;
1393
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1394
- } | {
1395
- accessList?: import("viem").AccessList | undefined;
1396
- authorizationList?: undefined;
1397
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1398
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1399
- maxFeePerBlobGas?: bigint | undefined;
1400
- maxFeePerGas?: bigint | undefined;
1401
- maxPriorityFeePerGas?: bigint | undefined;
1402
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1403
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1404
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1405
- } | {
1406
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1407
- } | {
1408
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1409
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1410
- accessList?: import("viem").AccessList | undefined;
1411
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1412
- blobs?: undefined;
1413
- blobVersionedHashes?: undefined;
1414
- gasPrice?: undefined;
1415
- maxFeePerBlobGas?: undefined;
1416
- maxFeePerGas?: bigint | undefined;
1417
- maxPriorityFeePerGas?: bigint | undefined;
1418
- sidecars?: undefined;
1419
- } | {
1420
- accessList?: import("viem").AccessList | undefined;
1421
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1422
- blobs?: undefined;
1423
- blobVersionedHashes?: undefined;
1424
- gasPrice?: undefined;
1425
- maxFeePerBlobGas?: undefined;
1426
- maxFeePerGas?: bigint | undefined;
1427
- maxPriorityFeePerGas?: bigint | undefined;
1428
- sidecars?: undefined;
1429
- }) & {
1430
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1431
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1432
- accessList?: undefined;
1433
- authorizationList?: undefined;
1434
- blobs?: undefined;
1435
- blobVersionedHashes?: undefined;
1436
- gasPrice?: bigint | undefined;
1437
- sidecars?: undefined;
1438
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1439
- accessList?: import("viem").AccessList | undefined;
1440
- authorizationList?: undefined;
1441
- blobs?: undefined;
1442
- blobVersionedHashes?: undefined;
1443
- gasPrice?: undefined;
1444
- maxFeePerBlobGas?: undefined;
1445
- maxFeePerGas?: bigint | undefined;
1446
- maxPriorityFeePerGas?: bigint | undefined;
1447
- sidecars?: undefined;
1448
- } & (import("viem").OneOf<{
1449
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1450
- } | {
1451
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1452
- }, import("viem").FeeValuesEIP1559> & {
1453
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1454
- }) ? "eip1559" : never) | (request extends {
1455
- accessList?: import("viem").AccessList | undefined;
1456
- authorizationList?: undefined;
1457
- blobs?: undefined;
1458
- blobVersionedHashes?: undefined;
1459
- gasPrice?: bigint | undefined;
1460
- sidecars?: undefined;
1461
- maxFeePerBlobGas?: undefined;
1462
- maxFeePerGas?: undefined;
1463
- maxPriorityFeePerGas?: undefined;
1464
- } & {
1465
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1466
- } ? "eip2930" : never) | (request extends ({
1467
- accessList?: import("viem").AccessList | undefined;
1468
- authorizationList?: undefined;
1469
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1470
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1471
- maxFeePerBlobGas?: bigint | undefined;
1472
- maxFeePerGas?: bigint | undefined;
1473
- maxPriorityFeePerGas?: bigint | undefined;
1474
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1475
- } | {
1476
- accessList?: import("viem").AccessList | undefined;
1477
- authorizationList?: undefined;
1478
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1479
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1480
- maxFeePerBlobGas?: bigint | undefined;
1481
- maxFeePerGas?: bigint | undefined;
1482
- maxPriorityFeePerGas?: bigint | undefined;
1483
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1484
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1485
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1486
- } | {
1487
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1488
- } | {
1489
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1490
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1491
- accessList?: import("viem").AccessList | undefined;
1492
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1493
- blobs?: undefined;
1494
- blobVersionedHashes?: undefined;
1495
- gasPrice?: undefined;
1496
- maxFeePerBlobGas?: undefined;
1497
- maxFeePerGas?: bigint | undefined;
1498
- maxPriorityFeePerGas?: bigint | undefined;
1499
- sidecars?: undefined;
1500
- } | {
1501
- accessList?: import("viem").AccessList | undefined;
1502
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1503
- blobs?: undefined;
1504
- blobVersionedHashes?: undefined;
1505
- gasPrice?: undefined;
1506
- maxFeePerBlobGas?: undefined;
1507
- maxFeePerGas?: bigint | undefined;
1508
- maxPriorityFeePerGas?: bigint | undefined;
1509
- sidecars?: undefined;
1510
- }) & {
1511
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1512
- } ? "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 {
1513
- accessList?: undefined;
1514
- authorizationList?: undefined;
1515
- blobs?: undefined;
1516
- blobVersionedHashes?: undefined;
1517
- gasPrice?: bigint | undefined;
1518
- sidecars?: undefined;
1519
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1520
- accessList?: import("viem").AccessList | undefined;
1521
- authorizationList?: undefined;
1522
- blobs?: undefined;
1523
- blobVersionedHashes?: undefined;
1524
- gasPrice?: undefined;
1525
- maxFeePerBlobGas?: undefined;
1526
- maxFeePerGas?: bigint | undefined;
1527
- maxPriorityFeePerGas?: bigint | undefined;
1528
- sidecars?: undefined;
1529
- } & (import("viem").OneOf<{
1530
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1531
- } | {
1532
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1533
- }, import("viem").FeeValuesEIP1559> & {
1534
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1535
- }) ? "eip1559" : never) | (request extends {
1536
- accessList?: import("viem").AccessList | undefined;
1537
- authorizationList?: undefined;
1538
- blobs?: undefined;
1539
- blobVersionedHashes?: undefined;
1540
- gasPrice?: bigint | undefined;
1541
- sidecars?: undefined;
1542
- maxFeePerBlobGas?: undefined;
1543
- maxFeePerGas?: undefined;
1544
- maxPriorityFeePerGas?: undefined;
1545
- } & {
1546
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1547
- } ? "eip2930" : never) | (request extends ({
1548
- accessList?: import("viem").AccessList | undefined;
1549
- authorizationList?: undefined;
1550
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1551
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1552
- maxFeePerBlobGas?: bigint | undefined;
1553
- maxFeePerGas?: bigint | undefined;
1554
- maxPriorityFeePerGas?: bigint | undefined;
1555
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1556
- } | {
1557
- accessList?: import("viem").AccessList | undefined;
1558
- authorizationList?: undefined;
1559
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1560
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1561
- maxFeePerBlobGas?: bigint | undefined;
1562
- maxFeePerGas?: bigint | undefined;
1563
- maxPriorityFeePerGas?: bigint | undefined;
1564
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1565
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1566
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1567
- } | {
1568
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1569
- } | {
1570
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1571
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1572
- accessList?: import("viem").AccessList | undefined;
1573
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1574
- blobs?: undefined;
1575
- blobVersionedHashes?: undefined;
1576
- gasPrice?: undefined;
1577
- maxFeePerBlobGas?: undefined;
1578
- maxFeePerGas?: bigint | undefined;
1579
- maxPriorityFeePerGas?: bigint | undefined;
1580
- sidecars?: undefined;
1581
- } | {
1582
- accessList?: import("viem").AccessList | undefined;
1583
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1584
- blobs?: undefined;
1585
- blobVersionedHashes?: undefined;
1586
- gasPrice?: undefined;
1587
- maxFeePerBlobGas?: undefined;
1588
- maxFeePerGas?: bigint | undefined;
1589
- maxPriorityFeePerGas?: bigint | undefined;
1590
- sidecars?: undefined;
1591
- }) & {
1592
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1593
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1594
- accessList?: undefined;
1595
- authorizationList?: undefined;
1596
- blobs?: undefined;
1597
- blobVersionedHashes?: undefined;
1598
- gasPrice?: bigint | undefined;
1599
- sidecars?: undefined;
1600
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1601
- accessList?: import("viem").AccessList | undefined;
1602
- authorizationList?: undefined;
1603
- blobs?: undefined;
1604
- blobVersionedHashes?: undefined;
1605
- gasPrice?: undefined;
1606
- maxFeePerBlobGas?: undefined;
1607
- maxFeePerGas?: bigint | undefined;
1608
- maxPriorityFeePerGas?: bigint | undefined;
1609
- sidecars?: undefined;
1610
- } & (import("viem").OneOf<{
1611
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1612
- } | {
1613
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1614
- }, import("viem").FeeValuesEIP1559> & {
1615
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1616
- }) ? "eip1559" : never) | (request extends {
1617
- accessList?: import("viem").AccessList | undefined;
1618
- authorizationList?: undefined;
1619
- blobs?: undefined;
1620
- blobVersionedHashes?: undefined;
1621
- gasPrice?: bigint | undefined;
1622
- sidecars?: undefined;
1623
- maxFeePerBlobGas?: undefined;
1624
- maxFeePerGas?: undefined;
1625
- maxPriorityFeePerGas?: undefined;
1626
- } & {
1627
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1628
- } ? "eip2930" : never) | (request extends ({
1629
- accessList?: import("viem").AccessList | undefined;
1630
- authorizationList?: undefined;
1631
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1632
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1633
- maxFeePerBlobGas?: bigint | undefined;
1634
- maxFeePerGas?: bigint | undefined;
1635
- maxPriorityFeePerGas?: bigint | undefined;
1636
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1637
- } | {
1638
- accessList?: import("viem").AccessList | undefined;
1639
- authorizationList?: undefined;
1640
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1641
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1642
- maxFeePerBlobGas?: bigint | undefined;
1643
- maxFeePerGas?: bigint | undefined;
1644
- maxPriorityFeePerGas?: bigint | undefined;
1645
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1646
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1647
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1648
- } | {
1649
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1650
- } | {
1651
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1652
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1653
- accessList?: import("viem").AccessList | undefined;
1654
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1655
- blobs?: undefined;
1656
- blobVersionedHashes?: undefined;
1657
- gasPrice?: undefined;
1658
- maxFeePerBlobGas?: undefined;
1659
- maxFeePerGas?: bigint | undefined;
1660
- maxPriorityFeePerGas?: bigint | undefined;
1661
- sidecars?: undefined;
1662
- } | {
1663
- accessList?: import("viem").AccessList | undefined;
1664
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1665
- blobs?: undefined;
1666
- blobVersionedHashes?: undefined;
1667
- gasPrice?: undefined;
1668
- maxFeePerBlobGas?: undefined;
1669
- maxFeePerGas?: bigint | undefined;
1670
- maxPriorityFeePerGas?: bigint | undefined;
1671
- sidecars?: undefined;
1672
- }) & {
1673
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1674
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_3 extends string ? T_3 : undefined : never : never) | undefined>>> & {
1675
- chainId?: number | undefined;
1676
- }, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "fees" | "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId") extends infer T_4 ? T_4 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "fees" | "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId") ? T_4 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_4 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) & {
1677
- _capabilities?: {
1678
- [x: string]: any;
1679
- } | undefined;
1680
- } extends infer T ? { [K in keyof T]: (import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain, chainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<Chain, chainOverride> ? T_1 extends Chain ? {
1681
- chain: T_1;
1682
- } : {
1683
- chain?: undefined;
1684
- } : never : never) & (import("viem").DeriveAccount<Account | undefined, accountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<Account | undefined, accountOverride> ? T_2 extends Account ? {
1685
- account: T_2;
1686
- from: import("viem").Address;
1687
- } : {
1688
- account?: undefined;
1689
- from?: undefined;
1690
- } : never : never), import("viem").IsNever<import("viem").ExtractFormattedTransactionRequest<import("viem").DeriveChain<Chain, chainOverride>, {
1691
- type?: ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1692
- accessList?: undefined;
1693
- authorizationList?: undefined;
1694
- blobs?: undefined;
1695
- blobVersionedHashes?: undefined;
1696
- gasPrice?: bigint | undefined;
1697
- sidecars?: undefined;
1698
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1699
- accessList?: import("viem").AccessList | undefined;
1700
- authorizationList?: undefined;
1701
- blobs?: undefined;
1702
- blobVersionedHashes?: undefined;
1703
- gasPrice?: undefined;
1704
- maxFeePerBlobGas?: undefined;
1705
- maxFeePerGas?: bigint | undefined;
1706
- maxPriorityFeePerGas?: bigint | undefined;
1707
- sidecars?: undefined;
1708
- } & (import("viem").OneOf<{
1709
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1710
- } | {
1711
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1712
- }, import("viem").FeeValuesEIP1559> & {
1713
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1714
- }) ? "eip1559" : never) | (request extends {
1715
- accessList?: import("viem").AccessList | undefined;
1716
- authorizationList?: undefined;
1717
- blobs?: undefined;
1718
- blobVersionedHashes?: undefined;
1719
- gasPrice?: bigint | undefined;
1720
- sidecars?: undefined;
1721
- maxFeePerBlobGas?: undefined;
1722
- maxFeePerGas?: undefined;
1723
- maxPriorityFeePerGas?: undefined;
1724
- } & {
1725
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1726
- } ? "eip2930" : never) | (request extends ({
1727
- accessList?: import("viem").AccessList | undefined;
1728
- authorizationList?: undefined;
1729
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1730
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1731
- maxFeePerBlobGas?: bigint | undefined;
1732
- maxFeePerGas?: bigint | undefined;
1733
- maxPriorityFeePerGas?: bigint | undefined;
1734
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1735
- } | {
1736
- accessList?: import("viem").AccessList | undefined;
1737
- authorizationList?: undefined;
1738
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1739
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1740
- maxFeePerBlobGas?: bigint | undefined;
1741
- maxFeePerGas?: bigint | undefined;
1742
- maxPriorityFeePerGas?: bigint | undefined;
1743
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1744
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1745
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1746
- } | {
1747
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1748
- } | {
1749
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1750
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1751
- accessList?: import("viem").AccessList | undefined;
1752
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1753
- blobs?: undefined;
1754
- blobVersionedHashes?: undefined;
1755
- gasPrice?: undefined;
1756
- maxFeePerBlobGas?: undefined;
1757
- maxFeePerGas?: bigint | undefined;
1758
- maxPriorityFeePerGas?: bigint | undefined;
1759
- sidecars?: undefined;
1760
- } | {
1761
- accessList?: import("viem").AccessList | undefined;
1762
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1763
- blobs?: undefined;
1764
- blobVersionedHashes?: undefined;
1765
- gasPrice?: undefined;
1766
- maxFeePerBlobGas?: undefined;
1767
- maxFeePerGas?: bigint | undefined;
1768
- maxPriorityFeePerGas?: bigint | undefined;
1769
- sidecars?: undefined;
1770
- }) & {
1771
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1772
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1773
- accessList?: undefined;
1774
- authorizationList?: undefined;
1775
- blobs?: undefined;
1776
- blobVersionedHashes?: undefined;
1777
- gasPrice?: bigint | undefined;
1778
- sidecars?: undefined;
1779
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1780
- accessList?: import("viem").AccessList | undefined;
1781
- authorizationList?: undefined;
1782
- blobs?: undefined;
1783
- blobVersionedHashes?: undefined;
1784
- gasPrice?: undefined;
1785
- maxFeePerBlobGas?: undefined;
1786
- maxFeePerGas?: bigint | undefined;
1787
- maxPriorityFeePerGas?: bigint | undefined;
1788
- sidecars?: undefined;
1789
- } & (import("viem").OneOf<{
1790
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1791
- } | {
1792
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1793
- }, import("viem").FeeValuesEIP1559> & {
1794
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1795
- }) ? "eip1559" : never) | (request extends {
1796
- accessList?: import("viem").AccessList | undefined;
1797
- authorizationList?: undefined;
1798
- blobs?: undefined;
1799
- blobVersionedHashes?: undefined;
1800
- gasPrice?: bigint | undefined;
1801
- sidecars?: undefined;
1802
- maxFeePerBlobGas?: undefined;
1803
- maxFeePerGas?: undefined;
1804
- maxPriorityFeePerGas?: undefined;
1805
- } & {
1806
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1807
- } ? "eip2930" : never) | (request extends ({
1808
- accessList?: import("viem").AccessList | undefined;
1809
- authorizationList?: undefined;
1810
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1811
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1812
- maxFeePerBlobGas?: bigint | undefined;
1813
- maxFeePerGas?: bigint | undefined;
1814
- maxPriorityFeePerGas?: bigint | undefined;
1815
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1816
- } | {
1817
- accessList?: import("viem").AccessList | undefined;
1818
- authorizationList?: undefined;
1819
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1820
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1821
- maxFeePerBlobGas?: bigint | undefined;
1822
- maxFeePerGas?: bigint | undefined;
1823
- maxPriorityFeePerGas?: bigint | undefined;
1824
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1825
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1826
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1827
- } | {
1828
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1829
- } | {
1830
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1831
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1832
- accessList?: import("viem").AccessList | undefined;
1833
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1834
- blobs?: undefined;
1835
- blobVersionedHashes?: undefined;
1836
- gasPrice?: undefined;
1837
- maxFeePerBlobGas?: undefined;
1838
- maxFeePerGas?: bigint | undefined;
1839
- maxPriorityFeePerGas?: bigint | undefined;
1840
- sidecars?: undefined;
1841
- } | {
1842
- accessList?: import("viem").AccessList | undefined;
1843
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1844
- blobs?: undefined;
1845
- blobVersionedHashes?: undefined;
1846
- gasPrice?: undefined;
1847
- maxFeePerBlobGas?: undefined;
1848
- maxFeePerGas?: bigint | undefined;
1849
- maxPriorityFeePerGas?: bigint | undefined;
1850
- sidecars?: undefined;
1851
- }) & {
1852
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1853
- } ? "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 {
1854
- accessList?: undefined;
1855
- authorizationList?: undefined;
1856
- blobs?: undefined;
1857
- blobVersionedHashes?: undefined;
1858
- gasPrice?: bigint | undefined;
1859
- sidecars?: undefined;
1860
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1861
- accessList?: import("viem").AccessList | undefined;
1862
- authorizationList?: undefined;
1863
- blobs?: undefined;
1864
- blobVersionedHashes?: undefined;
1865
- gasPrice?: undefined;
1866
- maxFeePerBlobGas?: undefined;
1867
- maxFeePerGas?: bigint | undefined;
1868
- maxPriorityFeePerGas?: bigint | undefined;
1869
- sidecars?: undefined;
1870
- } & (import("viem").OneOf<{
1871
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1872
- } | {
1873
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1874
- }, import("viem").FeeValuesEIP1559> & {
1875
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1876
- }) ? "eip1559" : never) | (request extends {
1877
- accessList?: import("viem").AccessList | undefined;
1878
- authorizationList?: undefined;
1879
- blobs?: undefined;
1880
- blobVersionedHashes?: undefined;
1881
- gasPrice?: bigint | undefined;
1882
- sidecars?: undefined;
1883
- maxFeePerBlobGas?: undefined;
1884
- maxFeePerGas?: undefined;
1885
- maxPriorityFeePerGas?: undefined;
1886
- } & {
1887
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1888
- } ? "eip2930" : never) | (request extends ({
1889
- accessList?: import("viem").AccessList | undefined;
1890
- authorizationList?: undefined;
1891
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1892
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1893
- maxFeePerBlobGas?: bigint | undefined;
1894
- maxFeePerGas?: bigint | undefined;
1895
- maxPriorityFeePerGas?: bigint | undefined;
1896
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1897
- } | {
1898
- accessList?: import("viem").AccessList | undefined;
1899
- authorizationList?: undefined;
1900
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1901
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1902
- maxFeePerBlobGas?: bigint | undefined;
1903
- maxFeePerGas?: bigint | undefined;
1904
- maxPriorityFeePerGas?: bigint | undefined;
1905
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1906
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1907
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1908
- } | {
1909
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1910
- } | {
1911
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1912
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1913
- accessList?: import("viem").AccessList | undefined;
1914
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1915
- blobs?: undefined;
1916
- blobVersionedHashes?: undefined;
1917
- gasPrice?: undefined;
1918
- maxFeePerBlobGas?: undefined;
1919
- maxFeePerGas?: bigint | undefined;
1920
- maxPriorityFeePerGas?: bigint | undefined;
1921
- sidecars?: undefined;
1922
- } | {
1923
- accessList?: import("viem").AccessList | undefined;
1924
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1925
- blobs?: undefined;
1926
- blobVersionedHashes?: undefined;
1927
- gasPrice?: undefined;
1928
- maxFeePerBlobGas?: undefined;
1929
- maxFeePerGas?: bigint | undefined;
1930
- maxPriorityFeePerGas?: bigint | undefined;
1931
- sidecars?: undefined;
1932
- }) & {
1933
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1934
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1935
- accessList?: undefined;
1936
- authorizationList?: undefined;
1937
- blobs?: undefined;
1938
- blobVersionedHashes?: undefined;
1939
- gasPrice?: bigint | undefined;
1940
- sidecars?: undefined;
1941
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1942
- accessList?: import("viem").AccessList | undefined;
1943
- authorizationList?: undefined;
1944
- blobs?: undefined;
1945
- blobVersionedHashes?: undefined;
1946
- gasPrice?: undefined;
1947
- maxFeePerBlobGas?: undefined;
1948
- maxFeePerGas?: bigint | undefined;
1949
- maxPriorityFeePerGas?: bigint | undefined;
1950
- sidecars?: undefined;
1951
- } & (import("viem").OneOf<{
1952
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1953
- } | {
1954
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1955
- }, import("viem").FeeValuesEIP1559> & {
1956
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1957
- }) ? "eip1559" : never) | (request extends {
1958
- accessList?: import("viem").AccessList | undefined;
1959
- authorizationList?: undefined;
1960
- blobs?: undefined;
1961
- blobVersionedHashes?: undefined;
1962
- gasPrice?: bigint | undefined;
1963
- sidecars?: undefined;
1964
- maxFeePerBlobGas?: undefined;
1965
- maxFeePerGas?: undefined;
1966
- maxPriorityFeePerGas?: undefined;
1967
- } & {
1968
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1969
- } ? "eip2930" : never) | (request extends ({
1970
- accessList?: import("viem").AccessList | undefined;
1971
- authorizationList?: undefined;
1972
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1973
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1974
- maxFeePerBlobGas?: bigint | undefined;
1975
- maxFeePerGas?: bigint | undefined;
1976
- maxPriorityFeePerGas?: bigint | undefined;
1977
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1978
- } | {
1979
- accessList?: import("viem").AccessList | undefined;
1980
- authorizationList?: undefined;
1981
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1982
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1983
- maxFeePerBlobGas?: bigint | undefined;
1984
- maxFeePerGas?: bigint | undefined;
1985
- maxPriorityFeePerGas?: bigint | undefined;
1986
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1987
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1988
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1989
- } | {
1990
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1991
- } | {
1992
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1993
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1994
- accessList?: import("viem").AccessList | undefined;
1995
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1996
- blobs?: undefined;
1997
- blobVersionedHashes?: undefined;
1998
- gasPrice?: undefined;
1999
- maxFeePerBlobGas?: undefined;
2000
- maxFeePerGas?: bigint | undefined;
2001
- maxPriorityFeePerGas?: bigint | undefined;
2002
- sidecars?: undefined;
2003
- } | {
2004
- accessList?: import("viem").AccessList | undefined;
2005
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2006
- blobs?: undefined;
2007
- blobVersionedHashes?: undefined;
2008
- gasPrice?: undefined;
2009
- maxFeePerBlobGas?: undefined;
2010
- maxFeePerGas?: bigint | undefined;
2011
- maxPriorityFeePerGas?: bigint | undefined;
2012
- sidecars?: undefined;
2013
- }) & {
2014
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2015
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_3 extends string ? T_3 : undefined : never : never) | undefined;
2016
- }, import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from">, ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
2017
- accessList?: undefined;
2018
- authorizationList?: undefined;
2019
- blobs?: undefined;
2020
- blobVersionedHashes?: undefined;
2021
- gasPrice?: bigint | undefined;
2022
- sidecars?: undefined;
2023
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2024
- accessList?: import("viem").AccessList | undefined;
2025
- authorizationList?: undefined;
2026
- blobs?: undefined;
2027
- blobVersionedHashes?: undefined;
2028
- gasPrice?: undefined;
2029
- maxFeePerBlobGas?: undefined;
2030
- maxFeePerGas?: bigint | undefined;
2031
- maxPriorityFeePerGas?: bigint | undefined;
2032
- sidecars?: undefined;
2033
- } & (import("viem").OneOf<{
2034
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2035
- } | {
2036
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2037
- }, import("viem").FeeValuesEIP1559> & {
2038
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2039
- }) ? "eip1559" : never) | (request extends {
2040
- accessList?: import("viem").AccessList | undefined;
2041
- authorizationList?: undefined;
2042
- blobs?: undefined;
2043
- blobVersionedHashes?: undefined;
2044
- gasPrice?: bigint | undefined;
2045
- sidecars?: undefined;
2046
- maxFeePerBlobGas?: undefined;
2047
- maxFeePerGas?: undefined;
2048
- maxPriorityFeePerGas?: undefined;
2049
- } & {
2050
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2051
- } ? "eip2930" : never) | (request extends ({
2052
- accessList?: import("viem").AccessList | undefined;
2053
- authorizationList?: undefined;
2054
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2055
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2056
- maxFeePerBlobGas?: bigint | undefined;
2057
- maxFeePerGas?: bigint | undefined;
2058
- maxPriorityFeePerGas?: bigint | undefined;
2059
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2060
- } | {
2061
- accessList?: import("viem").AccessList | undefined;
2062
- authorizationList?: undefined;
2063
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2064
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2065
- maxFeePerBlobGas?: bigint | undefined;
2066
- maxFeePerGas?: bigint | undefined;
2067
- maxPriorityFeePerGas?: bigint | undefined;
2068
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2069
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2070
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2071
- } | {
2072
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2073
- } | {
2074
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2075
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2076
- accessList?: import("viem").AccessList | undefined;
2077
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2078
- blobs?: undefined;
2079
- blobVersionedHashes?: undefined;
2080
- gasPrice?: undefined;
2081
- maxFeePerBlobGas?: undefined;
2082
- maxFeePerGas?: bigint | undefined;
2083
- maxPriorityFeePerGas?: bigint | undefined;
2084
- sidecars?: undefined;
2085
- } | {
2086
- accessList?: import("viem").AccessList | undefined;
2087
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2088
- blobs?: undefined;
2089
- blobVersionedHashes?: undefined;
2090
- gasPrice?: undefined;
2091
- maxFeePerBlobGas?: undefined;
2092
- maxFeePerGas?: bigint | undefined;
2093
- maxPriorityFeePerGas?: bigint | undefined;
2094
- sidecars?: undefined;
2095
- }) & {
2096
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2097
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2098
- accessList?: undefined;
2099
- authorizationList?: undefined;
2100
- blobs?: undefined;
2101
- blobVersionedHashes?: undefined;
2102
- gasPrice?: bigint | undefined;
2103
- sidecars?: undefined;
2104
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2105
- accessList?: import("viem").AccessList | undefined;
2106
- authorizationList?: undefined;
2107
- blobs?: undefined;
2108
- blobVersionedHashes?: undefined;
2109
- gasPrice?: undefined;
2110
- maxFeePerBlobGas?: undefined;
2111
- maxFeePerGas?: bigint | undefined;
2112
- maxPriorityFeePerGas?: bigint | undefined;
2113
- sidecars?: undefined;
2114
- } & (import("viem").OneOf<{
2115
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2116
- } | {
2117
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2118
- }, import("viem").FeeValuesEIP1559> & {
2119
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2120
- }) ? "eip1559" : never) | (request extends {
2121
- accessList?: import("viem").AccessList | undefined;
2122
- authorizationList?: undefined;
2123
- blobs?: undefined;
2124
- blobVersionedHashes?: undefined;
2125
- gasPrice?: bigint | undefined;
2126
- sidecars?: undefined;
2127
- maxFeePerBlobGas?: undefined;
2128
- maxFeePerGas?: undefined;
2129
- maxPriorityFeePerGas?: undefined;
2130
- } & {
2131
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2132
- } ? "eip2930" : never) | (request extends ({
2133
- accessList?: import("viem").AccessList | undefined;
2134
- authorizationList?: undefined;
2135
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2136
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2137
- maxFeePerBlobGas?: bigint | undefined;
2138
- maxFeePerGas?: bigint | undefined;
2139
- maxPriorityFeePerGas?: bigint | undefined;
2140
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2141
- } | {
2142
- accessList?: import("viem").AccessList | undefined;
2143
- authorizationList?: undefined;
2144
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2145
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2146
- maxFeePerBlobGas?: bigint | undefined;
2147
- maxFeePerGas?: bigint | undefined;
2148
- maxPriorityFeePerGas?: bigint | undefined;
2149
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2150
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2151
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2152
- } | {
2153
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2154
- } | {
2155
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2156
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2157
- accessList?: import("viem").AccessList | undefined;
2158
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2159
- blobs?: undefined;
2160
- blobVersionedHashes?: undefined;
2161
- gasPrice?: undefined;
2162
- maxFeePerBlobGas?: undefined;
2163
- maxFeePerGas?: bigint | undefined;
2164
- maxPriorityFeePerGas?: bigint | undefined;
2165
- sidecars?: undefined;
2166
- } | {
2167
- accessList?: import("viem").AccessList | undefined;
2168
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2169
- blobs?: undefined;
2170
- blobVersionedHashes?: undefined;
2171
- gasPrice?: undefined;
2172
- maxFeePerBlobGas?: undefined;
2173
- maxFeePerGas?: bigint | undefined;
2174
- maxPriorityFeePerGas?: bigint | undefined;
2175
- sidecars?: undefined;
2176
- }) & {
2177
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2178
- } ? "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 {
2179
- accessList?: undefined;
2180
- authorizationList?: undefined;
2181
- blobs?: undefined;
2182
- blobVersionedHashes?: undefined;
2183
- gasPrice?: bigint | undefined;
2184
- sidecars?: undefined;
2185
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2186
- accessList?: import("viem").AccessList | undefined;
2187
- authorizationList?: undefined;
2188
- blobs?: undefined;
2189
- blobVersionedHashes?: undefined;
2190
- gasPrice?: undefined;
2191
- maxFeePerBlobGas?: undefined;
2192
- maxFeePerGas?: bigint | undefined;
2193
- maxPriorityFeePerGas?: bigint | undefined;
2194
- sidecars?: undefined;
2195
- } & (import("viem").OneOf<{
2196
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2197
- } | {
2198
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2199
- }, import("viem").FeeValuesEIP1559> & {
2200
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2201
- }) ? "eip1559" : never) | (request extends {
2202
- accessList?: import("viem").AccessList | undefined;
2203
- authorizationList?: undefined;
2204
- blobs?: undefined;
2205
- blobVersionedHashes?: undefined;
2206
- gasPrice?: bigint | undefined;
2207
- sidecars?: undefined;
2208
- maxFeePerBlobGas?: undefined;
2209
- maxFeePerGas?: undefined;
2210
- maxPriorityFeePerGas?: undefined;
2211
- } & {
2212
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2213
- } ? "eip2930" : never) | (request extends ({
2214
- accessList?: import("viem").AccessList | undefined;
2215
- authorizationList?: undefined;
2216
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2217
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2218
- maxFeePerBlobGas?: bigint | undefined;
2219
- maxFeePerGas?: bigint | undefined;
2220
- maxPriorityFeePerGas?: bigint | undefined;
2221
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2222
- } | {
2223
- accessList?: import("viem").AccessList | undefined;
2224
- authorizationList?: undefined;
2225
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2226
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2227
- maxFeePerBlobGas?: bigint | undefined;
2228
- maxFeePerGas?: bigint | undefined;
2229
- maxPriorityFeePerGas?: bigint | undefined;
2230
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2231
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2232
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2233
- } | {
2234
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2235
- } | {
2236
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2237
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2238
- accessList?: import("viem").AccessList | undefined;
2239
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2240
- blobs?: undefined;
2241
- blobVersionedHashes?: undefined;
2242
- gasPrice?: undefined;
2243
- maxFeePerBlobGas?: undefined;
2244
- maxFeePerGas?: bigint | undefined;
2245
- maxPriorityFeePerGas?: bigint | undefined;
2246
- sidecars?: undefined;
2247
- } | {
2248
- accessList?: import("viem").AccessList | undefined;
2249
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2250
- blobs?: undefined;
2251
- blobVersionedHashes?: undefined;
2252
- gasPrice?: undefined;
2253
- maxFeePerBlobGas?: undefined;
2254
- maxFeePerGas?: bigint | undefined;
2255
- maxPriorityFeePerGas?: bigint | undefined;
2256
- sidecars?: undefined;
2257
- }) & {
2258
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2259
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2260
- accessList?: undefined;
2261
- authorizationList?: undefined;
2262
- blobs?: undefined;
2263
- blobVersionedHashes?: undefined;
2264
- gasPrice?: bigint | undefined;
2265
- sidecars?: undefined;
2266
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2267
- accessList?: import("viem").AccessList | undefined;
2268
- authorizationList?: undefined;
2269
- blobs?: undefined;
2270
- blobVersionedHashes?: undefined;
2271
- gasPrice?: undefined;
2272
- maxFeePerBlobGas?: undefined;
2273
- maxFeePerGas?: bigint | undefined;
2274
- maxPriorityFeePerGas?: bigint | undefined;
2275
- sidecars?: undefined;
2276
- } & (import("viem").OneOf<{
2277
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2278
- } | {
2279
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2280
- }, import("viem").FeeValuesEIP1559> & {
2281
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2282
- }) ? "eip1559" : never) | (request extends {
2283
- accessList?: import("viem").AccessList | undefined;
2284
- authorizationList?: undefined;
2285
- blobs?: undefined;
2286
- blobVersionedHashes?: undefined;
2287
- gasPrice?: bigint | undefined;
2288
- sidecars?: undefined;
2289
- maxFeePerBlobGas?: undefined;
2290
- maxFeePerGas?: undefined;
2291
- maxPriorityFeePerGas?: undefined;
2292
- } & {
2293
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2294
- } ? "eip2930" : never) | (request extends ({
2295
- accessList?: import("viem").AccessList | undefined;
2296
- authorizationList?: undefined;
2297
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2298
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2299
- maxFeePerBlobGas?: bigint | undefined;
2300
- maxFeePerGas?: bigint | undefined;
2301
- maxPriorityFeePerGas?: bigint | undefined;
2302
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2303
- } | {
2304
- accessList?: import("viem").AccessList | undefined;
2305
- authorizationList?: undefined;
2306
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2307
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2308
- maxFeePerBlobGas?: bigint | undefined;
2309
- maxFeePerGas?: bigint | undefined;
2310
- maxPriorityFeePerGas?: bigint | undefined;
2311
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2312
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2313
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2314
- } | {
2315
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2316
- } | {
2317
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2318
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2319
- accessList?: import("viem").AccessList | undefined;
2320
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2321
- blobs?: undefined;
2322
- blobVersionedHashes?: undefined;
2323
- gasPrice?: undefined;
2324
- maxFeePerBlobGas?: undefined;
2325
- maxFeePerGas?: bigint | undefined;
2326
- maxPriorityFeePerGas?: bigint | undefined;
2327
- sidecars?: undefined;
2328
- } | {
2329
- accessList?: import("viem").AccessList | undefined;
2330
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2331
- blobs?: undefined;
2332
- blobVersionedHashes?: undefined;
2333
- gasPrice?: undefined;
2334
- maxFeePerBlobGas?: undefined;
2335
- maxFeePerGas?: bigint | undefined;
2336
- maxPriorityFeePerGas?: bigint | undefined;
2337
- sidecars?: undefined;
2338
- }) & {
2339
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2340
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_3 extends string ? T_3 : undefined : never : never) | undefined>> extends true ? unknown : import("viem").ExactPartial<import("viem").ExtractFormattedTransactionRequest<import("viem").DeriveChain<Chain, chainOverride>, {
2341
- type?: ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
2342
- accessList?: undefined;
2343
- authorizationList?: undefined;
2344
- blobs?: undefined;
2345
- blobVersionedHashes?: undefined;
2346
- gasPrice?: bigint | undefined;
2347
- sidecars?: undefined;
2348
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2349
- accessList?: import("viem").AccessList | undefined;
2350
- authorizationList?: undefined;
2351
- blobs?: undefined;
2352
- blobVersionedHashes?: undefined;
2353
- gasPrice?: undefined;
2354
- maxFeePerBlobGas?: undefined;
2355
- maxFeePerGas?: bigint | undefined;
2356
- maxPriorityFeePerGas?: bigint | undefined;
2357
- sidecars?: undefined;
2358
- } & (import("viem").OneOf<{
2359
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2360
- } | {
2361
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2362
- }, import("viem").FeeValuesEIP1559> & {
2363
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2364
- }) ? "eip1559" : never) | (request extends {
2365
- accessList?: import("viem").AccessList | undefined;
2366
- authorizationList?: undefined;
2367
- blobs?: undefined;
2368
- blobVersionedHashes?: undefined;
2369
- gasPrice?: bigint | undefined;
2370
- sidecars?: undefined;
2371
- maxFeePerBlobGas?: undefined;
2372
- maxFeePerGas?: undefined;
2373
- maxPriorityFeePerGas?: undefined;
2374
- } & {
2375
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2376
- } ? "eip2930" : never) | (request extends ({
2377
- accessList?: import("viem").AccessList | undefined;
2378
- authorizationList?: undefined;
2379
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2380
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2381
- maxFeePerBlobGas?: bigint | undefined;
2382
- maxFeePerGas?: bigint | undefined;
2383
- maxPriorityFeePerGas?: bigint | undefined;
2384
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2385
- } | {
2386
- accessList?: import("viem").AccessList | undefined;
2387
- authorizationList?: undefined;
2388
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2389
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2390
- maxFeePerBlobGas?: bigint | undefined;
2391
- maxFeePerGas?: bigint | undefined;
2392
- maxPriorityFeePerGas?: bigint | undefined;
2393
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2394
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2395
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2396
- } | {
2397
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2398
- } | {
2399
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2400
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2401
- accessList?: import("viem").AccessList | undefined;
2402
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2403
- blobs?: undefined;
2404
- blobVersionedHashes?: undefined;
2405
- gasPrice?: undefined;
2406
- maxFeePerBlobGas?: undefined;
2407
- maxFeePerGas?: bigint | undefined;
2408
- maxPriorityFeePerGas?: bigint | undefined;
2409
- sidecars?: undefined;
2410
- } | {
2411
- accessList?: import("viem").AccessList | undefined;
2412
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2413
- blobs?: undefined;
2414
- blobVersionedHashes?: undefined;
2415
- gasPrice?: undefined;
2416
- maxFeePerBlobGas?: undefined;
2417
- maxFeePerGas?: bigint | undefined;
2418
- maxPriorityFeePerGas?: bigint | undefined;
2419
- sidecars?: undefined;
2420
- }) & {
2421
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2422
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2423
- accessList?: undefined;
2424
- authorizationList?: undefined;
2425
- blobs?: undefined;
2426
- blobVersionedHashes?: undefined;
2427
- gasPrice?: bigint | undefined;
2428
- sidecars?: undefined;
2429
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2430
- accessList?: import("viem").AccessList | undefined;
2431
- authorizationList?: undefined;
2432
- blobs?: undefined;
2433
- blobVersionedHashes?: undefined;
2434
- gasPrice?: undefined;
2435
- maxFeePerBlobGas?: undefined;
2436
- maxFeePerGas?: bigint | undefined;
2437
- maxPriorityFeePerGas?: bigint | undefined;
2438
- sidecars?: undefined;
2439
- } & (import("viem").OneOf<{
2440
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2441
- } | {
2442
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2443
- }, import("viem").FeeValuesEIP1559> & {
2444
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2445
- }) ? "eip1559" : never) | (request extends {
2446
- accessList?: import("viem").AccessList | undefined;
2447
- authorizationList?: undefined;
2448
- blobs?: undefined;
2449
- blobVersionedHashes?: undefined;
2450
- gasPrice?: bigint | undefined;
2451
- sidecars?: undefined;
2452
- maxFeePerBlobGas?: undefined;
2453
- maxFeePerGas?: undefined;
2454
- maxPriorityFeePerGas?: undefined;
2455
- } & {
2456
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2457
- } ? "eip2930" : never) | (request extends ({
2458
- accessList?: import("viem").AccessList | undefined;
2459
- authorizationList?: undefined;
2460
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2461
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2462
- maxFeePerBlobGas?: bigint | undefined;
2463
- maxFeePerGas?: bigint | undefined;
2464
- maxPriorityFeePerGas?: bigint | undefined;
2465
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2466
- } | {
2467
- accessList?: import("viem").AccessList | undefined;
2468
- authorizationList?: undefined;
2469
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2470
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2471
- maxFeePerBlobGas?: bigint | undefined;
2472
- maxFeePerGas?: bigint | undefined;
2473
- maxPriorityFeePerGas?: bigint | undefined;
2474
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2475
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2476
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2477
- } | {
2478
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2479
- } | {
2480
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2481
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2482
- accessList?: import("viem").AccessList | undefined;
2483
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2484
- blobs?: undefined;
2485
- blobVersionedHashes?: undefined;
2486
- gasPrice?: undefined;
2487
- maxFeePerBlobGas?: undefined;
2488
- maxFeePerGas?: bigint | undefined;
2489
- maxPriorityFeePerGas?: bigint | undefined;
2490
- sidecars?: undefined;
2491
- } | {
2492
- accessList?: import("viem").AccessList | undefined;
2493
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2494
- blobs?: undefined;
2495
- blobVersionedHashes?: undefined;
2496
- gasPrice?: undefined;
2497
- maxFeePerBlobGas?: undefined;
2498
- maxFeePerGas?: bigint | undefined;
2499
- maxPriorityFeePerGas?: bigint | undefined;
2500
- sidecars?: undefined;
2501
- }) & {
2502
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2503
- } ? "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 {
2504
- accessList?: undefined;
2505
- authorizationList?: undefined;
2506
- blobs?: undefined;
2507
- blobVersionedHashes?: undefined;
2508
- gasPrice?: bigint | undefined;
2509
- sidecars?: undefined;
2510
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2511
- accessList?: import("viem").AccessList | undefined;
2512
- authorizationList?: undefined;
2513
- blobs?: undefined;
2514
- blobVersionedHashes?: undefined;
2515
- gasPrice?: undefined;
2516
- maxFeePerBlobGas?: undefined;
2517
- maxFeePerGas?: bigint | undefined;
2518
- maxPriorityFeePerGas?: bigint | undefined;
2519
- sidecars?: undefined;
2520
- } & (import("viem").OneOf<{
2521
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2522
- } | {
2523
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2524
- }, import("viem").FeeValuesEIP1559> & {
2525
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2526
- }) ? "eip1559" : never) | (request extends {
2527
- accessList?: import("viem").AccessList | undefined;
2528
- authorizationList?: undefined;
2529
- blobs?: undefined;
2530
- blobVersionedHashes?: undefined;
2531
- gasPrice?: bigint | undefined;
2532
- sidecars?: undefined;
2533
- maxFeePerBlobGas?: undefined;
2534
- maxFeePerGas?: undefined;
2535
- maxPriorityFeePerGas?: undefined;
2536
- } & {
2537
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2538
- } ? "eip2930" : never) | (request extends ({
2539
- accessList?: import("viem").AccessList | undefined;
2540
- authorizationList?: undefined;
2541
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2542
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2543
- maxFeePerBlobGas?: bigint | undefined;
2544
- maxFeePerGas?: bigint | undefined;
2545
- maxPriorityFeePerGas?: bigint | undefined;
2546
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2547
- } | {
2548
- accessList?: import("viem").AccessList | undefined;
2549
- authorizationList?: undefined;
2550
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2551
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2552
- maxFeePerBlobGas?: bigint | undefined;
2553
- maxFeePerGas?: bigint | undefined;
2554
- maxPriorityFeePerGas?: bigint | undefined;
2555
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2556
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2557
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2558
- } | {
2559
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2560
- } | {
2561
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2562
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2563
- accessList?: import("viem").AccessList | undefined;
2564
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2565
- blobs?: undefined;
2566
- blobVersionedHashes?: undefined;
2567
- gasPrice?: undefined;
2568
- maxFeePerBlobGas?: undefined;
2569
- maxFeePerGas?: bigint | undefined;
2570
- maxPriorityFeePerGas?: bigint | undefined;
2571
- sidecars?: undefined;
2572
- } | {
2573
- accessList?: import("viem").AccessList | undefined;
2574
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2575
- blobs?: undefined;
2576
- blobVersionedHashes?: undefined;
2577
- gasPrice?: undefined;
2578
- maxFeePerBlobGas?: undefined;
2579
- maxFeePerGas?: bigint | undefined;
2580
- maxPriorityFeePerGas?: bigint | undefined;
2581
- sidecars?: undefined;
2582
- }) & {
2583
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2584
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2585
- accessList?: undefined;
2586
- authorizationList?: undefined;
2587
- blobs?: undefined;
2588
- blobVersionedHashes?: undefined;
2589
- gasPrice?: bigint | undefined;
2590
- sidecars?: undefined;
2591
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2592
- accessList?: import("viem").AccessList | undefined;
2593
- authorizationList?: undefined;
2594
- blobs?: undefined;
2595
- blobVersionedHashes?: undefined;
2596
- gasPrice?: undefined;
2597
- maxFeePerBlobGas?: undefined;
2598
- maxFeePerGas?: bigint | undefined;
2599
- maxPriorityFeePerGas?: bigint | undefined;
2600
- sidecars?: undefined;
2601
- } & (import("viem").OneOf<{
2602
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2603
- } | {
2604
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2605
- }, import("viem").FeeValuesEIP1559> & {
2606
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2607
- }) ? "eip1559" : never) | (request extends {
2608
- accessList?: import("viem").AccessList | undefined;
2609
- authorizationList?: undefined;
2610
- blobs?: undefined;
2611
- blobVersionedHashes?: undefined;
2612
- gasPrice?: bigint | undefined;
2613
- sidecars?: undefined;
2614
- maxFeePerBlobGas?: undefined;
2615
- maxFeePerGas?: undefined;
2616
- maxPriorityFeePerGas?: undefined;
2617
- } & {
2618
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2619
- } ? "eip2930" : never) | (request extends ({
2620
- accessList?: import("viem").AccessList | undefined;
2621
- authorizationList?: undefined;
2622
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2623
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2624
- maxFeePerBlobGas?: bigint | undefined;
2625
- maxFeePerGas?: bigint | undefined;
2626
- maxPriorityFeePerGas?: bigint | undefined;
2627
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2628
- } | {
2629
- accessList?: import("viem").AccessList | undefined;
2630
- authorizationList?: undefined;
2631
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2632
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2633
- maxFeePerBlobGas?: bigint | undefined;
2634
- maxFeePerGas?: bigint | undefined;
2635
- maxPriorityFeePerGas?: bigint | undefined;
2636
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2637
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2638
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2639
- } | {
2640
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2641
- } | {
2642
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2643
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2644
- accessList?: import("viem").AccessList | undefined;
2645
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2646
- blobs?: undefined;
2647
- blobVersionedHashes?: undefined;
2648
- gasPrice?: undefined;
2649
- maxFeePerBlobGas?: undefined;
2650
- maxFeePerGas?: bigint | undefined;
2651
- maxPriorityFeePerGas?: bigint | undefined;
2652
- sidecars?: undefined;
2653
- } | {
2654
- accessList?: import("viem").AccessList | undefined;
2655
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2656
- blobs?: undefined;
2657
- blobVersionedHashes?: undefined;
2658
- gasPrice?: undefined;
2659
- maxFeePerBlobGas?: undefined;
2660
- maxFeePerGas?: bigint | undefined;
2661
- maxPriorityFeePerGas?: bigint | undefined;
2662
- sidecars?: undefined;
2663
- }) & {
2664
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2665
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_3 extends string ? T_3 : undefined : never : never) | undefined;
2666
- }, import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from">, ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
2667
- accessList?: undefined;
2668
- authorizationList?: undefined;
2669
- blobs?: undefined;
2670
- blobVersionedHashes?: undefined;
2671
- gasPrice?: bigint | undefined;
2672
- sidecars?: undefined;
2673
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2674
- accessList?: import("viem").AccessList | undefined;
2675
- authorizationList?: undefined;
2676
- blobs?: undefined;
2677
- blobVersionedHashes?: undefined;
2678
- gasPrice?: undefined;
2679
- maxFeePerBlobGas?: undefined;
2680
- maxFeePerGas?: bigint | undefined;
2681
- maxPriorityFeePerGas?: bigint | undefined;
2682
- sidecars?: undefined;
2683
- } & (import("viem").OneOf<{
2684
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2685
- } | {
2686
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2687
- }, import("viem").FeeValuesEIP1559> & {
2688
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2689
- }) ? "eip1559" : never) | (request extends {
2690
- accessList?: import("viem").AccessList | undefined;
2691
- authorizationList?: undefined;
2692
- blobs?: undefined;
2693
- blobVersionedHashes?: undefined;
2694
- gasPrice?: bigint | undefined;
2695
- sidecars?: undefined;
2696
- maxFeePerBlobGas?: undefined;
2697
- maxFeePerGas?: undefined;
2698
- maxPriorityFeePerGas?: undefined;
2699
- } & {
2700
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2701
- } ? "eip2930" : never) | (request extends ({
2702
- accessList?: import("viem").AccessList | undefined;
2703
- authorizationList?: undefined;
2704
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2705
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2706
- maxFeePerBlobGas?: bigint | undefined;
2707
- maxFeePerGas?: bigint | undefined;
2708
- maxPriorityFeePerGas?: bigint | undefined;
2709
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2710
- } | {
2711
- accessList?: import("viem").AccessList | undefined;
2712
- authorizationList?: undefined;
2713
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2714
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2715
- maxFeePerBlobGas?: bigint | undefined;
2716
- maxFeePerGas?: bigint | undefined;
2717
- maxPriorityFeePerGas?: bigint | undefined;
2718
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2719
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2720
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2721
- } | {
2722
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2723
- } | {
2724
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2725
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2726
- accessList?: import("viem").AccessList | undefined;
2727
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2728
- blobs?: undefined;
2729
- blobVersionedHashes?: undefined;
2730
- gasPrice?: undefined;
2731
- maxFeePerBlobGas?: undefined;
2732
- maxFeePerGas?: bigint | undefined;
2733
- maxPriorityFeePerGas?: bigint | undefined;
2734
- sidecars?: undefined;
2735
- } | {
2736
- accessList?: import("viem").AccessList | undefined;
2737
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2738
- blobs?: undefined;
2739
- blobVersionedHashes?: undefined;
2740
- gasPrice?: undefined;
2741
- maxFeePerBlobGas?: undefined;
2742
- maxFeePerGas?: bigint | undefined;
2743
- maxPriorityFeePerGas?: bigint | undefined;
2744
- sidecars?: undefined;
2745
- }) & {
2746
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2747
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2748
- accessList?: undefined;
2749
- authorizationList?: undefined;
2750
- blobs?: undefined;
2751
- blobVersionedHashes?: undefined;
2752
- gasPrice?: bigint | undefined;
2753
- sidecars?: undefined;
2754
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2755
- accessList?: import("viem").AccessList | undefined;
2756
- authorizationList?: undefined;
2757
- blobs?: undefined;
2758
- blobVersionedHashes?: undefined;
2759
- gasPrice?: undefined;
2760
- maxFeePerBlobGas?: undefined;
2761
- maxFeePerGas?: bigint | undefined;
2762
- maxPriorityFeePerGas?: bigint | undefined;
2763
- sidecars?: undefined;
2764
- } & (import("viem").OneOf<{
2765
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2766
- } | {
2767
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2768
- }, import("viem").FeeValuesEIP1559> & {
2769
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2770
- }) ? "eip1559" : never) | (request extends {
2771
- accessList?: import("viem").AccessList | undefined;
2772
- authorizationList?: undefined;
2773
- blobs?: undefined;
2774
- blobVersionedHashes?: undefined;
2775
- gasPrice?: bigint | undefined;
2776
- sidecars?: undefined;
2777
- maxFeePerBlobGas?: undefined;
2778
- maxFeePerGas?: undefined;
2779
- maxPriorityFeePerGas?: undefined;
2780
- } & {
2781
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2782
- } ? "eip2930" : never) | (request extends ({
2783
- accessList?: import("viem").AccessList | undefined;
2784
- authorizationList?: undefined;
2785
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2786
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2787
- maxFeePerBlobGas?: bigint | undefined;
2788
- maxFeePerGas?: bigint | undefined;
2789
- maxPriorityFeePerGas?: bigint | undefined;
2790
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2791
- } | {
2792
- accessList?: import("viem").AccessList | undefined;
2793
- authorizationList?: undefined;
2794
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2795
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2796
- maxFeePerBlobGas?: bigint | undefined;
2797
- maxFeePerGas?: bigint | undefined;
2798
- maxPriorityFeePerGas?: bigint | undefined;
2799
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2800
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2801
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2802
- } | {
2803
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2804
- } | {
2805
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2806
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2807
- accessList?: import("viem").AccessList | undefined;
2808
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2809
- blobs?: undefined;
2810
- blobVersionedHashes?: undefined;
2811
- gasPrice?: undefined;
2812
- maxFeePerBlobGas?: undefined;
2813
- maxFeePerGas?: bigint | undefined;
2814
- maxPriorityFeePerGas?: bigint | undefined;
2815
- sidecars?: undefined;
2816
- } | {
2817
- accessList?: import("viem").AccessList | undefined;
2818
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2819
- blobs?: undefined;
2820
- blobVersionedHashes?: undefined;
2821
- gasPrice?: undefined;
2822
- maxFeePerBlobGas?: undefined;
2823
- maxFeePerGas?: bigint | undefined;
2824
- maxPriorityFeePerGas?: bigint | undefined;
2825
- sidecars?: undefined;
2826
- }) & {
2827
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2828
- } ? "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 {
2829
- accessList?: undefined;
2830
- authorizationList?: undefined;
2831
- blobs?: undefined;
2832
- blobVersionedHashes?: undefined;
2833
- gasPrice?: bigint | undefined;
2834
- sidecars?: undefined;
2835
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2836
- accessList?: import("viem").AccessList | undefined;
2837
- authorizationList?: undefined;
2838
- blobs?: undefined;
2839
- blobVersionedHashes?: undefined;
2840
- gasPrice?: undefined;
2841
- maxFeePerBlobGas?: undefined;
2842
- maxFeePerGas?: bigint | undefined;
2843
- maxPriorityFeePerGas?: bigint | undefined;
2844
- sidecars?: undefined;
2845
- } & (import("viem").OneOf<{
2846
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2847
- } | {
2848
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2849
- }, import("viem").FeeValuesEIP1559> & {
2850
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2851
- }) ? "eip1559" : never) | (request extends {
2852
- accessList?: import("viem").AccessList | undefined;
2853
- authorizationList?: undefined;
2854
- blobs?: undefined;
2855
- blobVersionedHashes?: undefined;
2856
- gasPrice?: bigint | undefined;
2857
- sidecars?: undefined;
2858
- maxFeePerBlobGas?: undefined;
2859
- maxFeePerGas?: undefined;
2860
- maxPriorityFeePerGas?: undefined;
2861
- } & {
2862
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2863
- } ? "eip2930" : never) | (request extends ({
2864
- accessList?: import("viem").AccessList | undefined;
2865
- authorizationList?: undefined;
2866
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2867
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2868
- maxFeePerBlobGas?: bigint | undefined;
2869
- maxFeePerGas?: bigint | undefined;
2870
- maxPriorityFeePerGas?: bigint | undefined;
2871
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2872
- } | {
2873
- accessList?: import("viem").AccessList | undefined;
2874
- authorizationList?: undefined;
2875
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2876
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2877
- maxFeePerBlobGas?: bigint | undefined;
2878
- maxFeePerGas?: bigint | undefined;
2879
- maxPriorityFeePerGas?: bigint | undefined;
2880
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2881
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2882
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2883
- } | {
2884
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2885
- } | {
2886
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2887
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2888
- accessList?: import("viem").AccessList | undefined;
2889
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2890
- blobs?: undefined;
2891
- blobVersionedHashes?: undefined;
2892
- gasPrice?: undefined;
2893
- maxFeePerBlobGas?: undefined;
2894
- maxFeePerGas?: bigint | undefined;
2895
- maxPriorityFeePerGas?: bigint | undefined;
2896
- sidecars?: undefined;
2897
- } | {
2898
- accessList?: import("viem").AccessList | undefined;
2899
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2900
- blobs?: undefined;
2901
- blobVersionedHashes?: undefined;
2902
- gasPrice?: undefined;
2903
- maxFeePerBlobGas?: undefined;
2904
- maxFeePerGas?: bigint | undefined;
2905
- maxPriorityFeePerGas?: bigint | undefined;
2906
- sidecars?: undefined;
2907
- }) & {
2908
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2909
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2910
- accessList?: undefined;
2911
- authorizationList?: undefined;
2912
- blobs?: undefined;
2913
- blobVersionedHashes?: undefined;
2914
- gasPrice?: bigint | undefined;
2915
- sidecars?: undefined;
2916
- } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2917
- accessList?: import("viem").AccessList | undefined;
2918
- authorizationList?: undefined;
2919
- blobs?: undefined;
2920
- blobVersionedHashes?: undefined;
2921
- gasPrice?: undefined;
2922
- maxFeePerBlobGas?: undefined;
2923
- maxFeePerGas?: bigint | undefined;
2924
- maxPriorityFeePerGas?: bigint | undefined;
2925
- sidecars?: undefined;
2926
- } & (import("viem").OneOf<{
2927
- maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2928
- } | {
2929
- maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2930
- }, import("viem").FeeValuesEIP1559> & {
2931
- accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2932
- }) ? "eip1559" : never) | (request extends {
2933
- accessList?: import("viem").AccessList | undefined;
2934
- authorizationList?: undefined;
2935
- blobs?: undefined;
2936
- blobVersionedHashes?: undefined;
2937
- gasPrice?: bigint | undefined;
2938
- sidecars?: undefined;
2939
- maxFeePerBlobGas?: undefined;
2940
- maxFeePerGas?: undefined;
2941
- maxPriorityFeePerGas?: undefined;
2942
- } & {
2943
- accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2944
- } ? "eip2930" : never) | (request extends ({
2945
- accessList?: import("viem").AccessList | undefined;
2946
- authorizationList?: undefined;
2947
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2948
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2949
- maxFeePerBlobGas?: bigint | undefined;
2950
- maxFeePerGas?: bigint | undefined;
2951
- maxPriorityFeePerGas?: bigint | undefined;
2952
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2953
- } | {
2954
- accessList?: import("viem").AccessList | undefined;
2955
- authorizationList?: undefined;
2956
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2957
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2958
- maxFeePerBlobGas?: bigint | undefined;
2959
- maxFeePerGas?: bigint | undefined;
2960
- maxPriorityFeePerGas?: bigint | undefined;
2961
- sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2962
- }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2963
- blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2964
- } | {
2965
- blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2966
- } | {
2967
- sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2968
- }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2969
- accessList?: import("viem").AccessList | undefined;
2970
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2971
- blobs?: undefined;
2972
- blobVersionedHashes?: undefined;
2973
- gasPrice?: undefined;
2974
- maxFeePerBlobGas?: undefined;
2975
- maxFeePerGas?: bigint | undefined;
2976
- maxPriorityFeePerGas?: bigint | undefined;
2977
- sidecars?: undefined;
2978
- } | {
2979
- accessList?: import("viem").AccessList | undefined;
2980
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
2981
- blobs?: undefined;
2982
- blobVersionedHashes?: undefined;
2983
- gasPrice?: undefined;
2984
- maxFeePerBlobGas?: undefined;
2985
- maxFeePerGas?: bigint | undefined;
2986
- maxPriorityFeePerGas?: bigint | undefined;
2987
- sidecars?: undefined;
2988
- }) & {
2989
- authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2990
- } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_3 extends string ? T_3 : undefined : never : never) | undefined>>> & {
2991
- chainId?: number | undefined;
2992
- }, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "fees" | "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId") extends infer T_4 ? T_4 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "fees" | "type" | "gas" | "nonce" | "blobVersionedHashes" | "chainId") ? T_4 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_4 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) & {
2993
- _capabilities?: {
2994
- [x: string]: any;
2995
- } | undefined;
2996
- })[K]; } : never>;
2997
- 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>>;
2998
- sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<import("viem").SendRawTransactionReturnType>;
2999
- sendRawTransactionSync: (args: import("viem").SendRawTransactionSyncParameters) => Promise<import("viem").TransactionReceipt>;
3000
- simulate: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
3001
- simulateBlocks: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
3002
- simulateCalls: <const calls extends readonly unknown[]>(args: import("viem").SimulateCallsParameters<calls>) => Promise<import("viem").SimulateCallsReturnType<calls>>;
3003
- 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 Chain | undefined, accountOverride extends Account | import("viem").Address | undefined = undefined>(args: import("viem").SimulateContractParameters<abi, functionName, args_1, Chain, chainOverride, accountOverride>) => Promise<import("viem").SimulateContractReturnType<abi, functionName, args_1, Chain, Account | undefined, chainOverride, accountOverride>>;
3004
- verifyHash: (args: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>;
3005
- verifyMessage: (args: import("viem").VerifyMessageActionParameters) => Promise<import("viem").VerifyMessageActionReturnType>;
3006
- verifySiweMessage: (args: {
3007
- blockNumber?: bigint | undefined;
3008
- blockTag?: import("viem").BlockTag | undefined;
3009
- address?: import("viem").Address | undefined;
3010
- nonce?: string | undefined;
3011
- domain?: string | undefined;
3012
- scheme?: string | undefined;
3013
- time?: Date | undefined;
3014
- message: string;
3015
- signature: import("viem").Hex;
3016
- }) => Promise<boolean>;
3017
- verifyTypedData: (args: import("viem").VerifyTypedDataActionParameters) => Promise<import("viem").VerifyTypedDataActionReturnType>;
3018
- uninstallFilter: (args: import("viem").UninstallFilterParameters) => Promise<import("viem").UninstallFilterReturnType>;
3019
- waitForTransactionReceipt: (args: import("viem").WaitForTransactionReceiptParameters<Chain>) => Promise<import("viem").TransactionReceipt>;
3020
- watchBlockNumber: (args: import("viem").WatchBlockNumberParameters) => import("viem").WatchBlockNumberReturnType;
3021
- watchBlocks: <includeTransactions extends boolean = false, blockTag extends import("viem").BlockTag = "latest">(args: import("viem").WatchBlocksParameters<any, Chain, includeTransactions, blockTag>) => import("viem").WatchBlocksReturnType;
3022
- 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, any>) => import("viem").WatchContractEventReturnType;
3023
- 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, any>) => import("viem").WatchEventReturnType;
3024
- watchPendingTransactions: (args: import("viem").WatchPendingTransactionsParameters<any>) => import("viem").WatchPendingTransactionsReturnType;
3025
- extend: <const client extends {
3026
- [x: string]: unknown;
3027
- account?: undefined;
3028
- batch?: undefined;
3029
- cacheTime?: undefined;
3030
- ccipRead?: undefined;
3031
- chain?: undefined;
3032
- dataSuffix?: undefined;
3033
- experimental_blockTag?: undefined;
3034
- key?: undefined;
3035
- name?: undefined;
3036
- pollingInterval?: undefined;
3037
- request?: undefined;
3038
- transport?: undefined;
3039
- type?: undefined;
3040
- uid?: undefined;
3041
- } & import("viem").ExactPartial<Pick<import("viem").PublicActions<any, Chain, undefined>, "prepareTransactionRequest" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<Chain, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<any, Chain, undefined, import("viem").PublicRpcSchema, import("viem").PublicActions<any, Chain>>) => client) => import("viem").Client<any, Chain, undefined, import("viem").PublicRpcSchema, { [K in keyof client]: client[K]; } & import("viem").PublicActions<any, Chain>>;
3042
- }>;
16
+ getClient(centrifugeId: CentrifugeId): Query<Client>;
3043
17
  get chains(): number[];
3044
18
  get chainConfigs(): Chain[];
3045
19
  getChainConfig(centrifugeId: CentrifugeId): Query<Chain>;