@dzapio/sdk 1.0.1

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