viem 2.7.22 → 2.8.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 (456) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/_cjs/accounts/utils/sign.js +1 -0
  3. package/_cjs/accounts/utils/sign.js.map +1 -1
  4. package/_cjs/accounts/utils/signTransaction.js +11 -2
  5. package/_cjs/accounts/utils/signTransaction.js.map +1 -1
  6. package/_cjs/actions/index.js +4 -2
  7. package/_cjs/actions/index.js.map +1 -1
  8. package/_cjs/actions/public/call.js +3 -1
  9. package/_cjs/actions/public/call.js.map +1 -1
  10. package/_cjs/actions/public/estimateGas.js +3 -1
  11. package/_cjs/actions/public/estimateGas.js.map +1 -1
  12. package/_cjs/actions/public/getBlobBaseFee.js +11 -0
  13. package/_cjs/actions/public/getBlobBaseFee.js.map +1 -0
  14. package/_cjs/actions/wallet/prepareTransactionRequest.js +11 -2
  15. package/_cjs/actions/wallet/prepareTransactionRequest.js.map +1 -1
  16. package/_cjs/actions/wallet/sendRawTransaction.js.map +1 -1
  17. package/_cjs/actions/wallet/sendTransaction.js +7 -8
  18. package/_cjs/actions/wallet/sendTransaction.js.map +1 -1
  19. package/_cjs/actions/wallet/signTransaction.js +7 -6
  20. package/_cjs/actions/wallet/signTransaction.js.map +1 -1
  21. package/_cjs/chains/celo/serializers.js +10 -15
  22. package/_cjs/chains/celo/serializers.js.map +1 -1
  23. package/_cjs/chains/definitions/plumeTestnet.js +30 -0
  24. package/_cjs/chains/definitions/plumeTestnet.js.map +1 -0
  25. package/_cjs/chains/index.js +5 -3
  26. package/_cjs/chains/index.js.map +1 -1
  27. package/_cjs/chains/opStack/actions/estimateL1Fee.js +1 -10
  28. package/_cjs/chains/opStack/actions/estimateL1Fee.js.map +1 -1
  29. package/_cjs/chains/opStack/actions/estimateL1Gas.js +1 -10
  30. package/_cjs/chains/opStack/actions/estimateL1Gas.js.map +1 -1
  31. package/_cjs/chains/opStack/actions/finalizeWithdrawal.js +1 -1
  32. package/_cjs/chains/opStack/actions/finalizeWithdrawal.js.map +1 -1
  33. package/_cjs/chains/opStack/actions/proveWithdrawal.js +1 -1
  34. package/_cjs/chains/opStack/actions/proveWithdrawal.js.map +1 -1
  35. package/_cjs/chains/opStack/serializers.js +3 -3
  36. package/_cjs/chains/opStack/serializers.js.map +1 -1
  37. package/_cjs/chains/zksync/actions/sendTransaction.js.map +1 -1
  38. package/_cjs/chains/zksync/actions/signEip712Transaction.js.map +1 -1
  39. package/_cjs/chains/zksync/serializers.js +6 -6
  40. package/_cjs/chains/zksync/serializers.js.map +1 -1
  41. package/_cjs/clients/decorators/public.js.map +1 -1
  42. package/_cjs/clients/decorators/wallet.js.map +1 -1
  43. package/_cjs/constants/blob.js +11 -0
  44. package/_cjs/constants/blob.js.map +1 -0
  45. package/_cjs/constants/kzg.js +7 -0
  46. package/_cjs/constants/kzg.js.map +1 -0
  47. package/_cjs/errors/blob.js +63 -0
  48. package/_cjs/errors/blob.js.map +1 -0
  49. package/_cjs/errors/transaction.js +1 -0
  50. package/_cjs/errors/transaction.js.map +1 -1
  51. package/_cjs/errors/version.js +1 -1
  52. package/_cjs/errors/version.js.map +1 -1
  53. package/_cjs/index.js +22 -2
  54. package/_cjs/index.js.map +1 -1
  55. package/_cjs/node/index.js +3 -1
  56. package/_cjs/node/index.js.map +1 -1
  57. package/_cjs/node/trustedSetups.js +7 -0
  58. package/_cjs/node/trustedSetups.js.map +1 -0
  59. package/_cjs/types/eip4844.js +3 -0
  60. package/_cjs/types/eip4844.js.map +1 -0
  61. package/_cjs/types/kzg.js +3 -0
  62. package/_cjs/types/kzg.js.map +1 -0
  63. package/_cjs/utils/blob/blobsToCommitments.js +20 -0
  64. package/_cjs/utils/blob/blobsToCommitments.js.map +1 -0
  65. package/_cjs/utils/blob/blobsToProofs.js +26 -0
  66. package/_cjs/utils/blob/blobsToProofs.js.map +1 -0
  67. package/_cjs/utils/blob/commitmentToVersionedHash.js +14 -0
  68. package/_cjs/utils/blob/commitmentToVersionedHash.js.map +1 -0
  69. package/_cjs/utils/blob/commitmentsToVersionedHashes.js +19 -0
  70. package/_cjs/utils/blob/commitmentsToVersionedHashes.js.map +1 -0
  71. package/_cjs/utils/blob/fromBlobs.js +36 -0
  72. package/_cjs/utils/blob/fromBlobs.js.map +1 -0
  73. package/_cjs/utils/blob/sidecarsToVersionedHashes.js +19 -0
  74. package/_cjs/utils/blob/sidecarsToVersionedHashes.js.map +1 -0
  75. package/_cjs/utils/blob/toBlobSidecars.js +22 -0
  76. package/_cjs/utils/blob/toBlobSidecars.js.map +1 -0
  77. package/_cjs/utils/blob/toBlobs.js +48 -0
  78. package/_cjs/utils/blob/toBlobs.js.map +1 -0
  79. package/_cjs/utils/encoding/toRlp.js.map +1 -1
  80. package/_cjs/utils/formatters/transaction.js.map +1 -1
  81. package/_cjs/utils/formatters/transactionRequest.js +22 -25
  82. package/_cjs/utils/formatters/transactionRequest.js.map +1 -1
  83. package/_cjs/utils/kzg/defineKzg.js +11 -0
  84. package/_cjs/utils/kzg/defineKzg.js.map +1 -0
  85. package/_cjs/utils/kzg/setupKzg.js +17 -0
  86. package/_cjs/utils/kzg/setupKzg.js.map +1 -0
  87. package/_cjs/utils/signature/compactSignatureToSignature.js +3 -3
  88. package/_cjs/utils/signature/compactSignatureToSignature.js.map +1 -1
  89. package/_cjs/utils/signature/hexToSignature.js +6 -1
  90. package/_cjs/utils/signature/hexToSignature.js.map +1 -1
  91. package/_cjs/utils/signature/signatureToCompactSignature.js +3 -3
  92. package/_cjs/utils/signature/signatureToCompactSignature.js.map +1 -1
  93. package/_cjs/utils/signature/signatureToHex.js +9 -3
  94. package/_cjs/utils/signature/signatureToHex.js.map +1 -1
  95. package/_cjs/utils/transaction/assertTransaction.js +26 -1
  96. package/_cjs/utils/transaction/assertTransaction.js.map +1 -1
  97. package/_cjs/utils/transaction/getSerializedTransactionType.js +2 -0
  98. package/_cjs/utils/transaction/getSerializedTransactionType.js.map +1 -1
  99. package/_cjs/utils/transaction/getTransactionType.js +7 -1
  100. package/_cjs/utils/transaction/getTransactionType.js.map +1 -1
  101. package/_cjs/utils/transaction/parseTransaction.js +73 -0
  102. package/_cjs/utils/transaction/parseTransaction.js.map +1 -1
  103. package/_cjs/utils/transaction/serializeAccessList.js.map +1 -1
  104. package/_cjs/utils/transaction/serializeTransaction.js +84 -21
  105. package/_cjs/utils/transaction/serializeTransaction.js.map +1 -1
  106. package/_esm/accounts/utils/sign.js +1 -0
  107. package/_esm/accounts/utils/sign.js.map +1 -1
  108. package/_esm/accounts/utils/signTransaction.js +13 -2
  109. package/_esm/accounts/utils/signTransaction.js.map +1 -1
  110. package/_esm/actions/index.js +1 -0
  111. package/_esm/actions/index.js.map +1 -1
  112. package/_esm/actions/public/call.js +3 -1
  113. package/_esm/actions/public/call.js.map +1 -1
  114. package/_esm/actions/public/estimateGas.js +3 -1
  115. package/_esm/actions/public/estimateGas.js.map +1 -1
  116. package/_esm/actions/public/getBlobBaseFee.js +27 -0
  117. package/_esm/actions/public/getBlobBaseFee.js.map +1 -0
  118. package/_esm/actions/wallet/prepareTransactionRequest.js +12 -2
  119. package/_esm/actions/wallet/prepareTransactionRequest.js.map +1 -1
  120. package/_esm/actions/wallet/sendRawTransaction.js.map +1 -1
  121. package/_esm/actions/wallet/sendTransaction.js +7 -8
  122. package/_esm/actions/wallet/sendTransaction.js.map +1 -1
  123. package/_esm/actions/wallet/signTransaction.js +6 -5
  124. package/_esm/actions/wallet/signTransaction.js.map +1 -1
  125. package/_esm/chains/celo/serializers.js +10 -17
  126. package/_esm/chains/celo/serializers.js.map +1 -1
  127. package/_esm/chains/definitions/plumeTestnet.js +27 -0
  128. package/_esm/chains/definitions/plumeTestnet.js.map +1 -0
  129. package/_esm/chains/index.js +1 -0
  130. package/_esm/chains/index.js.map +1 -1
  131. package/_esm/chains/opStack/actions/estimateL1Fee.js +1 -10
  132. package/_esm/chains/opStack/actions/estimateL1Fee.js.map +1 -1
  133. package/_esm/chains/opStack/actions/estimateL1Gas.js +1 -10
  134. package/_esm/chains/opStack/actions/estimateL1Gas.js.map +1 -1
  135. package/_esm/chains/opStack/actions/finalizeWithdrawal.js +1 -1
  136. package/_esm/chains/opStack/actions/finalizeWithdrawal.js.map +1 -1
  137. package/_esm/chains/opStack/actions/proveWithdrawal.js +1 -1
  138. package/_esm/chains/opStack/actions/proveWithdrawal.js.map +1 -1
  139. package/_esm/chains/opStack/serializers.js +2 -2
  140. package/_esm/chains/opStack/serializers.js.map +1 -1
  141. package/_esm/chains/zksync/actions/sendTransaction.js.map +1 -1
  142. package/_esm/chains/zksync/actions/signEip712Transaction.js.map +1 -1
  143. package/_esm/chains/zksync/serializers.js +6 -6
  144. package/_esm/chains/zksync/serializers.js.map +1 -1
  145. package/_esm/clients/decorators/public.js.map +1 -1
  146. package/_esm/clients/decorators/wallet.js.map +1 -1
  147. package/_esm/constants/blob.js +16 -0
  148. package/_esm/constants/blob.js.map +1 -0
  149. package/_esm/constants/kzg.js +7 -0
  150. package/_esm/constants/kzg.js.map +1 -0
  151. package/_esm/errors/blob.js +56 -0
  152. package/_esm/errors/blob.js.map +1 -0
  153. package/_esm/errors/transaction.js +1 -0
  154. package/_esm/errors/transaction.js.map +1 -1
  155. package/_esm/errors/version.js +1 -1
  156. package/_esm/errors/version.js.map +1 -1
  157. package/_esm/index.js +10 -0
  158. package/_esm/index.js.map +1 -1
  159. package/_esm/node/index.js +1 -0
  160. package/_esm/node/index.js.map +1 -1
  161. package/_esm/node/trustedSetups.js +4 -0
  162. package/_esm/node/trustedSetups.js.map +1 -0
  163. package/_esm/types/eip4844.js +2 -0
  164. package/_esm/types/eip4844.js.map +1 -0
  165. package/_esm/types/kzg.js +2 -0
  166. package/_esm/types/kzg.js.map +1 -0
  167. package/_esm/utils/blob/blobsToCommitments.js +28 -0
  168. package/_esm/utils/blob/blobsToCommitments.js.map +1 -0
  169. package/_esm/utils/blob/blobsToProofs.js +38 -0
  170. package/_esm/utils/blob/blobsToProofs.js.map +1 -0
  171. package/_esm/utils/blob/commitmentToVersionedHash.js +27 -0
  172. package/_esm/utils/blob/commitmentToVersionedHash.js.map +1 -0
  173. package/_esm/utils/blob/commitmentsToVersionedHashes.js +32 -0
  174. package/_esm/utils/blob/commitmentsToVersionedHashes.js.map +1 -0
  175. package/_esm/utils/blob/fromBlobs.js +33 -0
  176. package/_esm/utils/blob/fromBlobs.js.map +1 -0
  177. package/_esm/utils/blob/sidecarsToVersionedHashes.js +26 -0
  178. package/_esm/utils/blob/sidecarsToVersionedHashes.js.map +1 -0
  179. package/_esm/utils/blob/toBlobSidecars.js +45 -0
  180. package/_esm/utils/blob/toBlobSidecars.js.map +1 -0
  181. package/_esm/utils/blob/toBlobs.js +58 -0
  182. package/_esm/utils/blob/toBlobs.js.map +1 -0
  183. package/_esm/utils/encoding/toRlp.js.map +1 -1
  184. package/_esm/utils/formatters/transaction.js.map +1 -1
  185. package/_esm/utils/formatters/transactionRequest.js +23 -26
  186. package/_esm/utils/formatters/transactionRequest.js.map +1 -1
  187. package/_esm/utils/kzg/defineKzg.js +21 -0
  188. package/_esm/utils/kzg/defineKzg.js.map +1 -0
  189. package/_esm/utils/kzg/setupKzg.js +25 -0
  190. package/_esm/utils/kzg/setupKzg.js.map +1 -0
  191. package/_esm/utils/signature/compactSignatureToSignature.js +3 -3
  192. package/_esm/utils/signature/compactSignatureToSignature.js.map +1 -1
  193. package/_esm/utils/signature/hexToSignature.js +6 -1
  194. package/_esm/utils/signature/hexToSignature.js.map +1 -1
  195. package/_esm/utils/signature/signatureToCompactSignature.js +4 -4
  196. package/_esm/utils/signature/signatureToCompactSignature.js.map +1 -1
  197. package/_esm/utils/signature/signatureToHex.js +11 -4
  198. package/_esm/utils/signature/signatureToHex.js.map +1 -1
  199. package/_esm/utils/transaction/assertTransaction.js +24 -0
  200. package/_esm/utils/transaction/assertTransaction.js.map +1 -1
  201. package/_esm/utils/transaction/getSerializedTransactionType.js +2 -0
  202. package/_esm/utils/transaction/getSerializedTransactionType.js.map +1 -1
  203. package/_esm/utils/transaction/getTransactionType.js +7 -1
  204. package/_esm/utils/transaction/getTransactionType.js.map +1 -1
  205. package/_esm/utils/transaction/parseTransaction.js +74 -1
  206. package/_esm/utils/transaction/parseTransaction.js.map +1 -1
  207. package/_esm/utils/transaction/serializeAccessList.js.map +1 -1
  208. package/_esm/utils/transaction/serializeTransaction.js +85 -22
  209. package/_esm/utils/transaction/serializeTransaction.js.map +1 -1
  210. package/_types/accounts/types.d.ts +3 -3
  211. package/_types/accounts/types.d.ts.map +1 -1
  212. package/_types/accounts/utils/sign.d.ts.map +1 -1
  213. package/_types/accounts/utils/signTransaction.d.ts +5 -5
  214. package/_types/accounts/utils/signTransaction.d.ts.map +1 -1
  215. package/_types/actions/index.d.ts +1 -0
  216. package/_types/actions/index.d.ts.map +1 -1
  217. package/_types/actions/public/call.d.ts.map +1 -1
  218. package/_types/actions/public/estimateGas.d.ts.map +1 -1
  219. package/_types/actions/public/getBlobBaseFee.d.ts +30 -0
  220. package/_types/actions/public/getBlobBaseFee.d.ts.map +1 -0
  221. package/_types/actions/wallet/prepareTransactionRequest.d.ts +27 -8
  222. package/_types/actions/wallet/prepareTransactionRequest.d.ts.map +1 -1
  223. package/_types/actions/wallet/sendRawTransaction.d.ts +3 -5
  224. package/_types/actions/wallet/sendRawTransaction.d.ts.map +1 -1
  225. package/_types/actions/wallet/sendTransaction.d.ts +4 -2
  226. package/_types/actions/wallet/sendTransaction.d.ts.map +1 -1
  227. package/_types/actions/wallet/signTransaction.d.ts +5 -2
  228. package/_types/actions/wallet/signTransaction.d.ts.map +1 -1
  229. package/_types/chains/celo/chainConfig.d.ts +1282 -376
  230. package/_types/chains/celo/chainConfig.d.ts.map +1 -1
  231. package/_types/chains/celo/formatters.d.ts +1282 -376
  232. package/_types/chains/celo/formatters.d.ts.map +1 -1
  233. package/_types/chains/celo/serializers.d.ts +3 -4
  234. package/_types/chains/celo/serializers.d.ts.map +1 -1
  235. package/_types/chains/celo/types.d.ts +3 -8
  236. package/_types/chains/celo/types.d.ts.map +1 -1
  237. package/_types/chains/definitions/ancient8.d.ts +452 -188
  238. package/_types/chains/definitions/ancient8.d.ts.map +1 -1
  239. package/_types/chains/definitions/ancient8Sepolia.d.ts +452 -188
  240. package/_types/chains/definitions/ancient8Sepolia.d.ts.map +1 -1
  241. package/_types/chains/definitions/base.d.ts +452 -188
  242. package/_types/chains/definitions/base.d.ts.map +1 -1
  243. package/_types/chains/definitions/baseGoerli.d.ts +452 -188
  244. package/_types/chains/definitions/baseGoerli.d.ts.map +1 -1
  245. package/_types/chains/definitions/baseSepolia.d.ts +452 -188
  246. package/_types/chains/definitions/baseSepolia.d.ts.map +1 -1
  247. package/_types/chains/definitions/celo.d.ts +1282 -376
  248. package/_types/chains/definitions/celo.d.ts.map +1 -1
  249. package/_types/chains/definitions/celoAlfajores.d.ts +1282 -376
  250. package/_types/chains/definitions/celoAlfajores.d.ts.map +1 -1
  251. package/_types/chains/definitions/fraxtal.d.ts +452 -188
  252. package/_types/chains/definitions/fraxtal.d.ts.map +1 -1
  253. package/_types/chains/definitions/fraxtalTestnet.d.ts +452 -188
  254. package/_types/chains/definitions/fraxtalTestnet.d.ts.map +1 -1
  255. package/_types/chains/definitions/liskSepolia.d.ts +452 -188
  256. package/_types/chains/definitions/liskSepolia.d.ts.map +1 -1
  257. package/_types/chains/definitions/optimism.d.ts +452 -188
  258. package/_types/chains/definitions/optimism.d.ts.map +1 -1
  259. package/_types/chains/definitions/optimismGoerli.d.ts +452 -188
  260. package/_types/chains/definitions/optimismGoerli.d.ts.map +1 -1
  261. package/_types/chains/definitions/optimismSepolia.d.ts +452 -188
  262. package/_types/chains/definitions/optimismSepolia.d.ts.map +1 -1
  263. package/_types/chains/definitions/pgn.d.ts +451 -187
  264. package/_types/chains/definitions/pgn.d.ts.map +1 -1
  265. package/_types/chains/definitions/pgnTestnet.d.ts +451 -187
  266. package/_types/chains/definitions/pgnTestnet.d.ts.map +1 -1
  267. package/_types/chains/definitions/plumeTestnet.d.ts +37 -0
  268. package/_types/chains/definitions/plumeTestnet.d.ts.map +1 -0
  269. package/_types/chains/definitions/zkSync.d.ts +692 -32
  270. package/_types/chains/definitions/zkSync.d.ts.map +1 -1
  271. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +692 -32
  272. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts.map +1 -1
  273. package/_types/chains/definitions/zkSyncTestnet.d.ts +692 -32
  274. package/_types/chains/definitions/zkSyncTestnet.d.ts.map +1 -1
  275. package/_types/chains/definitions/zora.d.ts +452 -188
  276. package/_types/chains/definitions/zora.d.ts.map +1 -1
  277. package/_types/chains/definitions/zoraSepolia.d.ts +452 -188
  278. package/_types/chains/definitions/zoraSepolia.d.ts.map +1 -1
  279. package/_types/chains/definitions/zoraTestnet.d.ts +452 -188
  280. package/_types/chains/definitions/zoraTestnet.d.ts.map +1 -1
  281. package/_types/chains/index.d.ts +2 -1
  282. package/_types/chains/index.d.ts.map +1 -1
  283. package/_types/chains/opStack/actions/estimateL1Fee.d.ts.map +1 -1
  284. package/_types/chains/opStack/actions/estimateL1Gas.d.ts.map +1 -1
  285. package/_types/chains/opStack/actions/finalizeWithdrawal.d.ts.map +1 -1
  286. package/_types/chains/opStack/actions/proveWithdrawal.d.ts.map +1 -1
  287. package/_types/chains/opStack/chainConfig.d.ts +452 -188
  288. package/_types/chains/opStack/chainConfig.d.ts.map +1 -1
  289. package/_types/chains/opStack/formatters.d.ts +451 -187
  290. package/_types/chains/opStack/formatters.d.ts.map +1 -1
  291. package/_types/chains/opStack/serializers.d.ts +4 -3
  292. package/_types/chains/opStack/serializers.d.ts.map +1 -1
  293. package/_types/chains/opStack/types/transaction.d.ts +4 -8
  294. package/_types/chains/opStack/types/transaction.d.ts.map +1 -1
  295. package/_types/chains/zksync/actions/sendTransaction.d.ts.map +1 -1
  296. package/_types/chains/zksync/chainConfig.d.ts +692 -32
  297. package/_types/chains/zksync/chainConfig.d.ts.map +1 -1
  298. package/_types/chains/zksync/formatters.d.ts +692 -32
  299. package/_types/chains/zksync/formatters.d.ts.map +1 -1
  300. package/_types/chains/zksync/serializers.d.ts +3 -3
  301. package/_types/chains/zksync/serializers.d.ts.map +1 -1
  302. package/_types/chains/zksync/types/chain.d.ts +2 -2
  303. package/_types/chains/zksync/types/chain.d.ts.map +1 -1
  304. package/_types/chains/zksync/types/eip712.d.ts +2 -2
  305. package/_types/chains/zksync/types/eip712.d.ts.map +1 -1
  306. package/_types/clients/decorators/public.d.ts +2 -2
  307. package/_types/clients/decorators/public.d.ts.map +1 -1
  308. package/_types/clients/decorators/wallet.d.ts +4 -4
  309. package/_types/clients/decorators/wallet.d.ts.map +1 -1
  310. package/_types/constants/blob.d.ts +11 -0
  311. package/_types/constants/blob.d.ts.map +1 -0
  312. package/_types/constants/kzg.d.ts +6 -0
  313. package/_types/constants/kzg.d.ts.map +1 -0
  314. package/_types/errors/blob.d.ts +40 -0
  315. package/_types/errors/blob.d.ts.map +1 -0
  316. package/_types/errors/transaction.d.ts.map +1 -1
  317. package/_types/errors/version.d.ts +1 -1
  318. package/_types/errors/version.d.ts.map +1 -1
  319. package/_types/index.d.ts +11 -0
  320. package/_types/index.d.ts.map +1 -1
  321. package/_types/node/index.d.ts +1 -0
  322. package/_types/node/index.d.ts.map +1 -1
  323. package/_types/node/trustedSetups.d.ts +3 -0
  324. package/_types/node/trustedSetups.d.ts.map +1 -0
  325. package/_types/types/account.d.ts +3 -3
  326. package/_types/types/account.d.ts.map +1 -1
  327. package/_types/types/chain.d.ts +2 -2
  328. package/_types/types/chain.d.ts.map +1 -1
  329. package/_types/types/eip1193.d.ts +3 -3
  330. package/_types/types/eip1193.d.ts.map +1 -1
  331. package/_types/types/eip4844.d.ts +11 -0
  332. package/_types/types/eip4844.d.ts.map +1 -0
  333. package/_types/types/fee.d.ts +2 -2
  334. package/_types/types/fee.d.ts.map +1 -1
  335. package/_types/types/kzg.d.ts +24 -0
  336. package/_types/types/kzg.d.ts.map +1 -0
  337. package/_types/types/misc.d.ts +15 -1
  338. package/_types/types/misc.d.ts.map +1 -1
  339. package/_types/types/rpc.d.ts +4 -4
  340. package/_types/types/rpc.d.ts.map +1 -1
  341. package/_types/types/transaction.d.ts +44 -9
  342. package/_types/types/transaction.d.ts.map +1 -1
  343. package/_types/types/utils.d.ts +38 -2
  344. package/_types/types/utils.d.ts.map +1 -1
  345. package/_types/utils/blob/blobsToCommitments.d.ts +31 -0
  346. package/_types/utils/blob/blobsToCommitments.d.ts.map +1 -0
  347. package/_types/utils/blob/blobsToProofs.d.ts +37 -0
  348. package/_types/utils/blob/blobsToProofs.d.ts.map +1 -0
  349. package/_types/utils/blob/commitmentToVersionedHash.d.ts +35 -0
  350. package/_types/utils/blob/commitmentToVersionedHash.d.ts.map +1 -0
  351. package/_types/utils/blob/commitmentsToVersionedHashes.d.ts +34 -0
  352. package/_types/utils/blob/commitmentsToVersionedHashes.d.ts.map +1 -0
  353. package/_types/utils/blob/fromBlobs.d.ts +16 -0
  354. package/_types/utils/blob/fromBlobs.d.ts.map +1 -0
  355. package/_types/utils/blob/sidecarsToVersionedHashes.d.ts +29 -0
  356. package/_types/utils/blob/sidecarsToVersionedHashes.d.ts.map +1 -0
  357. package/_types/utils/blob/toBlobSidecars.d.ts +57 -0
  358. package/_types/utils/blob/toBlobSidecars.d.ts.map +1 -0
  359. package/_types/utils/blob/toBlobs.d.ts +28 -0
  360. package/_types/utils/blob/toBlobs.d.ts.map +1 -0
  361. package/_types/utils/encoding/toRlp.d.ts +1 -1
  362. package/_types/utils/encoding/toRlp.d.ts.map +1 -1
  363. package/_types/utils/formatters/transaction.d.ts +25 -25
  364. package/_types/utils/formatters/transaction.d.ts.map +1 -1
  365. package/_types/utils/formatters/transactionRequest.d.ts +227 -3
  366. package/_types/utils/formatters/transactionRequest.d.ts.map +1 -1
  367. package/_types/utils/kzg/defineKzg.d.ts +21 -0
  368. package/_types/utils/kzg/defineKzg.d.ts.map +1 -0
  369. package/_types/utils/kzg/setupKzg.d.ts +21 -0
  370. package/_types/utils/kzg/setupKzg.d.ts.map +1 -0
  371. package/_types/utils/signature/hexToSignature.d.ts.map +1 -1
  372. package/_types/utils/signature/signatureToCompactSignature.d.ts +1 -1
  373. package/_types/utils/signature/signatureToHex.d.ts +2 -2
  374. package/_types/utils/signature/signatureToHex.d.ts.map +1 -1
  375. package/_types/utils/transaction/assertTransaction.d.ts +4 -1
  376. package/_types/utils/transaction/assertTransaction.d.ts.map +1 -1
  377. package/_types/utils/transaction/getSerializedTransactionType.d.ts +5 -3
  378. package/_types/utils/transaction/getSerializedTransactionType.d.ts.map +1 -1
  379. package/_types/utils/transaction/getTransactionType.d.ts +34 -3
  380. package/_types/utils/transaction/getTransactionType.d.ts.map +1 -1
  381. package/_types/utils/transaction/parseTransaction.d.ts +7 -5
  382. package/_types/utils/transaction/parseTransaction.d.ts.map +1 -1
  383. package/_types/utils/transaction/serializeTransaction.d.ts +13 -6
  384. package/_types/utils/transaction/serializeTransaction.d.ts.map +1 -1
  385. package/accounts/types.ts +9 -5
  386. package/accounts/utils/sign.ts +1 -0
  387. package/accounts/utils/signTransaction.ts +37 -22
  388. package/actions/index.ts +5 -0
  389. package/actions/public/call.ts +4 -0
  390. package/actions/public/estimateGas.ts +4 -0
  391. package/actions/public/getBlobBaseFee.ts +42 -0
  392. package/actions/wallet/prepareTransactionRequest.ts +134 -61
  393. package/actions/wallet/sendRawTransaction.ts +3 -5
  394. package/actions/wallet/sendTransaction.ts +32 -21
  395. package/actions/wallet/signTransaction.ts +34 -18
  396. package/chains/celo/serializers.ts +12 -25
  397. package/chains/celo/types.ts +5 -10
  398. package/chains/definitions/plumeTestnet.ts +28 -0
  399. package/chains/index.ts +1 -1
  400. package/chains/opStack/actions/estimateL1Fee.ts +12 -16
  401. package/chains/opStack/actions/estimateL1Gas.ts +12 -16
  402. package/chains/opStack/actions/finalizeWithdrawal.ts +3 -2
  403. package/chains/opStack/actions/proveWithdrawal.ts +3 -2
  404. package/chains/opStack/serializers.ts +5 -5
  405. package/chains/opStack/types/transaction.ts +9 -11
  406. package/chains/zksync/actions/sendTransaction.ts +2 -1
  407. package/chains/zksync/actions/signEip712Transaction.ts +2 -2
  408. package/chains/zksync/serializers.ts +14 -10
  409. package/chains/zksync/types/chain.ts +4 -7
  410. package/chains/zksync/types/eip712.ts +2 -2
  411. package/clients/decorators/public.ts +8 -4
  412. package/clients/decorators/wallet.ts +14 -6
  413. package/constants/blob.ts +21 -0
  414. package/constants/kzg.ts +9 -0
  415. package/errors/blob.ts +67 -0
  416. package/errors/transaction.ts +1 -0
  417. package/errors/version.ts +1 -1
  418. package/index.ts +64 -0
  419. package/node/index.ts +2 -0
  420. package/node/trustedSetups.ts +11 -0
  421. package/package.json +1 -1
  422. package/trusted-setups/mainnet.json +8265 -0
  423. package/trusted-setups/minimal.json +8265 -0
  424. package/types/account.ts +3 -3
  425. package/types/chain.ts +3 -1
  426. package/types/eip1193.ts +3 -3
  427. package/types/eip4844.ts +12 -0
  428. package/types/fee.ts +3 -2
  429. package/types/kzg.ts +32 -0
  430. package/types/misc.ts +20 -1
  431. package/types/rpc.ts +11 -6
  432. package/types/transaction.ts +75 -17
  433. package/types/utils.ts +49 -1
  434. package/utils/blob/blobsToCommitments.ts +69 -0
  435. package/utils/blob/blobsToProofs.ts +93 -0
  436. package/utils/blob/commitmentToVersionedHash.ts +62 -0
  437. package/utils/blob/commitmentsToVersionedHashes.ts +71 -0
  438. package/utils/blob/fromBlobs.ts +73 -0
  439. package/utils/blob/sidecarsToVersionedHashes.ts +66 -0
  440. package/utils/blob/toBlobSidecars.ts +109 -0
  441. package/utils/blob/toBlobs.ts +113 -0
  442. package/utils/encoding/toRlp.ts +2 -2
  443. package/utils/formatters/transaction.ts +3 -2
  444. package/utils/formatters/transactionRequest.ts +28 -35
  445. package/utils/kzg/defineKzg.ts +30 -0
  446. package/utils/kzg/setupKzg.ts +38 -0
  447. package/utils/signature/compactSignatureToSignature.ts +3 -3
  448. package/utils/signature/hexToSignature.ts +6 -1
  449. package/utils/signature/signatureToCompactSignature.ts +4 -4
  450. package/utils/signature/signatureToHex.ts +9 -4
  451. package/utils/transaction/assertTransaction.ts +41 -0
  452. package/utils/transaction/getSerializedTransactionType.ts +34 -11
  453. package/utils/transaction/getTransactionType.ts +109 -26
  454. package/utils/transaction/parseTransaction.ts +128 -8
  455. package/utils/transaction/serializeAccessList.ts +1 -1
  456. package/utils/transaction/serializeTransaction.ts +172 -39
@@ -47,53 +47,77 @@ export declare const chainConfig: {
47
47
  readonly transaction: {
48
48
  exclude: [] | undefined;
49
49
  format: (args: ({
50
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
51
- gas?: `0x${string}` | undefined;
52
- value?: `0x${string}` | undefined;
50
+ r?: `0x${string}` | undefined;
51
+ s?: `0x${string}` | undefined;
52
+ v?: `0x${string}` | undefined;
53
+ yParity?: `0x${string}` | undefined;
53
54
  gasPrice?: `0x${string}` | undefined;
54
55
  maxFeePerBlobGas?: `0x${string}` | undefined;
55
56
  maxFeePerGas?: `0x${string}` | undefined;
56
57
  maxPriorityFeePerGas?: `0x${string}` | undefined;
57
- yParity?: `0x${string}` | undefined;
58
+ to?: `0x${string}` | null | undefined;
59
+ from?: `0x${string}` | undefined;
60
+ gas?: `0x${string}` | undefined;
61
+ nonce?: `0x${string}` | undefined;
62
+ value?: `0x${string}` | undefined;
63
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
64
+ accessList?: undefined;
58
65
  blockHash?: `0x${string}` | null | undefined;
59
66
  blockNumber?: `0x${string}` | null | undefined;
60
- from?: `0x${string}` | undefined;
61
67
  hash?: `0x${string}` | undefined;
62
68
  input?: `0x${string}` | undefined;
63
- nonce?: `0x${string}` | undefined;
64
- r?: `0x${string}` | undefined;
65
- s?: `0x${string}` | undefined;
66
- to?: `0x${string}` | null | undefined;
67
69
  transactionIndex?: `0x${string}` | null | undefined;
68
- v?: `0x${string}` | undefined;
70
+ blobVersionedHashes?: undefined;
71
+ chainId?: `0x${string}` | undefined;
72
+ } & import("../index.js").Omit<import("../index.js").PartialBy<{
73
+ r: `0x${string}`;
74
+ s: `0x${string}`;
75
+ v: `0x${string}`;
76
+ to: `0x${string}` | null;
77
+ from: `0x${string}`;
78
+ gas: `0x${string}`;
79
+ nonce: `0x${string}`;
80
+ value: `0x${string}`;
81
+ blockHash: `0x${string}` | null;
82
+ blockNumber: `0x${string}` | null;
83
+ hash: `0x${string}`;
84
+ input: `0x${string}`;
85
+ transactionIndex: `0x${string}` | null;
86
+ typeHex: `0x${string}` | null;
87
+ gasPrice: `0x${string}`;
88
+ maxFeePerBlobGas?: undefined;
89
+ maxFeePerGas?: undefined;
90
+ maxPriorityFeePerGas?: undefined;
69
91
  accessList?: undefined;
70
92
  blobVersionedHashes?: undefined;
71
93
  chainId?: `0x${string}` | undefined;
72
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
94
+ yParity?: undefined;
95
+ type: "0x0";
96
+ }, "yParity">, "typeHex"> & {
73
97
  feeCurrency: `0x${string}` | null;
74
98
  gatewayFee: `0x${string}` | null;
75
99
  gatewayFeeRecipient: `0x${string}` | null;
76
100
  }) | ({
77
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
78
- gas?: `0x${string}` | undefined;
79
- value?: `0x${string}` | undefined;
101
+ r?: `0x${string}` | undefined;
102
+ s?: `0x${string}` | undefined;
103
+ v?: `0x${string}` | undefined;
104
+ yParity?: `0x${string}` | undefined;
80
105
  gasPrice?: `0x${string}` | undefined;
81
106
  maxFeePerBlobGas?: `0x${string}` | undefined;
82
107
  maxFeePerGas?: `0x${string}` | undefined;
83
108
  maxPriorityFeePerGas?: `0x${string}` | undefined;
84
- yParity?: `0x${string}` | undefined;
109
+ to?: `0x${string}` | null | undefined;
110
+ from?: `0x${string}` | undefined;
111
+ gas?: `0x${string}` | undefined;
112
+ nonce?: `0x${string}` | undefined;
113
+ value?: `0x${string}` | undefined;
114
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
115
+ accessList?: undefined;
85
116
  blockHash?: `0x${string}` | null | undefined;
86
117
  blockNumber?: `0x${string}` | null | undefined;
87
- from?: `0x${string}` | undefined;
88
118
  hash?: `0x${string}` | undefined;
89
119
  input?: `0x${string}` | undefined;
90
- nonce?: `0x${string}` | undefined;
91
- r?: `0x${string}` | undefined;
92
- s?: `0x${string}` | undefined;
93
- to?: `0x${string}` | null | undefined;
94
120
  transactionIndex?: `0x${string}` | null | undefined;
95
- v?: `0x${string}` | undefined;
96
- accessList?: undefined;
97
121
  blobVersionedHashes?: undefined;
98
122
  chainId?: `0x${string}` | undefined;
99
123
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -102,26 +126,26 @@ export declare const chainConfig: {
102
126
  gatewayFeeRecipient: `0x${string}` | null;
103
127
  type: "0x7c";
104
128
  }) | ({
105
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
106
- gas?: `0x${string}` | undefined;
107
- value?: `0x${string}` | undefined;
129
+ r?: `0x${string}` | undefined;
130
+ s?: `0x${string}` | undefined;
131
+ v?: `0x${string}` | undefined;
132
+ yParity?: `0x${string}` | undefined;
108
133
  gasPrice?: `0x${string}` | undefined;
109
134
  maxFeePerBlobGas?: `0x${string}` | undefined;
110
135
  maxFeePerGas?: `0x${string}` | undefined;
111
136
  maxPriorityFeePerGas?: `0x${string}` | undefined;
112
- yParity?: `0x${string}` | undefined;
137
+ to?: `0x${string}` | null | undefined;
138
+ from?: `0x${string}` | undefined;
139
+ gas?: `0x${string}` | undefined;
140
+ nonce?: `0x${string}` | undefined;
141
+ value?: `0x${string}` | undefined;
142
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
143
+ accessList?: undefined;
113
144
  blockHash?: `0x${string}` | null | undefined;
114
145
  blockNumber?: `0x${string}` | null | undefined;
115
- from?: `0x${string}` | undefined;
116
146
  hash?: `0x${string}` | undefined;
117
147
  input?: `0x${string}` | undefined;
118
- nonce?: `0x${string}` | undefined;
119
- r?: `0x${string}` | undefined;
120
- s?: `0x${string}` | undefined;
121
- to?: `0x${string}` | null | undefined;
122
148
  transactionIndex?: `0x${string}` | null | undefined;
123
- v?: `0x${string}` | undefined;
124
- accessList?: undefined;
125
149
  blobVersionedHashes?: undefined;
126
150
  chainId?: `0x${string}` | undefined;
127
151
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -130,107 +154,179 @@ export declare const chainConfig: {
130
154
  gatewayFeeRecipient?: undefined;
131
155
  type: "0x7b";
132
156
  }) | ({
133
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
134
- gas?: `0x${string}` | undefined;
135
- value?: `0x${string}` | undefined;
157
+ r?: `0x${string}` | undefined;
158
+ s?: `0x${string}` | undefined;
159
+ v?: `0x${string}` | undefined;
160
+ yParity?: `0x${string}` | undefined;
136
161
  gasPrice?: `0x${string}` | undefined;
137
162
  maxFeePerBlobGas?: `0x${string}` | undefined;
138
163
  maxFeePerGas?: `0x${string}` | undefined;
139
164
  maxPriorityFeePerGas?: `0x${string}` | undefined;
140
- yParity?: `0x${string}` | undefined;
165
+ to?: `0x${string}` | null | undefined;
166
+ from?: `0x${string}` | undefined;
167
+ gas?: `0x${string}` | undefined;
168
+ nonce?: `0x${string}` | undefined;
169
+ value?: `0x${string}` | undefined;
170
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
171
+ accessList?: import("../../index.js").AccessList | undefined;
141
172
  blockHash?: `0x${string}` | null | undefined;
142
173
  blockNumber?: `0x${string}` | null | undefined;
143
- from?: `0x${string}` | undefined;
144
174
  hash?: `0x${string}` | undefined;
145
175
  input?: `0x${string}` | undefined;
146
- nonce?: `0x${string}` | undefined;
147
- r?: `0x${string}` | undefined;
148
- s?: `0x${string}` | undefined;
149
- to?: `0x${string}` | null | undefined;
150
176
  transactionIndex?: `0x${string}` | null | undefined;
151
- v?: `0x${string}` | undefined;
152
- accessList?: import("../../index.js").AccessList | undefined;
153
177
  blobVersionedHashes?: undefined;
154
178
  chainId?: `0x${string}` | undefined;
155
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
179
+ } & import("../index.js").Omit<import("../index.js").PartialBy<{
180
+ r: `0x${string}`;
181
+ s: `0x${string}`;
182
+ v: `0x${string}`;
183
+ to: `0x${string}` | null;
184
+ from: `0x${string}`;
185
+ gas: `0x${string}`;
186
+ nonce: `0x${string}`;
187
+ value: `0x${string}`;
188
+ blockHash: `0x${string}` | null;
189
+ blockNumber: `0x${string}` | null;
190
+ hash: `0x${string}`;
191
+ input: `0x${string}`;
192
+ transactionIndex: `0x${string}` | null;
193
+ typeHex: `0x${string}` | null;
194
+ gasPrice: `0x${string}`;
195
+ maxFeePerBlobGas?: undefined;
196
+ maxFeePerGas?: undefined;
197
+ maxPriorityFeePerGas?: undefined;
198
+ accessList?: undefined;
199
+ blobVersionedHashes?: undefined;
200
+ chainId?: `0x${string}` | undefined;
201
+ yParity?: undefined;
202
+ type: "0x0";
203
+ }, "yParity">, "typeHex"> & {
156
204
  feeCurrency: `0x${string}` | null;
157
205
  gatewayFee: `0x${string}` | null;
158
206
  gatewayFeeRecipient: `0x${string}` | null;
159
207
  }) | ({
160
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
161
- gas?: `0x${string}` | undefined;
162
- value?: `0x${string}` | undefined;
208
+ r?: `0x${string}` | undefined;
209
+ s?: `0x${string}` | undefined;
210
+ v?: `0x${string}` | undefined;
211
+ yParity?: `0x${string}` | undefined;
163
212
  gasPrice?: `0x${string}` | undefined;
164
213
  maxFeePerBlobGas?: `0x${string}` | undefined;
165
214
  maxFeePerGas?: `0x${string}` | undefined;
166
215
  maxPriorityFeePerGas?: `0x${string}` | undefined;
167
- yParity?: `0x${string}` | undefined;
216
+ to?: `0x${string}` | null | undefined;
217
+ from?: `0x${string}` | undefined;
218
+ gas?: `0x${string}` | undefined;
219
+ nonce?: `0x${string}` | undefined;
220
+ value?: `0x${string}` | undefined;
221
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
222
+ accessList?: import("../../index.js").AccessList | undefined;
168
223
  blockHash?: `0x${string}` | null | undefined;
169
224
  blockNumber?: `0x${string}` | null | undefined;
170
- from?: `0x${string}` | undefined;
171
225
  hash?: `0x${string}` | undefined;
172
226
  input?: `0x${string}` | undefined;
173
- nonce?: `0x${string}` | undefined;
174
- r?: `0x${string}` | undefined;
175
- s?: `0x${string}` | undefined;
176
- to?: `0x${string}` | null | undefined;
177
227
  transactionIndex?: `0x${string}` | null | undefined;
178
- v?: `0x${string}` | undefined;
179
- accessList?: import("../../index.js").AccessList | undefined;
180
228
  blobVersionedHashes?: undefined;
181
229
  chainId?: `0x${string}` | undefined;
182
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
230
+ } & import("../index.js").Omit<import("../index.js").PartialBy<{
231
+ blockHash: `0x${string}` | null;
232
+ blockNumber: `0x${string}` | null;
233
+ from: `0x${string}`;
234
+ gas: `0x${string}`;
235
+ hash: `0x${string}`;
236
+ input: `0x${string}`;
237
+ nonce: `0x${string}`;
238
+ r: `0x${string}`;
239
+ s: `0x${string}`;
240
+ to: `0x${string}` | null;
241
+ transactionIndex: `0x${string}` | null;
242
+ typeHex: `0x${string}` | null;
243
+ v: `0x${string}`;
244
+ value: `0x${string}`;
245
+ yParity: `0x${string}`;
246
+ gasPrice: `0x${string}`;
247
+ maxFeePerBlobGas?: undefined;
248
+ maxFeePerGas?: undefined;
249
+ maxPriorityFeePerGas?: undefined;
250
+ accessList: import("../../index.js").AccessList;
251
+ blobVersionedHashes?: undefined;
252
+ chainId: `0x${string}`;
253
+ type: "0x1";
254
+ }, "yParity">, "typeHex"> & {
183
255
  feeCurrency: `0x${string}` | null;
184
256
  gatewayFee: `0x${string}` | null;
185
257
  gatewayFeeRecipient: `0x${string}` | null;
186
258
  }) | ({
187
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
188
- gas?: `0x${string}` | undefined;
189
- value?: `0x${string}` | undefined;
259
+ r?: `0x${string}` | undefined;
260
+ s?: `0x${string}` | undefined;
261
+ v?: `0x${string}` | undefined;
262
+ yParity?: `0x${string}` | undefined;
190
263
  gasPrice?: `0x${string}` | undefined;
191
264
  maxFeePerBlobGas?: `0x${string}` | undefined;
192
265
  maxFeePerGas?: `0x${string}` | undefined;
193
266
  maxPriorityFeePerGas?: `0x${string}` | undefined;
194
- yParity?: `0x${string}` | undefined;
267
+ to?: `0x${string}` | null | undefined;
268
+ from?: `0x${string}` | undefined;
269
+ gas?: `0x${string}` | undefined;
270
+ nonce?: `0x${string}` | undefined;
271
+ value?: `0x${string}` | undefined;
272
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
273
+ accessList?: import("../../index.js").AccessList | undefined;
195
274
  blockHash?: `0x${string}` | null | undefined;
196
275
  blockNumber?: `0x${string}` | null | undefined;
197
- from?: `0x${string}` | undefined;
198
276
  hash?: `0x${string}` | undefined;
199
277
  input?: `0x${string}` | undefined;
200
- nonce?: `0x${string}` | undefined;
201
- r?: `0x${string}` | undefined;
202
- s?: `0x${string}` | undefined;
203
- to?: `0x${string}` | null | undefined;
204
278
  transactionIndex?: `0x${string}` | null | undefined;
205
- v?: `0x${string}` | undefined;
206
- accessList?: import("../../index.js").AccessList | undefined;
207
279
  blobVersionedHashes?: undefined;
208
280
  chainId?: `0x${string}` | undefined;
209
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
281
+ } & import("../index.js").Omit<import("../index.js").PartialBy<{
282
+ blockHash: `0x${string}` | null;
283
+ blockNumber: `0x${string}` | null;
284
+ from: `0x${string}`;
285
+ gas: `0x${string}`;
286
+ hash: `0x${string}`;
287
+ input: `0x${string}`;
288
+ nonce: `0x${string}`;
289
+ r: `0x${string}`;
290
+ s: `0x${string}`;
291
+ to: `0x${string}` | null;
292
+ transactionIndex: `0x${string}` | null;
293
+ typeHex: `0x${string}` | null;
294
+ v: `0x${string}`;
295
+ value: `0x${string}`;
296
+ yParity: `0x${string}`;
297
+ gasPrice?: undefined;
298
+ maxFeePerBlobGas?: undefined;
299
+ maxFeePerGas: `0x${string}`;
300
+ maxPriorityFeePerGas: `0x${string}`;
301
+ accessList: import("../../index.js").AccessList;
302
+ blobVersionedHashes?: undefined;
303
+ chainId: `0x${string}`;
304
+ type: "0x2";
305
+ }, "yParity">, "typeHex"> & {
210
306
  feeCurrency: `0x${string}` | null;
211
307
  gatewayFee: `0x${string}` | null;
212
308
  gatewayFeeRecipient: `0x${string}` | null;
213
309
  }) | ({
214
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
215
- gas?: `0x${string}` | undefined;
216
- value?: `0x${string}` | undefined;
310
+ r?: `0x${string}` | undefined;
311
+ s?: `0x${string}` | undefined;
312
+ v?: `0x${string}` | undefined;
313
+ yParity?: `0x${string}` | undefined;
217
314
  gasPrice?: `0x${string}` | undefined;
218
315
  maxFeePerBlobGas?: `0x${string}` | undefined;
219
316
  maxFeePerGas?: `0x${string}` | undefined;
220
317
  maxPriorityFeePerGas?: `0x${string}` | undefined;
221
- yParity?: `0x${string}` | undefined;
318
+ to?: `0x${string}` | null | undefined;
319
+ from?: `0x${string}` | undefined;
320
+ gas?: `0x${string}` | undefined;
321
+ nonce?: `0x${string}` | undefined;
322
+ value?: `0x${string}` | undefined;
323
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
324
+ accessList?: import("../../index.js").AccessList | undefined;
222
325
  blockHash?: `0x${string}` | null | undefined;
223
326
  blockNumber?: `0x${string}` | null | undefined;
224
- from?: `0x${string}` | undefined;
225
327
  hash?: `0x${string}` | undefined;
226
328
  input?: `0x${string}` | undefined;
227
- nonce?: `0x${string}` | undefined;
228
- r?: `0x${string}` | undefined;
229
- s?: `0x${string}` | undefined;
230
- to?: `0x${string}` | null | undefined;
231
329
  transactionIndex?: `0x${string}` | null | undefined;
232
- v?: `0x${string}` | undefined;
233
- accessList?: import("../../index.js").AccessList | undefined;
234
330
  blobVersionedHashes?: undefined;
235
331
  chainId?: `0x${string}` | undefined;
236
332
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -239,26 +335,26 @@ export declare const chainConfig: {
239
335
  gatewayFeeRecipient: `0x${string}` | null;
240
336
  type: "0x7c";
241
337
  }) | ({
242
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
243
- gas?: `0x${string}` | undefined;
244
- value?: `0x${string}` | undefined;
338
+ r?: `0x${string}` | undefined;
339
+ s?: `0x${string}` | undefined;
340
+ v?: `0x${string}` | undefined;
341
+ yParity?: `0x${string}` | undefined;
245
342
  gasPrice?: `0x${string}` | undefined;
246
343
  maxFeePerBlobGas?: `0x${string}` | undefined;
247
344
  maxFeePerGas?: `0x${string}` | undefined;
248
345
  maxPriorityFeePerGas?: `0x${string}` | undefined;
249
- yParity?: `0x${string}` | undefined;
346
+ to?: `0x${string}` | null | undefined;
347
+ from?: `0x${string}` | undefined;
348
+ gas?: `0x${string}` | undefined;
349
+ nonce?: `0x${string}` | undefined;
350
+ value?: `0x${string}` | undefined;
351
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
352
+ accessList?: import("../../index.js").AccessList | undefined;
250
353
  blockHash?: `0x${string}` | null | undefined;
251
354
  blockNumber?: `0x${string}` | null | undefined;
252
- from?: `0x${string}` | undefined;
253
355
  hash?: `0x${string}` | undefined;
254
356
  input?: `0x${string}` | undefined;
255
- nonce?: `0x${string}` | undefined;
256
- r?: `0x${string}` | undefined;
257
- s?: `0x${string}` | undefined;
258
- to?: `0x${string}` | null | undefined;
259
357
  transactionIndex?: `0x${string}` | null | undefined;
260
- v?: `0x${string}` | undefined;
261
- accessList?: import("../../index.js").AccessList | undefined;
262
358
  blobVersionedHashes?: undefined;
263
359
  chainId?: `0x${string}` | undefined;
264
360
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -267,107 +363,179 @@ export declare const chainConfig: {
267
363
  gatewayFeeRecipient?: undefined;
268
364
  type: "0x7b";
269
365
  }) | ({
270
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
271
- gas?: `0x${string}` | undefined;
272
- value?: `0x${string}` | undefined;
366
+ r?: `0x${string}` | undefined;
367
+ s?: `0x${string}` | undefined;
368
+ v?: `0x${string}` | undefined;
369
+ yParity?: `0x${string}` | undefined;
273
370
  gasPrice?: `0x${string}` | undefined;
274
371
  maxFeePerBlobGas?: `0x${string}` | undefined;
275
372
  maxFeePerGas?: `0x${string}` | undefined;
276
373
  maxPriorityFeePerGas?: `0x${string}` | undefined;
277
- yParity?: `0x${string}` | undefined;
374
+ to?: `0x${string}` | null | undefined;
375
+ from?: `0x${string}` | undefined;
376
+ gas?: `0x${string}` | undefined;
377
+ nonce?: `0x${string}` | undefined;
378
+ value?: `0x${string}` | undefined;
379
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
380
+ accessList?: import("../../index.js").AccessList | undefined;
278
381
  blockHash?: `0x${string}` | null | undefined;
279
382
  blockNumber?: `0x${string}` | null | undefined;
280
- from?: `0x${string}` | undefined;
281
383
  hash?: `0x${string}` | undefined;
282
384
  input?: `0x${string}` | undefined;
283
- nonce?: `0x${string}` | undefined;
284
- r?: `0x${string}` | undefined;
285
- s?: `0x${string}` | undefined;
286
- to?: `0x${string}` | null | undefined;
287
385
  transactionIndex?: `0x${string}` | null | undefined;
288
- v?: `0x${string}` | undefined;
289
- accessList?: import("../../index.js").AccessList | undefined;
290
386
  blobVersionedHashes?: undefined;
291
387
  chainId?: `0x${string}` | undefined;
292
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
293
- feeCurrency: `0x${string}` | null;
294
- gatewayFee: `0x${string}` | null;
295
- gatewayFeeRecipient: `0x${string}` | null;
296
- }) | ({
297
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
298
- gas?: `0x${string}` | undefined;
299
- value?: `0x${string}` | undefined;
388
+ } & import("../index.js").Omit<import("../index.js").PartialBy<{
389
+ r: `0x${string}`;
390
+ s: `0x${string}`;
391
+ v: `0x${string}`;
392
+ to: `0x${string}` | null;
393
+ from: `0x${string}`;
394
+ gas: `0x${string}`;
395
+ nonce: `0x${string}`;
396
+ value: `0x${string}`;
397
+ blockHash: `0x${string}` | null;
398
+ blockNumber: `0x${string}` | null;
399
+ hash: `0x${string}`;
400
+ input: `0x${string}`;
401
+ transactionIndex: `0x${string}` | null;
402
+ typeHex: `0x${string}` | null;
403
+ gasPrice: `0x${string}`;
404
+ maxFeePerBlobGas?: undefined;
405
+ maxFeePerGas?: undefined;
406
+ maxPriorityFeePerGas?: undefined;
407
+ accessList?: undefined;
408
+ blobVersionedHashes?: undefined;
409
+ chainId?: `0x${string}` | undefined;
410
+ yParity?: undefined;
411
+ type: "0x0";
412
+ }, "yParity">, "typeHex"> & {
413
+ feeCurrency: `0x${string}` | null;
414
+ gatewayFee: `0x${string}` | null;
415
+ gatewayFeeRecipient: `0x${string}` | null;
416
+ }) | ({
417
+ r?: `0x${string}` | undefined;
418
+ s?: `0x${string}` | undefined;
419
+ v?: `0x${string}` | undefined;
420
+ yParity?: `0x${string}` | undefined;
300
421
  gasPrice?: `0x${string}` | undefined;
301
422
  maxFeePerBlobGas?: `0x${string}` | undefined;
302
423
  maxFeePerGas?: `0x${string}` | undefined;
303
424
  maxPriorityFeePerGas?: `0x${string}` | undefined;
304
- yParity?: `0x${string}` | undefined;
425
+ to?: `0x${string}` | null | undefined;
426
+ from?: `0x${string}` | undefined;
427
+ gas?: `0x${string}` | undefined;
428
+ nonce?: `0x${string}` | undefined;
429
+ value?: `0x${string}` | undefined;
430
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
431
+ accessList?: import("../../index.js").AccessList | undefined;
305
432
  blockHash?: `0x${string}` | null | undefined;
306
433
  blockNumber?: `0x${string}` | null | undefined;
307
- from?: `0x${string}` | undefined;
308
434
  hash?: `0x${string}` | undefined;
309
435
  input?: `0x${string}` | undefined;
310
- nonce?: `0x${string}` | undefined;
311
- r?: `0x${string}` | undefined;
312
- s?: `0x${string}` | undefined;
313
- to?: `0x${string}` | null | undefined;
314
436
  transactionIndex?: `0x${string}` | null | undefined;
315
- v?: `0x${string}` | undefined;
316
- accessList?: import("../../index.js").AccessList | undefined;
317
437
  blobVersionedHashes?: undefined;
318
438
  chainId?: `0x${string}` | undefined;
319
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
439
+ } & import("../index.js").Omit<import("../index.js").PartialBy<{
440
+ blockHash: `0x${string}` | null;
441
+ blockNumber: `0x${string}` | null;
442
+ from: `0x${string}`;
443
+ gas: `0x${string}`;
444
+ hash: `0x${string}`;
445
+ input: `0x${string}`;
446
+ nonce: `0x${string}`;
447
+ r: `0x${string}`;
448
+ s: `0x${string}`;
449
+ to: `0x${string}` | null;
450
+ transactionIndex: `0x${string}` | null;
451
+ typeHex: `0x${string}` | null;
452
+ v: `0x${string}`;
453
+ value: `0x${string}`;
454
+ yParity: `0x${string}`;
455
+ gasPrice: `0x${string}`;
456
+ maxFeePerBlobGas?: undefined;
457
+ maxFeePerGas?: undefined;
458
+ maxPriorityFeePerGas?: undefined;
459
+ accessList: import("../../index.js").AccessList;
460
+ blobVersionedHashes?: undefined;
461
+ chainId: `0x${string}`;
462
+ type: "0x1";
463
+ }, "yParity">, "typeHex"> & {
320
464
  feeCurrency: `0x${string}` | null;
321
465
  gatewayFee: `0x${string}` | null;
322
466
  gatewayFeeRecipient: `0x${string}` | null;
323
467
  }) | ({
324
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
325
- gas?: `0x${string}` | undefined;
326
- value?: `0x${string}` | undefined;
468
+ r?: `0x${string}` | undefined;
469
+ s?: `0x${string}` | undefined;
470
+ v?: `0x${string}` | undefined;
471
+ yParity?: `0x${string}` | undefined;
327
472
  gasPrice?: `0x${string}` | undefined;
328
473
  maxFeePerBlobGas?: `0x${string}` | undefined;
329
474
  maxFeePerGas?: `0x${string}` | undefined;
330
475
  maxPriorityFeePerGas?: `0x${string}` | undefined;
331
- yParity?: `0x${string}` | undefined;
476
+ to?: `0x${string}` | null | undefined;
477
+ from?: `0x${string}` | undefined;
478
+ gas?: `0x${string}` | undefined;
479
+ nonce?: `0x${string}` | undefined;
480
+ value?: `0x${string}` | undefined;
481
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
482
+ accessList?: import("../../index.js").AccessList | undefined;
332
483
  blockHash?: `0x${string}` | null | undefined;
333
484
  blockNumber?: `0x${string}` | null | undefined;
334
- from?: `0x${string}` | undefined;
335
485
  hash?: `0x${string}` | undefined;
336
486
  input?: `0x${string}` | undefined;
337
- nonce?: `0x${string}` | undefined;
338
- r?: `0x${string}` | undefined;
339
- s?: `0x${string}` | undefined;
340
- to?: `0x${string}` | null | undefined;
341
487
  transactionIndex?: `0x${string}` | null | undefined;
342
- v?: `0x${string}` | undefined;
343
- accessList?: import("../../index.js").AccessList | undefined;
344
488
  blobVersionedHashes?: undefined;
345
489
  chainId?: `0x${string}` | undefined;
346
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
490
+ } & import("../index.js").Omit<import("../index.js").PartialBy<{
491
+ blockHash: `0x${string}` | null;
492
+ blockNumber: `0x${string}` | null;
493
+ from: `0x${string}`;
494
+ gas: `0x${string}`;
495
+ hash: `0x${string}`;
496
+ input: `0x${string}`;
497
+ nonce: `0x${string}`;
498
+ r: `0x${string}`;
499
+ s: `0x${string}`;
500
+ to: `0x${string}` | null;
501
+ transactionIndex: `0x${string}` | null;
502
+ typeHex: `0x${string}` | null;
503
+ v: `0x${string}`;
504
+ value: `0x${string}`;
505
+ yParity: `0x${string}`;
506
+ gasPrice?: undefined;
507
+ maxFeePerBlobGas?: undefined;
508
+ maxFeePerGas: `0x${string}`;
509
+ maxPriorityFeePerGas: `0x${string}`;
510
+ accessList: import("../../index.js").AccessList;
511
+ blobVersionedHashes?: undefined;
512
+ chainId: `0x${string}`;
513
+ type: "0x2";
514
+ }, "yParity">, "typeHex"> & {
347
515
  feeCurrency: `0x${string}` | null;
348
516
  gatewayFee: `0x${string}` | null;
349
517
  gatewayFeeRecipient: `0x${string}` | null;
350
518
  }) | ({
351
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
352
- gas?: `0x${string}` | undefined;
353
- value?: `0x${string}` | undefined;
519
+ r?: `0x${string}` | undefined;
520
+ s?: `0x${string}` | undefined;
521
+ v?: `0x${string}` | undefined;
522
+ yParity?: `0x${string}` | undefined;
354
523
  gasPrice?: `0x${string}` | undefined;
355
524
  maxFeePerBlobGas?: `0x${string}` | undefined;
356
525
  maxFeePerGas?: `0x${string}` | undefined;
357
526
  maxPriorityFeePerGas?: `0x${string}` | undefined;
358
- yParity?: `0x${string}` | undefined;
527
+ to?: `0x${string}` | null | undefined;
528
+ from?: `0x${string}` | undefined;
529
+ gas?: `0x${string}` | undefined;
530
+ nonce?: `0x${string}` | undefined;
531
+ value?: `0x${string}` | undefined;
532
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
533
+ accessList?: import("../../index.js").AccessList | undefined;
359
534
  blockHash?: `0x${string}` | null | undefined;
360
535
  blockNumber?: `0x${string}` | null | undefined;
361
- from?: `0x${string}` | undefined;
362
536
  hash?: `0x${string}` | undefined;
363
537
  input?: `0x${string}` | undefined;
364
- nonce?: `0x${string}` | undefined;
365
- r?: `0x${string}` | undefined;
366
- s?: `0x${string}` | undefined;
367
- to?: `0x${string}` | null | undefined;
368
538
  transactionIndex?: `0x${string}` | null | undefined;
369
- v?: `0x${string}` | undefined;
370
- accessList?: import("../../index.js").AccessList | undefined;
371
539
  blobVersionedHashes?: undefined;
372
540
  chainId?: `0x${string}` | undefined;
373
541
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -376,26 +544,26 @@ export declare const chainConfig: {
376
544
  gatewayFeeRecipient: `0x${string}` | null;
377
545
  type: "0x7c";
378
546
  }) | ({
379
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
380
- gas?: `0x${string}` | undefined;
381
- value?: `0x${string}` | undefined;
547
+ r?: `0x${string}` | undefined;
548
+ s?: `0x${string}` | undefined;
549
+ v?: `0x${string}` | undefined;
550
+ yParity?: `0x${string}` | undefined;
382
551
  gasPrice?: `0x${string}` | undefined;
383
552
  maxFeePerBlobGas?: `0x${string}` | undefined;
384
553
  maxFeePerGas?: `0x${string}` | undefined;
385
554
  maxPriorityFeePerGas?: `0x${string}` | undefined;
386
- yParity?: `0x${string}` | undefined;
555
+ to?: `0x${string}` | null | undefined;
556
+ from?: `0x${string}` | undefined;
557
+ gas?: `0x${string}` | undefined;
558
+ nonce?: `0x${string}` | undefined;
559
+ value?: `0x${string}` | undefined;
560
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
561
+ accessList?: import("../../index.js").AccessList | undefined;
387
562
  blockHash?: `0x${string}` | null | undefined;
388
563
  blockNumber?: `0x${string}` | null | undefined;
389
- from?: `0x${string}` | undefined;
390
564
  hash?: `0x${string}` | undefined;
391
565
  input?: `0x${string}` | undefined;
392
- nonce?: `0x${string}` | undefined;
393
- r?: `0x${string}` | undefined;
394
- s?: `0x${string}` | undefined;
395
- to?: `0x${string}` | null | undefined;
396
566
  transactionIndex?: `0x${string}` | null | undefined;
397
- v?: `0x${string}` | undefined;
398
- accessList?: import("../../index.js").AccessList | undefined;
399
567
  blobVersionedHashes?: undefined;
400
568
  chainId?: `0x${string}` | undefined;
401
569
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -404,134 +572,230 @@ export declare const chainConfig: {
404
572
  gatewayFeeRecipient?: undefined;
405
573
  type: "0x7b";
406
574
  }) | ({
407
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
408
- gas?: `0x${string}` | undefined;
409
- value?: `0x${string}` | undefined;
575
+ r?: `0x${string}` | undefined;
576
+ s?: `0x${string}` | undefined;
577
+ v?: `0x${string}` | undefined;
578
+ yParity?: `0x${string}` | undefined;
410
579
  gasPrice?: `0x${string}` | undefined;
411
580
  maxFeePerBlobGas?: `0x${string}` | undefined;
412
581
  maxFeePerGas?: `0x${string}` | undefined;
413
582
  maxPriorityFeePerGas?: `0x${string}` | undefined;
414
- yParity?: `0x${string}` | undefined;
583
+ to?: `0x${string}` | null | undefined;
584
+ from?: `0x${string}` | undefined;
585
+ gas?: `0x${string}` | undefined;
586
+ nonce?: `0x${string}` | undefined;
587
+ value?: `0x${string}` | undefined;
588
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
589
+ accessList?: import("../../index.js").AccessList | undefined;
415
590
  blockHash?: `0x${string}` | null | undefined;
416
591
  blockNumber?: `0x${string}` | null | undefined;
417
- from?: `0x${string}` | undefined;
418
592
  hash?: `0x${string}` | undefined;
419
593
  input?: `0x${string}` | undefined;
420
- nonce?: `0x${string}` | undefined;
421
- r?: `0x${string}` | undefined;
422
- s?: `0x${string}` | undefined;
423
- to?: `0x${string}` | null | undefined;
424
594
  transactionIndex?: `0x${string}` | null | undefined;
425
- v?: `0x${string}` | undefined;
426
- accessList?: import("../../index.js").AccessList | undefined;
427
595
  blobVersionedHashes?: `0x${string}`[] | undefined;
428
596
  chainId?: `0x${string}` | undefined;
429
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
597
+ } & import("../index.js").Omit<import("../index.js").PartialBy<{
598
+ r: `0x${string}`;
599
+ s: `0x${string}`;
600
+ v: `0x${string}`;
601
+ to: `0x${string}` | null;
602
+ from: `0x${string}`;
603
+ gas: `0x${string}`;
604
+ nonce: `0x${string}`;
605
+ value: `0x${string}`;
606
+ blockHash: `0x${string}` | null;
607
+ blockNumber: `0x${string}` | null;
608
+ hash: `0x${string}`;
609
+ input: `0x${string}`;
610
+ transactionIndex: `0x${string}` | null;
611
+ typeHex: `0x${string}` | null;
612
+ gasPrice: `0x${string}`;
613
+ maxFeePerBlobGas?: undefined;
614
+ maxFeePerGas?: undefined;
615
+ maxPriorityFeePerGas?: undefined;
616
+ accessList?: undefined;
617
+ blobVersionedHashes?: undefined;
618
+ chainId?: `0x${string}` | undefined;
619
+ yParity?: undefined;
620
+ type: "0x0";
621
+ }, "yParity">, "typeHex"> & {
430
622
  feeCurrency: `0x${string}` | null;
431
623
  gatewayFee: `0x${string}` | null;
432
624
  gatewayFeeRecipient: `0x${string}` | null;
433
625
  }) | ({
434
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
435
- gas?: `0x${string}` | undefined;
436
- value?: `0x${string}` | undefined;
626
+ r?: `0x${string}` | undefined;
627
+ s?: `0x${string}` | undefined;
628
+ v?: `0x${string}` | undefined;
629
+ yParity?: `0x${string}` | undefined;
437
630
  gasPrice?: `0x${string}` | undefined;
438
631
  maxFeePerBlobGas?: `0x${string}` | undefined;
439
632
  maxFeePerGas?: `0x${string}` | undefined;
440
633
  maxPriorityFeePerGas?: `0x${string}` | undefined;
441
- yParity?: `0x${string}` | undefined;
634
+ to?: `0x${string}` | null | undefined;
635
+ from?: `0x${string}` | undefined;
636
+ gas?: `0x${string}` | undefined;
637
+ nonce?: `0x${string}` | undefined;
638
+ value?: `0x${string}` | undefined;
639
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
640
+ accessList?: import("../../index.js").AccessList | undefined;
442
641
  blockHash?: `0x${string}` | null | undefined;
443
642
  blockNumber?: `0x${string}` | null | undefined;
444
- from?: `0x${string}` | undefined;
445
643
  hash?: `0x${string}` | undefined;
446
644
  input?: `0x${string}` | undefined;
447
- nonce?: `0x${string}` | undefined;
448
- r?: `0x${string}` | undefined;
449
- s?: `0x${string}` | undefined;
450
- to?: `0x${string}` | null | undefined;
451
645
  transactionIndex?: `0x${string}` | null | undefined;
452
- v?: `0x${string}` | undefined;
453
- accessList?: import("../../index.js").AccessList | undefined;
454
646
  blobVersionedHashes?: `0x${string}`[] | undefined;
455
647
  chainId?: `0x${string}` | undefined;
456
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
648
+ } & import("../index.js").Omit<import("../index.js").PartialBy<{
649
+ blockHash: `0x${string}` | null;
650
+ blockNumber: `0x${string}` | null;
651
+ from: `0x${string}`;
652
+ gas: `0x${string}`;
653
+ hash: `0x${string}`;
654
+ input: `0x${string}`;
655
+ nonce: `0x${string}`;
656
+ r: `0x${string}`;
657
+ s: `0x${string}`;
658
+ to: `0x${string}` | null;
659
+ transactionIndex: `0x${string}` | null;
660
+ typeHex: `0x${string}` | null;
661
+ v: `0x${string}`;
662
+ value: `0x${string}`;
663
+ yParity: `0x${string}`;
664
+ gasPrice: `0x${string}`;
665
+ maxFeePerBlobGas?: undefined;
666
+ maxFeePerGas?: undefined;
667
+ maxPriorityFeePerGas?: undefined;
668
+ accessList: import("../../index.js").AccessList;
669
+ blobVersionedHashes?: undefined;
670
+ chainId: `0x${string}`;
671
+ type: "0x1";
672
+ }, "yParity">, "typeHex"> & {
457
673
  feeCurrency: `0x${string}` | null;
458
674
  gatewayFee: `0x${string}` | null;
459
675
  gatewayFeeRecipient: `0x${string}` | null;
460
676
  }) | ({
461
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
462
- gas?: `0x${string}` | undefined;
463
- value?: `0x${string}` | undefined;
677
+ r?: `0x${string}` | undefined;
678
+ s?: `0x${string}` | undefined;
679
+ v?: `0x${string}` | undefined;
680
+ yParity?: `0x${string}` | undefined;
464
681
  gasPrice?: `0x${string}` | undefined;
465
682
  maxFeePerBlobGas?: `0x${string}` | undefined;
466
683
  maxFeePerGas?: `0x${string}` | undefined;
467
684
  maxPriorityFeePerGas?: `0x${string}` | undefined;
468
- yParity?: `0x${string}` | undefined;
685
+ to?: `0x${string}` | null | undefined;
686
+ from?: `0x${string}` | undefined;
687
+ gas?: `0x${string}` | undefined;
688
+ nonce?: `0x${string}` | undefined;
689
+ value?: `0x${string}` | undefined;
690
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
691
+ accessList?: import("../../index.js").AccessList | undefined;
469
692
  blockHash?: `0x${string}` | null | undefined;
470
693
  blockNumber?: `0x${string}` | null | undefined;
471
- from?: `0x${string}` | undefined;
472
694
  hash?: `0x${string}` | undefined;
473
695
  input?: `0x${string}` | undefined;
474
- nonce?: `0x${string}` | undefined;
475
- r?: `0x${string}` | undefined;
476
- s?: `0x${string}` | undefined;
477
- to?: `0x${string}` | null | undefined;
478
696
  transactionIndex?: `0x${string}` | null | undefined;
479
- v?: `0x${string}` | undefined;
480
- accessList?: import("../../index.js").AccessList | undefined;
481
697
  blobVersionedHashes?: `0x${string}`[] | undefined;
482
698
  chainId?: `0x${string}` | undefined;
483
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
699
+ } & import("../index.js").Omit<import("../index.js").PartialBy<{
700
+ blockHash: `0x${string}` | null;
701
+ blockNumber: `0x${string}` | null;
702
+ from: `0x${string}`;
703
+ gas: `0x${string}`;
704
+ hash: `0x${string}`;
705
+ input: `0x${string}`;
706
+ nonce: `0x${string}`;
707
+ r: `0x${string}`;
708
+ s: `0x${string}`;
709
+ to: `0x${string}` | null;
710
+ transactionIndex: `0x${string}` | null;
711
+ typeHex: `0x${string}` | null;
712
+ v: `0x${string}`;
713
+ value: `0x${string}`;
714
+ yParity: `0x${string}`;
715
+ gasPrice?: undefined;
716
+ maxFeePerBlobGas?: undefined;
717
+ maxFeePerGas: `0x${string}`;
718
+ maxPriorityFeePerGas: `0x${string}`;
719
+ accessList: import("../../index.js").AccessList;
720
+ blobVersionedHashes?: undefined;
721
+ chainId: `0x${string}`;
722
+ type: "0x2";
723
+ }, "yParity">, "typeHex"> & {
484
724
  feeCurrency: `0x${string}` | null;
485
725
  gatewayFee: `0x${string}` | null;
486
726
  gatewayFeeRecipient: `0x${string}` | null;
487
727
  }) | ({
488
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
489
- gas?: `0x${string}` | undefined;
490
- value?: `0x${string}` | undefined;
728
+ r?: `0x${string}` | undefined;
729
+ s?: `0x${string}` | undefined;
730
+ v?: `0x${string}` | undefined;
731
+ yParity?: `0x${string}` | undefined;
491
732
  gasPrice?: `0x${string}` | undefined;
492
733
  maxFeePerBlobGas?: `0x${string}` | undefined;
493
734
  maxFeePerGas?: `0x${string}` | undefined;
494
735
  maxPriorityFeePerGas?: `0x${string}` | undefined;
495
- yParity?: `0x${string}` | undefined;
736
+ to?: `0x${string}` | null | undefined;
737
+ from?: `0x${string}` | undefined;
738
+ gas?: `0x${string}` | undefined;
739
+ nonce?: `0x${string}` | undefined;
740
+ value?: `0x${string}` | undefined;
741
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
742
+ accessList?: import("../../index.js").AccessList | undefined;
496
743
  blockHash?: `0x${string}` | null | undefined;
497
744
  blockNumber?: `0x${string}` | null | undefined;
498
- from?: `0x${string}` | undefined;
499
745
  hash?: `0x${string}` | undefined;
500
746
  input?: `0x${string}` | undefined;
501
- nonce?: `0x${string}` | undefined;
502
- r?: `0x${string}` | undefined;
503
- s?: `0x${string}` | undefined;
504
- to?: `0x${string}` | null | undefined;
505
747
  transactionIndex?: `0x${string}` | null | undefined;
506
- v?: `0x${string}` | undefined;
507
- accessList?: import("../../index.js").AccessList | undefined;
508
748
  blobVersionedHashes?: `0x${string}`[] | undefined;
509
749
  chainId?: `0x${string}` | undefined;
510
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP4844<`0x${string}`, `0x${string}`, boolean, "0x3">, "yParity">, "typeHex"> & {
750
+ } & import("../index.js").Omit<import("../index.js").PartialBy<{
751
+ blockHash: `0x${string}` | null;
752
+ blockNumber: `0x${string}` | null;
753
+ from: `0x${string}`;
754
+ gas: `0x${string}`;
755
+ hash: `0x${string}`;
756
+ input: `0x${string}`;
757
+ nonce: `0x${string}`;
758
+ r: `0x${string}`;
759
+ s: `0x${string}`;
760
+ to: `0x${string}` | null;
761
+ transactionIndex: `0x${string}` | null;
762
+ typeHex: `0x${string}` | null;
763
+ v: `0x${string}`;
764
+ value: `0x${string}`;
765
+ yParity: `0x${string}`;
766
+ gasPrice?: undefined;
767
+ maxFeePerBlobGas: `0x${string}`;
768
+ maxFeePerGas: `0x${string}`;
769
+ maxPriorityFeePerGas: `0x${string}`;
770
+ accessList: import("../../index.js").AccessList;
771
+ blobVersionedHashes: `0x${string}`[];
772
+ chainId: `0x${string}`;
773
+ type: "0x3";
774
+ }, "yParity">, "typeHex"> & {
511
775
  feeCurrency: `0x${string}` | null;
512
776
  gatewayFee: `0x${string}` | null;
513
777
  gatewayFeeRecipient: `0x${string}` | null;
514
778
  }) | ({
515
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
516
- gas?: `0x${string}` | undefined;
517
- value?: `0x${string}` | undefined;
779
+ r?: `0x${string}` | undefined;
780
+ s?: `0x${string}` | undefined;
781
+ v?: `0x${string}` | undefined;
782
+ yParity?: `0x${string}` | undefined;
518
783
  gasPrice?: `0x${string}` | undefined;
519
784
  maxFeePerBlobGas?: `0x${string}` | undefined;
520
785
  maxFeePerGas?: `0x${string}` | undefined;
521
786
  maxPriorityFeePerGas?: `0x${string}` | undefined;
522
- yParity?: `0x${string}` | undefined;
787
+ to?: `0x${string}` | null | undefined;
788
+ from?: `0x${string}` | undefined;
789
+ gas?: `0x${string}` | undefined;
790
+ nonce?: `0x${string}` | undefined;
791
+ value?: `0x${string}` | undefined;
792
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
793
+ accessList?: import("../../index.js").AccessList | undefined;
523
794
  blockHash?: `0x${string}` | null | undefined;
524
795
  blockNumber?: `0x${string}` | null | undefined;
525
- from?: `0x${string}` | undefined;
526
796
  hash?: `0x${string}` | undefined;
527
797
  input?: `0x${string}` | undefined;
528
- nonce?: `0x${string}` | undefined;
529
- r?: `0x${string}` | undefined;
530
- s?: `0x${string}` | undefined;
531
- to?: `0x${string}` | null | undefined;
532
798
  transactionIndex?: `0x${string}` | null | undefined;
533
- v?: `0x${string}` | undefined;
534
- accessList?: import("../../index.js").AccessList | undefined;
535
799
  blobVersionedHashes?: `0x${string}`[] | undefined;
536
800
  chainId?: `0x${string}` | undefined;
537
801
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -540,26 +804,26 @@ export declare const chainConfig: {
540
804
  gatewayFeeRecipient: `0x${string}` | null;
541
805
  type: "0x7c";
542
806
  }) | ({
543
- type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
544
- gas?: `0x${string}` | undefined;
545
- value?: `0x${string}` | undefined;
807
+ r?: `0x${string}` | undefined;
808
+ s?: `0x${string}` | undefined;
809
+ v?: `0x${string}` | undefined;
810
+ yParity?: `0x${string}` | undefined;
546
811
  gasPrice?: `0x${string}` | undefined;
547
812
  maxFeePerBlobGas?: `0x${string}` | undefined;
548
813
  maxFeePerGas?: `0x${string}` | undefined;
549
814
  maxPriorityFeePerGas?: `0x${string}` | undefined;
550
- yParity?: `0x${string}` | undefined;
815
+ to?: `0x${string}` | null | undefined;
816
+ from?: `0x${string}` | undefined;
817
+ gas?: `0x${string}` | undefined;
818
+ nonce?: `0x${string}` | undefined;
819
+ value?: `0x${string}` | undefined;
820
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
821
+ accessList?: import("../../index.js").AccessList | undefined;
551
822
  blockHash?: `0x${string}` | null | undefined;
552
823
  blockNumber?: `0x${string}` | null | undefined;
553
- from?: `0x${string}` | undefined;
554
824
  hash?: `0x${string}` | undefined;
555
825
  input?: `0x${string}` | undefined;
556
- nonce?: `0x${string}` | undefined;
557
- r?: `0x${string}` | undefined;
558
- s?: `0x${string}` | undefined;
559
- to?: `0x${string}` | null | undefined;
560
826
  transactionIndex?: `0x${string}` | null | undefined;
561
- v?: `0x${string}` | undefined;
562
- accessList?: import("../../index.js").AccessList | undefined;
563
827
  blobVersionedHashes?: `0x${string}`[] | undefined;
564
828
  chainId?: `0x${string}` | undefined;
565
829
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -568,11 +832,118 @@ export declare const chainConfig: {
568
832
  gatewayFeeRecipient?: undefined;
569
833
  type: "0x7b";
570
834
  })) => ({
835
+ r: `0x${string}`;
836
+ s: `0x${string}`;
837
+ v: bigint;
838
+ to: `0x${string}` | null;
839
+ from: `0x${string}`;
571
840
  gas: bigint;
841
+ nonce: number;
572
842
  value: bigint;
843
+ blockHash: `0x${string}` | null;
844
+ blockNumber: bigint | null;
845
+ hash: `0x${string}`;
846
+ input: `0x${string}`;
847
+ transactionIndex: number | null;
848
+ typeHex: `0x${string}` | null;
849
+ gasPrice: bigint;
850
+ maxFeePerBlobGas?: undefined;
851
+ maxFeePerGas?: undefined;
852
+ maxPriorityFeePerGas?: undefined;
853
+ accessList?: undefined;
854
+ blobVersionedHashes?: undefined;
855
+ chainId?: number | undefined;
856
+ yParity?: undefined;
857
+ type: "legacy";
858
+ feeCurrency: `0x${string}` | null;
859
+ gatewayFee: bigint | null;
860
+ gatewayFeeRecipient: `0x${string}` | null;
861
+ } | {
862
+ r: `0x${string}`;
863
+ s: `0x${string}`;
864
+ v: bigint;
865
+ to: `0x${string}` | null;
866
+ from: `0x${string}`;
867
+ gas: bigint;
868
+ nonce: number;
869
+ value: bigint;
870
+ blockHash: `0x${string}` | null;
871
+ blockNumber: bigint | null;
872
+ hash: `0x${string}`;
873
+ input: `0x${string}`;
874
+ transactionIndex: number | null;
875
+ typeHex: `0x${string}` | null;
876
+ gasPrice: undefined;
877
+ maxFeePerBlobGas?: undefined;
878
+ maxFeePerGas: bigint;
879
+ maxPriorityFeePerGas: bigint;
880
+ accessList?: undefined;
881
+ blobVersionedHashes?: undefined;
882
+ chainId?: number | undefined;
883
+ yParity: number;
884
+ type: "cip42";
885
+ feeCurrency: `0x${string}` | null;
886
+ gatewayFee: bigint | null;
887
+ gatewayFeeRecipient: `0x${string}` | null;
888
+ } | {
889
+ r: `0x${string}`;
890
+ s: `0x${string}`;
891
+ v: bigint;
892
+ to: `0x${string}` | null;
893
+ from: `0x${string}`;
894
+ gas: bigint;
895
+ nonce: number;
896
+ value: bigint;
897
+ blockHash: `0x${string}` | null;
898
+ blockNumber: bigint | null;
899
+ hash: `0x${string}`;
900
+ input: `0x${string}`;
901
+ transactionIndex: number | null;
902
+ typeHex: `0x${string}` | null;
903
+ gasPrice: undefined;
904
+ maxFeePerBlobGas?: undefined;
905
+ maxFeePerGas: bigint;
906
+ maxPriorityFeePerGas: bigint;
907
+ accessList?: undefined;
908
+ blobVersionedHashes?: undefined;
909
+ chainId?: number | undefined;
910
+ yParity: number;
911
+ type: "cip64";
912
+ feeCurrency: `0x${string}` | null;
913
+ gatewayFee?: undefined;
914
+ gatewayFeeRecipient?: undefined;
915
+ } | {
916
+ blockHash: `0x${string}` | null;
917
+ blockNumber: bigint | null;
918
+ from: `0x${string}`;
919
+ gas: bigint;
920
+ hash: `0x${string}`;
921
+ input: `0x${string}`;
922
+ nonce: number;
923
+ r: `0x${string}`;
924
+ s: `0x${string}`;
925
+ to: `0x${string}` | null;
926
+ transactionIndex: number | null;
927
+ typeHex: `0x${string}` | null;
928
+ v: bigint;
929
+ value: bigint;
930
+ yParity: number;
931
+ gasPrice: bigint;
932
+ maxFeePerBlobGas?: undefined;
933
+ maxFeePerGas?: undefined;
934
+ maxPriorityFeePerGas?: undefined;
935
+ accessList: import("../../index.js").AccessList;
936
+ blobVersionedHashes?: undefined;
937
+ chainId: number;
938
+ type: "eip2930";
939
+ feeCurrency: `0x${string}` | null;
940
+ gatewayFee: bigint | null;
941
+ gatewayFeeRecipient: `0x${string}` | null;
942
+ } | {
573
943
  blockHash: `0x${string}` | null;
574
944
  blockNumber: bigint | null;
575
945
  from: `0x${string}`;
946
+ gas: bigint;
576
947
  hash: `0x${string}`;
577
948
  input: `0x${string}`;
578
949
  nonce: number;
@@ -582,24 +953,24 @@ export declare const chainConfig: {
582
953
  transactionIndex: number | null;
583
954
  typeHex: `0x${string}` | null;
584
955
  v: bigint;
585
- gasPrice: bigint;
956
+ value: bigint;
957
+ yParity: number;
958
+ gasPrice: undefined;
586
959
  maxFeePerBlobGas?: undefined;
587
- maxFeePerGas?: undefined;
588
- maxPriorityFeePerGas?: undefined;
589
- accessList?: undefined;
960
+ maxFeePerGas: bigint;
961
+ maxPriorityFeePerGas: bigint;
962
+ accessList: import("../../index.js").AccessList;
590
963
  blobVersionedHashes?: undefined;
591
- chainId?: number | undefined;
592
- yParity?: undefined;
593
- type: "legacy";
964
+ chainId: number;
965
+ type: "eip1559";
594
966
  feeCurrency: `0x${string}` | null;
595
967
  gatewayFee: bigint | null;
596
968
  gatewayFeeRecipient: `0x${string}` | null;
597
969
  } | {
598
- gas: bigint;
599
- value: bigint;
600
970
  blockHash: `0x${string}` | null;
601
971
  blockNumber: bigint | null;
602
972
  from: `0x${string}`;
973
+ gas: bigint;
603
974
  hash: `0x${string}`;
604
975
  input: `0x${string}`;
605
976
  nonce: number;
@@ -609,24 +980,24 @@ export declare const chainConfig: {
609
980
  transactionIndex: number | null;
610
981
  typeHex: `0x${string}` | null;
611
982
  v: bigint;
983
+ value: bigint;
984
+ yParity: number;
612
985
  gasPrice: undefined;
613
986
  maxFeePerBlobGas?: undefined;
614
987
  maxFeePerGas: bigint;
615
988
  maxPriorityFeePerGas: bigint;
616
- accessList?: undefined;
989
+ accessList: import("../../index.js").AccessList;
617
990
  blobVersionedHashes?: undefined;
618
- chainId?: number | undefined;
619
- yParity: number;
991
+ chainId: number;
620
992
  type: "cip42";
621
993
  feeCurrency: `0x${string}` | null;
622
994
  gatewayFee: bigint | null;
623
995
  gatewayFeeRecipient: `0x${string}` | null;
624
996
  } | {
625
- gas: bigint;
626
- value: bigint;
627
997
  blockHash: `0x${string}` | null;
628
998
  blockNumber: bigint | null;
629
999
  from: `0x${string}`;
1000
+ gas: bigint;
630
1001
  hash: `0x${string}`;
631
1002
  input: `0x${string}`;
632
1003
  nonce: number;
@@ -636,14 +1007,15 @@ export declare const chainConfig: {
636
1007
  transactionIndex: number | null;
637
1008
  typeHex: `0x${string}` | null;
638
1009
  v: bigint;
1010
+ value: bigint;
1011
+ yParity: number;
639
1012
  gasPrice: undefined;
640
1013
  maxFeePerBlobGas?: undefined;
641
1014
  maxFeePerGas: bigint;
642
1015
  maxPriorityFeePerGas: bigint;
643
- accessList?: undefined;
1016
+ accessList: import("../../index.js").AccessList;
644
1017
  blobVersionedHashes?: undefined;
645
- chainId?: number | undefined;
646
- yParity: number;
1018
+ chainId: number;
647
1019
  type: "cip64";
648
1020
  feeCurrency: `0x${string}` | null;
649
1021
  gatewayFee?: undefined;
@@ -666,8 +1038,8 @@ export declare const chainConfig: {
666
1038
  yParity: number;
667
1039
  gasPrice: bigint;
668
1040
  maxFeePerBlobGas?: undefined;
669
- maxFeePerGas?: undefined;
670
- maxPriorityFeePerGas?: undefined;
1041
+ maxFeePerGas: undefined;
1042
+ maxPriorityFeePerGas: undefined;
671
1043
  accessList: import("../../index.js").AccessList;
672
1044
  blobVersionedHashes?: undefined;
673
1045
  chainId: number;
@@ -691,7 +1063,7 @@ export declare const chainConfig: {
691
1063
  v: bigint;
692
1064
  value: bigint;
693
1065
  yParity: number;
694
- gasPrice: undefined;
1066
+ gasPrice?: undefined;
695
1067
  maxFeePerBlobGas?: undefined;
696
1068
  maxFeePerGas: bigint;
697
1069
  maxPriorityFeePerGas: bigint;
@@ -718,7 +1090,7 @@ export declare const chainConfig: {
718
1090
  v: bigint;
719
1091
  value: bigint;
720
1092
  yParity: number;
721
- gasPrice: undefined;
1093
+ gasPrice?: undefined;
722
1094
  maxFeePerBlobGas?: undefined;
723
1095
  maxFeePerGas: bigint;
724
1096
  maxPriorityFeePerGas: bigint;
@@ -745,7 +1117,7 @@ export declare const chainConfig: {
745
1117
  v: bigint;
746
1118
  value: bigint;
747
1119
  yParity: number;
748
- gasPrice: undefined;
1120
+ gasPrice?: undefined;
749
1121
  maxFeePerBlobGas?: undefined;
750
1122
  maxFeePerGas: bigint;
751
1123
  maxPriorityFeePerGas: bigint;
@@ -772,14 +1144,14 @@ export declare const chainConfig: {
772
1144
  v: bigint;
773
1145
  value: bigint;
774
1146
  yParity: number;
775
- gasPrice: bigint;
776
- maxFeePerBlobGas?: undefined;
777
- maxFeePerGas: undefined;
778
- maxPriorityFeePerGas: undefined;
1147
+ gasPrice?: undefined;
1148
+ maxFeePerBlobGas: bigint;
1149
+ maxFeePerGas: bigint;
1150
+ maxPriorityFeePerGas: bigint;
779
1151
  accessList: import("../../index.js").AccessList;
780
- blobVersionedHashes?: undefined;
1152
+ blobVersionedHashes: `0x${string}`[];
781
1153
  chainId: number;
782
- type: "eip2930";
1154
+ type: "eip4844";
783
1155
  feeCurrency: `0x${string}` | null;
784
1156
  gatewayFee: bigint | null;
785
1157
  gatewayFeeRecipient: `0x${string}` | null;
@@ -800,13 +1172,13 @@ export declare const chainConfig: {
800
1172
  value: bigint;
801
1173
  yParity: number;
802
1174
  gasPrice?: undefined;
803
- maxFeePerBlobGas?: undefined;
1175
+ maxFeePerBlobGas: undefined;
804
1176
  maxFeePerGas: bigint;
805
1177
  maxPriorityFeePerGas: bigint;
806
1178
  accessList: import("../../index.js").AccessList;
807
- blobVersionedHashes?: undefined;
1179
+ blobVersionedHashes: `0x${string}`[];
808
1180
  chainId: number;
809
- type: "eip1559";
1181
+ type: "cip42";
810
1182
  feeCurrency: `0x${string}` | null;
811
1183
  gatewayFee: bigint | null;
812
1184
  gatewayFeeRecipient: `0x${string}` | null;
@@ -827,130 +1199,598 @@ export declare const chainConfig: {
827
1199
  value: bigint;
828
1200
  yParity: number;
829
1201
  gasPrice?: undefined;
830
- maxFeePerBlobGas?: undefined;
1202
+ maxFeePerBlobGas: undefined;
831
1203
  maxFeePerGas: bigint;
832
1204
  maxPriorityFeePerGas: bigint;
833
1205
  accessList: import("../../index.js").AccessList;
834
- blobVersionedHashes?: undefined;
1206
+ blobVersionedHashes: `0x${string}`[];
835
1207
  chainId: number;
836
- type: "cip42";
1208
+ type: "cip64";
837
1209
  feeCurrency: `0x${string}` | null;
838
- gatewayFee: bigint | null;
839
- gatewayFeeRecipient: `0x${string}` | null;
840
- } | {
841
- blockHash: `0x${string}` | null;
842
- blockNumber: bigint | null;
1210
+ gatewayFee?: undefined;
1211
+ gatewayFeeRecipient?: undefined;
1212
+ }) & {};
1213
+ type: "transaction";
1214
+ };
1215
+ readonly transactionRequest: {
1216
+ exclude: [] | undefined;
1217
+ format: (args: ({
1218
+ data?: `0x${string}` | undefined;
1219
+ from?: `0x${string}` | undefined;
1220
+ gas?: bigint | undefined;
1221
+ nonce?: number | undefined;
1222
+ to?: `0x${string}` | null | undefined;
1223
+ value?: bigint | undefined;
1224
+ gasPrice?: bigint | undefined;
1225
+ maxFeePerBlobGas?: bigint | undefined;
1226
+ maxFeePerGas?: bigint | undefined;
1227
+ maxPriorityFeePerGas?: bigint | undefined;
1228
+ accessList?: import("../../index.js").AccessList | undefined;
1229
+ blobs?: undefined;
1230
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1231
+ } & {
1232
+ data?: `0x${string}` | undefined;
843
1233
  from: `0x${string}`;
844
- gas: bigint;
845
- hash: `0x${string}`;
846
- input: `0x${string}`;
847
- nonce: number;
848
- r: `0x${string}`;
849
- s: `0x${string}`;
850
- to: `0x${string}` | null;
851
- transactionIndex: number | null;
852
- typeHex: `0x${string}` | null;
853
- v: bigint;
854
- value: bigint;
855
- yParity: number;
1234
+ gas?: bigint | undefined;
1235
+ nonce?: number | undefined;
1236
+ to?: `0x${string}` | null | undefined;
1237
+ value?: bigint | undefined;
1238
+ gasPrice?: bigint | undefined;
1239
+ maxFeePerBlobGas?: undefined;
1240
+ maxFeePerGas?: undefined;
1241
+ maxPriorityFeePerGas?: undefined;
1242
+ accessList?: undefined;
1243
+ blobs?: undefined;
1244
+ type?: "legacy" | undefined;
1245
+ } & {
1246
+ feeCurrency?: `0x${string}` | undefined;
1247
+ gatewayFee?: bigint | undefined;
1248
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1249
+ }) | ({
1250
+ data?: `0x${string}` | undefined;
1251
+ from?: `0x${string}` | undefined;
1252
+ gas?: bigint | undefined;
1253
+ nonce?: number | undefined;
1254
+ to?: `0x${string}` | null | undefined;
1255
+ value?: bigint | undefined;
1256
+ gasPrice?: bigint | undefined;
1257
+ maxFeePerBlobGas?: bigint | undefined;
1258
+ maxFeePerGas?: bigint | undefined;
1259
+ maxPriorityFeePerGas?: bigint | undefined;
1260
+ accessList?: import("../../index.js").AccessList | undefined;
1261
+ blobs?: undefined;
1262
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1263
+ } & {
1264
+ data?: `0x${string}` | undefined;
1265
+ from: `0x${string}`;
1266
+ gas?: bigint | undefined;
1267
+ nonce?: number | undefined;
1268
+ to?: `0x${string}` | null | undefined;
1269
+ value?: bigint | undefined;
1270
+ gasPrice?: bigint | undefined;
1271
+ maxFeePerBlobGas?: undefined;
1272
+ maxFeePerGas?: undefined;
1273
+ maxPriorityFeePerGas?: undefined;
1274
+ accessList?: import("../../index.js").AccessList | undefined;
1275
+ blobs?: undefined;
1276
+ type?: "eip2930" | undefined;
1277
+ } & {
1278
+ feeCurrency?: `0x${string}` | undefined;
1279
+ gatewayFee?: bigint | undefined;
1280
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1281
+ }) | ({
1282
+ data?: `0x${string}` | undefined;
1283
+ from?: `0x${string}` | undefined;
1284
+ gas?: bigint | undefined;
1285
+ nonce?: number | undefined;
1286
+ to?: `0x${string}` | null | undefined;
1287
+ value?: bigint | undefined;
1288
+ gasPrice?: bigint | undefined;
1289
+ maxFeePerBlobGas?: bigint | undefined;
1290
+ maxFeePerGas?: bigint | undefined;
1291
+ maxPriorityFeePerGas?: bigint | undefined;
1292
+ accessList?: import("../../index.js").AccessList | undefined;
1293
+ blobs?: undefined;
1294
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1295
+ } & {
1296
+ data?: `0x${string}` | undefined;
1297
+ from: `0x${string}`;
1298
+ gas?: bigint | undefined;
1299
+ nonce?: number | undefined;
1300
+ to?: `0x${string}` | null | undefined;
1301
+ value?: bigint | undefined;
1302
+ gasPrice?: undefined;
1303
+ maxFeePerBlobGas?: undefined;
1304
+ maxFeePerGas?: bigint | undefined;
1305
+ maxPriorityFeePerGas?: bigint | undefined;
1306
+ accessList?: import("../../index.js").AccessList | undefined;
1307
+ blobs?: undefined;
1308
+ type?: "eip1559" | undefined;
1309
+ } & {
1310
+ feeCurrency?: `0x${string}` | undefined;
1311
+ gatewayFee?: bigint | undefined;
1312
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1313
+ }) | ({
1314
+ data?: `0x${string}` | undefined;
1315
+ from?: `0x${string}` | undefined;
1316
+ gas?: bigint | undefined;
1317
+ nonce?: number | undefined;
1318
+ to?: `0x${string}` | null | undefined;
1319
+ value?: bigint | undefined;
1320
+ gasPrice?: bigint | undefined;
1321
+ maxFeePerBlobGas?: bigint | undefined;
1322
+ maxFeePerGas?: bigint | undefined;
1323
+ maxPriorityFeePerGas?: bigint | undefined;
1324
+ accessList?: import("../../index.js").AccessList | undefined;
1325
+ blobs?: undefined;
1326
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1327
+ } & import("../../index.js").TransactionRequestBase & Partial<import("../../index.js").FeeValuesEIP1559> & {
1328
+ accessList?: import("../../index.js").AccessList | undefined;
1329
+ feeCurrency?: `0x${string}` | undefined;
1330
+ gatewayFee?: bigint | undefined;
1331
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1332
+ type?: "cip42" | undefined;
1333
+ }) | ({
1334
+ data?: `0x${string}` | undefined;
1335
+ from?: `0x${string}` | undefined;
1336
+ gas?: bigint | undefined;
1337
+ nonce?: number | undefined;
1338
+ to?: `0x${string}` | null | undefined;
1339
+ value?: bigint | undefined;
1340
+ gasPrice?: bigint | undefined;
1341
+ maxFeePerBlobGas?: bigint | undefined;
1342
+ maxFeePerGas?: bigint | undefined;
1343
+ maxPriorityFeePerGas?: bigint | undefined;
1344
+ accessList?: import("../../index.js").AccessList | undefined;
1345
+ blobs?: undefined;
1346
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1347
+ } & import("../../index.js").TransactionRequestBase & Partial<import("../../index.js").FeeValuesEIP1559> & {
1348
+ accessList?: import("../../index.js").AccessList | undefined;
1349
+ feeCurrency?: `0x${string}` | undefined;
1350
+ gatewayFee?: undefined;
1351
+ gatewayFeeRecipient?: undefined;
1352
+ type?: "cip64" | undefined;
1353
+ }) | ({
1354
+ data?: `0x${string}` | undefined;
1355
+ from?: `0x${string}` | undefined;
1356
+ gas?: bigint | undefined;
1357
+ nonce?: number | undefined;
1358
+ to?: `0x${string}` | null | undefined;
1359
+ value?: bigint | undefined;
1360
+ gasPrice?: bigint | undefined;
1361
+ maxFeePerBlobGas?: bigint | undefined;
1362
+ maxFeePerGas?: bigint | undefined;
1363
+ maxPriorityFeePerGas?: bigint | undefined;
1364
+ accessList?: import("../../index.js").AccessList | undefined;
1365
+ blobs?: undefined;
1366
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1367
+ } & {
1368
+ data?: `0x${string}` | undefined;
1369
+ from: `0x${string}`;
1370
+ gas?: bigint | undefined;
1371
+ nonce?: number | undefined;
1372
+ to?: `0x${string}` | null | undefined;
1373
+ value?: bigint | undefined;
1374
+ gasPrice?: bigint | undefined;
1375
+ maxFeePerBlobGas?: undefined;
1376
+ maxFeePerGas?: undefined;
1377
+ maxPriorityFeePerGas?: undefined;
1378
+ accessList?: undefined;
1379
+ blobs?: undefined;
1380
+ type?: "legacy" | undefined;
1381
+ } & {
1382
+ feeCurrency?: `0x${string}` | undefined;
1383
+ gatewayFee?: bigint | undefined;
1384
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1385
+ }) | ({
1386
+ data?: `0x${string}` | undefined;
1387
+ from?: `0x${string}` | undefined;
1388
+ gas?: bigint | undefined;
1389
+ nonce?: number | undefined;
1390
+ to?: `0x${string}` | null | undefined;
1391
+ value?: bigint | undefined;
1392
+ gasPrice?: bigint | undefined;
1393
+ maxFeePerBlobGas?: bigint | undefined;
1394
+ maxFeePerGas?: bigint | undefined;
1395
+ maxPriorityFeePerGas?: bigint | undefined;
1396
+ accessList?: import("../../index.js").AccessList | undefined;
1397
+ blobs?: undefined;
1398
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1399
+ } & {
1400
+ data?: `0x${string}` | undefined;
1401
+ from: `0x${string}`;
1402
+ gas?: bigint | undefined;
1403
+ nonce?: number | undefined;
1404
+ to?: `0x${string}` | null | undefined;
1405
+ value?: bigint | undefined;
1406
+ gasPrice?: bigint | undefined;
1407
+ maxFeePerBlobGas?: undefined;
1408
+ maxFeePerGas?: undefined;
1409
+ maxPriorityFeePerGas?: undefined;
1410
+ accessList?: import("../../index.js").AccessList | undefined;
1411
+ blobs?: undefined;
1412
+ type?: "eip2930" | undefined;
1413
+ } & {
1414
+ feeCurrency?: `0x${string}` | undefined;
1415
+ gatewayFee?: bigint | undefined;
1416
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1417
+ }) | ({
1418
+ data?: `0x${string}` | undefined;
1419
+ from?: `0x${string}` | undefined;
1420
+ gas?: bigint | undefined;
1421
+ nonce?: number | undefined;
1422
+ to?: `0x${string}` | null | undefined;
1423
+ value?: bigint | undefined;
1424
+ gasPrice?: bigint | undefined;
1425
+ maxFeePerBlobGas?: bigint | undefined;
1426
+ maxFeePerGas?: bigint | undefined;
1427
+ maxPriorityFeePerGas?: bigint | undefined;
1428
+ accessList?: import("../../index.js").AccessList | undefined;
1429
+ blobs?: undefined;
1430
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1431
+ } & {
1432
+ data?: `0x${string}` | undefined;
1433
+ from: `0x${string}`;
1434
+ gas?: bigint | undefined;
1435
+ nonce?: number | undefined;
1436
+ to?: `0x${string}` | null | undefined;
1437
+ value?: bigint | undefined;
1438
+ gasPrice?: undefined;
1439
+ maxFeePerBlobGas?: undefined;
1440
+ maxFeePerGas?: bigint | undefined;
1441
+ maxPriorityFeePerGas?: bigint | undefined;
1442
+ accessList?: import("../../index.js").AccessList | undefined;
1443
+ blobs?: undefined;
1444
+ type?: "eip1559" | undefined;
1445
+ } & {
1446
+ feeCurrency?: `0x${string}` | undefined;
1447
+ gatewayFee?: bigint | undefined;
1448
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1449
+ }) | ({
1450
+ data?: `0x${string}` | undefined;
1451
+ from?: `0x${string}` | undefined;
1452
+ gas?: bigint | undefined;
1453
+ nonce?: number | undefined;
1454
+ to?: `0x${string}` | null | undefined;
1455
+ value?: bigint | undefined;
1456
+ gasPrice?: bigint | undefined;
1457
+ maxFeePerBlobGas?: bigint | undefined;
1458
+ maxFeePerGas?: bigint | undefined;
1459
+ maxPriorityFeePerGas?: bigint | undefined;
1460
+ accessList?: import("../../index.js").AccessList | undefined;
1461
+ blobs?: undefined;
1462
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1463
+ } & import("../../index.js").TransactionRequestBase & Partial<import("../../index.js").FeeValuesEIP1559> & {
1464
+ accessList?: import("../../index.js").AccessList | undefined;
1465
+ feeCurrency?: `0x${string}` | undefined;
1466
+ gatewayFee?: bigint | undefined;
1467
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1468
+ type?: "cip42" | undefined;
1469
+ }) | ({
1470
+ data?: `0x${string}` | undefined;
1471
+ from?: `0x${string}` | undefined;
1472
+ gas?: bigint | undefined;
1473
+ nonce?: number | undefined;
1474
+ to?: `0x${string}` | null | undefined;
1475
+ value?: bigint | undefined;
1476
+ gasPrice?: bigint | undefined;
1477
+ maxFeePerBlobGas?: bigint | undefined;
1478
+ maxFeePerGas?: bigint | undefined;
1479
+ maxPriorityFeePerGas?: bigint | undefined;
1480
+ accessList?: import("../../index.js").AccessList | undefined;
1481
+ blobs?: undefined;
1482
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1483
+ } & import("../../index.js").TransactionRequestBase & Partial<import("../../index.js").FeeValuesEIP1559> & {
1484
+ accessList?: import("../../index.js").AccessList | undefined;
1485
+ feeCurrency?: `0x${string}` | undefined;
1486
+ gatewayFee?: undefined;
1487
+ gatewayFeeRecipient?: undefined;
1488
+ type?: "cip64" | undefined;
1489
+ }) | ({
1490
+ data?: `0x${string}` | undefined;
1491
+ from?: `0x${string}` | undefined;
1492
+ gas?: bigint | undefined;
1493
+ nonce?: number | undefined;
1494
+ to?: `0x${string}` | null | undefined;
1495
+ value?: bigint | undefined;
1496
+ gasPrice?: bigint | undefined;
1497
+ maxFeePerBlobGas?: bigint | undefined;
1498
+ maxFeePerGas?: bigint | undefined;
1499
+ maxPriorityFeePerGas?: bigint | undefined;
1500
+ accessList?: import("../../index.js").AccessList | undefined;
1501
+ blobs?: undefined;
1502
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1503
+ } & {
1504
+ data?: `0x${string}` | undefined;
1505
+ from: `0x${string}`;
1506
+ gas?: bigint | undefined;
1507
+ nonce?: number | undefined;
1508
+ to?: `0x${string}` | null | undefined;
1509
+ value?: bigint | undefined;
1510
+ gasPrice?: bigint | undefined;
1511
+ maxFeePerBlobGas?: undefined;
1512
+ maxFeePerGas?: undefined;
1513
+ maxPriorityFeePerGas?: undefined;
1514
+ accessList?: undefined;
1515
+ blobs?: undefined;
1516
+ type?: "legacy" | undefined;
1517
+ } & {
1518
+ feeCurrency?: `0x${string}` | undefined;
1519
+ gatewayFee?: bigint | undefined;
1520
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1521
+ }) | ({
1522
+ data?: `0x${string}` | undefined;
1523
+ from?: `0x${string}` | undefined;
1524
+ gas?: bigint | undefined;
1525
+ nonce?: number | undefined;
1526
+ to?: `0x${string}` | null | undefined;
1527
+ value?: bigint | undefined;
1528
+ gasPrice?: bigint | undefined;
1529
+ maxFeePerBlobGas?: bigint | undefined;
1530
+ maxFeePerGas?: bigint | undefined;
1531
+ maxPriorityFeePerGas?: bigint | undefined;
1532
+ accessList?: import("../../index.js").AccessList | undefined;
1533
+ blobs?: undefined;
1534
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1535
+ } & {
1536
+ data?: `0x${string}` | undefined;
1537
+ from: `0x${string}`;
1538
+ gas?: bigint | undefined;
1539
+ nonce?: number | undefined;
1540
+ to?: `0x${string}` | null | undefined;
1541
+ value?: bigint | undefined;
1542
+ gasPrice?: bigint | undefined;
1543
+ maxFeePerBlobGas?: undefined;
1544
+ maxFeePerGas?: undefined;
1545
+ maxPriorityFeePerGas?: undefined;
1546
+ accessList?: import("../../index.js").AccessList | undefined;
1547
+ blobs?: undefined;
1548
+ type?: "eip2930" | undefined;
1549
+ } & {
1550
+ feeCurrency?: `0x${string}` | undefined;
1551
+ gatewayFee?: bigint | undefined;
1552
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1553
+ }) | ({
1554
+ data?: `0x${string}` | undefined;
1555
+ from?: `0x${string}` | undefined;
1556
+ gas?: bigint | undefined;
1557
+ nonce?: number | undefined;
1558
+ to?: `0x${string}` | null | undefined;
1559
+ value?: bigint | undefined;
1560
+ gasPrice?: bigint | undefined;
1561
+ maxFeePerBlobGas?: bigint | undefined;
1562
+ maxFeePerGas?: bigint | undefined;
1563
+ maxPriorityFeePerGas?: bigint | undefined;
1564
+ accessList?: import("../../index.js").AccessList | undefined;
1565
+ blobs?: undefined;
1566
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1567
+ } & {
1568
+ data?: `0x${string}` | undefined;
1569
+ from: `0x${string}`;
1570
+ gas?: bigint | undefined;
1571
+ nonce?: number | undefined;
1572
+ to?: `0x${string}` | null | undefined;
1573
+ value?: bigint | undefined;
856
1574
  gasPrice?: undefined;
857
1575
  maxFeePerBlobGas?: undefined;
858
- maxFeePerGas: bigint;
859
- maxPriorityFeePerGas: bigint;
860
- accessList: import("../../index.js").AccessList;
861
- blobVersionedHashes?: undefined;
862
- chainId: number;
863
- type: "cip64";
864
- feeCurrency: `0x${string}` | null;
1576
+ maxFeePerGas?: bigint | undefined;
1577
+ maxPriorityFeePerGas?: bigint | undefined;
1578
+ accessList?: import("../../index.js").AccessList | undefined;
1579
+ blobs?: undefined;
1580
+ type?: "eip1559" | undefined;
1581
+ } & {
1582
+ feeCurrency?: `0x${string}` | undefined;
1583
+ gatewayFee?: bigint | undefined;
1584
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1585
+ }) | ({
1586
+ data?: `0x${string}` | undefined;
1587
+ from?: `0x${string}` | undefined;
1588
+ gas?: bigint | undefined;
1589
+ nonce?: number | undefined;
1590
+ to?: `0x${string}` | null | undefined;
1591
+ value?: bigint | undefined;
1592
+ gasPrice?: bigint | undefined;
1593
+ maxFeePerBlobGas?: bigint | undefined;
1594
+ maxFeePerGas?: bigint | undefined;
1595
+ maxPriorityFeePerGas?: bigint | undefined;
1596
+ accessList?: import("../../index.js").AccessList | undefined;
1597
+ blobs?: undefined;
1598
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1599
+ } & import("../../index.js").TransactionRequestBase & Partial<import("../../index.js").FeeValuesEIP1559> & {
1600
+ accessList?: import("../../index.js").AccessList | undefined;
1601
+ feeCurrency?: `0x${string}` | undefined;
1602
+ gatewayFee?: bigint | undefined;
1603
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1604
+ type?: "cip42" | undefined;
1605
+ }) | ({
1606
+ data?: `0x${string}` | undefined;
1607
+ from?: `0x${string}` | undefined;
1608
+ gas?: bigint | undefined;
1609
+ nonce?: number | undefined;
1610
+ to?: `0x${string}` | null | undefined;
1611
+ value?: bigint | undefined;
1612
+ gasPrice?: bigint | undefined;
1613
+ maxFeePerBlobGas?: bigint | undefined;
1614
+ maxFeePerGas?: bigint | undefined;
1615
+ maxPriorityFeePerGas?: bigint | undefined;
1616
+ accessList?: import("../../index.js").AccessList | undefined;
1617
+ blobs?: undefined;
1618
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1619
+ } & import("../../index.js").TransactionRequestBase & Partial<import("../../index.js").FeeValuesEIP1559> & {
1620
+ accessList?: import("../../index.js").AccessList | undefined;
1621
+ feeCurrency?: `0x${string}` | undefined;
865
1622
  gatewayFee?: undefined;
866
1623
  gatewayFeeRecipient?: undefined;
867
- } | {
868
- blockHash: `0x${string}` | null;
869
- blockNumber: bigint | null;
1624
+ type?: "cip64" | undefined;
1625
+ }) | ({
1626
+ data?: `0x${string}` | undefined;
1627
+ from?: `0x${string}` | undefined;
1628
+ gas?: bigint | undefined;
1629
+ nonce?: number | undefined;
1630
+ value?: bigint | undefined;
1631
+ to?: `0x${string}` | null | undefined;
1632
+ gasPrice?: bigint | undefined;
1633
+ maxFeePerGas?: bigint | undefined;
1634
+ maxPriorityFeePerGas?: bigint | undefined;
1635
+ maxFeePerBlobGas?: bigint | undefined;
1636
+ accessList?: import("../../index.js").AccessList | undefined;
1637
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1638
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1639
+ } & {
1640
+ data?: `0x${string}` | undefined;
870
1641
  from: `0x${string}`;
871
- gas: bigint;
872
- hash: `0x${string}`;
873
- input: `0x${string}`;
874
- nonce: number;
875
- r: `0x${string}`;
876
- s: `0x${string}`;
877
- to: `0x${string}` | null;
878
- transactionIndex: number | null;
879
- typeHex: `0x${string}` | null;
880
- v: bigint;
881
- value: bigint;
882
- yParity: number;
883
- gasPrice?: undefined;
884
- maxFeePerBlobGas: bigint;
885
- maxFeePerGas: bigint;
886
- maxPriorityFeePerGas: bigint;
887
- accessList: import("../../index.js").AccessList;
888
- blobVersionedHashes: `0x${string}`[];
889
- chainId: number;
890
- type: "eip4844";
891
- feeCurrency: `0x${string}` | null;
892
- gatewayFee: bigint | null;
893
- gatewayFeeRecipient: `0x${string}` | null;
894
- } | {
895
- blockHash: `0x${string}` | null;
896
- blockNumber: bigint | null;
1642
+ gas?: bigint | undefined;
1643
+ nonce?: number | undefined;
1644
+ to?: `0x${string}` | null | undefined;
1645
+ value?: bigint | undefined;
1646
+ gasPrice?: bigint | undefined;
1647
+ maxFeePerBlobGas?: undefined;
1648
+ maxFeePerGas?: undefined;
1649
+ maxPriorityFeePerGas?: undefined;
1650
+ accessList?: undefined;
1651
+ blobs?: undefined;
1652
+ type?: "legacy" | undefined;
1653
+ } & {
1654
+ feeCurrency?: `0x${string}` | undefined;
1655
+ gatewayFee?: bigint | undefined;
1656
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1657
+ }) | ({
1658
+ data?: `0x${string}` | undefined;
1659
+ from?: `0x${string}` | undefined;
1660
+ gas?: bigint | undefined;
1661
+ nonce?: number | undefined;
1662
+ value?: bigint | undefined;
1663
+ to?: `0x${string}` | null | undefined;
1664
+ gasPrice?: bigint | undefined;
1665
+ maxFeePerGas?: bigint | undefined;
1666
+ maxPriorityFeePerGas?: bigint | undefined;
1667
+ maxFeePerBlobGas?: bigint | undefined;
1668
+ accessList?: import("../../index.js").AccessList | undefined;
1669
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1670
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1671
+ } & {
1672
+ data?: `0x${string}` | undefined;
897
1673
  from: `0x${string}`;
898
- gas: bigint;
899
- hash: `0x${string}`;
900
- input: `0x${string}`;
901
- nonce: number;
902
- r: `0x${string}`;
903
- s: `0x${string}`;
904
- to: `0x${string}` | null;
905
- transactionIndex: number | null;
906
- typeHex: `0x${string}` | null;
907
- v: bigint;
908
- value: bigint;
909
- yParity: number;
1674
+ gas?: bigint | undefined;
1675
+ nonce?: number | undefined;
1676
+ to?: `0x${string}` | null | undefined;
1677
+ value?: bigint | undefined;
1678
+ gasPrice?: bigint | undefined;
1679
+ maxFeePerBlobGas?: undefined;
1680
+ maxFeePerGas?: undefined;
1681
+ maxPriorityFeePerGas?: undefined;
1682
+ accessList?: import("../../index.js").AccessList | undefined;
1683
+ blobs?: undefined;
1684
+ type?: "eip2930" | undefined;
1685
+ } & {
1686
+ feeCurrency?: `0x${string}` | undefined;
1687
+ gatewayFee?: bigint | undefined;
1688
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1689
+ }) | ({
1690
+ data?: `0x${string}` | undefined;
1691
+ from?: `0x${string}` | undefined;
1692
+ gas?: bigint | undefined;
1693
+ nonce?: number | undefined;
1694
+ value?: bigint | undefined;
1695
+ to?: `0x${string}` | null | undefined;
1696
+ gasPrice?: bigint | undefined;
1697
+ maxFeePerGas?: bigint | undefined;
1698
+ maxPriorityFeePerGas?: bigint | undefined;
1699
+ maxFeePerBlobGas?: bigint | undefined;
1700
+ accessList?: import("../../index.js").AccessList | undefined;
1701
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1702
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1703
+ } & {
1704
+ data?: `0x${string}` | undefined;
1705
+ from: `0x${string}`;
1706
+ gas?: bigint | undefined;
1707
+ nonce?: number | undefined;
1708
+ to?: `0x${string}` | null | undefined;
1709
+ value?: bigint | undefined;
910
1710
  gasPrice?: undefined;
911
- maxFeePerBlobGas: undefined;
912
- maxFeePerGas: bigint;
913
- maxPriorityFeePerGas: bigint;
914
- accessList: import("../../index.js").AccessList;
915
- blobVersionedHashes: `0x${string}`[];
916
- chainId: number;
917
- type: "cip42";
918
- feeCurrency: `0x${string}` | null;
919
- gatewayFee: bigint | null;
920
- gatewayFeeRecipient: `0x${string}` | null;
921
- } | {
922
- blockHash: `0x${string}` | null;
923
- blockNumber: bigint | null;
1711
+ maxFeePerBlobGas?: undefined;
1712
+ maxFeePerGas?: bigint | undefined;
1713
+ maxPriorityFeePerGas?: bigint | undefined;
1714
+ accessList?: import("../../index.js").AccessList | undefined;
1715
+ blobs?: undefined;
1716
+ type?: "eip1559" | undefined;
1717
+ } & {
1718
+ feeCurrency?: `0x${string}` | undefined;
1719
+ gatewayFee?: bigint | undefined;
1720
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1721
+ }) | ({
1722
+ data?: `0x${string}` | undefined;
1723
+ from?: `0x${string}` | undefined;
1724
+ gas?: bigint | undefined;
1725
+ nonce?: number | undefined;
1726
+ value?: bigint | undefined;
1727
+ to?: `0x${string}` | null | undefined;
1728
+ gasPrice?: bigint | undefined;
1729
+ maxFeePerGas?: bigint | undefined;
1730
+ maxPriorityFeePerGas?: bigint | undefined;
1731
+ maxFeePerBlobGas?: bigint | undefined;
1732
+ accessList?: import("../../index.js").AccessList | undefined;
1733
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1734
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1735
+ } & {
1736
+ data?: `0x${string}` | undefined;
924
1737
  from: `0x${string}`;
925
- gas: bigint;
926
- hash: `0x${string}`;
927
- input: `0x${string}`;
928
- nonce: number;
929
- r: `0x${string}`;
930
- s: `0x${string}`;
1738
+ gas?: bigint | undefined;
1739
+ nonce?: number | undefined;
1740
+ value?: bigint | undefined;
931
1741
  to: `0x${string}` | null;
932
- transactionIndex: number | null;
933
- typeHex: `0x${string}` | null;
934
- v: bigint;
935
- value: bigint;
936
- yParity: number;
937
1742
  gasPrice?: undefined;
938
- maxFeePerBlobGas: undefined;
939
- maxFeePerGas: bigint;
940
- maxPriorityFeePerGas: bigint;
941
- accessList: import("../../index.js").AccessList;
942
- blobVersionedHashes: `0x${string}`[];
943
- chainId: number;
944
- type: "cip64";
945
- feeCurrency: `0x${string}` | null;
1743
+ maxFeePerGas?: bigint | undefined;
1744
+ maxPriorityFeePerGas?: bigint | undefined;
1745
+ maxFeePerBlobGas: bigint;
1746
+ accessList?: import("../../index.js").AccessList | undefined;
1747
+ blobs: readonly `0x${string}`[] | readonly Uint8Array[];
1748
+ type?: "eip4844" | undefined;
1749
+ } & {
1750
+ feeCurrency?: `0x${string}` | undefined;
1751
+ gatewayFee?: bigint | undefined;
1752
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1753
+ }) | ({
1754
+ data?: `0x${string}` | undefined;
1755
+ from?: `0x${string}` | undefined;
1756
+ gas?: bigint | undefined;
1757
+ nonce?: number | undefined;
1758
+ value?: bigint | undefined;
1759
+ to?: `0x${string}` | null | undefined;
1760
+ gasPrice?: bigint | undefined;
1761
+ maxFeePerGas?: bigint | undefined;
1762
+ maxPriorityFeePerGas?: bigint | undefined;
1763
+ maxFeePerBlobGas?: bigint | undefined;
1764
+ accessList?: import("../../index.js").AccessList | undefined;
1765
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1766
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1767
+ } & import("../../index.js").TransactionRequestBase & Partial<import("../../index.js").FeeValuesEIP1559> & {
1768
+ accessList?: import("../../index.js").AccessList | undefined;
1769
+ feeCurrency?: `0x${string}` | undefined;
1770
+ gatewayFee?: bigint | undefined;
1771
+ gatewayFeeRecipient?: `0x${string}` | undefined;
1772
+ type?: "cip42" | undefined;
1773
+ }) | ({
1774
+ data?: `0x${string}` | undefined;
1775
+ from?: `0x${string}` | undefined;
1776
+ gas?: bigint | undefined;
1777
+ nonce?: number | undefined;
1778
+ value?: bigint | undefined;
1779
+ to?: `0x${string}` | null | undefined;
1780
+ gasPrice?: bigint | undefined;
1781
+ maxFeePerGas?: bigint | undefined;
1782
+ maxPriorityFeePerGas?: bigint | undefined;
1783
+ maxFeePerBlobGas?: bigint | undefined;
1784
+ accessList?: import("../../index.js").AccessList | undefined;
1785
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1786
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1787
+ } & import("../../index.js").TransactionRequestBase & Partial<import("../../index.js").FeeValuesEIP1559> & {
1788
+ accessList?: import("../../index.js").AccessList | undefined;
1789
+ feeCurrency?: `0x${string}` | undefined;
946
1790
  gatewayFee?: undefined;
947
1791
  gatewayFeeRecipient?: undefined;
948
- }) & {};
949
- type: "transaction";
950
- };
951
- readonly transactionRequest: {
952
- exclude: [] | undefined;
953
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("./types.js").CeloTransactionRequest>) => ({
1792
+ type?: "cip64" | undefined;
1793
+ })) => ({
954
1794
  data?: `0x${string}` | undefined;
955
1795
  from: `0x${string}`;
956
1796
  gas?: `0x${string}` | undefined;
@@ -958,11 +1798,12 @@ export declare const chainConfig: {
958
1798
  to?: `0x${string}` | null | undefined;
959
1799
  value?: `0x${string}` | undefined;
960
1800
  gasPrice?: `0x${string}` | undefined;
1801
+ maxFeePerBlobGas?: undefined;
961
1802
  maxFeePerGas?: undefined;
962
1803
  maxPriorityFeePerGas?: undefined;
963
1804
  accessList?: undefined;
1805
+ blobs?: undefined;
964
1806
  type?: "0x0" | undefined;
965
- maxFeePerBlobGas?: undefined;
966
1807
  feeCurrency?: `0x${string}` | undefined;
967
1808
  gatewayFee?: `0x${string}` | undefined;
968
1809
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -974,11 +1815,12 @@ export declare const chainConfig: {
974
1815
  to?: `0x${string}` | null | undefined;
975
1816
  value?: `0x${string}` | undefined;
976
1817
  gasPrice?: `0x${string}` | undefined;
1818
+ maxFeePerBlobGas?: undefined;
977
1819
  maxFeePerGas?: undefined;
978
1820
  maxPriorityFeePerGas?: undefined;
979
1821
  accessList?: import("../../index.js").AccessList | undefined;
1822
+ blobs?: undefined;
980
1823
  type?: "0x1" | undefined;
981
- maxFeePerBlobGas?: undefined;
982
1824
  feeCurrency?: `0x${string}` | undefined;
983
1825
  gatewayFee?: `0x${string}` | undefined;
984
1826
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -990,11 +1832,12 @@ export declare const chainConfig: {
990
1832
  to?: `0x${string}` | null | undefined;
991
1833
  value?: `0x${string}` | undefined;
992
1834
  gasPrice?: undefined;
1835
+ maxFeePerBlobGas?: undefined;
993
1836
  maxFeePerGas?: `0x${string}` | undefined;
994
1837
  maxPriorityFeePerGas?: `0x${string}` | undefined;
995
1838
  accessList?: import("../../index.js").AccessList | undefined;
1839
+ blobs?: undefined;
996
1840
  type?: "0x2" | undefined;
997
- maxFeePerBlobGas?: undefined;
998
1841
  feeCurrency?: `0x${string}` | undefined;
999
1842
  gatewayFee?: `0x${string}` | undefined;
1000
1843
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -1006,11 +1849,12 @@ export declare const chainConfig: {
1006
1849
  to?: `0x${string}` | null | undefined;
1007
1850
  value?: `0x${string}` | undefined;
1008
1851
  gasPrice?: undefined;
1852
+ maxFeePerBlobGas?: undefined;
1009
1853
  maxFeePerGas?: `0x${string}` | undefined;
1010
1854
  maxPriorityFeePerGas?: `0x${string}` | undefined;
1011
1855
  accessList?: import("../../index.js").AccessList | undefined;
1856
+ blobs?: undefined;
1012
1857
  type?: "0x7c" | undefined;
1013
- maxFeePerBlobGas?: undefined;
1014
1858
  feeCurrency?: `0x${string}` | undefined;
1015
1859
  gatewayFee?: `0x${string}` | undefined;
1016
1860
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -1022,11 +1866,12 @@ export declare const chainConfig: {
1022
1866
  to?: `0x${string}` | null | undefined;
1023
1867
  value?: `0x${string}` | undefined;
1024
1868
  gasPrice?: undefined;
1869
+ maxFeePerBlobGas?: undefined;
1025
1870
  maxFeePerGas?: `0x${string}` | undefined;
1026
1871
  maxPriorityFeePerGas?: `0x${string}` | undefined;
1027
1872
  accessList?: import("../../index.js").AccessList | undefined;
1873
+ blobs?: undefined;
1028
1874
  type?: "0x7b" | undefined;
1029
- maxFeePerBlobGas?: undefined;
1030
1875
  feeCurrency?: `0x${string}` | undefined;
1031
1876
  gatewayFee?: undefined;
1032
1877
  gatewayFeeRecipient?: undefined;
@@ -1038,11 +1883,12 @@ export declare const chainConfig: {
1038
1883
  to?: `0x${string}` | null | undefined;
1039
1884
  value?: `0x${string}` | undefined;
1040
1885
  gasPrice?: `0x${string}` | undefined;
1886
+ maxFeePerBlobGas?: undefined;
1041
1887
  maxFeePerGas?: undefined;
1042
1888
  maxPriorityFeePerGas?: undefined;
1043
1889
  accessList?: undefined;
1890
+ blobs?: undefined;
1044
1891
  type?: "0x0" | undefined;
1045
- maxFeePerBlobGas?: undefined;
1046
1892
  feeCurrency?: `0x${string}` | undefined;
1047
1893
  gatewayFee?: `0x${string}` | undefined;
1048
1894
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -1054,11 +1900,12 @@ export declare const chainConfig: {
1054
1900
  to?: `0x${string}` | null | undefined;
1055
1901
  value?: `0x${string}` | undefined;
1056
1902
  gasPrice?: `0x${string}` | undefined;
1903
+ maxFeePerBlobGas?: undefined;
1057
1904
  maxFeePerGas?: undefined;
1058
1905
  maxPriorityFeePerGas?: undefined;
1059
1906
  accessList?: import("../../index.js").AccessList | undefined;
1907
+ blobs?: undefined;
1060
1908
  type?: "0x1" | undefined;
1061
- maxFeePerBlobGas?: undefined;
1062
1909
  feeCurrency?: `0x${string}` | undefined;
1063
1910
  gatewayFee?: `0x${string}` | undefined;
1064
1911
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -1070,11 +1917,12 @@ export declare const chainConfig: {
1070
1917
  to?: `0x${string}` | null | undefined;
1071
1918
  value?: `0x${string}` | undefined;
1072
1919
  gasPrice?: undefined;
1920
+ maxFeePerBlobGas?: undefined;
1073
1921
  maxFeePerGas?: `0x${string}` | undefined;
1074
1922
  maxPriorityFeePerGas?: `0x${string}` | undefined;
1075
1923
  accessList?: import("../../index.js").AccessList | undefined;
1924
+ blobs?: undefined;
1076
1925
  type?: "0x2" | undefined;
1077
- maxFeePerBlobGas?: undefined;
1078
1926
  feeCurrency?: `0x${string}` | undefined;
1079
1927
  gatewayFee?: `0x${string}` | undefined;
1080
1928
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -1086,11 +1934,12 @@ export declare const chainConfig: {
1086
1934
  to?: `0x${string}` | null | undefined;
1087
1935
  value?: `0x${string}` | undefined;
1088
1936
  gasPrice?: undefined;
1937
+ maxFeePerBlobGas?: undefined;
1089
1938
  maxFeePerGas?: `0x${string}` | undefined;
1090
1939
  maxPriorityFeePerGas?: `0x${string}` | undefined;
1091
1940
  accessList?: import("../../index.js").AccessList | undefined;
1941
+ blobs?: undefined;
1092
1942
  type?: "0x7c" | undefined;
1093
- maxFeePerBlobGas?: undefined;
1094
1943
  feeCurrency?: `0x${string}` | undefined;
1095
1944
  gatewayFee?: `0x${string}` | undefined;
1096
1945
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -1102,11 +1951,12 @@ export declare const chainConfig: {
1102
1951
  to?: `0x${string}` | null | undefined;
1103
1952
  value?: `0x${string}` | undefined;
1104
1953
  gasPrice?: undefined;
1954
+ maxFeePerBlobGas?: undefined;
1105
1955
  maxFeePerGas?: `0x${string}` | undefined;
1106
1956
  maxPriorityFeePerGas?: `0x${string}` | undefined;
1107
1957
  accessList?: import("../../index.js").AccessList | undefined;
1958
+ blobs?: undefined;
1108
1959
  type?: "0x7b" | undefined;
1109
- maxFeePerBlobGas?: undefined;
1110
1960
  feeCurrency?: `0x${string}` | undefined;
1111
1961
  gatewayFee?: undefined;
1112
1962
  gatewayFeeRecipient?: undefined;
@@ -1118,11 +1968,12 @@ export declare const chainConfig: {
1118
1968
  to?: `0x${string}` | null | undefined;
1119
1969
  value?: `0x${string}` | undefined;
1120
1970
  gasPrice?: `0x${string}` | undefined;
1971
+ maxFeePerBlobGas?: undefined;
1121
1972
  maxFeePerGas?: undefined;
1122
1973
  maxPriorityFeePerGas?: undefined;
1123
1974
  accessList?: undefined;
1975
+ blobs?: undefined;
1124
1976
  type?: "0x0" | undefined;
1125
- maxFeePerBlobGas?: undefined;
1126
1977
  feeCurrency?: `0x${string}` | undefined;
1127
1978
  gatewayFee?: `0x${string}` | undefined;
1128
1979
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -1134,11 +1985,12 @@ export declare const chainConfig: {
1134
1985
  to?: `0x${string}` | null | undefined;
1135
1986
  value?: `0x${string}` | undefined;
1136
1987
  gasPrice?: `0x${string}` | undefined;
1988
+ maxFeePerBlobGas?: undefined;
1137
1989
  maxFeePerGas?: undefined;
1138
1990
  maxPriorityFeePerGas?: undefined;
1139
1991
  accessList?: import("../../index.js").AccessList | undefined;
1992
+ blobs?: undefined;
1140
1993
  type?: "0x1" | undefined;
1141
- maxFeePerBlobGas?: undefined;
1142
1994
  feeCurrency?: `0x${string}` | undefined;
1143
1995
  gatewayFee?: `0x${string}` | undefined;
1144
1996
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -1150,11 +2002,12 @@ export declare const chainConfig: {
1150
2002
  to?: `0x${string}` | null | undefined;
1151
2003
  value?: `0x${string}` | undefined;
1152
2004
  gasPrice?: undefined;
2005
+ maxFeePerBlobGas?: undefined;
1153
2006
  maxFeePerGas?: `0x${string}` | undefined;
1154
2007
  maxPriorityFeePerGas?: `0x${string}` | undefined;
1155
2008
  accessList?: import("../../index.js").AccessList | undefined;
2009
+ blobs?: undefined;
1156
2010
  type?: "0x2" | undefined;
1157
- maxFeePerBlobGas?: undefined;
1158
2011
  feeCurrency?: `0x${string}` | undefined;
1159
2012
  gatewayFee?: `0x${string}` | undefined;
1160
2013
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -1166,11 +2019,12 @@ export declare const chainConfig: {
1166
2019
  to?: `0x${string}` | null | undefined;
1167
2020
  value?: `0x${string}` | undefined;
1168
2021
  gasPrice?: undefined;
2022
+ maxFeePerBlobGas?: undefined;
1169
2023
  maxFeePerGas?: `0x${string}` | undefined;
1170
2024
  maxPriorityFeePerGas?: `0x${string}` | undefined;
1171
2025
  accessList?: import("../../index.js").AccessList | undefined;
2026
+ blobs?: undefined;
1172
2027
  type?: "0x7c" | undefined;
1173
- maxFeePerBlobGas?: undefined;
1174
2028
  feeCurrency?: `0x${string}` | undefined;
1175
2029
  gatewayFee?: `0x${string}` | undefined;
1176
2030
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -1182,11 +2036,63 @@ export declare const chainConfig: {
1182
2036
  to?: `0x${string}` | null | undefined;
1183
2037
  value?: `0x${string}` | undefined;
1184
2038
  gasPrice?: undefined;
2039
+ maxFeePerBlobGas?: undefined;
1185
2040
  maxFeePerGas?: `0x${string}` | undefined;
1186
2041
  maxPriorityFeePerGas?: `0x${string}` | undefined;
1187
2042
  accessList?: import("../../index.js").AccessList | undefined;
2043
+ blobs?: undefined;
2044
+ type?: "0x7b" | undefined;
2045
+ feeCurrency?: `0x${string}` | undefined;
2046
+ gatewayFee?: undefined;
2047
+ gatewayFeeRecipient?: undefined;
2048
+ } | {
2049
+ data?: `0x${string}` | undefined;
2050
+ from: `0x${string}`;
2051
+ gas?: `0x${string}` | undefined;
2052
+ nonce?: `0x${string}` | undefined;
2053
+ value?: `0x${string}` | undefined;
2054
+ to: `0x${string}` | null;
2055
+ gasPrice?: undefined;
2056
+ maxFeePerGas?: `0x${string}` | undefined;
2057
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2058
+ maxFeePerBlobGas: `0x${string}`;
2059
+ accessList?: import("../../index.js").AccessList | undefined;
2060
+ blobs: readonly `0x${string}`[] | readonly Uint8Array[];
2061
+ type?: "0x3" | undefined;
2062
+ feeCurrency?: `0x${string}` | undefined;
2063
+ gatewayFee?: `0x${string}` | undefined;
2064
+ gatewayFeeRecipient?: `0x${string}` | undefined;
2065
+ } | {
2066
+ data?: `0x${string}` | undefined;
2067
+ from: `0x${string}`;
2068
+ gas?: `0x${string}` | undefined;
2069
+ nonce?: `0x${string}` | undefined;
2070
+ value?: `0x${string}` | undefined;
2071
+ to: `0x${string}` | null | undefined;
2072
+ gasPrice?: undefined;
2073
+ maxFeePerGas?: `0x${string}` | undefined;
2074
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2075
+ maxFeePerBlobGas: undefined;
2076
+ accessList?: import("../../index.js").AccessList | undefined;
2077
+ blobs: readonly `0x${string}`[] | readonly Uint8Array[];
2078
+ type?: "0x7c" | undefined;
2079
+ feeCurrency?: `0x${string}` | undefined;
2080
+ gatewayFee?: `0x${string}` | undefined;
2081
+ gatewayFeeRecipient?: `0x${string}` | undefined;
2082
+ } | {
2083
+ data?: `0x${string}` | undefined;
2084
+ from: `0x${string}`;
2085
+ gas?: `0x${string}` | undefined;
2086
+ nonce?: `0x${string}` | undefined;
2087
+ value?: `0x${string}` | undefined;
2088
+ to: `0x${string}` | null | undefined;
2089
+ gasPrice?: undefined;
2090
+ maxFeePerGas?: `0x${string}` | undefined;
2091
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2092
+ maxFeePerBlobGas: undefined;
2093
+ accessList?: import("../../index.js").AccessList | undefined;
2094
+ blobs: readonly `0x${string}`[] | readonly Uint8Array[];
1188
2095
  type?: "0x7b" | undefined;
1189
- maxFeePerBlobGas?: undefined;
1190
2096
  feeCurrency?: `0x${string}` | undefined;
1191
2097
  gatewayFee?: undefined;
1192
2098
  gatewayFeeRecipient?: undefined;
@@ -1195,7 +2101,7 @@ export declare const chainConfig: {
1195
2101
  };
1196
2102
  };
1197
2103
  readonly serializers: {
1198
- readonly transaction: import("../../index.js").SerializeTransactionFn<import("../../index.js").TransactionSerializable | import("./types.js").CeloTransactionSerializable>;
2104
+ readonly transaction: typeof import("./serializers.js").serializeTransaction;
1199
2105
  };
1200
2106
  };
1201
2107
  //# sourceMappingURL=chainConfig.d.ts.map