@dzapio/sdk 2.0.6 → 2.0.7

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 (216) hide show
  1. package/dist/examples/chain-utils.d.ts +1 -0
  2. package/dist/examples/chain-utils.js +20 -0
  3. package/dist/examples/permit-utils.d.ts +1 -0
  4. package/dist/examples/permit-utils.js +90 -0
  5. package/dist/examples/token-utils.d.ts +1 -0
  6. package/dist/examples/token-utils.js +41 -0
  7. package/dist/examples/trade-operations.d.ts +1 -0
  8. package/dist/examples/trade-operations.js +89 -0
  9. package/dist/examples/zap-operations.d.ts +1 -0
  10. package/dist/examples/zap-operations.js +69 -0
  11. package/dist/src/api/index.d.ts +27 -0
  12. package/dist/src/api/index.js +146 -0
  13. package/dist/src/artifacts/ERC20Permit.d.ts +374 -0
  14. package/dist/src/artifacts/ERC20Permit.js +469 -0
  15. package/dist/src/artifacts/Permit2.d.ts +700 -0
  16. package/dist/src/artifacts/Permit2.js +904 -0
  17. package/dist/src/artifacts/Permit2Proxy.d.ts +416 -0
  18. package/dist/src/artifacts/Permit2Proxy.js +206 -0
  19. package/dist/src/artifacts/default/DZapCoreAbi.d.ts +2 -0
  20. package/dist/src/artifacts/default/DZapCoreAbi.js +3079 -0
  21. package/dist/src/artifacts/default/DZapCoreV2Abi.d.ts +2 -0
  22. package/dist/src/artifacts/default/DZapCoreV2Abi.js +3719 -0
  23. package/dist/src/artifacts/default/DZapDcaAbi.d.ts +2 -0
  24. package/dist/src/artifacts/default/DZapDcaAbi.js +1829 -0
  25. package/dist/src/artifacts/default/Permit2Abi.d.ts +700 -0
  26. package/dist/src/artifacts/default/Permit2Abi.js +904 -0
  27. package/dist/src/artifacts/default/erc20Abi.d.ts +165 -0
  28. package/dist/src/artifacts/default/erc20Abi.js +220 -0
  29. package/dist/src/artifacts/default/index.d.ts +6 -0
  30. package/dist/src/artifacts/default/index.js +13 -0
  31. package/dist/src/artifacts/index.d.ts +2 -0
  32. package/dist/src/artifacts/index.js +9 -0
  33. package/dist/src/artifacts/staging/DZapCoreSwapAbi.d.ts +2 -0
  34. package/dist/src/artifacts/staging/DZapCoreSwapAbi.js +3079 -0
  35. package/dist/src/artifacts/staging/index.d.ts +2 -0
  36. package/dist/src/artifacts/staging/index.js +5 -0
  37. package/dist/src/axios/baseClient.d.ts +2 -0
  38. package/dist/src/axios/baseClient.js +7 -0
  39. package/dist/src/axios/index.d.ts +8 -0
  40. package/dist/src/axios/index.js +34 -0
  41. package/dist/src/chains/definitions/arthera.d.ts +35 -0
  42. package/dist/src/chains/definitions/arthera.js +28 -0
  43. package/dist/src/chains/definitions/fiveIre.d.ts +35 -0
  44. package/dist/src/chains/definitions/fiveIre.js +28 -0
  45. package/dist/src/chains/definitions/hyperEvm.d.ts +35 -0
  46. package/dist/src/chains/definitions/hyperEvm.js +26 -0
  47. package/dist/src/chains/definitions/hyperliquid.d.ts +35 -0
  48. package/dist/src/chains/definitions/hyperliquid.js +26 -0
  49. package/dist/src/chains/definitions/stable.d.ts +36 -0
  50. package/dist/src/chains/definitions/stable.js +31 -0
  51. package/dist/src/chains/index.d.ts +179 -0
  52. package/dist/src/chains/index.js +24 -0
  53. package/dist/src/config/index.d.ts +36 -0
  54. package/dist/src/config/index.js +59 -0
  55. package/dist/src/constants/address.d.ts +13 -0
  56. package/dist/src/constants/address.js +29 -0
  57. package/dist/src/constants/approval.d.ts +7 -0
  58. package/dist/src/constants/approval.js +17 -0
  59. package/dist/src/constants/axios.d.ts +2 -0
  60. package/dist/src/constants/axios.js +5 -0
  61. package/dist/src/constants/chains.d.ts +31 -0
  62. package/dist/src/constants/chains.js +34 -0
  63. package/dist/src/constants/contract.d.ts +6 -0
  64. package/dist/src/constants/contract.js +18 -0
  65. package/dist/src/constants/erc20.d.ts +25 -0
  66. package/dist/src/constants/erc20.js +28 -0
  67. package/dist/src/constants/httpMethods.d.ts +2 -0
  68. package/dist/src/constants/httpMethods.js +5 -0
  69. package/dist/src/constants/index.d.ts +48 -0
  70. package/dist/src/constants/index.js +53 -0
  71. package/dist/src/constants/permit.d.ts +29 -0
  72. package/dist/src/constants/permit.js +33 -0
  73. package/dist/src/constants/permit2.d.ts +2 -0
  74. package/dist/src/constants/permit2.js +5 -0
  75. package/dist/src/constants/rpc.d.ts +2 -0
  76. package/dist/src/constants/rpc.js +5 -0
  77. package/dist/src/constants/urlConstants.d.ts +15 -0
  78. package/dist/src/constants/urlConstants.js +18 -0
  79. package/dist/src/dZapClient/index.d.ts +1015 -0
  80. package/dist/src/dZapClient/index.js +255 -0
  81. package/dist/src/enums/index.d.ts +46 -0
  82. package/dist/src/enums/index.js +57 -0
  83. package/dist/src/index.d.ts +17 -0
  84. package/dist/src/index.js +48 -0
  85. package/dist/src/service/cache/cacheProvider.d.ts +10 -0
  86. package/dist/src/service/cache/cacheProvider.js +72 -0
  87. package/dist/src/service/cache/constant.d.ts +2 -0
  88. package/dist/src/service/cache/constant.js +6 -0
  89. package/dist/src/service/price/index.d.ts +16 -0
  90. package/dist/src/service/price/index.js +80 -0
  91. package/dist/src/service/price/provider/coingecko/config.d.ts +6 -0
  92. package/dist/src/service/price/provider/coingecko/config.js +9 -0
  93. package/dist/src/service/price/provider/coingecko/index.d.ts +9 -0
  94. package/dist/src/service/price/provider/coingecko/index.js +66 -0
  95. package/dist/src/service/price/provider/defiLlama/config.d.ts +3 -0
  96. package/dist/src/service/price/provider/defiLlama/config.js +6 -0
  97. package/dist/src/service/price/provider/defiLlama/index.d.ts +9 -0
  98. package/dist/src/service/price/provider/defiLlama/index.js +60 -0
  99. package/dist/src/service/price/provider/defiLlama/types.d.ts +11 -0
  100. package/dist/src/service/price/provider/defiLlama/types.js +2 -0
  101. package/dist/src/service/price/provider/dzap/index.d.ts +6 -0
  102. package/dist/src/service/price/provider/dzap/index.js +22 -0
  103. package/dist/src/service/price/types/IPriceProvider.d.ts +14 -0
  104. package/dist/src/service/price/types/IPriceProvider.js +8 -0
  105. package/dist/src/transactionHandlers/generic.d.ts +24 -0
  106. package/dist/src/transactionHandlers/generic.js +48 -0
  107. package/dist/src/transactionHandlers/permit.d.ts +61 -0
  108. package/dist/src/transactionHandlers/permit.js +177 -0
  109. package/dist/src/transactionHandlers/trade.d.ts +24 -0
  110. package/dist/src/transactionHandlers/trade.js +263 -0
  111. package/dist/src/transactionHandlers/zap.d.ts +37 -0
  112. package/dist/src/transactionHandlers/zap.js +135 -0
  113. package/dist/src/types/axiosClient.d.ts +6 -0
  114. package/dist/src/types/axiosClient.js +2 -0
  115. package/dist/src/types/btc.d.ts +45 -0
  116. package/dist/src/types/btc.js +2 -0
  117. package/dist/src/types/chains.d.ts +3 -0
  118. package/dist/src/types/chains.js +2 -0
  119. package/dist/src/types/contract.d.ts +14 -0
  120. package/dist/src/types/contract.js +2 -0
  121. package/dist/src/types/eip-2612.d.ts +24 -0
  122. package/dist/src/types/eip-2612.js +58 -0
  123. package/dist/src/types/index.d.ts +489 -0
  124. package/dist/src/types/index.js +8 -0
  125. package/dist/src/types/permit.d.ts +191 -0
  126. package/dist/src/types/permit.js +54 -0
  127. package/dist/src/types/wallet.d.ts +2 -0
  128. package/dist/src/types/wallet.js +2 -0
  129. package/dist/src/types/zap/build.d.ts +44 -0
  130. package/dist/src/types/zap/build.js +2 -0
  131. package/dist/src/types/zap/index.d.ts +34 -0
  132. package/dist/src/types/zap/index.js +23 -0
  133. package/dist/src/types/zap/path.d.ts +33 -0
  134. package/dist/src/types/zap/path.js +2 -0
  135. package/dist/src/types/zap/pool.d.ts +39 -0
  136. package/dist/src/types/zap/pool.js +2 -0
  137. package/dist/src/types/zap/position.d.ts +27 -0
  138. package/dist/src/types/zap/position.js +2 -0
  139. package/dist/src/types/zap/quote.d.ts +7 -0
  140. package/dist/src/types/zap/quote.js +2 -0
  141. package/dist/src/types/zap/status.d.ts +28 -0
  142. package/dist/src/types/zap/status.js +2 -0
  143. package/dist/src/types/zap/step.d.ts +23 -0
  144. package/dist/src/types/zap/step.js +2 -0
  145. package/dist/src/utils/amount.d.ts +82 -0
  146. package/dist/src/utils/amount.js +71 -0
  147. package/dist/src/utils/axios.d.ts +13 -0
  148. package/dist/src/utils/axios.js +42 -0
  149. package/dist/src/utils/date.d.ts +1 -0
  150. package/dist/src/utils/date.js +8 -0
  151. package/dist/src/utils/decoder/swap/abis.d.ts +643 -0
  152. package/dist/src/utils/decoder/swap/abis.js +831 -0
  153. package/dist/src/utils/decoder/swap/inputDataDecoder.d.ts +14 -0
  154. package/dist/src/utils/decoder/swap/inputDataDecoder.js +124 -0
  155. package/dist/src/utils/eip-2612/eip2612Permit.d.ts +23 -0
  156. package/dist/src/utils/eip-2612/eip2612Permit.js +121 -0
  157. package/dist/src/utils/eip-5792/batchApproveTokens.d.ts +21 -0
  158. package/dist/src/utils/eip-5792/batchApproveTokens.js +49 -0
  159. package/dist/src/utils/eip-5792/index.d.ts +3 -0
  160. package/dist/src/utils/eip-5792/index.js +9 -0
  161. package/dist/src/utils/eip-5792/isBatchTxnSupportedByWallet.d.ts +6 -0
  162. package/dist/src/utils/eip-5792/isBatchTxnSupportedByWallet.js +22 -0
  163. package/dist/src/utils/eip-5792/sendBatchCalls.d.ts +10 -0
  164. package/dist/src/utils/eip-5792/sendBatchCalls.js +25 -0
  165. package/dist/src/utils/eip-5792/waitForBatchTransactionReceipt.d.ts +4 -0
  166. package/dist/src/utils/eip-5792/waitForBatchTransactionReceipt.js +26 -0
  167. package/dist/src/utils/encodeApproveCall.d.ts +6 -0
  168. package/dist/src/utils/encodeApproveCall.js +13 -0
  169. package/dist/src/utils/erc20.d.ts +65 -0
  170. package/dist/src/utils/erc20.js +153 -0
  171. package/dist/src/utils/errors.d.ts +17 -0
  172. package/dist/src/utils/errors.js +78 -0
  173. package/dist/src/utils/index.d.ts +4566 -0
  174. package/dist/src/utils/index.js +196 -0
  175. package/dist/src/utils/multicall.d.ts +14 -0
  176. package/dist/src/utils/multicall.js +25 -0
  177. package/dist/src/utils/permit2/domain.d.ts +2 -0
  178. package/dist/src/utils/permit2/domain.js +11 -0
  179. package/dist/src/utils/permit2/index.d.ts +4 -0
  180. package/dist/src/utils/permit2/index.js +97 -0
  181. package/dist/src/utils/permit2/nonce.d.ts +15 -0
  182. package/dist/src/utils/permit2/nonce.js +61 -0
  183. package/dist/src/utils/permit2/permitData.d.ts +23 -0
  184. package/dist/src/utils/permit2/permitData.js +85 -0
  185. package/dist/src/utils/permit2/values.d.ts +54 -0
  186. package/dist/src/utils/permit2/values.js +88 -0
  187. package/dist/src/utils/permit2/witnessData.d.ts +4 -0
  188. package/dist/src/utils/permit2/witnessData.js +48 -0
  189. package/dist/src/utils/signIntent/custom.d.ts +11 -0
  190. package/dist/src/utils/signIntent/custom.js +31 -0
  191. package/dist/src/utils/signIntent/gasless.d.ts +12 -0
  192. package/dist/src/utils/signIntent/gasless.js +101 -0
  193. package/dist/src/utils/signTypedData.d.ts +11 -0
  194. package/dist/src/utils/signTypedData.js +21 -0
  195. package/dist/src/utils/tokens.d.ts +8 -0
  196. package/dist/src/utils/tokens.js +73 -0
  197. package/dist/src/utils/updateQuotes.d.ts +3 -0
  198. package/dist/src/utils/updateQuotes.js +69 -0
  199. package/dist/src/zap/constants/index.d.ts +2 -0
  200. package/dist/src/zap/constants/index.js +18 -0
  201. package/dist/src/zap/constants/path.d.ts +8 -0
  202. package/dist/src/zap/constants/path.js +11 -0
  203. package/dist/src/zap/constants/step.d.ts +3 -0
  204. package/dist/src/zap/constants/step.js +6 -0
  205. package/dist/src/zap/constants/urls.d.ts +13 -0
  206. package/dist/src/zap/constants/urls.js +16 -0
  207. package/dist/test/build.test.d.ts +1 -0
  208. package/dist/test/build.test.js +65 -0
  209. package/dist/test/permit/permit2Nonce.test.d.ts +2 -0
  210. package/dist/test/permit/permit2Nonce.test.js +96 -0
  211. package/dist/test/quotes.test.d.ts +1 -0
  212. package/dist/test/quotes.test.js +59 -0
  213. package/dist/test/status.test.d.ts +1 -0
  214. package/dist/test/status.test.js +37 -0
  215. package/dist/tsconfig.tsbuildinfo +1 -0
  216. package/package.json +1 -1
@@ -0,0 +1,4566 @@
1
+ import { Abi, Transaction, TransactionReceipt, WalletClient } from 'viem';
2
+ import { AvailableDZapServices, Chain, HexString, OtherAvailableAbis, SwapInfo } from '../types';
3
+ import { Signer } from 'ethers';
4
+ import { ContractVersion, StatusCodes, TxnStatus } from '../enums';
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
+ hash: blockTag extends "pending" ? null : `0x${string}`;
60
+ baseFeePerGas: bigint | null;
61
+ blobGasUsed: bigint;
62
+ difficulty: bigint;
63
+ excessBlobGas: bigint;
64
+ extraData: import("viem").Hex;
65
+ gasLimit: bigint;
66
+ gasUsed: bigint;
67
+ logsBloom: blockTag extends "pending" ? null : `0x${string}`;
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
+ s: import("viem").Hex;
85
+ type: "legacy";
86
+ nonce: number;
87
+ chainId?: number | undefined;
88
+ r: import("viem").Hex;
89
+ v: bigint;
90
+ yParity?: undefined | undefined;
91
+ to: import("viem").Address | null;
92
+ from: import("viem").Address;
93
+ value: bigint;
94
+ gas: bigint;
95
+ blobVersionedHashes?: undefined | undefined;
96
+ gasPrice: bigint;
97
+ maxFeePerBlobGas?: undefined | undefined;
98
+ maxFeePerGas?: undefined | undefined;
99
+ maxPriorityFeePerGas?: undefined | undefined;
100
+ accessList?: 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
+ s: import("viem").Hex;
110
+ type: "eip2930";
111
+ nonce: number;
112
+ chainId: number;
113
+ r: import("viem").Hex;
114
+ v: bigint;
115
+ yParity: number;
116
+ to: import("viem").Address | null;
117
+ from: import("viem").Address;
118
+ value: bigint;
119
+ gas: bigint;
120
+ blobVersionedHashes?: undefined | undefined;
121
+ gasPrice: bigint;
122
+ maxFeePerBlobGas?: undefined | undefined;
123
+ maxFeePerGas?: undefined | undefined;
124
+ maxPriorityFeePerGas?: undefined | undefined;
125
+ accessList: import("viem").AccessList;
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
+ s: import("viem").Hex;
135
+ type: "eip1559";
136
+ nonce: number;
137
+ chainId: number;
138
+ r: import("viem").Hex;
139
+ v: bigint;
140
+ yParity: number;
141
+ to: import("viem").Address | null;
142
+ from: import("viem").Address;
143
+ value: bigint;
144
+ gas: bigint;
145
+ blobVersionedHashes?: undefined | undefined;
146
+ gasPrice?: undefined | undefined;
147
+ maxFeePerBlobGas?: undefined | undefined;
148
+ maxFeePerGas: bigint;
149
+ maxPriorityFeePerGas: bigint;
150
+ accessList: import("viem").AccessList;
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
+ s: import("viem").Hex;
160
+ type: "eip4844";
161
+ nonce: number;
162
+ chainId: number;
163
+ r: import("viem").Hex;
164
+ v: bigint;
165
+ yParity: number;
166
+ to: import("viem").Address | null;
167
+ from: import("viem").Address;
168
+ value: bigint;
169
+ gas: bigint;
170
+ blobVersionedHashes: readonly import("viem").Hex[];
171
+ gasPrice?: undefined | undefined;
172
+ maxFeePerBlobGas: bigint;
173
+ maxFeePerGas: bigint;
174
+ maxPriorityFeePerGas: bigint;
175
+ accessList: import("viem").AccessList;
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
+ s: import("viem").Hex;
185
+ type: "eip7702";
186
+ nonce: number;
187
+ chainId: number;
188
+ r: import("viem").Hex;
189
+ v: bigint;
190
+ yParity: number;
191
+ to: import("viem").Address | null;
192
+ from: import("viem").Address;
193
+ value: bigint;
194
+ gas: bigint;
195
+ blobVersionedHashes?: undefined | undefined;
196
+ gasPrice?: undefined | undefined;
197
+ maxFeePerBlobGas?: undefined | undefined;
198
+ maxFeePerGas: bigint;
199
+ maxPriorityFeePerGas: bigint;
200
+ accessList: import("viem").AccessList;
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
+ s: import("viem").Hex;
235
+ type: "legacy";
236
+ nonce: number;
237
+ chainId?: number | undefined;
238
+ r: import("viem").Hex;
239
+ v: bigint;
240
+ yParity?: undefined | undefined;
241
+ to: import("viem").Address | null;
242
+ from: import("viem").Address;
243
+ value: bigint;
244
+ gas: bigint;
245
+ blobVersionedHashes?: undefined | undefined;
246
+ gasPrice: bigint;
247
+ maxFeePerBlobGas?: undefined | undefined;
248
+ maxFeePerGas?: undefined | undefined;
249
+ maxPriorityFeePerGas?: undefined | undefined;
250
+ accessList?: 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
+ s: import("viem").Hex;
260
+ type: "eip2930";
261
+ nonce: number;
262
+ chainId: number;
263
+ r: import("viem").Hex;
264
+ v: bigint;
265
+ yParity: number;
266
+ to: import("viem").Address | null;
267
+ from: import("viem").Address;
268
+ value: bigint;
269
+ gas: bigint;
270
+ blobVersionedHashes?: undefined | undefined;
271
+ gasPrice: bigint;
272
+ maxFeePerBlobGas?: undefined | undefined;
273
+ maxFeePerGas?: undefined | undefined;
274
+ maxPriorityFeePerGas?: undefined | undefined;
275
+ accessList: import("viem").AccessList;
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
+ s: import("viem").Hex;
285
+ type: "eip1559";
286
+ nonce: number;
287
+ chainId: number;
288
+ r: import("viem").Hex;
289
+ v: bigint;
290
+ yParity: number;
291
+ to: import("viem").Address | null;
292
+ from: import("viem").Address;
293
+ value: bigint;
294
+ gas: bigint;
295
+ blobVersionedHashes?: undefined | undefined;
296
+ gasPrice?: undefined | undefined;
297
+ maxFeePerBlobGas?: undefined | undefined;
298
+ maxFeePerGas: bigint;
299
+ maxPriorityFeePerGas: bigint;
300
+ accessList: import("viem").AccessList;
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
+ s: import("viem").Hex;
310
+ type: "eip4844";
311
+ nonce: number;
312
+ chainId: number;
313
+ r: import("viem").Hex;
314
+ v: bigint;
315
+ yParity: number;
316
+ to: import("viem").Address | null;
317
+ from: import("viem").Address;
318
+ value: bigint;
319
+ gas: bigint;
320
+ blobVersionedHashes: readonly import("viem").Hex[];
321
+ gasPrice?: undefined | undefined;
322
+ maxFeePerBlobGas: bigint;
323
+ maxFeePerGas: bigint;
324
+ maxPriorityFeePerGas: bigint;
325
+ accessList: import("viem").AccessList;
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
+ s: import("viem").Hex;
335
+ type: "eip7702";
336
+ nonce: number;
337
+ chainId: number;
338
+ r: import("viem").Hex;
339
+ v: bigint;
340
+ yParity: number;
341
+ to: import("viem").Address | null;
342
+ from: import("viem").Address;
343
+ value: bigint;
344
+ gas: bigint;
345
+ blobVersionedHashes?: undefined | undefined;
346
+ gasPrice?: undefined | undefined;
347
+ maxFeePerBlobGas?: undefined | undefined;
348
+ maxFeePerGas: bigint;
349
+ maxPriorityFeePerGas: bigint;
350
+ accessList: import("viem").AccessList;
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] : "type" | "nonce" | "chainId" | "fees" | "gas" | "blobVersionedHashes") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "nonce" | "chainId" | "fees" | "gas" | "blobVersionedHashes") ? 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
+ sendRawTransactionSync: (args: import("viem").SendRawTransactionSyncParameters) => Promise<TransactionReceipt>;
3619
+ simulate: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
3620
+ simulateBlocks: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
3621
+ simulateCalls: <const calls extends readonly unknown[]>(args: import("viem").SimulateCallsParameters<calls>) => Promise<import("viem").SimulateCallsReturnType<calls>>;
3622
+ simulateContract: <const abi extends Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "payable" | "nonpayable">, const args_1 extends import("viem").ContractFunctionArgs<abi, "payable" | "nonpayable", 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>>;
3623
+ verifyHash: (args: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>;
3624
+ verifyMessage: (args: import("viem").VerifyMessageActionParameters) => Promise<import("viem").VerifyMessageActionReturnType>;
3625
+ verifySiweMessage: (args: import("viem/_types/actions/siwe/verifySiweMessage").VerifySiweMessageParameters) => Promise<import("viem/_types/actions/siwe/verifySiweMessage").VerifySiweMessageReturnType>;
3626
+ verifyTypedData: (args: import("viem").VerifyTypedDataActionParameters) => Promise<import("viem").VerifyTypedDataActionReturnType>;
3627
+ uninstallFilter: (args: import("viem").UninstallFilterParameters) => Promise<import("viem").UninstallFilterReturnType>;
3628
+ waitForTransactionReceipt: (args: import("viem").WaitForTransactionReceiptParameters<import("viem").Chain>) => Promise<TransactionReceipt>;
3629
+ watchBlockNumber: (args: import("viem").WatchBlockNumberParameters) => import("viem").WatchBlockNumberReturnType;
3630
+ 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;
3631
+ 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;
3632
+ 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;
3633
+ watchPendingTransactions: (args: import("viem").WatchPendingTransactionsParameters<import("viem").FallbackTransport<import("viem").HttpTransport<undefined, false>[] | readonly [import("viem").HttpTransport<undefined, false>]>>) => import("viem").WatchPendingTransactionsReturnType;
3634
+ extend: <const client extends {
3635
+ [x: string]: unknown;
3636
+ account?: undefined;
3637
+ batch?: undefined;
3638
+ cacheTime?: undefined;
3639
+ ccipRead?: undefined;
3640
+ chain?: undefined;
3641
+ experimental_blockTag?: undefined;
3642
+ key?: undefined;
3643
+ name?: undefined;
3644
+ pollingInterval?: undefined;
3645
+ request?: undefined;
3646
+ transport?: undefined;
3647
+ type?: undefined;
3648
+ uid?: undefined;
3649
+ } & 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" | "estimateGas" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "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>>;
3650
+ };
3651
+ export declare function getTokensPairKey({ srcToken, destToken, srcChainId, destChainId, srcChainNativeAddress, destChainNativeAddress, }: {
3652
+ srcToken: string;
3653
+ destToken: string;
3654
+ srcChainId: number;
3655
+ destChainId: number;
3656
+ srcChainNativeAddress?: string;
3657
+ destChainNativeAddress?: string;
3658
+ }): string;
3659
+ export declare const readContract: ({ chainId, contractAddress, abi, functionName, rpcUrls, args, }: {
3660
+ chainId: number;
3661
+ contractAddress: HexString;
3662
+ abi: Abi;
3663
+ functionName: string;
3664
+ rpcUrls?: string[];
3665
+ args?: unknown[];
3666
+ }) => Promise<{
3667
+ data: unknown;
3668
+ status: TxnStatus;
3669
+ code: StatusCodes;
3670
+ } | {
3671
+ status: TxnStatus;
3672
+ code: any;
3673
+ data?: undefined;
3674
+ }>;
3675
+ export declare const writeContract: ({ chainId, contractAddress, abi, functionName, args, value, rpcUrls, signer, }: {
3676
+ chainId: number;
3677
+ contractAddress: HexString;
3678
+ abi: Abi;
3679
+ functionName: string;
3680
+ args?: unknown[];
3681
+ value?: string;
3682
+ rpcUrls?: string[];
3683
+ signer: WalletClient;
3684
+ }) => Promise<{
3685
+ status: TxnStatus;
3686
+ code: any;
3687
+ txnHash: string;
3688
+ }>;
3689
+ export declare const calcTotalSrcTokenAmount: (data: {
3690
+ amount: string;
3691
+ }[]) => bigint;
3692
+ export declare const isOneToMany: (firstTokenAddress: string, secondTokenAddress: string) => boolean;
3693
+ export declare const generateUUID: () => `0x${string}`;
3694
+ export declare const getTrxId: (account: string) => `0x${string}`;
3695
+ export declare const estimateGasMultiplier: bigint;
3696
+ export declare const isTypeSigner: (variable: any) => variable is Signer;
3697
+ export declare const isDZapNativeToken: (srcToken: string) => srcToken is "0x0000000000000000000000000000000000000000";
3698
+ export declare const getDZapAbi: (service: AvailableDZapServices, version: ContractVersion) => Abi;
3699
+ export declare const handleDecodeTxnData: (transaction: Transaction, receipt: TransactionReceipt, service: AvailableDZapServices, chain: Chain) => {
3700
+ swapFailPairs: string[];
3701
+ swapInfo: SwapInfo | SwapInfo[];
3702
+ };
3703
+ export declare const getOtherAbis: (name: OtherAvailableAbis) => readonly [{
3704
+ readonly inputs: readonly [{
3705
+ readonly internalType: "uint256";
3706
+ readonly name: "deadline";
3707
+ readonly type: "uint256";
3708
+ }];
3709
+ readonly name: "AllowanceExpired";
3710
+ readonly type: "error";
3711
+ }, {
3712
+ readonly inputs: readonly [];
3713
+ readonly name: "ExcessiveInvalidation";
3714
+ readonly type: "error";
3715
+ }, {
3716
+ readonly inputs: readonly [{
3717
+ readonly internalType: "uint256";
3718
+ readonly name: "amount";
3719
+ readonly type: "uint256";
3720
+ }];
3721
+ readonly name: "InsufficientAllowance";
3722
+ readonly type: "error";
3723
+ }, {
3724
+ readonly inputs: readonly [{
3725
+ readonly internalType: "uint256";
3726
+ readonly name: "maxAmount";
3727
+ readonly type: "uint256";
3728
+ }];
3729
+ readonly name: "InvalidAmount";
3730
+ readonly type: "error";
3731
+ }, {
3732
+ readonly inputs: readonly [];
3733
+ readonly name: "InvalidContractSignature";
3734
+ readonly type: "error";
3735
+ }, {
3736
+ readonly inputs: readonly [];
3737
+ readonly name: "InvalidNonce";
3738
+ readonly type: "error";
3739
+ }, {
3740
+ readonly inputs: readonly [];
3741
+ readonly name: "InvalidSignature";
3742
+ readonly type: "error";
3743
+ }, {
3744
+ readonly inputs: readonly [];
3745
+ readonly name: "InvalidSignatureLength";
3746
+ readonly type: "error";
3747
+ }, {
3748
+ readonly inputs: readonly [];
3749
+ readonly name: "InvalidSigner";
3750
+ readonly type: "error";
3751
+ }, {
3752
+ readonly inputs: readonly [];
3753
+ readonly name: "LengthMismatch";
3754
+ readonly type: "error";
3755
+ }, {
3756
+ readonly inputs: readonly [{
3757
+ readonly internalType: "uint256";
3758
+ readonly name: "signatureDeadline";
3759
+ readonly type: "uint256";
3760
+ }];
3761
+ readonly name: "SignatureExpired";
3762
+ readonly type: "error";
3763
+ }, {
3764
+ readonly anonymous: false;
3765
+ readonly inputs: readonly [{
3766
+ readonly indexed: true;
3767
+ readonly internalType: "address";
3768
+ readonly name: "owner";
3769
+ readonly type: "address";
3770
+ }, {
3771
+ readonly indexed: true;
3772
+ readonly internalType: "address";
3773
+ readonly name: "token";
3774
+ readonly type: "address";
3775
+ }, {
3776
+ readonly indexed: true;
3777
+ readonly internalType: "address";
3778
+ readonly name: "spender";
3779
+ readonly type: "address";
3780
+ }, {
3781
+ readonly indexed: false;
3782
+ readonly internalType: "uint160";
3783
+ readonly name: "amount";
3784
+ readonly type: "uint160";
3785
+ }, {
3786
+ readonly indexed: false;
3787
+ readonly internalType: "uint48";
3788
+ readonly name: "expiration";
3789
+ readonly type: "uint48";
3790
+ }];
3791
+ readonly name: "Approval";
3792
+ readonly type: "event";
3793
+ }, {
3794
+ readonly anonymous: false;
3795
+ readonly inputs: readonly [{
3796
+ readonly indexed: true;
3797
+ readonly internalType: "address";
3798
+ readonly name: "owner";
3799
+ readonly type: "address";
3800
+ }, {
3801
+ readonly indexed: false;
3802
+ readonly internalType: "address";
3803
+ readonly name: "token";
3804
+ readonly type: "address";
3805
+ }, {
3806
+ readonly indexed: false;
3807
+ readonly internalType: "address";
3808
+ readonly name: "spender";
3809
+ readonly type: "address";
3810
+ }];
3811
+ readonly name: "Lockdown";
3812
+ readonly type: "event";
3813
+ }, {
3814
+ readonly anonymous: false;
3815
+ readonly inputs: readonly [{
3816
+ readonly indexed: true;
3817
+ readonly internalType: "address";
3818
+ readonly name: "owner";
3819
+ readonly type: "address";
3820
+ }, {
3821
+ readonly indexed: true;
3822
+ readonly internalType: "address";
3823
+ readonly name: "token";
3824
+ readonly type: "address";
3825
+ }, {
3826
+ readonly indexed: true;
3827
+ readonly internalType: "address";
3828
+ readonly name: "spender";
3829
+ readonly type: "address";
3830
+ }, {
3831
+ readonly indexed: false;
3832
+ readonly internalType: "uint48";
3833
+ readonly name: "newNonce";
3834
+ readonly type: "uint48";
3835
+ }, {
3836
+ readonly indexed: false;
3837
+ readonly internalType: "uint48";
3838
+ readonly name: "oldNonce";
3839
+ readonly type: "uint48";
3840
+ }];
3841
+ readonly name: "NonceInvalidation";
3842
+ readonly type: "event";
3843
+ }, {
3844
+ readonly anonymous: false;
3845
+ readonly inputs: readonly [{
3846
+ readonly indexed: true;
3847
+ readonly internalType: "address";
3848
+ readonly name: "owner";
3849
+ readonly type: "address";
3850
+ }, {
3851
+ readonly indexed: true;
3852
+ readonly internalType: "address";
3853
+ readonly name: "token";
3854
+ readonly type: "address";
3855
+ }, {
3856
+ readonly indexed: true;
3857
+ readonly internalType: "address";
3858
+ readonly name: "spender";
3859
+ readonly type: "address";
3860
+ }, {
3861
+ readonly indexed: false;
3862
+ readonly internalType: "uint160";
3863
+ readonly name: "amount";
3864
+ readonly type: "uint160";
3865
+ }, {
3866
+ readonly indexed: false;
3867
+ readonly internalType: "uint48";
3868
+ readonly name: "expiration";
3869
+ readonly type: "uint48";
3870
+ }, {
3871
+ readonly indexed: false;
3872
+ readonly internalType: "uint48";
3873
+ readonly name: "nonce";
3874
+ readonly type: "uint48";
3875
+ }];
3876
+ readonly name: "Permit";
3877
+ readonly type: "event";
3878
+ }, {
3879
+ readonly anonymous: false;
3880
+ readonly inputs: readonly [{
3881
+ readonly indexed: true;
3882
+ readonly internalType: "address";
3883
+ readonly name: "owner";
3884
+ readonly type: "address";
3885
+ }, {
3886
+ readonly indexed: false;
3887
+ readonly internalType: "uint256";
3888
+ readonly name: "word";
3889
+ readonly type: "uint256";
3890
+ }, {
3891
+ readonly indexed: false;
3892
+ readonly internalType: "uint256";
3893
+ readonly name: "mask";
3894
+ readonly type: "uint256";
3895
+ }];
3896
+ readonly name: "UnorderedNonceInvalidation";
3897
+ readonly type: "event";
3898
+ }, {
3899
+ readonly inputs: readonly [];
3900
+ readonly name: "DOMAIN_SEPARATOR";
3901
+ readonly outputs: readonly [{
3902
+ readonly internalType: "bytes32";
3903
+ readonly name: "";
3904
+ readonly type: "bytes32";
3905
+ }];
3906
+ readonly stateMutability: "view";
3907
+ readonly type: "function";
3908
+ }, {
3909
+ readonly inputs: readonly [{
3910
+ readonly internalType: "address";
3911
+ readonly name: "";
3912
+ readonly type: "address";
3913
+ }, {
3914
+ readonly internalType: "address";
3915
+ readonly name: "";
3916
+ readonly type: "address";
3917
+ }, {
3918
+ readonly internalType: "address";
3919
+ readonly name: "";
3920
+ readonly type: "address";
3921
+ }];
3922
+ readonly name: "allowance";
3923
+ readonly outputs: readonly [{
3924
+ readonly internalType: "uint160";
3925
+ readonly name: "amount";
3926
+ readonly type: "uint160";
3927
+ }, {
3928
+ readonly internalType: "uint48";
3929
+ readonly name: "expiration";
3930
+ readonly type: "uint48";
3931
+ }, {
3932
+ readonly internalType: "uint48";
3933
+ readonly name: "nonce";
3934
+ readonly type: "uint48";
3935
+ }];
3936
+ readonly stateMutability: "view";
3937
+ readonly type: "function";
3938
+ }, {
3939
+ readonly inputs: readonly [{
3940
+ readonly internalType: "address";
3941
+ readonly name: "token";
3942
+ readonly type: "address";
3943
+ }, {
3944
+ readonly internalType: "address";
3945
+ readonly name: "spender";
3946
+ readonly type: "address";
3947
+ }, {
3948
+ readonly internalType: "uint160";
3949
+ readonly name: "amount";
3950
+ readonly type: "uint160";
3951
+ }, {
3952
+ readonly internalType: "uint48";
3953
+ readonly name: "expiration";
3954
+ readonly type: "uint48";
3955
+ }];
3956
+ readonly name: "approve";
3957
+ readonly outputs: readonly [];
3958
+ readonly stateMutability: "nonpayable";
3959
+ readonly type: "function";
3960
+ }, {
3961
+ readonly inputs: readonly [{
3962
+ readonly internalType: "address";
3963
+ readonly name: "token";
3964
+ readonly type: "address";
3965
+ }, {
3966
+ readonly internalType: "address";
3967
+ readonly name: "spender";
3968
+ readonly type: "address";
3969
+ }, {
3970
+ readonly internalType: "uint48";
3971
+ readonly name: "newNonce";
3972
+ readonly type: "uint48";
3973
+ }];
3974
+ readonly name: "invalidateNonces";
3975
+ readonly outputs: readonly [];
3976
+ readonly stateMutability: "nonpayable";
3977
+ readonly type: "function";
3978
+ }, {
3979
+ readonly inputs: readonly [{
3980
+ readonly internalType: "uint256";
3981
+ readonly name: "wordPos";
3982
+ readonly type: "uint256";
3983
+ }, {
3984
+ readonly internalType: "uint256";
3985
+ readonly name: "mask";
3986
+ readonly type: "uint256";
3987
+ }];
3988
+ readonly name: "invalidateUnorderedNonces";
3989
+ readonly outputs: readonly [];
3990
+ readonly stateMutability: "nonpayable";
3991
+ readonly type: "function";
3992
+ }, {
3993
+ readonly inputs: readonly [{
3994
+ readonly components: readonly [{
3995
+ readonly internalType: "address";
3996
+ readonly name: "token";
3997
+ readonly type: "address";
3998
+ }, {
3999
+ readonly internalType: "address";
4000
+ readonly name: "spender";
4001
+ readonly type: "address";
4002
+ }];
4003
+ readonly internalType: "struct IAllowanceTransfer.TokenSpenderPair[]";
4004
+ readonly name: "approvals";
4005
+ readonly type: "tuple[]";
4006
+ }];
4007
+ readonly name: "lockdown";
4008
+ readonly outputs: readonly [];
4009
+ readonly stateMutability: "nonpayable";
4010
+ readonly type: "function";
4011
+ }, {
4012
+ readonly inputs: readonly [{
4013
+ readonly internalType: "address";
4014
+ readonly name: "";
4015
+ readonly type: "address";
4016
+ }, {
4017
+ readonly internalType: "uint256";
4018
+ readonly name: "";
4019
+ readonly type: "uint256";
4020
+ }];
4021
+ readonly name: "nonceBitmap";
4022
+ readonly outputs: readonly [{
4023
+ readonly internalType: "uint256";
4024
+ readonly name: "";
4025
+ readonly type: "uint256";
4026
+ }];
4027
+ readonly stateMutability: "view";
4028
+ readonly type: "function";
4029
+ }, {
4030
+ readonly inputs: readonly [{
4031
+ readonly internalType: "address";
4032
+ readonly name: "owner";
4033
+ readonly type: "address";
4034
+ }, {
4035
+ readonly components: readonly [{
4036
+ readonly components: readonly [{
4037
+ readonly internalType: "address";
4038
+ readonly name: "token";
4039
+ readonly type: "address";
4040
+ }, {
4041
+ readonly internalType: "uint160";
4042
+ readonly name: "amount";
4043
+ readonly type: "uint160";
4044
+ }, {
4045
+ readonly internalType: "uint48";
4046
+ readonly name: "expiration";
4047
+ readonly type: "uint48";
4048
+ }, {
4049
+ readonly internalType: "uint48";
4050
+ readonly name: "nonce";
4051
+ readonly type: "uint48";
4052
+ }];
4053
+ readonly internalType: "struct IAllowanceTransfer.PermitDetails[]";
4054
+ readonly name: "details";
4055
+ readonly type: "tuple[]";
4056
+ }, {
4057
+ readonly internalType: "address";
4058
+ readonly name: "spender";
4059
+ readonly type: "address";
4060
+ }, {
4061
+ readonly internalType: "uint256";
4062
+ readonly name: "sigDeadline";
4063
+ readonly type: "uint256";
4064
+ }];
4065
+ readonly internalType: "struct IAllowanceTransfer.PermitBatch";
4066
+ readonly name: "permitBatch";
4067
+ readonly type: "tuple";
4068
+ }, {
4069
+ readonly internalType: "bytes";
4070
+ readonly name: "signature";
4071
+ readonly type: "bytes";
4072
+ }];
4073
+ readonly name: "permit";
4074
+ readonly outputs: readonly [];
4075
+ readonly stateMutability: "nonpayable";
4076
+ readonly type: "function";
4077
+ }, {
4078
+ readonly inputs: readonly [{
4079
+ readonly internalType: "address";
4080
+ readonly name: "owner";
4081
+ readonly type: "address";
4082
+ }, {
4083
+ readonly components: readonly [{
4084
+ readonly components: readonly [{
4085
+ readonly internalType: "address";
4086
+ readonly name: "token";
4087
+ readonly type: "address";
4088
+ }, {
4089
+ readonly internalType: "uint160";
4090
+ readonly name: "amount";
4091
+ readonly type: "uint160";
4092
+ }, {
4093
+ readonly internalType: "uint48";
4094
+ readonly name: "expiration";
4095
+ readonly type: "uint48";
4096
+ }, {
4097
+ readonly internalType: "uint48";
4098
+ readonly name: "nonce";
4099
+ readonly type: "uint48";
4100
+ }];
4101
+ readonly internalType: "struct IAllowanceTransfer.PermitDetails";
4102
+ readonly name: "details";
4103
+ readonly type: "tuple";
4104
+ }, {
4105
+ readonly internalType: "address";
4106
+ readonly name: "spender";
4107
+ readonly type: "address";
4108
+ }, {
4109
+ readonly internalType: "uint256";
4110
+ readonly name: "sigDeadline";
4111
+ readonly type: "uint256";
4112
+ }];
4113
+ readonly internalType: "struct IAllowanceTransfer.PermitSingle";
4114
+ readonly name: "permitSingle";
4115
+ readonly type: "tuple";
4116
+ }, {
4117
+ readonly internalType: "bytes";
4118
+ readonly name: "signature";
4119
+ readonly type: "bytes";
4120
+ }];
4121
+ readonly name: "permit";
4122
+ readonly outputs: readonly [];
4123
+ readonly stateMutability: "nonpayable";
4124
+ readonly type: "function";
4125
+ }, {
4126
+ readonly inputs: readonly [{
4127
+ readonly components: readonly [{
4128
+ readonly components: readonly [{
4129
+ readonly internalType: "address";
4130
+ readonly name: "token";
4131
+ readonly type: "address";
4132
+ }, {
4133
+ readonly internalType: "uint256";
4134
+ readonly name: "amount";
4135
+ readonly type: "uint256";
4136
+ }];
4137
+ readonly internalType: "struct ISignatureTransfer.TokenPermissions";
4138
+ readonly name: "permitted";
4139
+ readonly type: "tuple";
4140
+ }, {
4141
+ readonly internalType: "uint256";
4142
+ readonly name: "nonce";
4143
+ readonly type: "uint256";
4144
+ }, {
4145
+ readonly internalType: "uint256";
4146
+ readonly name: "deadline";
4147
+ readonly type: "uint256";
4148
+ }];
4149
+ readonly internalType: "struct ISignatureTransfer.PermitTransferFrom";
4150
+ readonly name: "permit";
4151
+ readonly type: "tuple";
4152
+ }, {
4153
+ readonly components: readonly [{
4154
+ readonly internalType: "address";
4155
+ readonly name: "to";
4156
+ readonly type: "address";
4157
+ }, {
4158
+ readonly internalType: "uint256";
4159
+ readonly name: "requestedAmount";
4160
+ readonly type: "uint256";
4161
+ }];
4162
+ readonly internalType: "struct ISignatureTransfer.SignatureTransferDetails";
4163
+ readonly name: "transferDetails";
4164
+ readonly type: "tuple";
4165
+ }, {
4166
+ readonly internalType: "address";
4167
+ readonly name: "owner";
4168
+ readonly type: "address";
4169
+ }, {
4170
+ readonly internalType: "bytes";
4171
+ readonly name: "signature";
4172
+ readonly type: "bytes";
4173
+ }];
4174
+ readonly name: "permitTransferFrom";
4175
+ readonly outputs: readonly [];
4176
+ readonly stateMutability: "nonpayable";
4177
+ readonly type: "function";
4178
+ }, {
4179
+ readonly inputs: readonly [{
4180
+ readonly components: readonly [{
4181
+ readonly components: readonly [{
4182
+ readonly internalType: "address";
4183
+ readonly name: "token";
4184
+ readonly type: "address";
4185
+ }, {
4186
+ readonly internalType: "uint256";
4187
+ readonly name: "amount";
4188
+ readonly type: "uint256";
4189
+ }];
4190
+ readonly internalType: "struct ISignatureTransfer.TokenPermissions[]";
4191
+ readonly name: "permitted";
4192
+ readonly type: "tuple[]";
4193
+ }, {
4194
+ readonly internalType: "uint256";
4195
+ readonly name: "nonce";
4196
+ readonly type: "uint256";
4197
+ }, {
4198
+ readonly internalType: "uint256";
4199
+ readonly name: "deadline";
4200
+ readonly type: "uint256";
4201
+ }];
4202
+ readonly internalType: "struct ISignatureTransfer.PermitBatchTransferFrom";
4203
+ readonly name: "permit";
4204
+ readonly type: "tuple";
4205
+ }, {
4206
+ readonly components: readonly [{
4207
+ readonly internalType: "address";
4208
+ readonly name: "to";
4209
+ readonly type: "address";
4210
+ }, {
4211
+ readonly internalType: "uint256";
4212
+ readonly name: "requestedAmount";
4213
+ readonly type: "uint256";
4214
+ }];
4215
+ readonly internalType: "struct ISignatureTransfer.SignatureTransferDetails[]";
4216
+ readonly name: "transferDetails";
4217
+ readonly type: "tuple[]";
4218
+ }, {
4219
+ readonly internalType: "address";
4220
+ readonly name: "owner";
4221
+ readonly type: "address";
4222
+ }, {
4223
+ readonly internalType: "bytes";
4224
+ readonly name: "signature";
4225
+ readonly type: "bytes";
4226
+ }];
4227
+ readonly name: "permitTransferFrom";
4228
+ readonly outputs: readonly [];
4229
+ readonly stateMutability: "nonpayable";
4230
+ readonly type: "function";
4231
+ }, {
4232
+ readonly inputs: readonly [{
4233
+ readonly components: readonly [{
4234
+ readonly components: readonly [{
4235
+ readonly internalType: "address";
4236
+ readonly name: "token";
4237
+ readonly type: "address";
4238
+ }, {
4239
+ readonly internalType: "uint256";
4240
+ readonly name: "amount";
4241
+ readonly type: "uint256";
4242
+ }];
4243
+ readonly internalType: "struct ISignatureTransfer.TokenPermissions";
4244
+ readonly name: "permitted";
4245
+ readonly type: "tuple";
4246
+ }, {
4247
+ readonly internalType: "uint256";
4248
+ readonly name: "nonce";
4249
+ readonly type: "uint256";
4250
+ }, {
4251
+ readonly internalType: "uint256";
4252
+ readonly name: "deadline";
4253
+ readonly type: "uint256";
4254
+ }];
4255
+ readonly internalType: "struct ISignatureTransfer.PermitTransferFrom";
4256
+ readonly name: "permit";
4257
+ readonly type: "tuple";
4258
+ }, {
4259
+ readonly components: readonly [{
4260
+ readonly internalType: "address";
4261
+ readonly name: "to";
4262
+ readonly type: "address";
4263
+ }, {
4264
+ readonly internalType: "uint256";
4265
+ readonly name: "requestedAmount";
4266
+ readonly type: "uint256";
4267
+ }];
4268
+ readonly internalType: "struct ISignatureTransfer.SignatureTransferDetails";
4269
+ readonly name: "transferDetails";
4270
+ readonly type: "tuple";
4271
+ }, {
4272
+ readonly internalType: "address";
4273
+ readonly name: "owner";
4274
+ readonly type: "address";
4275
+ }, {
4276
+ readonly internalType: "bytes32";
4277
+ readonly name: "witness";
4278
+ readonly type: "bytes32";
4279
+ }, {
4280
+ readonly internalType: "string";
4281
+ readonly name: "witnessTypeString";
4282
+ readonly type: "string";
4283
+ }, {
4284
+ readonly internalType: "bytes";
4285
+ readonly name: "signature";
4286
+ readonly type: "bytes";
4287
+ }];
4288
+ readonly name: "permitWitnessTransferFrom";
4289
+ readonly outputs: readonly [];
4290
+ readonly stateMutability: "nonpayable";
4291
+ readonly type: "function";
4292
+ }, {
4293
+ readonly inputs: readonly [{
4294
+ readonly components: readonly [{
4295
+ readonly components: readonly [{
4296
+ readonly internalType: "address";
4297
+ readonly name: "token";
4298
+ readonly type: "address";
4299
+ }, {
4300
+ readonly internalType: "uint256";
4301
+ readonly name: "amount";
4302
+ readonly type: "uint256";
4303
+ }];
4304
+ readonly internalType: "struct ISignatureTransfer.TokenPermissions[]";
4305
+ readonly name: "permitted";
4306
+ readonly type: "tuple[]";
4307
+ }, {
4308
+ readonly internalType: "uint256";
4309
+ readonly name: "nonce";
4310
+ readonly type: "uint256";
4311
+ }, {
4312
+ readonly internalType: "uint256";
4313
+ readonly name: "deadline";
4314
+ readonly type: "uint256";
4315
+ }];
4316
+ readonly internalType: "struct ISignatureTransfer.PermitBatchTransferFrom";
4317
+ readonly name: "permit";
4318
+ readonly type: "tuple";
4319
+ }, {
4320
+ readonly components: readonly [{
4321
+ readonly internalType: "address";
4322
+ readonly name: "to";
4323
+ readonly type: "address";
4324
+ }, {
4325
+ readonly internalType: "uint256";
4326
+ readonly name: "requestedAmount";
4327
+ readonly type: "uint256";
4328
+ }];
4329
+ readonly internalType: "struct ISignatureTransfer.SignatureTransferDetails[]";
4330
+ readonly name: "transferDetails";
4331
+ readonly type: "tuple[]";
4332
+ }, {
4333
+ readonly internalType: "address";
4334
+ readonly name: "owner";
4335
+ readonly type: "address";
4336
+ }, {
4337
+ readonly internalType: "bytes32";
4338
+ readonly name: "witness";
4339
+ readonly type: "bytes32";
4340
+ }, {
4341
+ readonly internalType: "string";
4342
+ readonly name: "witnessTypeString";
4343
+ readonly type: "string";
4344
+ }, {
4345
+ readonly internalType: "bytes";
4346
+ readonly name: "signature";
4347
+ readonly type: "bytes";
4348
+ }];
4349
+ readonly name: "permitWitnessTransferFrom";
4350
+ readonly outputs: readonly [];
4351
+ readonly stateMutability: "nonpayable";
4352
+ readonly type: "function";
4353
+ }, {
4354
+ readonly inputs: readonly [{
4355
+ readonly components: readonly [{
4356
+ readonly internalType: "address";
4357
+ readonly name: "from";
4358
+ readonly type: "address";
4359
+ }, {
4360
+ readonly internalType: "address";
4361
+ readonly name: "to";
4362
+ readonly type: "address";
4363
+ }, {
4364
+ readonly internalType: "uint160";
4365
+ readonly name: "amount";
4366
+ readonly type: "uint160";
4367
+ }, {
4368
+ readonly internalType: "address";
4369
+ readonly name: "token";
4370
+ readonly type: "address";
4371
+ }];
4372
+ readonly internalType: "struct IAllowanceTransfer.AllowanceTransferDetails[]";
4373
+ readonly name: "transferDetails";
4374
+ readonly type: "tuple[]";
4375
+ }];
4376
+ readonly name: "transferFrom";
4377
+ readonly outputs: readonly [];
4378
+ readonly stateMutability: "nonpayable";
4379
+ readonly type: "function";
4380
+ }, {
4381
+ readonly inputs: readonly [{
4382
+ readonly internalType: "address";
4383
+ readonly name: "from";
4384
+ readonly type: "address";
4385
+ }, {
4386
+ readonly internalType: "address";
4387
+ readonly name: "to";
4388
+ readonly type: "address";
4389
+ }, {
4390
+ readonly internalType: "uint160";
4391
+ readonly name: "amount";
4392
+ readonly type: "uint160";
4393
+ }, {
4394
+ readonly internalType: "address";
4395
+ readonly name: "token";
4396
+ readonly type: "address";
4397
+ }];
4398
+ readonly name: "transferFrom";
4399
+ readonly outputs: readonly [];
4400
+ readonly stateMutability: "nonpayable";
4401
+ readonly type: "function";
4402
+ }] | readonly [{
4403
+ readonly constant: true;
4404
+ readonly inputs: readonly [];
4405
+ readonly name: "name";
4406
+ readonly outputs: readonly [{
4407
+ readonly name: "";
4408
+ readonly type: "string";
4409
+ }];
4410
+ readonly payable: false;
4411
+ readonly stateMutability: "view";
4412
+ readonly type: "function";
4413
+ }, {
4414
+ readonly constant: false;
4415
+ readonly inputs: readonly [{
4416
+ readonly name: "_spender";
4417
+ readonly type: "address";
4418
+ }, {
4419
+ readonly name: "_value";
4420
+ readonly type: "uint256";
4421
+ }];
4422
+ readonly name: "approve";
4423
+ readonly outputs: readonly [];
4424
+ readonly payable: false;
4425
+ readonly stateMutability: "nonpayable";
4426
+ readonly type: "function";
4427
+ }, {
4428
+ readonly constant: true;
4429
+ readonly inputs: readonly [];
4430
+ readonly name: "totalSupply";
4431
+ readonly outputs: readonly [{
4432
+ readonly name: "";
4433
+ readonly type: "uint256";
4434
+ }];
4435
+ readonly payable: false;
4436
+ readonly stateMutability: "view";
4437
+ readonly type: "function";
4438
+ }, {
4439
+ readonly constant: false;
4440
+ readonly inputs: readonly [{
4441
+ readonly name: "_from";
4442
+ readonly type: "address";
4443
+ }, {
4444
+ readonly name: "_to";
4445
+ readonly type: "address";
4446
+ }, {
4447
+ readonly name: "_value";
4448
+ readonly type: "uint256";
4449
+ }];
4450
+ readonly name: "transferFrom";
4451
+ readonly outputs: readonly [{
4452
+ readonly name: "";
4453
+ readonly type: "bool";
4454
+ }];
4455
+ readonly payable: false;
4456
+ readonly stateMutability: "nonpayable";
4457
+ readonly type: "function";
4458
+ }, {
4459
+ readonly constant: true;
4460
+ readonly inputs: readonly [];
4461
+ readonly name: "decimals";
4462
+ readonly outputs: readonly [{
4463
+ readonly name: "";
4464
+ readonly type: "uint8";
4465
+ }];
4466
+ readonly payable: false;
4467
+ readonly stateMutability: "view";
4468
+ readonly type: "function";
4469
+ }, {
4470
+ readonly constant: true;
4471
+ readonly inputs: readonly [{
4472
+ readonly name: "_owner";
4473
+ readonly type: "address";
4474
+ }];
4475
+ readonly name: "balanceOf";
4476
+ readonly outputs: readonly [{
4477
+ readonly name: "balance";
4478
+ readonly type: "uint256";
4479
+ }];
4480
+ readonly payable: false;
4481
+ readonly stateMutability: "view";
4482
+ readonly type: "function";
4483
+ }, {
4484
+ readonly constant: true;
4485
+ readonly inputs: readonly [];
4486
+ readonly name: "symbol";
4487
+ readonly outputs: readonly [{
4488
+ readonly name: "";
4489
+ readonly type: "string";
4490
+ }];
4491
+ readonly payable: false;
4492
+ readonly stateMutability: "view";
4493
+ readonly type: "function";
4494
+ }, {
4495
+ readonly constant: false;
4496
+ readonly inputs: readonly [{
4497
+ readonly name: "_to";
4498
+ readonly type: "address";
4499
+ }, {
4500
+ readonly name: "_value";
4501
+ readonly type: "uint256";
4502
+ }];
4503
+ readonly name: "transfer";
4504
+ readonly outputs: readonly [{
4505
+ readonly name: "";
4506
+ readonly type: "bool";
4507
+ }];
4508
+ readonly payable: false;
4509
+ readonly stateMutability: "nonpayable";
4510
+ readonly type: "function";
4511
+ }, {
4512
+ readonly constant: true;
4513
+ readonly inputs: readonly [{
4514
+ readonly name: "_owner";
4515
+ readonly type: "address";
4516
+ }, {
4517
+ readonly name: "_spender";
4518
+ readonly type: "address";
4519
+ }];
4520
+ readonly name: "allowance";
4521
+ readonly outputs: readonly [{
4522
+ readonly name: "";
4523
+ readonly type: "uint256";
4524
+ }];
4525
+ readonly payable: false;
4526
+ readonly stateMutability: "view";
4527
+ readonly type: "function";
4528
+ }, {
4529
+ readonly payable: true;
4530
+ readonly stateMutability: "payable";
4531
+ readonly type: "fallback";
4532
+ }, {
4533
+ readonly anonymous: false;
4534
+ readonly inputs: readonly [{
4535
+ readonly indexed: true;
4536
+ readonly name: "owner";
4537
+ readonly type: "address";
4538
+ }, {
4539
+ readonly indexed: true;
4540
+ readonly name: "spender";
4541
+ readonly type: "address";
4542
+ }, {
4543
+ readonly indexed: false;
4544
+ readonly name: "value";
4545
+ readonly type: "uint256";
4546
+ }];
4547
+ readonly name: "Approval";
4548
+ readonly type: "event";
4549
+ }, {
4550
+ readonly anonymous: false;
4551
+ readonly inputs: readonly [{
4552
+ readonly indexed: true;
4553
+ readonly name: "from";
4554
+ readonly type: "address";
4555
+ }, {
4556
+ readonly indexed: true;
4557
+ readonly name: "to";
4558
+ readonly type: "address";
4559
+ }, {
4560
+ readonly indexed: false;
4561
+ readonly name: "value";
4562
+ readonly type: "uint256";
4563
+ }];
4564
+ readonly name: "Transfer";
4565
+ readonly type: "event";
4566
+ }];