viem 2.10.11 → 2.11.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 (276) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/_cjs/celo/formatters.js +1 -10
  3. package/_cjs/celo/formatters.js.map +1 -1
  4. package/_cjs/celo/serializers.js +0 -25
  5. package/_cjs/celo/serializers.js.map +1 -1
  6. package/_cjs/celo/utils.js +2 -15
  7. package/_cjs/celo/utils.js.map +1 -1
  8. package/_cjs/errors/version.js +1 -1
  9. package/_cjs/errors/version.js.map +1 -1
  10. package/_cjs/zksync/actions/estimateFee.js +26 -0
  11. package/_cjs/zksync/actions/estimateFee.js.map +1 -0
  12. package/_cjs/zksync/actions/estimateGasL1ToL2.js +20 -0
  13. package/_cjs/zksync/actions/estimateGasL1ToL2.js.map +1 -0
  14. package/_cjs/zksync/actions/getAllBalances.js +19 -0
  15. package/_cjs/zksync/actions/getAllBalances.js.map +1 -0
  16. package/_cjs/zksync/actions/getBaseTokenL1Address.js +9 -0
  17. package/_cjs/zksync/actions/getBaseTokenL1Address.js.map +1 -0
  18. package/_cjs/zksync/actions/getBlockDetails.js +12 -0
  19. package/_cjs/zksync/actions/getBlockDetails.js.map +1 -0
  20. package/_cjs/zksync/actions/getBridgehubContractAddress.js +9 -0
  21. package/_cjs/zksync/actions/getBridgehubContractAddress.js.map +1 -0
  22. package/_cjs/zksync/actions/getDefaultBridgeAddresses.js +13 -0
  23. package/_cjs/zksync/actions/getDefaultBridgeAddresses.js.map +1 -0
  24. package/_cjs/zksync/actions/getL1Allowance.js +19 -0
  25. package/_cjs/zksync/actions/getL1Allowance.js.map +1 -0
  26. package/_cjs/zksync/actions/getL1Balance.js +23 -0
  27. package/_cjs/zksync/actions/getL1Balance.js.map +1 -0
  28. package/_cjs/zksync/actions/getL1BatchBlockRange.js +13 -0
  29. package/_cjs/zksync/actions/getL1BatchBlockRange.js.map +1 -0
  30. package/_cjs/zksync/actions/getL1BatchDetails.js +12 -0
  31. package/_cjs/zksync/actions/getL1BatchDetails.js.map +1 -0
  32. package/_cjs/zksync/actions/getL1BatchNumber.js +9 -0
  33. package/_cjs/zksync/actions/getL1BatchNumber.js.map +1 -0
  34. package/_cjs/zksync/actions/getL1ChainId.js +9 -0
  35. package/_cjs/zksync/actions/getL1ChainId.js.map +1 -0
  36. package/_cjs/zksync/actions/getL1TokenBalance.js +24 -0
  37. package/_cjs/zksync/actions/getL1TokenBalance.js.map +1 -0
  38. package/_cjs/zksync/actions/getLogProof.js +12 -0
  39. package/_cjs/zksync/actions/getLogProof.js.map +1 -0
  40. package/_cjs/zksync/actions/getMainContractAddress.js +9 -0
  41. package/_cjs/zksync/actions/getMainContractAddress.js.map +1 -0
  42. package/_cjs/zksync/actions/getRawBlockTransactions.js +13 -0
  43. package/_cjs/zksync/actions/getRawBlockTransactions.js.map +1 -0
  44. package/_cjs/zksync/actions/getTestnetPaymasterAddress.js +9 -0
  45. package/_cjs/zksync/actions/getTestnetPaymasterAddress.js.map +1 -0
  46. package/_cjs/zksync/actions/getTransactionDetails.js +12 -0
  47. package/_cjs/zksync/actions/getTransactionDetails.js.map +1 -0
  48. package/_cjs/zksync/constants/address.js +4 -1
  49. package/_cjs/zksync/constants/address.js.map +1 -1
  50. package/_cjs/zksync/decorators/publicL1.js +15 -0
  51. package/_cjs/zksync/decorators/publicL1.js.map +1 -0
  52. package/_cjs/zksync/decorators/publicL2.js +43 -0
  53. package/_cjs/zksync/decorators/publicL2.js.map +1 -0
  54. package/_cjs/zksync/errors/token-is-eth.js +17 -0
  55. package/_cjs/zksync/errors/token-is-eth.js.map +1 -0
  56. package/_cjs/zksync/index.js +41 -3
  57. package/_cjs/zksync/index.js.map +1 -1
  58. package/_cjs/zksync/types/eip1193.js +3 -0
  59. package/_cjs/zksync/types/eip1193.js.map +1 -0
  60. package/_cjs/zksync/types/proof.js +3 -0
  61. package/_cjs/zksync/types/proof.js.map +1 -0
  62. package/_cjs/zksync/utils/camelCaseKeys.js +17 -0
  63. package/_cjs/zksync/utils/camelCaseKeys.js.map +1 -0
  64. package/_cjs/zksync/utils/isEth.js +17 -0
  65. package/_cjs/zksync/utils/isEth.js.map +1 -0
  66. package/_cjs/zksync/utils/paymaster/getApprovalBasedPaymasterInput.js +4 -3
  67. package/_cjs/zksync/utils/paymaster/getApprovalBasedPaymasterInput.js.map +1 -1
  68. package/_cjs/zksync/utils/paymaster/getGeneralPaymasterInput.js +4 -3
  69. package/_cjs/zksync/utils/paymaster/getGeneralPaymasterInput.js.map +1 -1
  70. package/_esm/celo/formatters.js +2 -11
  71. package/_esm/celo/formatters.js.map +1 -1
  72. package/_esm/celo/serializers.js +1 -29
  73. package/_esm/celo/serializers.js.map +1 -1
  74. package/_esm/celo/utils.js +1 -15
  75. package/_esm/celo/utils.js.map +1 -1
  76. package/_esm/errors/version.js +1 -1
  77. package/_esm/errors/version.js.map +1 -1
  78. package/_esm/zksync/actions/estimateFee.js +22 -0
  79. package/_esm/zksync/actions/estimateFee.js.map +1 -0
  80. package/_esm/zksync/actions/estimateGasL1ToL2.js +16 -0
  81. package/_esm/zksync/actions/estimateGasL1ToL2.js.map +1 -0
  82. package/_esm/zksync/actions/getAllBalances.js +15 -0
  83. package/_esm/zksync/actions/getAllBalances.js.map +1 -0
  84. package/_esm/zksync/actions/getBaseTokenL1Address.js +5 -0
  85. package/_esm/zksync/actions/getBaseTokenL1Address.js.map +1 -0
  86. package/_esm/zksync/actions/getBlockDetails.js +8 -0
  87. package/_esm/zksync/actions/getBlockDetails.js.map +1 -0
  88. package/_esm/zksync/actions/getBridgehubContractAddress.js +5 -0
  89. package/_esm/zksync/actions/getBridgehubContractAddress.js.map +1 -0
  90. package/_esm/zksync/actions/getDefaultBridgeAddresses.js +9 -0
  91. package/_esm/zksync/actions/getDefaultBridgeAddresses.js.map +1 -0
  92. package/_esm/zksync/actions/getL1Allowance.js +15 -0
  93. package/_esm/zksync/actions/getL1Allowance.js.map +1 -0
  94. package/_esm/zksync/actions/getL1Balance.js +19 -0
  95. package/_esm/zksync/actions/getL1Balance.js.map +1 -0
  96. package/_esm/zksync/actions/getL1BatchBlockRange.js +9 -0
  97. package/_esm/zksync/actions/getL1BatchBlockRange.js.map +1 -0
  98. package/_esm/zksync/actions/getL1BatchDetails.js +8 -0
  99. package/_esm/zksync/actions/getL1BatchDetails.js.map +1 -0
  100. package/_esm/zksync/actions/getL1BatchNumber.js +5 -0
  101. package/_esm/zksync/actions/getL1BatchNumber.js.map +1 -0
  102. package/_esm/zksync/actions/getL1ChainId.js +5 -0
  103. package/_esm/zksync/actions/getL1ChainId.js.map +1 -0
  104. package/_esm/zksync/actions/getL1TokenBalance.js +20 -0
  105. package/_esm/zksync/actions/getL1TokenBalance.js.map +1 -0
  106. package/_esm/zksync/actions/getLogProof.js +8 -0
  107. package/_esm/zksync/actions/getLogProof.js.map +1 -0
  108. package/_esm/zksync/actions/getMainContractAddress.js +5 -0
  109. package/_esm/zksync/actions/getMainContractAddress.js.map +1 -0
  110. package/_esm/zksync/actions/getRawBlockTransactions.js +9 -0
  111. package/_esm/zksync/actions/getRawBlockTransactions.js.map +1 -0
  112. package/_esm/zksync/actions/getTestnetPaymasterAddress.js +5 -0
  113. package/_esm/zksync/actions/getTestnetPaymasterAddress.js.map +1 -0
  114. package/_esm/zksync/actions/getTransactionDetails.js +8 -0
  115. package/_esm/zksync/actions/getTransactionDetails.js.map +1 -0
  116. package/_esm/zksync/constants/address.js +3 -0
  117. package/_esm/zksync/constants/address.js.map +1 -1
  118. package/_esm/zksync/decorators/publicL1.js +12 -0
  119. package/_esm/zksync/decorators/publicL1.js.map +1 -0
  120. package/_esm/zksync/decorators/publicL2.js +39 -0
  121. package/_esm/zksync/decorators/publicL2.js.map +1 -0
  122. package/_esm/zksync/errors/token-is-eth.js +13 -0
  123. package/_esm/zksync/errors/token-is-eth.js.map +1 -0
  124. package/_esm/zksync/index.js +20 -1
  125. package/_esm/zksync/index.js.map +1 -1
  126. package/_esm/zksync/types/eip1193.js +2 -0
  127. package/_esm/zksync/types/eip1193.js.map +1 -0
  128. package/_esm/zksync/types/proof.js +2 -0
  129. package/_esm/zksync/types/proof.js.map +1 -0
  130. package/_esm/zksync/utils/camelCaseKeys.js +13 -0
  131. package/_esm/zksync/utils/camelCaseKeys.js.map +1 -0
  132. package/_esm/zksync/utils/isEth.js +13 -0
  133. package/_esm/zksync/utils/isEth.js.map +1 -0
  134. package/_esm/zksync/utils/paymaster/getApprovalBasedPaymasterInput.js +2 -1
  135. package/_esm/zksync/utils/paymaster/getApprovalBasedPaymasterInput.js.map +1 -1
  136. package/_esm/zksync/utils/paymaster/getGeneralPaymasterInput.js +2 -1
  137. package/_esm/zksync/utils/paymaster/getGeneralPaymasterInput.js.map +1 -1
  138. package/_types/celo/chainConfig.d.ts +58 -526
  139. package/_types/celo/chainConfig.d.ts.map +1 -1
  140. package/_types/celo/formatters.d.ts +29 -263
  141. package/_types/celo/formatters.d.ts.map +1 -1
  142. package/_types/celo/index.d.ts +1 -1
  143. package/_types/celo/index.d.ts.map +1 -1
  144. package/_types/celo/serializers.d.ts +2 -3
  145. package/_types/celo/serializers.d.ts.map +1 -1
  146. package/_types/celo/types.d.ts +5 -29
  147. package/_types/celo/types.d.ts.map +1 -1
  148. package/_types/celo/utils.d.ts +1 -2
  149. package/_types/celo/utils.d.ts.map +1 -1
  150. package/_types/chains/definitions/celo.d.ts +58 -526
  151. package/_types/chains/definitions/celo.d.ts.map +1 -1
  152. package/_types/chains/definitions/celoAlfajores.d.ts +58 -526
  153. package/_types/chains/definitions/celoAlfajores.d.ts.map +1 -1
  154. package/_types/chains/definitions/lisk.d.ts +8 -8
  155. package/_types/chains/definitions/playfiAlbireo.d.ts +8 -8
  156. package/_types/chains/definitions/zkSync.d.ts +8 -8
  157. package/_types/chains/definitions/zkSyncInMemoryNode.d.ts +8 -8
  158. package/_types/chains/definitions/zkSyncLocalNode.d.ts +8 -8
  159. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +8 -8
  160. package/_types/chains/definitions/zkSyncTestnet.d.ts +8 -8
  161. package/_types/chains/index.d.ts +1 -1
  162. package/_types/chains/index.d.ts.map +1 -1
  163. package/_types/errors/version.d.ts +1 -1
  164. package/_types/errors/version.d.ts.map +1 -1
  165. package/_types/zksync/actions/estimateFee.d.ts +11 -0
  166. package/_types/zksync/actions/estimateFee.d.ts.map +1 -0
  167. package/_types/zksync/actions/estimateGasL1ToL2.d.ts +10 -0
  168. package/_types/zksync/actions/estimateGasL1ToL2.d.ts.map +1 -0
  169. package/_types/zksync/actions/getAllBalances.d.ts +12 -0
  170. package/_types/zksync/actions/getAllBalances.d.ts.map +1 -0
  171. package/_types/zksync/actions/getBaseTokenL1Address.d.ts +9 -0
  172. package/_types/zksync/actions/getBaseTokenL1Address.d.ts.map +1 -0
  173. package/_types/zksync/actions/getBlockDetails.d.ts +10 -0
  174. package/_types/zksync/actions/getBlockDetails.d.ts.map +1 -0
  175. package/_types/zksync/actions/getBridgehubContractAddress.d.ts +9 -0
  176. package/_types/zksync/actions/getBridgehubContractAddress.d.ts.map +1 -0
  177. package/_types/zksync/actions/getDefaultBridgeAddresses.d.ts +9 -0
  178. package/_types/zksync/actions/getDefaultBridgeAddresses.d.ts.map +1 -0
  179. package/_types/zksync/actions/getL1Allowance.d.ts +17 -0
  180. package/_types/zksync/actions/getL1Allowance.d.ts.map +1 -0
  181. package/_types/zksync/actions/getL1Balance.d.ts +23 -0
  182. package/_types/zksync/actions/getL1Balance.d.ts.map +1 -0
  183. package/_types/zksync/actions/getL1BatchBlockRange.d.ts +11 -0
  184. package/_types/zksync/actions/getL1BatchBlockRange.d.ts.map +1 -0
  185. package/_types/zksync/actions/getL1BatchDetails.d.ts +10 -0
  186. package/_types/zksync/actions/getL1BatchDetails.d.ts.map +1 -0
  187. package/_types/zksync/actions/getL1BatchNumber.d.ts +9 -0
  188. package/_types/zksync/actions/getL1BatchNumber.d.ts.map +1 -0
  189. package/_types/zksync/actions/getL1ChainId.d.ts +9 -0
  190. package/_types/zksync/actions/getL1ChainId.d.ts.map +1 -0
  191. package/_types/zksync/actions/getL1TokenBalance.d.ts +24 -0
  192. package/_types/zksync/actions/getL1TokenBalance.d.ts.map +1 -0
  193. package/_types/zksync/actions/getLogProof.d.ts +14 -0
  194. package/_types/zksync/actions/getLogProof.d.ts.map +1 -0
  195. package/_types/zksync/actions/getMainContractAddress.d.ts +9 -0
  196. package/_types/zksync/actions/getMainContractAddress.d.ts.map +1 -0
  197. package/_types/zksync/actions/getRawBlockTransactions.d.ts +11 -0
  198. package/_types/zksync/actions/getRawBlockTransactions.d.ts.map +1 -0
  199. package/_types/zksync/actions/getTestnetPaymasterAddress.d.ts +9 -0
  200. package/_types/zksync/actions/getTestnetPaymasterAddress.d.ts.map +1 -0
  201. package/_types/zksync/actions/getTransactionDetails.d.ts +13 -0
  202. package/_types/zksync/actions/getTransactionDetails.d.ts.map +1 -0
  203. package/_types/zksync/chainConfig.d.ts +8 -8
  204. package/_types/zksync/constants/address.d.ts +3 -0
  205. package/_types/zksync/constants/address.d.ts.map +1 -1
  206. package/_types/zksync/decorators/publicL1.d.ts +145 -0
  207. package/_types/zksync/decorators/publicL1.d.ts.map +1 -0
  208. package/_types/zksync/decorators/publicL2.d.ts +322 -0
  209. package/_types/zksync/decorators/publicL2.d.ts.map +1 -0
  210. package/_types/zksync/errors/token-is-eth.d.ts +9 -0
  211. package/_types/zksync/errors/token-is-eth.d.ts.map +1 -0
  212. package/_types/zksync/formatters.d.ts +8 -8
  213. package/_types/zksync/index.d.ts +21 -2
  214. package/_types/zksync/index.d.ts.map +1 -1
  215. package/_types/zksync/types/block.d.ts +30 -1
  216. package/_types/zksync/types/block.d.ts.map +1 -1
  217. package/_types/zksync/types/contract.d.ts +6 -0
  218. package/_types/zksync/types/contract.d.ts.map +1 -1
  219. package/_types/zksync/types/eip1193.d.ts +152 -0
  220. package/_types/zksync/types/eip1193.d.ts.map +1 -0
  221. package/_types/zksync/types/fee.d.ts +6 -0
  222. package/_types/zksync/types/fee.d.ts.map +1 -1
  223. package/_types/zksync/types/proof.d.ts +7 -0
  224. package/_types/zksync/types/proof.d.ts.map +1 -0
  225. package/_types/zksync/types/transaction.d.ts +65 -5
  226. package/_types/zksync/types/transaction.d.ts.map +1 -1
  227. package/_types/zksync/utils/camelCaseKeys.d.ts +2 -0
  228. package/_types/zksync/utils/camelCaseKeys.d.ts.map +1 -0
  229. package/_types/zksync/utils/isEth.d.ts +3 -0
  230. package/_types/zksync/utils/isEth.d.ts.map +1 -0
  231. package/_types/zksync/utils/paymaster/getApprovalBasedPaymasterInput.d.ts +1 -1
  232. package/_types/zksync/utils/paymaster/getApprovalBasedPaymasterInput.d.ts.map +1 -1
  233. package/_types/zksync/utils/paymaster/getGeneralPaymasterInput.d.ts +1 -1
  234. package/_types/zksync/utils/paymaster/getGeneralPaymasterInput.d.ts.map +1 -1
  235. package/celo/formatters.ts +3 -11
  236. package/celo/index.ts +0 -2
  237. package/celo/serializers.ts +2 -50
  238. package/celo/types.ts +3 -38
  239. package/celo/utils.ts +1 -24
  240. package/chains/index.ts +0 -2
  241. package/errors/version.ts +1 -1
  242. package/package.json +1 -1
  243. package/zksync/actions/estimateFee.ts +46 -0
  244. package/zksync/actions/estimateGasL1ToL2.ts +38 -0
  245. package/zksync/actions/getAllBalances.ts +33 -0
  246. package/zksync/actions/getBaseTokenL1Address.ts +18 -0
  247. package/zksync/actions/getBlockDetails.ts +27 -0
  248. package/zksync/actions/getBridgehubContractAddress.ts +18 -0
  249. package/zksync/actions/getDefaultBridgeAddresses.ts +22 -0
  250. package/zksync/actions/getL1Allowance.ts +43 -0
  251. package/zksync/actions/getL1Balance.ts +68 -0
  252. package/zksync/actions/getL1BatchBlockRange.ts +26 -0
  253. package/zksync/actions/getL1BatchDetails.ts +27 -0
  254. package/zksync/actions/getL1BatchNumber.ts +18 -0
  255. package/zksync/actions/getL1ChainId.ts +18 -0
  256. package/zksync/actions/getL1TokenBalance.ts +63 -0
  257. package/zksync/actions/getLogProof.ts +28 -0
  258. package/zksync/actions/getMainContractAddress.ts +18 -0
  259. package/zksync/actions/getRawBlockTransactions.ts +26 -0
  260. package/zksync/actions/getTestnetPaymasterAddress.ts +18 -0
  261. package/zksync/actions/getTransactionDetails.ts +27 -0
  262. package/zksync/constants/address.ts +9 -0
  263. package/zksync/decorators/publicL1.ts +180 -0
  264. package/zksync/decorators/publicL2.ts +443 -0
  265. package/zksync/errors/token-is-eth.ts +16 -0
  266. package/zksync/index.ts +85 -6
  267. package/zksync/types/block.ts +37 -1
  268. package/zksync/types/contract.ts +8 -0
  269. package/zksync/types/eip1193.ts +155 -0
  270. package/zksync/types/fee.ts +7 -0
  271. package/zksync/types/proof.ts +7 -0
  272. package/zksync/types/transaction.ts +84 -10
  273. package/zksync/utils/camelCaseKeys.ts +11 -0
  274. package/zksync/utils/isEth.ts +20 -0
  275. package/zksync/utils/paymaster/getApprovalBasedPaymasterInput.ts +5 -2
  276. package/zksync/utils/paymaster/getGeneralPaymasterInput.ts +5 -2
@@ -1 +1 @@
1
- {"version":3,"file":"chainConfig.d.ts","sourceRoot":"","sources":["../../celo/chainConfig.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAId,CAAA"}
1
+ {"version":3,"file":"chainConfig.d.ts","sourceRoot":"","sources":["../../celo/chainConfig.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAId,CAAA"}
@@ -857,8 +857,8 @@ export declare const formatters: {
857
857
  yParity?: undefined;
858
858
  type: "legacy";
859
859
  feeCurrency: `0x${string}` | null;
860
- gatewayFee: bigint | null;
861
- gatewayFeeRecipient: `0x${string}` | null;
860
+ gatewayFee?: undefined;
861
+ gatewayFeeRecipient?: undefined;
862
862
  } | {
863
863
  r: `0x${string}`;
864
864
  s: `0x${string}`;
@@ -938,8 +938,8 @@ export declare const formatters: {
938
938
  chainId: number;
939
939
  type: "eip2930";
940
940
  feeCurrency: `0x${string}` | null;
941
- gatewayFee: bigint | null;
942
- gatewayFeeRecipient: `0x${string}` | null;
941
+ gatewayFee?: undefined;
942
+ gatewayFeeRecipient?: undefined;
943
943
  } | {
944
944
  blockHash: `0x${string}` | null;
945
945
  blockNumber: bigint | null;
@@ -965,8 +965,8 @@ export declare const formatters: {
965
965
  chainId: number;
966
966
  type: "eip1559";
967
967
  feeCurrency: `0x${string}` | null;
968
- gatewayFee: bigint | null;
969
- gatewayFeeRecipient: `0x${string}` | null;
968
+ gatewayFee?: undefined;
969
+ gatewayFeeRecipient?: undefined;
970
970
  } | {
971
971
  blockHash: `0x${string}` | null;
972
972
  blockNumber: bigint | null;
@@ -1046,8 +1046,8 @@ export declare const formatters: {
1046
1046
  chainId: number;
1047
1047
  type: "eip2930";
1048
1048
  feeCurrency: `0x${string}` | null;
1049
- gatewayFee: bigint | null;
1050
- gatewayFeeRecipient: `0x${string}` | null;
1049
+ gatewayFee?: undefined;
1050
+ gatewayFeeRecipient?: undefined;
1051
1051
  } | {
1052
1052
  blockHash: `0x${string}` | null;
1053
1053
  blockNumber: bigint | null;
@@ -1073,8 +1073,8 @@ export declare const formatters: {
1073
1073
  chainId: number;
1074
1074
  type: "eip1559";
1075
1075
  feeCurrency: `0x${string}` | null;
1076
- gatewayFee: bigint | null;
1077
- gatewayFeeRecipient: `0x${string}` | null;
1076
+ gatewayFee?: undefined;
1077
+ gatewayFeeRecipient?: undefined;
1078
1078
  } | {
1079
1079
  blockHash: `0x${string}` | null;
1080
1080
  blockNumber: bigint | null;
@@ -1154,8 +1154,8 @@ export declare const formatters: {
1154
1154
  chainId: number;
1155
1155
  type: "eip4844";
1156
1156
  feeCurrency: `0x${string}` | null;
1157
- gatewayFee: bigint | null;
1158
- gatewayFeeRecipient: `0x${string}` | null;
1157
+ gatewayFee?: undefined;
1158
+ gatewayFeeRecipient?: undefined;
1159
1159
  } | {
1160
1160
  blockHash: `0x${string}` | null;
1161
1161
  blockNumber: bigint | null;
@@ -1228,7 +1228,7 @@ export declare const formatters: {
1228
1228
  maxPriorityFeePerGas?: bigint | undefined;
1229
1229
  accessList?: import("../index.js").AccessList | undefined;
1230
1230
  blobs?: undefined;
1231
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1231
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1232
1232
  blobVersionedHashes?: undefined;
1233
1233
  kzg?: undefined;
1234
1234
  sidecars?: undefined;
@@ -1251,8 +1251,6 @@ export declare const formatters: {
1251
1251
  sidecars?: undefined;
1252
1252
  } & {
1253
1253
  feeCurrency?: `0x${string}` | undefined;
1254
- gatewayFee?: bigint | undefined;
1255
- gatewayFeeRecipient?: `0x${string}` | undefined;
1256
1254
  }) | ({
1257
1255
  data?: `0x${string}` | undefined;
1258
1256
  from?: `0x${string}`;
@@ -1266,7 +1264,7 @@ export declare const formatters: {
1266
1264
  maxPriorityFeePerGas?: bigint | undefined;
1267
1265
  accessList?: import("../index.js").AccessList | undefined;
1268
1266
  blobs?: undefined;
1269
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1267
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1270
1268
  blobVersionedHashes?: undefined;
1271
1269
  kzg?: undefined;
1272
1270
  sidecars?: undefined;
@@ -1289,8 +1287,6 @@ export declare const formatters: {
1289
1287
  sidecars?: undefined;
1290
1288
  } & {
1291
1289
  feeCurrency?: `0x${string}` | undefined;
1292
- gatewayFee?: bigint | undefined;
1293
- gatewayFeeRecipient?: `0x${string}` | undefined;
1294
1290
  }) | ({
1295
1291
  data?: `0x${string}` | undefined;
1296
1292
  from?: `0x${string}`;
@@ -1304,7 +1300,7 @@ export declare const formatters: {
1304
1300
  maxPriorityFeePerGas?: bigint | undefined;
1305
1301
  accessList?: import("../index.js").AccessList | undefined;
1306
1302
  blobs?: undefined;
1307
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1303
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1308
1304
  blobVersionedHashes?: undefined;
1309
1305
  kzg?: undefined;
1310
1306
  sidecars?: undefined;
@@ -1327,8 +1323,6 @@ export declare const formatters: {
1327
1323
  sidecars?: undefined;
1328
1324
  } & {
1329
1325
  feeCurrency?: `0x${string}` | undefined;
1330
- gatewayFee?: bigint | undefined;
1331
- gatewayFeeRecipient?: `0x${string}` | undefined;
1332
1326
  }) | ({
1333
1327
  data?: `0x${string}` | undefined;
1334
1328
  from?: `0x${string}`;
@@ -1342,38 +1336,13 @@ export declare const formatters: {
1342
1336
  maxPriorityFeePerGas?: bigint | undefined;
1343
1337
  accessList?: import("../index.js").AccessList | undefined;
1344
1338
  blobs?: undefined;
1345
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1339
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1346
1340
  blobVersionedHashes?: undefined;
1347
1341
  kzg?: undefined;
1348
1342
  sidecars?: undefined;
1349
1343
  } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1350
1344
  accessList?: import("../index.js").AccessList | undefined;
1351
1345
  feeCurrency?: `0x${string}` | undefined;
1352
- gatewayFee?: bigint | undefined;
1353
- gatewayFeeRecipient?: `0x${string}` | undefined;
1354
- type?: "cip42" | undefined;
1355
- }) | ({
1356
- data?: `0x${string}` | undefined;
1357
- from?: `0x${string}`;
1358
- gas?: bigint | undefined;
1359
- nonce?: number | undefined;
1360
- to?: `0x${string}` | null | undefined;
1361
- value?: bigint | undefined;
1362
- gasPrice?: bigint | undefined;
1363
- maxFeePerBlobGas?: bigint | undefined;
1364
- maxFeePerGas?: bigint | undefined;
1365
- maxPriorityFeePerGas?: bigint | undefined;
1366
- accessList?: import("../index.js").AccessList | undefined;
1367
- blobs?: undefined;
1368
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1369
- blobVersionedHashes?: undefined;
1370
- kzg?: undefined;
1371
- sidecars?: undefined;
1372
- } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1373
- accessList?: import("../index.js").AccessList | undefined;
1374
- feeCurrency?: `0x${string}` | undefined;
1375
- gatewayFee?: undefined;
1376
- gatewayFeeRecipient?: undefined;
1377
1346
  type?: "cip64" | undefined;
1378
1347
  }) | ({
1379
1348
  data?: `0x${string}` | undefined;
@@ -1388,7 +1357,7 @@ export declare const formatters: {
1388
1357
  maxPriorityFeePerGas?: bigint | undefined;
1389
1358
  accessList?: import("../index.js").AccessList | undefined;
1390
1359
  blobs?: undefined;
1391
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1360
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1392
1361
  blobVersionedHashes?: undefined;
1393
1362
  kzg?: undefined;
1394
1363
  sidecars?: undefined;
@@ -1411,8 +1380,6 @@ export declare const formatters: {
1411
1380
  sidecars?: undefined;
1412
1381
  } & {
1413
1382
  feeCurrency?: `0x${string}` | undefined;
1414
- gatewayFee?: bigint | undefined;
1415
- gatewayFeeRecipient?: `0x${string}` | undefined;
1416
1383
  }) | ({
1417
1384
  data?: `0x${string}` | undefined;
1418
1385
  from?: `0x${string}`;
@@ -1426,7 +1393,7 @@ export declare const formatters: {
1426
1393
  maxPriorityFeePerGas?: bigint | undefined;
1427
1394
  accessList?: import("../index.js").AccessList | undefined;
1428
1395
  blobs?: undefined;
1429
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1396
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1430
1397
  blobVersionedHashes?: undefined;
1431
1398
  kzg?: undefined;
1432
1399
  sidecars?: undefined;
@@ -1449,8 +1416,6 @@ export declare const formatters: {
1449
1416
  sidecars?: undefined;
1450
1417
  } & {
1451
1418
  feeCurrency?: `0x${string}` | undefined;
1452
- gatewayFee?: bigint | undefined;
1453
- gatewayFeeRecipient?: `0x${string}` | undefined;
1454
1419
  }) | ({
1455
1420
  data?: `0x${string}` | undefined;
1456
1421
  from?: `0x${string}`;
@@ -1464,7 +1429,7 @@ export declare const formatters: {
1464
1429
  maxPriorityFeePerGas?: bigint | undefined;
1465
1430
  accessList?: import("../index.js").AccessList | undefined;
1466
1431
  blobs?: undefined;
1467
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1432
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1468
1433
  blobVersionedHashes?: undefined;
1469
1434
  kzg?: undefined;
1470
1435
  sidecars?: undefined;
@@ -1487,31 +1452,6 @@ export declare const formatters: {
1487
1452
  sidecars?: undefined;
1488
1453
  } & {
1489
1454
  feeCurrency?: `0x${string}` | undefined;
1490
- gatewayFee?: bigint | undefined;
1491
- gatewayFeeRecipient?: `0x${string}` | undefined;
1492
- }) | ({
1493
- data?: `0x${string}` | undefined;
1494
- from?: `0x${string}`;
1495
- gas?: bigint | undefined;
1496
- nonce?: number | undefined;
1497
- to?: `0x${string}` | null | undefined;
1498
- value?: bigint | undefined;
1499
- gasPrice?: bigint | undefined;
1500
- maxFeePerBlobGas?: bigint | undefined;
1501
- maxFeePerGas?: bigint | undefined;
1502
- maxPriorityFeePerGas?: bigint | undefined;
1503
- accessList?: import("../index.js").AccessList | undefined;
1504
- blobs?: undefined;
1505
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1506
- blobVersionedHashes?: undefined;
1507
- kzg?: undefined;
1508
- sidecars?: undefined;
1509
- } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1510
- accessList?: import("../index.js").AccessList | undefined;
1511
- feeCurrency?: `0x${string}` | undefined;
1512
- gatewayFee?: bigint | undefined;
1513
- gatewayFeeRecipient?: `0x${string}` | undefined;
1514
- type?: "cip42" | undefined;
1515
1455
  }) | ({
1516
1456
  data?: `0x${string}` | undefined;
1517
1457
  from?: `0x${string}`;
@@ -1525,15 +1465,13 @@ export declare const formatters: {
1525
1465
  maxPriorityFeePerGas?: bigint | undefined;
1526
1466
  accessList?: import("../index.js").AccessList | undefined;
1527
1467
  blobs?: undefined;
1528
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1468
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1529
1469
  blobVersionedHashes?: undefined;
1530
1470
  kzg?: undefined;
1531
1471
  sidecars?: undefined;
1532
1472
  } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1533
1473
  accessList?: import("../index.js").AccessList | undefined;
1534
1474
  feeCurrency?: `0x${string}` | undefined;
1535
- gatewayFee?: undefined;
1536
- gatewayFeeRecipient?: undefined;
1537
1475
  type?: "cip64" | undefined;
1538
1476
  }) | ({
1539
1477
  data?: `0x${string}` | undefined;
@@ -1548,7 +1486,7 @@ export declare const formatters: {
1548
1486
  maxPriorityFeePerGas?: bigint | undefined;
1549
1487
  accessList?: import("../index.js").AccessList | undefined;
1550
1488
  blobs?: undefined;
1551
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1489
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1552
1490
  blobVersionedHashes?: undefined;
1553
1491
  kzg?: undefined;
1554
1492
  sidecars?: undefined;
@@ -1571,8 +1509,6 @@ export declare const formatters: {
1571
1509
  sidecars?: undefined;
1572
1510
  } & {
1573
1511
  feeCurrency?: `0x${string}` | undefined;
1574
- gatewayFee?: bigint | undefined;
1575
- gatewayFeeRecipient?: `0x${string}` | undefined;
1576
1512
  }) | ({
1577
1513
  data?: `0x${string}` | undefined;
1578
1514
  from?: `0x${string}`;
@@ -1586,7 +1522,7 @@ export declare const formatters: {
1586
1522
  maxPriorityFeePerGas?: bigint | undefined;
1587
1523
  accessList?: import("../index.js").AccessList | undefined;
1588
1524
  blobs?: undefined;
1589
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1525
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1590
1526
  blobVersionedHashes?: undefined;
1591
1527
  kzg?: undefined;
1592
1528
  sidecars?: undefined;
@@ -1609,8 +1545,6 @@ export declare const formatters: {
1609
1545
  sidecars?: undefined;
1610
1546
  } & {
1611
1547
  feeCurrency?: `0x${string}` | undefined;
1612
- gatewayFee?: bigint | undefined;
1613
- gatewayFeeRecipient?: `0x${string}` | undefined;
1614
1548
  }) | ({
1615
1549
  data?: `0x${string}` | undefined;
1616
1550
  from?: `0x${string}`;
@@ -1624,7 +1558,7 @@ export declare const formatters: {
1624
1558
  maxPriorityFeePerGas?: bigint | undefined;
1625
1559
  accessList?: import("../index.js").AccessList | undefined;
1626
1560
  blobs?: undefined;
1627
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1561
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1628
1562
  blobVersionedHashes?: undefined;
1629
1563
  kzg?: undefined;
1630
1564
  sidecars?: undefined;
@@ -1647,31 +1581,6 @@ export declare const formatters: {
1647
1581
  sidecars?: undefined;
1648
1582
  } & {
1649
1583
  feeCurrency?: `0x${string}` | undefined;
1650
- gatewayFee?: bigint | undefined;
1651
- gatewayFeeRecipient?: `0x${string}` | undefined;
1652
- }) | ({
1653
- data?: `0x${string}` | undefined;
1654
- from?: `0x${string}`;
1655
- gas?: bigint | undefined;
1656
- nonce?: number | undefined;
1657
- to?: `0x${string}` | null | undefined;
1658
- value?: bigint | undefined;
1659
- gasPrice?: bigint | undefined;
1660
- maxFeePerBlobGas?: bigint | undefined;
1661
- maxFeePerGas?: bigint | undefined;
1662
- maxPriorityFeePerGas?: bigint | undefined;
1663
- accessList?: import("../index.js").AccessList | undefined;
1664
- blobs?: undefined;
1665
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1666
- blobVersionedHashes?: undefined;
1667
- kzg?: undefined;
1668
- sidecars?: undefined;
1669
- } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1670
- accessList?: import("../index.js").AccessList | undefined;
1671
- feeCurrency?: `0x${string}` | undefined;
1672
- gatewayFee?: bigint | undefined;
1673
- gatewayFeeRecipient?: `0x${string}` | undefined;
1674
- type?: "cip42" | undefined;
1675
1584
  }) | ({
1676
1585
  data?: `0x${string}` | undefined;
1677
1586
  from?: `0x${string}`;
@@ -1685,15 +1594,13 @@ export declare const formatters: {
1685
1594
  maxPriorityFeePerGas?: bigint | undefined;
1686
1595
  accessList?: import("../index.js").AccessList | undefined;
1687
1596
  blobs?: undefined;
1688
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1597
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1689
1598
  blobVersionedHashes?: undefined;
1690
1599
  kzg?: undefined;
1691
1600
  sidecars?: undefined;
1692
1601
  } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1693
1602
  accessList?: import("../index.js").AccessList | undefined;
1694
1603
  feeCurrency?: `0x${string}` | undefined;
1695
- gatewayFee?: undefined;
1696
- gatewayFeeRecipient?: undefined;
1697
1604
  type?: "cip64" | undefined;
1698
1605
  }) | ({
1699
1606
  data?: `0x${string}` | undefined;
@@ -1711,7 +1618,7 @@ export declare const formatters: {
1711
1618
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1712
1619
  kzg?: import("../index.js").Kzg | undefined;
1713
1620
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1714
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1621
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1715
1622
  } & {
1716
1623
  data?: `0x${string}` | undefined;
1717
1624
  from: `0x${string}`;
@@ -1731,8 +1638,6 @@ export declare const formatters: {
1731
1638
  sidecars?: undefined;
1732
1639
  } & {
1733
1640
  feeCurrency?: `0x${string}` | undefined;
1734
- gatewayFee?: bigint | undefined;
1735
- gatewayFeeRecipient?: `0x${string}` | undefined;
1736
1641
  }) | ({
1737
1642
  data?: `0x${string}` | undefined;
1738
1643
  from?: `0x${string}`;
@@ -1749,7 +1654,7 @@ export declare const formatters: {
1749
1654
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1750
1655
  kzg?: import("../index.js").Kzg | undefined;
1751
1656
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1752
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1657
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1753
1658
  } & {
1754
1659
  data?: `0x${string}` | undefined;
1755
1660
  from: `0x${string}`;
@@ -1769,8 +1674,6 @@ export declare const formatters: {
1769
1674
  sidecars?: undefined;
1770
1675
  } & {
1771
1676
  feeCurrency?: `0x${string}` | undefined;
1772
- gatewayFee?: bigint | undefined;
1773
- gatewayFeeRecipient?: `0x${string}` | undefined;
1774
1677
  }) | ({
1775
1678
  data?: `0x${string}` | undefined;
1776
1679
  from?: `0x${string}`;
@@ -1787,7 +1690,7 @@ export declare const formatters: {
1787
1690
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1788
1691
  kzg?: import("../index.js").Kzg | undefined;
1789
1692
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1790
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1693
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1791
1694
  } & {
1792
1695
  data?: `0x${string}` | undefined;
1793
1696
  from: `0x${string}`;
@@ -1807,8 +1710,6 @@ export declare const formatters: {
1807
1710
  sidecars?: undefined;
1808
1711
  } & {
1809
1712
  feeCurrency?: `0x${string}` | undefined;
1810
- gatewayFee?: bigint | undefined;
1811
- gatewayFeeRecipient?: `0x${string}` | undefined;
1812
1713
  }) | ({
1813
1714
  data?: `0x${string}` | undefined;
1814
1715
  from?: `0x${string}`;
@@ -1825,7 +1726,7 @@ export declare const formatters: {
1825
1726
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1826
1727
  kzg?: import("../index.js").Kzg | undefined;
1827
1728
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1828
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1729
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1829
1730
  } & {
1830
1731
  data?: `0x${string}` | undefined;
1831
1732
  from: `0x${string}`;
@@ -1845,31 +1746,6 @@ export declare const formatters: {
1845
1746
  type?: "eip4844" | undefined;
1846
1747
  } & {
1847
1748
  feeCurrency?: `0x${string}` | undefined;
1848
- gatewayFee?: bigint | undefined;
1849
- gatewayFeeRecipient?: `0x${string}` | undefined;
1850
- }) | ({
1851
- data?: `0x${string}` | undefined;
1852
- from?: `0x${string}`;
1853
- gas?: bigint | undefined;
1854
- nonce?: number | undefined;
1855
- value?: bigint | undefined;
1856
- to?: `0x${string}` | null | undefined;
1857
- gasPrice?: bigint | undefined;
1858
- maxFeePerGas?: bigint | undefined;
1859
- maxPriorityFeePerGas?: bigint | undefined;
1860
- maxFeePerBlobGas?: bigint | undefined;
1861
- accessList?: import("../index.js").AccessList | undefined;
1862
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1863
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1864
- kzg?: import("../index.js").Kzg | undefined;
1865
- sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1866
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1867
- } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1868
- accessList?: import("../index.js").AccessList | undefined;
1869
- feeCurrency?: `0x${string}` | undefined;
1870
- gatewayFee?: bigint | undefined;
1871
- gatewayFeeRecipient?: `0x${string}` | undefined;
1872
- type?: "cip42" | undefined;
1873
1749
  }) | ({
1874
1750
  data?: `0x${string}` | undefined;
1875
1751
  from?: `0x${string}`;
@@ -1886,12 +1762,10 @@ export declare const formatters: {
1886
1762
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1887
1763
  kzg?: import("../index.js").Kzg | undefined;
1888
1764
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1889
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1765
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1890
1766
  } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1891
1767
  accessList?: import("../index.js").AccessList | undefined;
1892
1768
  feeCurrency?: `0x${string}` | undefined;
1893
- gatewayFee?: undefined;
1894
- gatewayFeeRecipient?: undefined;
1895
1769
  type?: "cip64" | undefined;
1896
1770
  })) => ({
1897
1771
  data?: `0x${string}` | undefined;
@@ -1911,8 +1785,6 @@ export declare const formatters: {
1911
1785
  kzg?: undefined;
1912
1786
  sidecars?: undefined;
1913
1787
  feeCurrency?: `0x${string}` | undefined;
1914
- gatewayFee?: `0x${string}` | undefined;
1915
- gatewayFeeRecipient?: `0x${string}` | undefined;
1916
1788
  } | {
1917
1789
  data?: `0x${string}` | undefined;
1918
1790
  from: `0x${string}`;
@@ -1931,8 +1803,6 @@ export declare const formatters: {
1931
1803
  kzg?: undefined;
1932
1804
  sidecars?: undefined;
1933
1805
  feeCurrency?: `0x${string}` | undefined;
1934
- gatewayFee?: `0x${string}` | undefined;
1935
- gatewayFeeRecipient?: `0x${string}` | undefined;
1936
1806
  } | {
1937
1807
  data?: `0x${string}` | undefined;
1938
1808
  from: `0x${string}`;
@@ -1951,28 +1821,6 @@ export declare const formatters: {
1951
1821
  kzg?: undefined;
1952
1822
  sidecars?: undefined;
1953
1823
  feeCurrency?: `0x${string}` | undefined;
1954
- gatewayFee?: `0x${string}` | undefined;
1955
- gatewayFeeRecipient?: `0x${string}` | undefined;
1956
- } | {
1957
- data?: `0x${string}` | undefined;
1958
- from: `0x${string}`;
1959
- gas?: `0x${string}` | undefined;
1960
- nonce?: `0x${string}` | undefined;
1961
- to?: `0x${string}` | null | undefined;
1962
- value?: `0x${string}` | undefined;
1963
- gasPrice?: undefined;
1964
- maxFeePerBlobGas?: undefined;
1965
- maxFeePerGas?: `0x${string}` | undefined;
1966
- maxPriorityFeePerGas?: `0x${string}` | undefined;
1967
- accessList?: import("../index.js").AccessList | undefined;
1968
- blobs?: undefined;
1969
- type?: "0x7c" | undefined;
1970
- blobVersionedHashes?: undefined;
1971
- kzg?: undefined;
1972
- sidecars?: undefined;
1973
- feeCurrency?: `0x${string}` | undefined;
1974
- gatewayFee?: `0x${string}` | undefined;
1975
- gatewayFeeRecipient?: `0x${string}` | undefined;
1976
1824
  } | {
1977
1825
  data?: `0x${string}` | undefined;
1978
1826
  from: `0x${string}`;
@@ -1991,8 +1839,6 @@ export declare const formatters: {
1991
1839
  kzg?: undefined;
1992
1840
  sidecars?: undefined;
1993
1841
  feeCurrency?: `0x${string}` | undefined;
1994
- gatewayFee?: undefined;
1995
- gatewayFeeRecipient?: undefined;
1996
1842
  } | {
1997
1843
  data?: `0x${string}` | undefined;
1998
1844
  from: `0x${string}`;
@@ -2011,8 +1857,6 @@ export declare const formatters: {
2011
1857
  kzg?: undefined;
2012
1858
  sidecars?: undefined;
2013
1859
  feeCurrency?: `0x${string}` | undefined;
2014
- gatewayFee?: `0x${string}` | undefined;
2015
- gatewayFeeRecipient?: `0x${string}` | undefined;
2016
1860
  } | {
2017
1861
  data?: `0x${string}` | undefined;
2018
1862
  from: `0x${string}`;
@@ -2031,8 +1875,6 @@ export declare const formatters: {
2031
1875
  kzg?: undefined;
2032
1876
  sidecars?: undefined;
2033
1877
  feeCurrency?: `0x${string}` | undefined;
2034
- gatewayFee?: `0x${string}` | undefined;
2035
- gatewayFeeRecipient?: `0x${string}` | undefined;
2036
1878
  } | {
2037
1879
  data?: `0x${string}` | undefined;
2038
1880
  from: `0x${string}`;
@@ -2051,28 +1893,6 @@ export declare const formatters: {
2051
1893
  kzg?: undefined;
2052
1894
  sidecars?: undefined;
2053
1895
  feeCurrency?: `0x${string}` | undefined;
2054
- gatewayFee?: `0x${string}` | undefined;
2055
- gatewayFeeRecipient?: `0x${string}` | undefined;
2056
- } | {
2057
- data?: `0x${string}` | undefined;
2058
- from: `0x${string}`;
2059
- gas?: `0x${string}` | undefined;
2060
- nonce?: `0x${string}` | undefined;
2061
- to?: `0x${string}` | null | undefined;
2062
- value?: `0x${string}` | undefined;
2063
- gasPrice?: undefined;
2064
- maxFeePerBlobGas?: undefined;
2065
- maxFeePerGas?: `0x${string}` | undefined;
2066
- maxPriorityFeePerGas?: `0x${string}` | undefined;
2067
- accessList?: import("../index.js").AccessList | undefined;
2068
- blobs?: undefined;
2069
- type?: "0x7c" | undefined;
2070
- blobVersionedHashes?: undefined;
2071
- kzg?: undefined;
2072
- sidecars?: undefined;
2073
- feeCurrency?: `0x${string}` | undefined;
2074
- gatewayFee?: `0x${string}` | undefined;
2075
- gatewayFeeRecipient?: `0x${string}` | undefined;
2076
1896
  } | {
2077
1897
  data?: `0x${string}` | undefined;
2078
1898
  from: `0x${string}`;
@@ -2091,8 +1911,6 @@ export declare const formatters: {
2091
1911
  kzg?: undefined;
2092
1912
  sidecars?: undefined;
2093
1913
  feeCurrency?: `0x${string}` | undefined;
2094
- gatewayFee?: undefined;
2095
- gatewayFeeRecipient?: undefined;
2096
1914
  } | {
2097
1915
  data?: `0x${string}` | undefined;
2098
1916
  from: `0x${string}`;
@@ -2111,8 +1929,6 @@ export declare const formatters: {
2111
1929
  kzg?: undefined;
2112
1930
  sidecars?: undefined;
2113
1931
  feeCurrency?: `0x${string}` | undefined;
2114
- gatewayFee?: `0x${string}` | undefined;
2115
- gatewayFeeRecipient?: `0x${string}` | undefined;
2116
1932
  } | {
2117
1933
  data?: `0x${string}` | undefined;
2118
1934
  from: `0x${string}`;
@@ -2131,8 +1947,6 @@ export declare const formatters: {
2131
1947
  kzg?: undefined;
2132
1948
  sidecars?: undefined;
2133
1949
  feeCurrency?: `0x${string}` | undefined;
2134
- gatewayFee?: `0x${string}` | undefined;
2135
- gatewayFeeRecipient?: `0x${string}` | undefined;
2136
1950
  } | {
2137
1951
  data?: `0x${string}` | undefined;
2138
1952
  from: `0x${string}`;
@@ -2151,28 +1965,6 @@ export declare const formatters: {
2151
1965
  kzg?: undefined;
2152
1966
  sidecars?: undefined;
2153
1967
  feeCurrency?: `0x${string}` | undefined;
2154
- gatewayFee?: `0x${string}` | undefined;
2155
- gatewayFeeRecipient?: `0x${string}` | undefined;
2156
- } | {
2157
- data?: `0x${string}` | undefined;
2158
- from: `0x${string}`;
2159
- gas?: `0x${string}` | undefined;
2160
- nonce?: `0x${string}` | undefined;
2161
- to?: `0x${string}` | null | undefined;
2162
- value?: `0x${string}` | undefined;
2163
- gasPrice?: undefined;
2164
- maxFeePerBlobGas?: undefined;
2165
- maxFeePerGas?: `0x${string}` | undefined;
2166
- maxPriorityFeePerGas?: `0x${string}` | undefined;
2167
- accessList?: import("../index.js").AccessList | undefined;
2168
- blobs?: undefined;
2169
- type?: "0x7c" | undefined;
2170
- blobVersionedHashes?: undefined;
2171
- kzg?: undefined;
2172
- sidecars?: undefined;
2173
- feeCurrency?: `0x${string}` | undefined;
2174
- gatewayFee?: `0x${string}` | undefined;
2175
- gatewayFeeRecipient?: `0x${string}` | undefined;
2176
1968
  } | {
2177
1969
  data?: `0x${string}` | undefined;
2178
1970
  from: `0x${string}`;
@@ -2191,8 +1983,6 @@ export declare const formatters: {
2191
1983
  kzg?: undefined;
2192
1984
  sidecars?: undefined;
2193
1985
  feeCurrency?: `0x${string}` | undefined;
2194
- gatewayFee?: undefined;
2195
- gatewayFeeRecipient?: undefined;
2196
1986
  } | {
2197
1987
  data?: `0x${string}` | undefined;
2198
1988
  from: `0x${string}`;
@@ -2211,28 +2001,6 @@ export declare const formatters: {
2211
2001
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
2212
2002
  type?: "0x3" | undefined;
2213
2003
  feeCurrency?: `0x${string}` | undefined;
2214
- gatewayFee?: `0x${string}` | undefined;
2215
- gatewayFeeRecipient?: `0x${string}` | undefined;
2216
- } | {
2217
- data?: `0x${string}` | undefined;
2218
- from: `0x${string}`;
2219
- gas?: `0x${string}` | undefined;
2220
- nonce?: `0x${string}` | undefined;
2221
- value?: `0x${string}` | undefined;
2222
- to: `0x${string}` | null | undefined;
2223
- gasPrice?: undefined;
2224
- maxFeePerGas?: `0x${string}` | undefined;
2225
- maxPriorityFeePerGas?: `0x${string}` | undefined;
2226
- maxFeePerBlobGas: undefined;
2227
- accessList?: import("../index.js").AccessList | undefined;
2228
- blobs: readonly `0x${string}`[] | readonly Uint8Array[];
2229
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2230
- kzg?: import("../index.js").Kzg | undefined;
2231
- sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
2232
- type?: "0x7c" | undefined;
2233
- feeCurrency?: `0x${string}` | undefined;
2234
- gatewayFee?: `0x${string}` | undefined;
2235
- gatewayFeeRecipient?: `0x${string}` | undefined;
2236
2004
  } | {
2237
2005
  data?: `0x${string}` | undefined;
2238
2006
  from: `0x${string}`;
@@ -2251,8 +2019,6 @@ export declare const formatters: {
2251
2019
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
2252
2020
  type?: "0x7b" | undefined;
2253
2021
  feeCurrency?: `0x${string}` | undefined;
2254
- gatewayFee?: undefined;
2255
- gatewayFeeRecipient?: undefined;
2256
2022
  }) & {};
2257
2023
  type: "transactionRequest";
2258
2024
  };