@unionlabs/payments 0.1.0 → 0.2.0

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