viem 2.10.11 → 2.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (282) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/_cjs/actions/public/waitForTransactionReceipt.js +9 -3
  3. package/_cjs/actions/public/waitForTransactionReceipt.js.map +1 -1
  4. package/_cjs/celo/formatters.js +1 -10
  5. package/_cjs/celo/formatters.js.map +1 -1
  6. package/_cjs/celo/serializers.js +0 -25
  7. package/_cjs/celo/serializers.js.map +1 -1
  8. package/_cjs/celo/utils.js +2 -15
  9. package/_cjs/celo/utils.js.map +1 -1
  10. package/_cjs/errors/version.js +1 -1
  11. package/_cjs/errors/version.js.map +1 -1
  12. package/_cjs/zksync/actions/estimateFee.js +26 -0
  13. package/_cjs/zksync/actions/estimateFee.js.map +1 -0
  14. package/_cjs/zksync/actions/estimateGasL1ToL2.js +20 -0
  15. package/_cjs/zksync/actions/estimateGasL1ToL2.js.map +1 -0
  16. package/_cjs/zksync/actions/getAllBalances.js +19 -0
  17. package/_cjs/zksync/actions/getAllBalances.js.map +1 -0
  18. package/_cjs/zksync/actions/getBaseTokenL1Address.js +9 -0
  19. package/_cjs/zksync/actions/getBaseTokenL1Address.js.map +1 -0
  20. package/_cjs/zksync/actions/getBlockDetails.js +12 -0
  21. package/_cjs/zksync/actions/getBlockDetails.js.map +1 -0
  22. package/_cjs/zksync/actions/getBridgehubContractAddress.js +9 -0
  23. package/_cjs/zksync/actions/getBridgehubContractAddress.js.map +1 -0
  24. package/_cjs/zksync/actions/getDefaultBridgeAddresses.js +13 -0
  25. package/_cjs/zksync/actions/getDefaultBridgeAddresses.js.map +1 -0
  26. package/_cjs/zksync/actions/getL1Allowance.js +19 -0
  27. package/_cjs/zksync/actions/getL1Allowance.js.map +1 -0
  28. package/_cjs/zksync/actions/getL1Balance.js +23 -0
  29. package/_cjs/zksync/actions/getL1Balance.js.map +1 -0
  30. package/_cjs/zksync/actions/getL1BatchBlockRange.js +13 -0
  31. package/_cjs/zksync/actions/getL1BatchBlockRange.js.map +1 -0
  32. package/_cjs/zksync/actions/getL1BatchDetails.js +12 -0
  33. package/_cjs/zksync/actions/getL1BatchDetails.js.map +1 -0
  34. package/_cjs/zksync/actions/getL1BatchNumber.js +9 -0
  35. package/_cjs/zksync/actions/getL1BatchNumber.js.map +1 -0
  36. package/_cjs/zksync/actions/getL1ChainId.js +9 -0
  37. package/_cjs/zksync/actions/getL1ChainId.js.map +1 -0
  38. package/_cjs/zksync/actions/getL1TokenBalance.js +24 -0
  39. package/_cjs/zksync/actions/getL1TokenBalance.js.map +1 -0
  40. package/_cjs/zksync/actions/getLogProof.js +12 -0
  41. package/_cjs/zksync/actions/getLogProof.js.map +1 -0
  42. package/_cjs/zksync/actions/getMainContractAddress.js +9 -0
  43. package/_cjs/zksync/actions/getMainContractAddress.js.map +1 -0
  44. package/_cjs/zksync/actions/getRawBlockTransactions.js +13 -0
  45. package/_cjs/zksync/actions/getRawBlockTransactions.js.map +1 -0
  46. package/_cjs/zksync/actions/getTestnetPaymasterAddress.js +9 -0
  47. package/_cjs/zksync/actions/getTestnetPaymasterAddress.js.map +1 -0
  48. package/_cjs/zksync/actions/getTransactionDetails.js +12 -0
  49. package/_cjs/zksync/actions/getTransactionDetails.js.map +1 -0
  50. package/_cjs/zksync/constants/address.js +4 -1
  51. package/_cjs/zksync/constants/address.js.map +1 -1
  52. package/_cjs/zksync/decorators/publicL1.js +15 -0
  53. package/_cjs/zksync/decorators/publicL1.js.map +1 -0
  54. package/_cjs/zksync/decorators/publicL2.js +43 -0
  55. package/_cjs/zksync/decorators/publicL2.js.map +1 -0
  56. package/_cjs/zksync/errors/token-is-eth.js +17 -0
  57. package/_cjs/zksync/errors/token-is-eth.js.map +1 -0
  58. package/_cjs/zksync/index.js +41 -3
  59. package/_cjs/zksync/index.js.map +1 -1
  60. package/_cjs/zksync/types/eip1193.js +3 -0
  61. package/_cjs/zksync/types/eip1193.js.map +1 -0
  62. package/_cjs/zksync/types/proof.js +3 -0
  63. package/_cjs/zksync/types/proof.js.map +1 -0
  64. package/_cjs/zksync/utils/camelCaseKeys.js +17 -0
  65. package/_cjs/zksync/utils/camelCaseKeys.js.map +1 -0
  66. package/_cjs/zksync/utils/isEth.js +17 -0
  67. package/_cjs/zksync/utils/isEth.js.map +1 -0
  68. package/_cjs/zksync/utils/paymaster/getApprovalBasedPaymasterInput.js +4 -3
  69. package/_cjs/zksync/utils/paymaster/getApprovalBasedPaymasterInput.js.map +1 -1
  70. package/_cjs/zksync/utils/paymaster/getGeneralPaymasterInput.js +4 -3
  71. package/_cjs/zksync/utils/paymaster/getGeneralPaymasterInput.js.map +1 -1
  72. package/_esm/actions/public/waitForTransactionReceipt.js +9 -3
  73. package/_esm/actions/public/waitForTransactionReceipt.js.map +1 -1
  74. package/_esm/celo/formatters.js +2 -11
  75. package/_esm/celo/formatters.js.map +1 -1
  76. package/_esm/celo/serializers.js +1 -29
  77. package/_esm/celo/serializers.js.map +1 -1
  78. package/_esm/celo/utils.js +1 -15
  79. package/_esm/celo/utils.js.map +1 -1
  80. package/_esm/errors/version.js +1 -1
  81. package/_esm/errors/version.js.map +1 -1
  82. package/_esm/zksync/actions/estimateFee.js +22 -0
  83. package/_esm/zksync/actions/estimateFee.js.map +1 -0
  84. package/_esm/zksync/actions/estimateGasL1ToL2.js +16 -0
  85. package/_esm/zksync/actions/estimateGasL1ToL2.js.map +1 -0
  86. package/_esm/zksync/actions/getAllBalances.js +15 -0
  87. package/_esm/zksync/actions/getAllBalances.js.map +1 -0
  88. package/_esm/zksync/actions/getBaseTokenL1Address.js +5 -0
  89. package/_esm/zksync/actions/getBaseTokenL1Address.js.map +1 -0
  90. package/_esm/zksync/actions/getBlockDetails.js +8 -0
  91. package/_esm/zksync/actions/getBlockDetails.js.map +1 -0
  92. package/_esm/zksync/actions/getBridgehubContractAddress.js +5 -0
  93. package/_esm/zksync/actions/getBridgehubContractAddress.js.map +1 -0
  94. package/_esm/zksync/actions/getDefaultBridgeAddresses.js +9 -0
  95. package/_esm/zksync/actions/getDefaultBridgeAddresses.js.map +1 -0
  96. package/_esm/zksync/actions/getL1Allowance.js +15 -0
  97. package/_esm/zksync/actions/getL1Allowance.js.map +1 -0
  98. package/_esm/zksync/actions/getL1Balance.js +19 -0
  99. package/_esm/zksync/actions/getL1Balance.js.map +1 -0
  100. package/_esm/zksync/actions/getL1BatchBlockRange.js +9 -0
  101. package/_esm/zksync/actions/getL1BatchBlockRange.js.map +1 -0
  102. package/_esm/zksync/actions/getL1BatchDetails.js +8 -0
  103. package/_esm/zksync/actions/getL1BatchDetails.js.map +1 -0
  104. package/_esm/zksync/actions/getL1BatchNumber.js +5 -0
  105. package/_esm/zksync/actions/getL1BatchNumber.js.map +1 -0
  106. package/_esm/zksync/actions/getL1ChainId.js +5 -0
  107. package/_esm/zksync/actions/getL1ChainId.js.map +1 -0
  108. package/_esm/zksync/actions/getL1TokenBalance.js +20 -0
  109. package/_esm/zksync/actions/getL1TokenBalance.js.map +1 -0
  110. package/_esm/zksync/actions/getLogProof.js +8 -0
  111. package/_esm/zksync/actions/getLogProof.js.map +1 -0
  112. package/_esm/zksync/actions/getMainContractAddress.js +5 -0
  113. package/_esm/zksync/actions/getMainContractAddress.js.map +1 -0
  114. package/_esm/zksync/actions/getRawBlockTransactions.js +9 -0
  115. package/_esm/zksync/actions/getRawBlockTransactions.js.map +1 -0
  116. package/_esm/zksync/actions/getTestnetPaymasterAddress.js +5 -0
  117. package/_esm/zksync/actions/getTestnetPaymasterAddress.js.map +1 -0
  118. package/_esm/zksync/actions/getTransactionDetails.js +8 -0
  119. package/_esm/zksync/actions/getTransactionDetails.js.map +1 -0
  120. package/_esm/zksync/constants/address.js +3 -0
  121. package/_esm/zksync/constants/address.js.map +1 -1
  122. package/_esm/zksync/decorators/publicL1.js +12 -0
  123. package/_esm/zksync/decorators/publicL1.js.map +1 -0
  124. package/_esm/zksync/decorators/publicL2.js +39 -0
  125. package/_esm/zksync/decorators/publicL2.js.map +1 -0
  126. package/_esm/zksync/errors/token-is-eth.js +13 -0
  127. package/_esm/zksync/errors/token-is-eth.js.map +1 -0
  128. package/_esm/zksync/index.js +20 -1
  129. package/_esm/zksync/index.js.map +1 -1
  130. package/_esm/zksync/types/eip1193.js +2 -0
  131. package/_esm/zksync/types/eip1193.js.map +1 -0
  132. package/_esm/zksync/types/proof.js +2 -0
  133. package/_esm/zksync/types/proof.js.map +1 -0
  134. package/_esm/zksync/utils/camelCaseKeys.js +13 -0
  135. package/_esm/zksync/utils/camelCaseKeys.js.map +1 -0
  136. package/_esm/zksync/utils/isEth.js +13 -0
  137. package/_esm/zksync/utils/isEth.js.map +1 -0
  138. package/_esm/zksync/utils/paymaster/getApprovalBasedPaymasterInput.js +2 -1
  139. package/_esm/zksync/utils/paymaster/getApprovalBasedPaymasterInput.js.map +1 -1
  140. package/_esm/zksync/utils/paymaster/getGeneralPaymasterInput.js +2 -1
  141. package/_esm/zksync/utils/paymaster/getGeneralPaymasterInput.js.map +1 -1
  142. package/_types/actions/public/waitForTransactionReceipt.d.ts.map +1 -1
  143. package/_types/celo/chainConfig.d.ts +58 -526
  144. package/_types/celo/chainConfig.d.ts.map +1 -1
  145. package/_types/celo/formatters.d.ts +29 -263
  146. package/_types/celo/formatters.d.ts.map +1 -1
  147. package/_types/celo/index.d.ts +1 -1
  148. package/_types/celo/index.d.ts.map +1 -1
  149. package/_types/celo/serializers.d.ts +2 -3
  150. package/_types/celo/serializers.d.ts.map +1 -1
  151. package/_types/celo/types.d.ts +5 -29
  152. package/_types/celo/types.d.ts.map +1 -1
  153. package/_types/celo/utils.d.ts +1 -2
  154. package/_types/celo/utils.d.ts.map +1 -1
  155. package/_types/chains/definitions/celo.d.ts +58 -526
  156. package/_types/chains/definitions/celo.d.ts.map +1 -1
  157. package/_types/chains/definitions/celoAlfajores.d.ts +58 -526
  158. package/_types/chains/definitions/celoAlfajores.d.ts.map +1 -1
  159. package/_types/chains/definitions/lisk.d.ts +8 -8
  160. package/_types/chains/definitions/playfiAlbireo.d.ts +8 -8
  161. package/_types/chains/definitions/zkSync.d.ts +8 -8
  162. package/_types/chains/definitions/zkSyncInMemoryNode.d.ts +8 -8
  163. package/_types/chains/definitions/zkSyncLocalNode.d.ts +8 -8
  164. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +8 -8
  165. package/_types/chains/definitions/zkSyncTestnet.d.ts +8 -8
  166. package/_types/chains/index.d.ts +1 -1
  167. package/_types/chains/index.d.ts.map +1 -1
  168. package/_types/errors/version.d.ts +1 -1
  169. package/_types/errors/version.d.ts.map +1 -1
  170. package/_types/zksync/actions/estimateFee.d.ts +11 -0
  171. package/_types/zksync/actions/estimateFee.d.ts.map +1 -0
  172. package/_types/zksync/actions/estimateGasL1ToL2.d.ts +10 -0
  173. package/_types/zksync/actions/estimateGasL1ToL2.d.ts.map +1 -0
  174. package/_types/zksync/actions/getAllBalances.d.ts +12 -0
  175. package/_types/zksync/actions/getAllBalances.d.ts.map +1 -0
  176. package/_types/zksync/actions/getBaseTokenL1Address.d.ts +9 -0
  177. package/_types/zksync/actions/getBaseTokenL1Address.d.ts.map +1 -0
  178. package/_types/zksync/actions/getBlockDetails.d.ts +10 -0
  179. package/_types/zksync/actions/getBlockDetails.d.ts.map +1 -0
  180. package/_types/zksync/actions/getBridgehubContractAddress.d.ts +9 -0
  181. package/_types/zksync/actions/getBridgehubContractAddress.d.ts.map +1 -0
  182. package/_types/zksync/actions/getDefaultBridgeAddresses.d.ts +9 -0
  183. package/_types/zksync/actions/getDefaultBridgeAddresses.d.ts.map +1 -0
  184. package/_types/zksync/actions/getL1Allowance.d.ts +17 -0
  185. package/_types/zksync/actions/getL1Allowance.d.ts.map +1 -0
  186. package/_types/zksync/actions/getL1Balance.d.ts +23 -0
  187. package/_types/zksync/actions/getL1Balance.d.ts.map +1 -0
  188. package/_types/zksync/actions/getL1BatchBlockRange.d.ts +11 -0
  189. package/_types/zksync/actions/getL1BatchBlockRange.d.ts.map +1 -0
  190. package/_types/zksync/actions/getL1BatchDetails.d.ts +10 -0
  191. package/_types/zksync/actions/getL1BatchDetails.d.ts.map +1 -0
  192. package/_types/zksync/actions/getL1BatchNumber.d.ts +9 -0
  193. package/_types/zksync/actions/getL1BatchNumber.d.ts.map +1 -0
  194. package/_types/zksync/actions/getL1ChainId.d.ts +9 -0
  195. package/_types/zksync/actions/getL1ChainId.d.ts.map +1 -0
  196. package/_types/zksync/actions/getL1TokenBalance.d.ts +24 -0
  197. package/_types/zksync/actions/getL1TokenBalance.d.ts.map +1 -0
  198. package/_types/zksync/actions/getLogProof.d.ts +14 -0
  199. package/_types/zksync/actions/getLogProof.d.ts.map +1 -0
  200. package/_types/zksync/actions/getMainContractAddress.d.ts +9 -0
  201. package/_types/zksync/actions/getMainContractAddress.d.ts.map +1 -0
  202. package/_types/zksync/actions/getRawBlockTransactions.d.ts +11 -0
  203. package/_types/zksync/actions/getRawBlockTransactions.d.ts.map +1 -0
  204. package/_types/zksync/actions/getTestnetPaymasterAddress.d.ts +9 -0
  205. package/_types/zksync/actions/getTestnetPaymasterAddress.d.ts.map +1 -0
  206. package/_types/zksync/actions/getTransactionDetails.d.ts +13 -0
  207. package/_types/zksync/actions/getTransactionDetails.d.ts.map +1 -0
  208. package/_types/zksync/chainConfig.d.ts +8 -8
  209. package/_types/zksync/constants/address.d.ts +3 -0
  210. package/_types/zksync/constants/address.d.ts.map +1 -1
  211. package/_types/zksync/decorators/publicL1.d.ts +145 -0
  212. package/_types/zksync/decorators/publicL1.d.ts.map +1 -0
  213. package/_types/zksync/decorators/publicL2.d.ts +322 -0
  214. package/_types/zksync/decorators/publicL2.d.ts.map +1 -0
  215. package/_types/zksync/errors/token-is-eth.d.ts +9 -0
  216. package/_types/zksync/errors/token-is-eth.d.ts.map +1 -0
  217. package/_types/zksync/formatters.d.ts +8 -8
  218. package/_types/zksync/index.d.ts +21 -2
  219. package/_types/zksync/index.d.ts.map +1 -1
  220. package/_types/zksync/types/block.d.ts +30 -1
  221. package/_types/zksync/types/block.d.ts.map +1 -1
  222. package/_types/zksync/types/contract.d.ts +6 -0
  223. package/_types/zksync/types/contract.d.ts.map +1 -1
  224. package/_types/zksync/types/eip1193.d.ts +152 -0
  225. package/_types/zksync/types/eip1193.d.ts.map +1 -0
  226. package/_types/zksync/types/fee.d.ts +6 -0
  227. package/_types/zksync/types/fee.d.ts.map +1 -1
  228. package/_types/zksync/types/proof.d.ts +7 -0
  229. package/_types/zksync/types/proof.d.ts.map +1 -0
  230. package/_types/zksync/types/transaction.d.ts +65 -5
  231. package/_types/zksync/types/transaction.d.ts.map +1 -1
  232. package/_types/zksync/utils/camelCaseKeys.d.ts +2 -0
  233. package/_types/zksync/utils/camelCaseKeys.d.ts.map +1 -0
  234. package/_types/zksync/utils/isEth.d.ts +3 -0
  235. package/_types/zksync/utils/isEth.d.ts.map +1 -0
  236. package/_types/zksync/utils/paymaster/getApprovalBasedPaymasterInput.d.ts +1 -1
  237. package/_types/zksync/utils/paymaster/getApprovalBasedPaymasterInput.d.ts.map +1 -1
  238. package/_types/zksync/utils/paymaster/getGeneralPaymasterInput.d.ts +1 -1
  239. package/_types/zksync/utils/paymaster/getGeneralPaymasterInput.d.ts.map +1 -1
  240. package/actions/public/waitForTransactionReceipt.ts +13 -4
  241. package/celo/formatters.ts +3 -11
  242. package/celo/index.ts +0 -2
  243. package/celo/serializers.ts +2 -50
  244. package/celo/types.ts +3 -38
  245. package/celo/utils.ts +1 -24
  246. package/chains/index.ts +0 -2
  247. package/errors/version.ts +1 -1
  248. package/package.json +1 -1
  249. package/zksync/actions/estimateFee.ts +46 -0
  250. package/zksync/actions/estimateGasL1ToL2.ts +38 -0
  251. package/zksync/actions/getAllBalances.ts +33 -0
  252. package/zksync/actions/getBaseTokenL1Address.ts +18 -0
  253. package/zksync/actions/getBlockDetails.ts +27 -0
  254. package/zksync/actions/getBridgehubContractAddress.ts +18 -0
  255. package/zksync/actions/getDefaultBridgeAddresses.ts +22 -0
  256. package/zksync/actions/getL1Allowance.ts +43 -0
  257. package/zksync/actions/getL1Balance.ts +68 -0
  258. package/zksync/actions/getL1BatchBlockRange.ts +26 -0
  259. package/zksync/actions/getL1BatchDetails.ts +27 -0
  260. package/zksync/actions/getL1BatchNumber.ts +18 -0
  261. package/zksync/actions/getL1ChainId.ts +18 -0
  262. package/zksync/actions/getL1TokenBalance.ts +63 -0
  263. package/zksync/actions/getLogProof.ts +28 -0
  264. package/zksync/actions/getMainContractAddress.ts +18 -0
  265. package/zksync/actions/getRawBlockTransactions.ts +26 -0
  266. package/zksync/actions/getTestnetPaymasterAddress.ts +18 -0
  267. package/zksync/actions/getTransactionDetails.ts +27 -0
  268. package/zksync/constants/address.ts +9 -0
  269. package/zksync/decorators/publicL1.ts +180 -0
  270. package/zksync/decorators/publicL2.ts +443 -0
  271. package/zksync/errors/token-is-eth.ts +16 -0
  272. package/zksync/index.ts +85 -6
  273. package/zksync/types/block.ts +37 -1
  274. package/zksync/types/contract.ts +8 -0
  275. package/zksync/types/eip1193.ts +155 -0
  276. package/zksync/types/fee.ts +7 -0
  277. package/zksync/types/proof.ts +7 -0
  278. package/zksync/types/transaction.ts +84 -10
  279. package/zksync/utils/camelCaseKeys.ts +11 -0
  280. package/zksync/utils/isEth.ts +20 -0
  281. package/zksync/utils/paymaster/getApprovalBasedPaymasterInput.ts +5 -2
  282. package/zksync/utils/paymaster/getGeneralPaymasterInput.ts +5 -2
@@ -856,8 +856,8 @@ export declare const chainConfig: {
856
856
  yParity?: undefined;
857
857
  type: "legacy";
858
858
  feeCurrency: `0x${string}` | null;
859
- gatewayFee: bigint | null;
860
- gatewayFeeRecipient: `0x${string}` | null;
859
+ gatewayFee?: undefined;
860
+ gatewayFeeRecipient?: undefined;
861
861
  } | {
862
862
  r: `0x${string}`;
863
863
  s: `0x${string}`;
@@ -937,8 +937,8 @@ export declare const chainConfig: {
937
937
  chainId: number;
938
938
  type: "eip2930";
939
939
  feeCurrency: `0x${string}` | null;
940
- gatewayFee: bigint | null;
941
- gatewayFeeRecipient: `0x${string}` | null;
940
+ gatewayFee?: undefined;
941
+ gatewayFeeRecipient?: undefined;
942
942
  } | {
943
943
  blockHash: `0x${string}` | null;
944
944
  blockNumber: bigint | null;
@@ -964,8 +964,8 @@ export declare const chainConfig: {
964
964
  chainId: number;
965
965
  type: "eip1559";
966
966
  feeCurrency: `0x${string}` | null;
967
- gatewayFee: bigint | null;
968
- gatewayFeeRecipient: `0x${string}` | null;
967
+ gatewayFee?: undefined;
968
+ gatewayFeeRecipient?: undefined;
969
969
  } | {
970
970
  blockHash: `0x${string}` | null;
971
971
  blockNumber: bigint | null;
@@ -1045,8 +1045,8 @@ export declare const chainConfig: {
1045
1045
  chainId: number;
1046
1046
  type: "eip2930";
1047
1047
  feeCurrency: `0x${string}` | null;
1048
- gatewayFee: bigint | null;
1049
- gatewayFeeRecipient: `0x${string}` | null;
1048
+ gatewayFee?: undefined;
1049
+ gatewayFeeRecipient?: undefined;
1050
1050
  } | {
1051
1051
  blockHash: `0x${string}` | null;
1052
1052
  blockNumber: bigint | null;
@@ -1072,8 +1072,8 @@ export declare const chainConfig: {
1072
1072
  chainId: number;
1073
1073
  type: "eip1559";
1074
1074
  feeCurrency: `0x${string}` | null;
1075
- gatewayFee: bigint | null;
1076
- gatewayFeeRecipient: `0x${string}` | null;
1075
+ gatewayFee?: undefined;
1076
+ gatewayFeeRecipient?: undefined;
1077
1077
  } | {
1078
1078
  blockHash: `0x${string}` | null;
1079
1079
  blockNumber: bigint | null;
@@ -1153,8 +1153,8 @@ export declare const chainConfig: {
1153
1153
  chainId: number;
1154
1154
  type: "eip4844";
1155
1155
  feeCurrency: `0x${string}` | null;
1156
- gatewayFee: bigint | null;
1157
- gatewayFeeRecipient: `0x${string}` | null;
1156
+ gatewayFee?: undefined;
1157
+ gatewayFeeRecipient?: undefined;
1158
1158
  } | {
1159
1159
  blockHash: `0x${string}` | null;
1160
1160
  blockNumber: bigint | null;
@@ -1227,7 +1227,7 @@ export declare const chainConfig: {
1227
1227
  maxPriorityFeePerGas?: bigint | undefined;
1228
1228
  accessList?: import("../index.js").AccessList | undefined;
1229
1229
  blobs?: undefined;
1230
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1230
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1231
1231
  blobVersionedHashes?: undefined;
1232
1232
  kzg?: undefined;
1233
1233
  sidecars?: undefined;
@@ -1250,8 +1250,6 @@ export declare const chainConfig: {
1250
1250
  sidecars?: undefined;
1251
1251
  } & {
1252
1252
  feeCurrency?: `0x${string}` | undefined;
1253
- gatewayFee?: bigint | undefined;
1254
- gatewayFeeRecipient?: `0x${string}` | undefined;
1255
1253
  }) | ({
1256
1254
  data?: `0x${string}` | undefined;
1257
1255
  from?: `0x${string}`;
@@ -1265,7 +1263,7 @@ export declare const chainConfig: {
1265
1263
  maxPriorityFeePerGas?: bigint | undefined;
1266
1264
  accessList?: import("../index.js").AccessList | undefined;
1267
1265
  blobs?: undefined;
1268
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1266
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1269
1267
  blobVersionedHashes?: undefined;
1270
1268
  kzg?: undefined;
1271
1269
  sidecars?: undefined;
@@ -1288,8 +1286,6 @@ export declare const chainConfig: {
1288
1286
  sidecars?: undefined;
1289
1287
  } & {
1290
1288
  feeCurrency?: `0x${string}` | undefined;
1291
- gatewayFee?: bigint | undefined;
1292
- gatewayFeeRecipient?: `0x${string}` | undefined;
1293
1289
  }) | ({
1294
1290
  data?: `0x${string}` | undefined;
1295
1291
  from?: `0x${string}`;
@@ -1303,7 +1299,7 @@ export declare const chainConfig: {
1303
1299
  maxPriorityFeePerGas?: bigint | undefined;
1304
1300
  accessList?: import("../index.js").AccessList | undefined;
1305
1301
  blobs?: undefined;
1306
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1302
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1307
1303
  blobVersionedHashes?: undefined;
1308
1304
  kzg?: undefined;
1309
1305
  sidecars?: undefined;
@@ -1326,8 +1322,6 @@ export declare const chainConfig: {
1326
1322
  sidecars?: undefined;
1327
1323
  } & {
1328
1324
  feeCurrency?: `0x${string}` | undefined;
1329
- gatewayFee?: bigint | undefined;
1330
- gatewayFeeRecipient?: `0x${string}` | undefined;
1331
1325
  }) | ({
1332
1326
  data?: `0x${string}` | undefined;
1333
1327
  from?: `0x${string}`;
@@ -1341,38 +1335,13 @@ export declare const chainConfig: {
1341
1335
  maxPriorityFeePerGas?: bigint | undefined;
1342
1336
  accessList?: import("../index.js").AccessList | undefined;
1343
1337
  blobs?: undefined;
1344
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1338
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1345
1339
  blobVersionedHashes?: undefined;
1346
1340
  kzg?: undefined;
1347
1341
  sidecars?: undefined;
1348
1342
  } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1349
1343
  accessList?: import("../index.js").AccessList | undefined;
1350
1344
  feeCurrency?: `0x${string}` | undefined;
1351
- gatewayFee?: bigint | undefined;
1352
- gatewayFeeRecipient?: `0x${string}` | undefined;
1353
- type?: "cip42" | undefined;
1354
- }) | ({
1355
- data?: `0x${string}` | undefined;
1356
- from?: `0x${string}`;
1357
- gas?: bigint | undefined;
1358
- nonce?: number | undefined;
1359
- to?: `0x${string}` | null | undefined;
1360
- value?: bigint | undefined;
1361
- gasPrice?: bigint | undefined;
1362
- maxFeePerBlobGas?: bigint | undefined;
1363
- maxFeePerGas?: bigint | undefined;
1364
- maxPriorityFeePerGas?: bigint | undefined;
1365
- accessList?: import("../index.js").AccessList | undefined;
1366
- blobs?: undefined;
1367
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1368
- blobVersionedHashes?: undefined;
1369
- kzg?: undefined;
1370
- sidecars?: undefined;
1371
- } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1372
- accessList?: import("../index.js").AccessList | undefined;
1373
- feeCurrency?: `0x${string}` | undefined;
1374
- gatewayFee?: undefined;
1375
- gatewayFeeRecipient?: undefined;
1376
1345
  type?: "cip64" | undefined;
1377
1346
  }) | ({
1378
1347
  data?: `0x${string}` | undefined;
@@ -1387,7 +1356,7 @@ export declare const chainConfig: {
1387
1356
  maxPriorityFeePerGas?: bigint | undefined;
1388
1357
  accessList?: import("../index.js").AccessList | undefined;
1389
1358
  blobs?: undefined;
1390
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1359
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1391
1360
  blobVersionedHashes?: undefined;
1392
1361
  kzg?: undefined;
1393
1362
  sidecars?: undefined;
@@ -1410,8 +1379,6 @@ export declare const chainConfig: {
1410
1379
  sidecars?: undefined;
1411
1380
  } & {
1412
1381
  feeCurrency?: `0x${string}` | undefined;
1413
- gatewayFee?: bigint | undefined;
1414
- gatewayFeeRecipient?: `0x${string}` | undefined;
1415
1382
  }) | ({
1416
1383
  data?: `0x${string}` | undefined;
1417
1384
  from?: `0x${string}`;
@@ -1425,7 +1392,7 @@ export declare const chainConfig: {
1425
1392
  maxPriorityFeePerGas?: bigint | undefined;
1426
1393
  accessList?: import("../index.js").AccessList | undefined;
1427
1394
  blobs?: undefined;
1428
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1395
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1429
1396
  blobVersionedHashes?: undefined;
1430
1397
  kzg?: undefined;
1431
1398
  sidecars?: undefined;
@@ -1448,8 +1415,6 @@ export declare const chainConfig: {
1448
1415
  sidecars?: undefined;
1449
1416
  } & {
1450
1417
  feeCurrency?: `0x${string}` | undefined;
1451
- gatewayFee?: bigint | undefined;
1452
- gatewayFeeRecipient?: `0x${string}` | undefined;
1453
1418
  }) | ({
1454
1419
  data?: `0x${string}` | undefined;
1455
1420
  from?: `0x${string}`;
@@ -1463,7 +1428,7 @@ export declare const chainConfig: {
1463
1428
  maxPriorityFeePerGas?: bigint | undefined;
1464
1429
  accessList?: import("../index.js").AccessList | undefined;
1465
1430
  blobs?: undefined;
1466
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1431
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1467
1432
  blobVersionedHashes?: undefined;
1468
1433
  kzg?: undefined;
1469
1434
  sidecars?: undefined;
@@ -1486,31 +1451,6 @@ export declare const chainConfig: {
1486
1451
  sidecars?: undefined;
1487
1452
  } & {
1488
1453
  feeCurrency?: `0x${string}` | undefined;
1489
- gatewayFee?: bigint | undefined;
1490
- gatewayFeeRecipient?: `0x${string}` | undefined;
1491
- }) | ({
1492
- data?: `0x${string}` | undefined;
1493
- from?: `0x${string}`;
1494
- gas?: bigint | undefined;
1495
- nonce?: number | undefined;
1496
- to?: `0x${string}` | null | undefined;
1497
- value?: bigint | undefined;
1498
- gasPrice?: bigint | undefined;
1499
- maxFeePerBlobGas?: bigint | undefined;
1500
- maxFeePerGas?: bigint | undefined;
1501
- maxPriorityFeePerGas?: bigint | undefined;
1502
- accessList?: import("../index.js").AccessList | undefined;
1503
- blobs?: undefined;
1504
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1505
- blobVersionedHashes?: undefined;
1506
- kzg?: undefined;
1507
- sidecars?: undefined;
1508
- } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1509
- accessList?: import("../index.js").AccessList | undefined;
1510
- feeCurrency?: `0x${string}` | undefined;
1511
- gatewayFee?: bigint | undefined;
1512
- gatewayFeeRecipient?: `0x${string}` | undefined;
1513
- type?: "cip42" | undefined;
1514
1454
  }) | ({
1515
1455
  data?: `0x${string}` | undefined;
1516
1456
  from?: `0x${string}`;
@@ -1524,15 +1464,13 @@ export declare const chainConfig: {
1524
1464
  maxPriorityFeePerGas?: bigint | undefined;
1525
1465
  accessList?: import("../index.js").AccessList | undefined;
1526
1466
  blobs?: undefined;
1527
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1467
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1528
1468
  blobVersionedHashes?: undefined;
1529
1469
  kzg?: undefined;
1530
1470
  sidecars?: undefined;
1531
1471
  } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1532
1472
  accessList?: import("../index.js").AccessList | undefined;
1533
1473
  feeCurrency?: `0x${string}` | undefined;
1534
- gatewayFee?: undefined;
1535
- gatewayFeeRecipient?: undefined;
1536
1474
  type?: "cip64" | undefined;
1537
1475
  }) | ({
1538
1476
  data?: `0x${string}` | undefined;
@@ -1547,7 +1485,7 @@ export declare const chainConfig: {
1547
1485
  maxPriorityFeePerGas?: bigint | undefined;
1548
1486
  accessList?: import("../index.js").AccessList | undefined;
1549
1487
  blobs?: undefined;
1550
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1488
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1551
1489
  blobVersionedHashes?: undefined;
1552
1490
  kzg?: undefined;
1553
1491
  sidecars?: undefined;
@@ -1570,8 +1508,6 @@ export declare const chainConfig: {
1570
1508
  sidecars?: undefined;
1571
1509
  } & {
1572
1510
  feeCurrency?: `0x${string}` | undefined;
1573
- gatewayFee?: bigint | undefined;
1574
- gatewayFeeRecipient?: `0x${string}` | undefined;
1575
1511
  }) | ({
1576
1512
  data?: `0x${string}` | undefined;
1577
1513
  from?: `0x${string}`;
@@ -1585,7 +1521,7 @@ export declare const chainConfig: {
1585
1521
  maxPriorityFeePerGas?: bigint | undefined;
1586
1522
  accessList?: import("../index.js").AccessList | undefined;
1587
1523
  blobs?: undefined;
1588
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1524
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1589
1525
  blobVersionedHashes?: undefined;
1590
1526
  kzg?: undefined;
1591
1527
  sidecars?: undefined;
@@ -1608,8 +1544,6 @@ export declare const chainConfig: {
1608
1544
  sidecars?: undefined;
1609
1545
  } & {
1610
1546
  feeCurrency?: `0x${string}` | undefined;
1611
- gatewayFee?: bigint | undefined;
1612
- gatewayFeeRecipient?: `0x${string}` | undefined;
1613
1547
  }) | ({
1614
1548
  data?: `0x${string}` | undefined;
1615
1549
  from?: `0x${string}`;
@@ -1623,7 +1557,7 @@ export declare const chainConfig: {
1623
1557
  maxPriorityFeePerGas?: bigint | undefined;
1624
1558
  accessList?: import("../index.js").AccessList | undefined;
1625
1559
  blobs?: undefined;
1626
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1560
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1627
1561
  blobVersionedHashes?: undefined;
1628
1562
  kzg?: undefined;
1629
1563
  sidecars?: undefined;
@@ -1646,31 +1580,6 @@ export declare const chainConfig: {
1646
1580
  sidecars?: undefined;
1647
1581
  } & {
1648
1582
  feeCurrency?: `0x${string}` | undefined;
1649
- gatewayFee?: bigint | undefined;
1650
- gatewayFeeRecipient?: `0x${string}` | undefined;
1651
- }) | ({
1652
- data?: `0x${string}` | undefined;
1653
- from?: `0x${string}`;
1654
- gas?: bigint | undefined;
1655
- nonce?: number | undefined;
1656
- to?: `0x${string}` | null | undefined;
1657
- value?: bigint | undefined;
1658
- gasPrice?: bigint | undefined;
1659
- maxFeePerBlobGas?: bigint | undefined;
1660
- maxFeePerGas?: bigint | undefined;
1661
- maxPriorityFeePerGas?: bigint | undefined;
1662
- accessList?: import("../index.js").AccessList | undefined;
1663
- blobs?: undefined;
1664
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1665
- blobVersionedHashes?: undefined;
1666
- kzg?: undefined;
1667
- sidecars?: undefined;
1668
- } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1669
- accessList?: import("../index.js").AccessList | undefined;
1670
- feeCurrency?: `0x${string}` | undefined;
1671
- gatewayFee?: bigint | undefined;
1672
- gatewayFeeRecipient?: `0x${string}` | undefined;
1673
- type?: "cip42" | undefined;
1674
1583
  }) | ({
1675
1584
  data?: `0x${string}` | undefined;
1676
1585
  from?: `0x${string}`;
@@ -1684,15 +1593,13 @@ export declare const chainConfig: {
1684
1593
  maxPriorityFeePerGas?: bigint | undefined;
1685
1594
  accessList?: import("../index.js").AccessList | undefined;
1686
1595
  blobs?: undefined;
1687
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1596
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1688
1597
  blobVersionedHashes?: undefined;
1689
1598
  kzg?: undefined;
1690
1599
  sidecars?: undefined;
1691
1600
  } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1692
1601
  accessList?: import("../index.js").AccessList | undefined;
1693
1602
  feeCurrency?: `0x${string}` | undefined;
1694
- gatewayFee?: undefined;
1695
- gatewayFeeRecipient?: undefined;
1696
1603
  type?: "cip64" | undefined;
1697
1604
  }) | ({
1698
1605
  data?: `0x${string}` | undefined;
@@ -1710,7 +1617,7 @@ export declare const chainConfig: {
1710
1617
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1711
1618
  kzg?: import("../index.js").Kzg | undefined;
1712
1619
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1713
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1620
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1714
1621
  } & {
1715
1622
  data?: `0x${string}` | undefined;
1716
1623
  from: `0x${string}`;
@@ -1730,8 +1637,6 @@ export declare const chainConfig: {
1730
1637
  sidecars?: undefined;
1731
1638
  } & {
1732
1639
  feeCurrency?: `0x${string}` | undefined;
1733
- gatewayFee?: bigint | undefined;
1734
- gatewayFeeRecipient?: `0x${string}` | undefined;
1735
1640
  }) | ({
1736
1641
  data?: `0x${string}` | undefined;
1737
1642
  from?: `0x${string}`;
@@ -1748,7 +1653,7 @@ export declare const chainConfig: {
1748
1653
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1749
1654
  kzg?: import("../index.js").Kzg | undefined;
1750
1655
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1751
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1656
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1752
1657
  } & {
1753
1658
  data?: `0x${string}` | undefined;
1754
1659
  from: `0x${string}`;
@@ -1768,8 +1673,6 @@ export declare const chainConfig: {
1768
1673
  sidecars?: undefined;
1769
1674
  } & {
1770
1675
  feeCurrency?: `0x${string}` | undefined;
1771
- gatewayFee?: bigint | undefined;
1772
- gatewayFeeRecipient?: `0x${string}` | undefined;
1773
1676
  }) | ({
1774
1677
  data?: `0x${string}` | undefined;
1775
1678
  from?: `0x${string}`;
@@ -1786,7 +1689,7 @@ export declare const chainConfig: {
1786
1689
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1787
1690
  kzg?: import("../index.js").Kzg | undefined;
1788
1691
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1789
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1692
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1790
1693
  } & {
1791
1694
  data?: `0x${string}` | undefined;
1792
1695
  from: `0x${string}`;
@@ -1806,8 +1709,6 @@ export declare const chainConfig: {
1806
1709
  sidecars?: undefined;
1807
1710
  } & {
1808
1711
  feeCurrency?: `0x${string}` | undefined;
1809
- gatewayFee?: bigint | undefined;
1810
- gatewayFeeRecipient?: `0x${string}` | undefined;
1811
1712
  }) | ({
1812
1713
  data?: `0x${string}` | undefined;
1813
1714
  from?: `0x${string}`;
@@ -1824,7 +1725,7 @@ export declare const chainConfig: {
1824
1725
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1825
1726
  kzg?: import("../index.js").Kzg | undefined;
1826
1727
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1827
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1728
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1828
1729
  } & {
1829
1730
  data?: `0x${string}` | undefined;
1830
1731
  from: `0x${string}`;
@@ -1844,31 +1745,6 @@ export declare const chainConfig: {
1844
1745
  type?: "eip4844" | undefined;
1845
1746
  } & {
1846
1747
  feeCurrency?: `0x${string}` | undefined;
1847
- gatewayFee?: bigint | undefined;
1848
- gatewayFeeRecipient?: `0x${string}` | undefined;
1849
- }) | ({
1850
- data?: `0x${string}` | undefined;
1851
- from?: `0x${string}`;
1852
- gas?: bigint | undefined;
1853
- nonce?: number | undefined;
1854
- value?: bigint | undefined;
1855
- to?: `0x${string}` | null | undefined;
1856
- gasPrice?: bigint | undefined;
1857
- maxFeePerGas?: bigint | undefined;
1858
- maxPriorityFeePerGas?: bigint | undefined;
1859
- maxFeePerBlobGas?: bigint | undefined;
1860
- accessList?: import("../index.js").AccessList | undefined;
1861
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1862
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1863
- kzg?: import("../index.js").Kzg | undefined;
1864
- sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1865
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1866
- } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1867
- accessList?: import("../index.js").AccessList | undefined;
1868
- feeCurrency?: `0x${string}` | undefined;
1869
- gatewayFee?: bigint | undefined;
1870
- gatewayFeeRecipient?: `0x${string}` | undefined;
1871
- type?: "cip42" | undefined;
1872
1748
  }) | ({
1873
1749
  data?: `0x${string}` | undefined;
1874
1750
  from?: `0x${string}`;
@@ -1885,12 +1761,10 @@ export declare const chainConfig: {
1885
1761
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1886
1762
  kzg?: import("../index.js").Kzg | undefined;
1887
1763
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1888
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1764
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1889
1765
  } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
1890
1766
  accessList?: import("../index.js").AccessList | undefined;
1891
1767
  feeCurrency?: `0x${string}` | undefined;
1892
- gatewayFee?: undefined;
1893
- gatewayFeeRecipient?: undefined;
1894
1768
  type?: "cip64" | undefined;
1895
1769
  })) => ({
1896
1770
  data?: `0x${string}` | undefined;
@@ -1910,8 +1784,6 @@ export declare const chainConfig: {
1910
1784
  kzg?: undefined;
1911
1785
  sidecars?: undefined;
1912
1786
  feeCurrency?: `0x${string}` | undefined;
1913
- gatewayFee?: `0x${string}` | undefined;
1914
- gatewayFeeRecipient?: `0x${string}` | undefined;
1915
1787
  } | {
1916
1788
  data?: `0x${string}` | undefined;
1917
1789
  from: `0x${string}`;
@@ -1930,8 +1802,6 @@ export declare const chainConfig: {
1930
1802
  kzg?: undefined;
1931
1803
  sidecars?: undefined;
1932
1804
  feeCurrency?: `0x${string}` | undefined;
1933
- gatewayFee?: `0x${string}` | undefined;
1934
- gatewayFeeRecipient?: `0x${string}` | undefined;
1935
1805
  } | {
1936
1806
  data?: `0x${string}` | undefined;
1937
1807
  from: `0x${string}`;
@@ -1950,28 +1820,6 @@ export declare const chainConfig: {
1950
1820
  kzg?: undefined;
1951
1821
  sidecars?: undefined;
1952
1822
  feeCurrency?: `0x${string}` | undefined;
1953
- gatewayFee?: `0x${string}` | undefined;
1954
- gatewayFeeRecipient?: `0x${string}` | undefined;
1955
- } | {
1956
- data?: `0x${string}` | undefined;
1957
- from: `0x${string}`;
1958
- gas?: `0x${string}` | undefined;
1959
- nonce?: `0x${string}` | undefined;
1960
- to?: `0x${string}` | null | undefined;
1961
- value?: `0x${string}` | undefined;
1962
- gasPrice?: undefined;
1963
- maxFeePerBlobGas?: undefined;
1964
- maxFeePerGas?: `0x${string}` | undefined;
1965
- maxPriorityFeePerGas?: `0x${string}` | undefined;
1966
- accessList?: import("../index.js").AccessList | undefined;
1967
- blobs?: undefined;
1968
- type?: "0x7c" | undefined;
1969
- blobVersionedHashes?: undefined;
1970
- kzg?: undefined;
1971
- sidecars?: undefined;
1972
- feeCurrency?: `0x${string}` | undefined;
1973
- gatewayFee?: `0x${string}` | undefined;
1974
- gatewayFeeRecipient?: `0x${string}` | undefined;
1975
1823
  } | {
1976
1824
  data?: `0x${string}` | undefined;
1977
1825
  from: `0x${string}`;
@@ -1990,8 +1838,6 @@ export declare const chainConfig: {
1990
1838
  kzg?: undefined;
1991
1839
  sidecars?: undefined;
1992
1840
  feeCurrency?: `0x${string}` | undefined;
1993
- gatewayFee?: undefined;
1994
- gatewayFeeRecipient?: undefined;
1995
1841
  } | {
1996
1842
  data?: `0x${string}` | undefined;
1997
1843
  from: `0x${string}`;
@@ -2010,8 +1856,6 @@ export declare const chainConfig: {
2010
1856
  kzg?: undefined;
2011
1857
  sidecars?: undefined;
2012
1858
  feeCurrency?: `0x${string}` | undefined;
2013
- gatewayFee?: `0x${string}` | undefined;
2014
- gatewayFeeRecipient?: `0x${string}` | undefined;
2015
1859
  } | {
2016
1860
  data?: `0x${string}` | undefined;
2017
1861
  from: `0x${string}`;
@@ -2030,8 +1874,6 @@ export declare const chainConfig: {
2030
1874
  kzg?: undefined;
2031
1875
  sidecars?: undefined;
2032
1876
  feeCurrency?: `0x${string}` | undefined;
2033
- gatewayFee?: `0x${string}` | undefined;
2034
- gatewayFeeRecipient?: `0x${string}` | undefined;
2035
1877
  } | {
2036
1878
  data?: `0x${string}` | undefined;
2037
1879
  from: `0x${string}`;
@@ -2050,28 +1892,6 @@ export declare const chainConfig: {
2050
1892
  kzg?: undefined;
2051
1893
  sidecars?: undefined;
2052
1894
  feeCurrency?: `0x${string}` | undefined;
2053
- gatewayFee?: `0x${string}` | undefined;
2054
- gatewayFeeRecipient?: `0x${string}` | undefined;
2055
- } | {
2056
- data?: `0x${string}` | undefined;
2057
- from: `0x${string}`;
2058
- gas?: `0x${string}` | undefined;
2059
- nonce?: `0x${string}` | undefined;
2060
- to?: `0x${string}` | null | undefined;
2061
- value?: `0x${string}` | undefined;
2062
- gasPrice?: undefined;
2063
- maxFeePerBlobGas?: undefined;
2064
- maxFeePerGas?: `0x${string}` | undefined;
2065
- maxPriorityFeePerGas?: `0x${string}` | undefined;
2066
- accessList?: import("../index.js").AccessList | undefined;
2067
- blobs?: undefined;
2068
- type?: "0x7c" | undefined;
2069
- blobVersionedHashes?: undefined;
2070
- kzg?: undefined;
2071
- sidecars?: undefined;
2072
- feeCurrency?: `0x${string}` | undefined;
2073
- gatewayFee?: `0x${string}` | undefined;
2074
- gatewayFeeRecipient?: `0x${string}` | undefined;
2075
1895
  } | {
2076
1896
  data?: `0x${string}` | undefined;
2077
1897
  from: `0x${string}`;
@@ -2090,8 +1910,6 @@ export declare const chainConfig: {
2090
1910
  kzg?: undefined;
2091
1911
  sidecars?: undefined;
2092
1912
  feeCurrency?: `0x${string}` | undefined;
2093
- gatewayFee?: undefined;
2094
- gatewayFeeRecipient?: undefined;
2095
1913
  } | {
2096
1914
  data?: `0x${string}` | undefined;
2097
1915
  from: `0x${string}`;
@@ -2110,8 +1928,6 @@ export declare const chainConfig: {
2110
1928
  kzg?: undefined;
2111
1929
  sidecars?: undefined;
2112
1930
  feeCurrency?: `0x${string}` | undefined;
2113
- gatewayFee?: `0x${string}` | undefined;
2114
- gatewayFeeRecipient?: `0x${string}` | undefined;
2115
1931
  } | {
2116
1932
  data?: `0x${string}` | undefined;
2117
1933
  from: `0x${string}`;
@@ -2130,8 +1946,6 @@ export declare const chainConfig: {
2130
1946
  kzg?: undefined;
2131
1947
  sidecars?: undefined;
2132
1948
  feeCurrency?: `0x${string}` | undefined;
2133
- gatewayFee?: `0x${string}` | undefined;
2134
- gatewayFeeRecipient?: `0x${string}` | undefined;
2135
1949
  } | {
2136
1950
  data?: `0x${string}` | undefined;
2137
1951
  from: `0x${string}`;
@@ -2150,28 +1964,6 @@ export declare const chainConfig: {
2150
1964
  kzg?: undefined;
2151
1965
  sidecars?: undefined;
2152
1966
  feeCurrency?: `0x${string}` | undefined;
2153
- gatewayFee?: `0x${string}` | undefined;
2154
- gatewayFeeRecipient?: `0x${string}` | undefined;
2155
- } | {
2156
- data?: `0x${string}` | undefined;
2157
- from: `0x${string}`;
2158
- gas?: `0x${string}` | undefined;
2159
- nonce?: `0x${string}` | undefined;
2160
- to?: `0x${string}` | null | undefined;
2161
- value?: `0x${string}` | undefined;
2162
- gasPrice?: undefined;
2163
- maxFeePerBlobGas?: undefined;
2164
- maxFeePerGas?: `0x${string}` | undefined;
2165
- maxPriorityFeePerGas?: `0x${string}` | undefined;
2166
- accessList?: import("../index.js").AccessList | undefined;
2167
- blobs?: undefined;
2168
- type?: "0x7c" | undefined;
2169
- blobVersionedHashes?: undefined;
2170
- kzg?: undefined;
2171
- sidecars?: undefined;
2172
- feeCurrency?: `0x${string}` | undefined;
2173
- gatewayFee?: `0x${string}` | undefined;
2174
- gatewayFeeRecipient?: `0x${string}` | undefined;
2175
1967
  } | {
2176
1968
  data?: `0x${string}` | undefined;
2177
1969
  from: `0x${string}`;
@@ -2190,8 +1982,6 @@ export declare const chainConfig: {
2190
1982
  kzg?: undefined;
2191
1983
  sidecars?: undefined;
2192
1984
  feeCurrency?: `0x${string}` | undefined;
2193
- gatewayFee?: undefined;
2194
- gatewayFeeRecipient?: undefined;
2195
1985
  } | {
2196
1986
  data?: `0x${string}` | undefined;
2197
1987
  from: `0x${string}`;
@@ -2210,28 +2000,6 @@ export declare const chainConfig: {
2210
2000
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
2211
2001
  type?: "0x3" | undefined;
2212
2002
  feeCurrency?: `0x${string}` | undefined;
2213
- gatewayFee?: `0x${string}` | undefined;
2214
- gatewayFeeRecipient?: `0x${string}` | undefined;
2215
- } | {
2216
- data?: `0x${string}` | undefined;
2217
- from: `0x${string}`;
2218
- gas?: `0x${string}` | undefined;
2219
- nonce?: `0x${string}` | undefined;
2220
- value?: `0x${string}` | undefined;
2221
- to: `0x${string}` | null | undefined;
2222
- gasPrice?: undefined;
2223
- maxFeePerGas?: `0x${string}` | undefined;
2224
- maxPriorityFeePerGas?: `0x${string}` | undefined;
2225
- maxFeePerBlobGas: undefined;
2226
- accessList?: import("../index.js").AccessList | undefined;
2227
- blobs: readonly `0x${string}`[] | readonly Uint8Array[];
2228
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2229
- kzg?: import("../index.js").Kzg | undefined;
2230
- sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
2231
- type?: "0x7c" | undefined;
2232
- feeCurrency?: `0x${string}` | undefined;
2233
- gatewayFee?: `0x${string}` | undefined;
2234
- gatewayFeeRecipient?: `0x${string}` | undefined;
2235
2003
  } | {
2236
2004
  data?: `0x${string}` | undefined;
2237
2005
  from: `0x${string}`;
@@ -2250,8 +2018,6 @@ export declare const chainConfig: {
2250
2018
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
2251
2019
  type?: "0x7b" | undefined;
2252
2020
  feeCurrency?: `0x${string}` | undefined;
2253
- gatewayFee?: undefined;
2254
- gatewayFeeRecipient?: undefined;
2255
2021
  }) & {};
2256
2022
  type: "transactionRequest";
2257
2023
  };
@@ -3116,8 +2882,8 @@ export declare const chainConfig: {
3116
2882
  yParity?: undefined;
3117
2883
  type: "legacy";
3118
2884
  feeCurrency: `0x${string}` | null;
3119
- gatewayFee: bigint | null;
3120
- gatewayFeeRecipient: `0x${string}` | null;
2885
+ gatewayFee?: undefined;
2886
+ gatewayFeeRecipient?: undefined;
3121
2887
  } | {
3122
2888
  r: `0x${string}`;
3123
2889
  s: `0x${string}`;
@@ -3197,8 +2963,8 @@ export declare const chainConfig: {
3197
2963
  chainId: number;
3198
2964
  type: "eip2930";
3199
2965
  feeCurrency: `0x${string}` | null;
3200
- gatewayFee: bigint | null;
3201
- gatewayFeeRecipient: `0x${string}` | null;
2966
+ gatewayFee?: undefined;
2967
+ gatewayFeeRecipient?: undefined;
3202
2968
  } | {
3203
2969
  blockHash: `0x${string}` | null;
3204
2970
  blockNumber: bigint | null;
@@ -3224,8 +2990,8 @@ export declare const chainConfig: {
3224
2990
  chainId: number;
3225
2991
  type: "eip1559";
3226
2992
  feeCurrency: `0x${string}` | null;
3227
- gatewayFee: bigint | null;
3228
- gatewayFeeRecipient: `0x${string}` | null;
2993
+ gatewayFee?: undefined;
2994
+ gatewayFeeRecipient?: undefined;
3229
2995
  } | {
3230
2996
  blockHash: `0x${string}` | null;
3231
2997
  blockNumber: bigint | null;
@@ -3305,8 +3071,8 @@ export declare const chainConfig: {
3305
3071
  chainId: number;
3306
3072
  type: "eip2930";
3307
3073
  feeCurrency: `0x${string}` | null;
3308
- gatewayFee: bigint | null;
3309
- gatewayFeeRecipient: `0x${string}` | null;
3074
+ gatewayFee?: undefined;
3075
+ gatewayFeeRecipient?: undefined;
3310
3076
  } | {
3311
3077
  blockHash: `0x${string}` | null;
3312
3078
  blockNumber: bigint | null;
@@ -3332,8 +3098,8 @@ export declare const chainConfig: {
3332
3098
  chainId: number;
3333
3099
  type: "eip1559";
3334
3100
  feeCurrency: `0x${string}` | null;
3335
- gatewayFee: bigint | null;
3336
- gatewayFeeRecipient: `0x${string}` | null;
3101
+ gatewayFee?: undefined;
3102
+ gatewayFeeRecipient?: undefined;
3337
3103
  } | {
3338
3104
  blockHash: `0x${string}` | null;
3339
3105
  blockNumber: bigint | null;
@@ -3413,8 +3179,8 @@ export declare const chainConfig: {
3413
3179
  chainId: number;
3414
3180
  type: "eip4844";
3415
3181
  feeCurrency: `0x${string}` | null;
3416
- gatewayFee: bigint | null;
3417
- gatewayFeeRecipient: `0x${string}` | null;
3182
+ gatewayFee?: undefined;
3183
+ gatewayFeeRecipient?: undefined;
3418
3184
  } | {
3419
3185
  blockHash: `0x${string}` | null;
3420
3186
  blockNumber: bigint | null;
@@ -3487,7 +3253,7 @@ export declare const chainConfig: {
3487
3253
  maxPriorityFeePerGas?: bigint | undefined;
3488
3254
  accessList?: import("../index.js").AccessList | undefined;
3489
3255
  blobs?: undefined;
3490
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3256
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3491
3257
  blobVersionedHashes?: undefined;
3492
3258
  kzg?: undefined;
3493
3259
  sidecars?: undefined;
@@ -3510,8 +3276,6 @@ export declare const chainConfig: {
3510
3276
  sidecars?: undefined;
3511
3277
  } & {
3512
3278
  feeCurrency?: `0x${string}` | undefined;
3513
- gatewayFee?: bigint | undefined;
3514
- gatewayFeeRecipient?: `0x${string}` | undefined;
3515
3279
  }) | ({
3516
3280
  data?: `0x${string}` | undefined;
3517
3281
  from?: `0x${string}`;
@@ -3525,7 +3289,7 @@ export declare const chainConfig: {
3525
3289
  maxPriorityFeePerGas?: bigint | undefined;
3526
3290
  accessList?: import("../index.js").AccessList | undefined;
3527
3291
  blobs?: undefined;
3528
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3292
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3529
3293
  blobVersionedHashes?: undefined;
3530
3294
  kzg?: undefined;
3531
3295
  sidecars?: undefined;
@@ -3548,8 +3312,6 @@ export declare const chainConfig: {
3548
3312
  sidecars?: undefined;
3549
3313
  } & {
3550
3314
  feeCurrency?: `0x${string}` | undefined;
3551
- gatewayFee?: bigint | undefined;
3552
- gatewayFeeRecipient?: `0x${string}` | undefined;
3553
3315
  }) | ({
3554
3316
  data?: `0x${string}` | undefined;
3555
3317
  from?: `0x${string}`;
@@ -3563,7 +3325,7 @@ export declare const chainConfig: {
3563
3325
  maxPriorityFeePerGas?: bigint | undefined;
3564
3326
  accessList?: import("../index.js").AccessList | undefined;
3565
3327
  blobs?: undefined;
3566
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3328
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3567
3329
  blobVersionedHashes?: undefined;
3568
3330
  kzg?: undefined;
3569
3331
  sidecars?: undefined;
@@ -3586,8 +3348,6 @@ export declare const chainConfig: {
3586
3348
  sidecars?: undefined;
3587
3349
  } & {
3588
3350
  feeCurrency?: `0x${string}` | undefined;
3589
- gatewayFee?: bigint | undefined;
3590
- gatewayFeeRecipient?: `0x${string}` | undefined;
3591
3351
  }) | ({
3592
3352
  data?: `0x${string}` | undefined;
3593
3353
  from?: `0x${string}`;
@@ -3601,38 +3361,13 @@ export declare const chainConfig: {
3601
3361
  maxPriorityFeePerGas?: bigint | undefined;
3602
3362
  accessList?: import("../index.js").AccessList | undefined;
3603
3363
  blobs?: undefined;
3604
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3364
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3605
3365
  blobVersionedHashes?: undefined;
3606
3366
  kzg?: undefined;
3607
3367
  sidecars?: undefined;
3608
3368
  } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3609
3369
  accessList?: import("../index.js").AccessList | undefined;
3610
3370
  feeCurrency?: `0x${string}` | undefined;
3611
- gatewayFee?: bigint | undefined;
3612
- gatewayFeeRecipient?: `0x${string}` | undefined;
3613
- type?: "cip42" | undefined;
3614
- }) | ({
3615
- data?: `0x${string}` | undefined;
3616
- from?: `0x${string}`;
3617
- gas?: bigint | undefined;
3618
- nonce?: number | undefined;
3619
- to?: `0x${string}` | null | undefined;
3620
- value?: bigint | undefined;
3621
- gasPrice?: bigint | undefined;
3622
- maxFeePerBlobGas?: bigint | undefined;
3623
- maxFeePerGas?: bigint | undefined;
3624
- maxPriorityFeePerGas?: bigint | undefined;
3625
- accessList?: import("../index.js").AccessList | undefined;
3626
- blobs?: undefined;
3627
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3628
- blobVersionedHashes?: undefined;
3629
- kzg?: undefined;
3630
- sidecars?: undefined;
3631
- } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3632
- accessList?: import("../index.js").AccessList | undefined;
3633
- feeCurrency?: `0x${string}` | undefined;
3634
- gatewayFee?: undefined;
3635
- gatewayFeeRecipient?: undefined;
3636
3371
  type?: "cip64" | undefined;
3637
3372
  }) | ({
3638
3373
  data?: `0x${string}` | undefined;
@@ -3647,7 +3382,7 @@ export declare const chainConfig: {
3647
3382
  maxPriorityFeePerGas?: bigint | undefined;
3648
3383
  accessList?: import("../index.js").AccessList | undefined;
3649
3384
  blobs?: undefined;
3650
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3385
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3651
3386
  blobVersionedHashes?: undefined;
3652
3387
  kzg?: undefined;
3653
3388
  sidecars?: undefined;
@@ -3670,8 +3405,6 @@ export declare const chainConfig: {
3670
3405
  sidecars?: undefined;
3671
3406
  } & {
3672
3407
  feeCurrency?: `0x${string}` | undefined;
3673
- gatewayFee?: bigint | undefined;
3674
- gatewayFeeRecipient?: `0x${string}` | undefined;
3675
3408
  }) | ({
3676
3409
  data?: `0x${string}` | undefined;
3677
3410
  from?: `0x${string}`;
@@ -3685,7 +3418,7 @@ export declare const chainConfig: {
3685
3418
  maxPriorityFeePerGas?: bigint | undefined;
3686
3419
  accessList?: import("../index.js").AccessList | undefined;
3687
3420
  blobs?: undefined;
3688
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3421
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3689
3422
  blobVersionedHashes?: undefined;
3690
3423
  kzg?: undefined;
3691
3424
  sidecars?: undefined;
@@ -3708,8 +3441,6 @@ export declare const chainConfig: {
3708
3441
  sidecars?: undefined;
3709
3442
  } & {
3710
3443
  feeCurrency?: `0x${string}` | undefined;
3711
- gatewayFee?: bigint | undefined;
3712
- gatewayFeeRecipient?: `0x${string}` | undefined;
3713
3444
  }) | ({
3714
3445
  data?: `0x${string}` | undefined;
3715
3446
  from?: `0x${string}`;
@@ -3723,7 +3454,7 @@ export declare const chainConfig: {
3723
3454
  maxPriorityFeePerGas?: bigint | undefined;
3724
3455
  accessList?: import("../index.js").AccessList | undefined;
3725
3456
  blobs?: undefined;
3726
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3457
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3727
3458
  blobVersionedHashes?: undefined;
3728
3459
  kzg?: undefined;
3729
3460
  sidecars?: undefined;
@@ -3746,31 +3477,6 @@ export declare const chainConfig: {
3746
3477
  sidecars?: undefined;
3747
3478
  } & {
3748
3479
  feeCurrency?: `0x${string}` | undefined;
3749
- gatewayFee?: bigint | undefined;
3750
- gatewayFeeRecipient?: `0x${string}` | undefined;
3751
- }) | ({
3752
- data?: `0x${string}` | undefined;
3753
- from?: `0x${string}`;
3754
- gas?: bigint | undefined;
3755
- nonce?: number | undefined;
3756
- to?: `0x${string}` | null | undefined;
3757
- value?: bigint | undefined;
3758
- gasPrice?: bigint | undefined;
3759
- maxFeePerBlobGas?: bigint | undefined;
3760
- maxFeePerGas?: bigint | undefined;
3761
- maxPriorityFeePerGas?: bigint | undefined;
3762
- accessList?: import("../index.js").AccessList | undefined;
3763
- blobs?: undefined;
3764
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3765
- blobVersionedHashes?: undefined;
3766
- kzg?: undefined;
3767
- sidecars?: undefined;
3768
- } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3769
- accessList?: import("../index.js").AccessList | undefined;
3770
- feeCurrency?: `0x${string}` | undefined;
3771
- gatewayFee?: bigint | undefined;
3772
- gatewayFeeRecipient?: `0x${string}` | undefined;
3773
- type?: "cip42" | undefined;
3774
3480
  }) | ({
3775
3481
  data?: `0x${string}` | undefined;
3776
3482
  from?: `0x${string}`;
@@ -3784,15 +3490,13 @@ export declare const chainConfig: {
3784
3490
  maxPriorityFeePerGas?: bigint | undefined;
3785
3491
  accessList?: import("../index.js").AccessList | undefined;
3786
3492
  blobs?: undefined;
3787
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3493
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3788
3494
  blobVersionedHashes?: undefined;
3789
3495
  kzg?: undefined;
3790
3496
  sidecars?: undefined;
3791
3497
  } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3792
3498
  accessList?: import("../index.js").AccessList | undefined;
3793
3499
  feeCurrency?: `0x${string}` | undefined;
3794
- gatewayFee?: undefined;
3795
- gatewayFeeRecipient?: undefined;
3796
3500
  type?: "cip64" | undefined;
3797
3501
  }) | ({
3798
3502
  data?: `0x${string}` | undefined;
@@ -3807,7 +3511,7 @@ export declare const chainConfig: {
3807
3511
  maxPriorityFeePerGas?: bigint | undefined;
3808
3512
  accessList?: import("../index.js").AccessList | undefined;
3809
3513
  blobs?: undefined;
3810
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3514
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3811
3515
  blobVersionedHashes?: undefined;
3812
3516
  kzg?: undefined;
3813
3517
  sidecars?: undefined;
@@ -3830,8 +3534,6 @@ export declare const chainConfig: {
3830
3534
  sidecars?: undefined;
3831
3535
  } & {
3832
3536
  feeCurrency?: `0x${string}` | undefined;
3833
- gatewayFee?: bigint | undefined;
3834
- gatewayFeeRecipient?: `0x${string}` | undefined;
3835
3537
  }) | ({
3836
3538
  data?: `0x${string}` | undefined;
3837
3539
  from?: `0x${string}`;
@@ -3845,7 +3547,7 @@ export declare const chainConfig: {
3845
3547
  maxPriorityFeePerGas?: bigint | undefined;
3846
3548
  accessList?: import("../index.js").AccessList | undefined;
3847
3549
  blobs?: undefined;
3848
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3550
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3849
3551
  blobVersionedHashes?: undefined;
3850
3552
  kzg?: undefined;
3851
3553
  sidecars?: undefined;
@@ -3868,8 +3570,6 @@ export declare const chainConfig: {
3868
3570
  sidecars?: undefined;
3869
3571
  } & {
3870
3572
  feeCurrency?: `0x${string}` | undefined;
3871
- gatewayFee?: bigint | undefined;
3872
- gatewayFeeRecipient?: `0x${string}` | undefined;
3873
3573
  }) | ({
3874
3574
  data?: `0x${string}` | undefined;
3875
3575
  from?: `0x${string}`;
@@ -3883,7 +3583,7 @@ export declare const chainConfig: {
3883
3583
  maxPriorityFeePerGas?: bigint | undefined;
3884
3584
  accessList?: import("../index.js").AccessList | undefined;
3885
3585
  blobs?: undefined;
3886
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3586
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3887
3587
  blobVersionedHashes?: undefined;
3888
3588
  kzg?: undefined;
3889
3589
  sidecars?: undefined;
@@ -3906,31 +3606,6 @@ export declare const chainConfig: {
3906
3606
  sidecars?: undefined;
3907
3607
  } & {
3908
3608
  feeCurrency?: `0x${string}` | undefined;
3909
- gatewayFee?: bigint | undefined;
3910
- gatewayFeeRecipient?: `0x${string}` | undefined;
3911
- }) | ({
3912
- data?: `0x${string}` | undefined;
3913
- from?: `0x${string}`;
3914
- gas?: bigint | undefined;
3915
- nonce?: number | undefined;
3916
- to?: `0x${string}` | null | undefined;
3917
- value?: bigint | undefined;
3918
- gasPrice?: bigint | undefined;
3919
- maxFeePerBlobGas?: bigint | undefined;
3920
- maxFeePerGas?: bigint | undefined;
3921
- maxPriorityFeePerGas?: bigint | undefined;
3922
- accessList?: import("../index.js").AccessList | undefined;
3923
- blobs?: undefined;
3924
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3925
- blobVersionedHashes?: undefined;
3926
- kzg?: undefined;
3927
- sidecars?: undefined;
3928
- } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3929
- accessList?: import("../index.js").AccessList | undefined;
3930
- feeCurrency?: `0x${string}` | undefined;
3931
- gatewayFee?: bigint | undefined;
3932
- gatewayFeeRecipient?: `0x${string}` | undefined;
3933
- type?: "cip42" | undefined;
3934
3609
  }) | ({
3935
3610
  data?: `0x${string}` | undefined;
3936
3611
  from?: `0x${string}`;
@@ -3944,15 +3619,13 @@ export declare const chainConfig: {
3944
3619
  maxPriorityFeePerGas?: bigint | undefined;
3945
3620
  accessList?: import("../index.js").AccessList | undefined;
3946
3621
  blobs?: undefined;
3947
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3622
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3948
3623
  blobVersionedHashes?: undefined;
3949
3624
  kzg?: undefined;
3950
3625
  sidecars?: undefined;
3951
3626
  } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3952
3627
  accessList?: import("../index.js").AccessList | undefined;
3953
3628
  feeCurrency?: `0x${string}` | undefined;
3954
- gatewayFee?: undefined;
3955
- gatewayFeeRecipient?: undefined;
3956
3629
  type?: "cip64" | undefined;
3957
3630
  }) | ({
3958
3631
  data?: `0x${string}` | undefined;
@@ -3970,7 +3643,7 @@ export declare const chainConfig: {
3970
3643
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3971
3644
  kzg?: import("../index.js").Kzg | undefined;
3972
3645
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
3973
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3646
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3974
3647
  } & {
3975
3648
  data?: `0x${string}` | undefined;
3976
3649
  from: `0x${string}`;
@@ -3990,8 +3663,6 @@ export declare const chainConfig: {
3990
3663
  sidecars?: undefined;
3991
3664
  } & {
3992
3665
  feeCurrency?: `0x${string}` | undefined;
3993
- gatewayFee?: bigint | undefined;
3994
- gatewayFeeRecipient?: `0x${string}` | undefined;
3995
3666
  }) | ({
3996
3667
  data?: `0x${string}` | undefined;
3997
3668
  from?: `0x${string}`;
@@ -4008,7 +3679,7 @@ export declare const chainConfig: {
4008
3679
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4009
3680
  kzg?: import("../index.js").Kzg | undefined;
4010
3681
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4011
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3682
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
4012
3683
  } & {
4013
3684
  data?: `0x${string}` | undefined;
4014
3685
  from: `0x${string}`;
@@ -4028,8 +3699,6 @@ export declare const chainConfig: {
4028
3699
  sidecars?: undefined;
4029
3700
  } & {
4030
3701
  feeCurrency?: `0x${string}` | undefined;
4031
- gatewayFee?: bigint | undefined;
4032
- gatewayFeeRecipient?: `0x${string}` | undefined;
4033
3702
  }) | ({
4034
3703
  data?: `0x${string}` | undefined;
4035
3704
  from?: `0x${string}`;
@@ -4046,7 +3715,7 @@ export declare const chainConfig: {
4046
3715
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4047
3716
  kzg?: import("../index.js").Kzg | undefined;
4048
3717
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4049
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3718
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
4050
3719
  } & {
4051
3720
  data?: `0x${string}` | undefined;
4052
3721
  from: `0x${string}`;
@@ -4066,8 +3735,6 @@ export declare const chainConfig: {
4066
3735
  sidecars?: undefined;
4067
3736
  } & {
4068
3737
  feeCurrency?: `0x${string}` | undefined;
4069
- gatewayFee?: bigint | undefined;
4070
- gatewayFeeRecipient?: `0x${string}` | undefined;
4071
3738
  }) | ({
4072
3739
  data?: `0x${string}` | undefined;
4073
3740
  from?: `0x${string}`;
@@ -4084,7 +3751,7 @@ export declare const chainConfig: {
4084
3751
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4085
3752
  kzg?: import("../index.js").Kzg | undefined;
4086
3753
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4087
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3754
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
4088
3755
  } & {
4089
3756
  data?: `0x${string}` | undefined;
4090
3757
  from: `0x${string}`;
@@ -4104,31 +3771,6 @@ export declare const chainConfig: {
4104
3771
  type?: "eip4844" | undefined;
4105
3772
  } & {
4106
3773
  feeCurrency?: `0x${string}` | undefined;
4107
- gatewayFee?: bigint | undefined;
4108
- gatewayFeeRecipient?: `0x${string}` | undefined;
4109
- }) | ({
4110
- data?: `0x${string}` | undefined;
4111
- from?: `0x${string}`;
4112
- gas?: bigint | undefined;
4113
- nonce?: number | undefined;
4114
- value?: bigint | undefined;
4115
- to?: `0x${string}` | null | undefined;
4116
- gasPrice?: bigint | undefined;
4117
- maxFeePerGas?: bigint | undefined;
4118
- maxPriorityFeePerGas?: bigint | undefined;
4119
- maxFeePerBlobGas?: bigint | undefined;
4120
- accessList?: import("../index.js").AccessList | undefined;
4121
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4122
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4123
- kzg?: import("../index.js").Kzg | undefined;
4124
- sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4125
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
4126
- } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
4127
- accessList?: import("../index.js").AccessList | undefined;
4128
- feeCurrency?: `0x${string}` | undefined;
4129
- gatewayFee?: bigint | undefined;
4130
- gatewayFeeRecipient?: `0x${string}` | undefined;
4131
- type?: "cip42" | undefined;
4132
3774
  }) | ({
4133
3775
  data?: `0x${string}` | undefined;
4134
3776
  from?: `0x${string}`;
@@ -4145,12 +3787,10 @@ export declare const chainConfig: {
4145
3787
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4146
3788
  kzg?: import("../index.js").Kzg | undefined;
4147
3789
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4148
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3790
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
4149
3791
  } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
4150
3792
  accessList?: import("../index.js").AccessList | undefined;
4151
3793
  feeCurrency?: `0x${string}` | undefined;
4152
- gatewayFee?: undefined;
4153
- gatewayFeeRecipient?: undefined;
4154
3794
  type?: "cip64" | undefined;
4155
3795
  })) => ({
4156
3796
  data?: `0x${string}` | undefined;
@@ -4170,8 +3810,6 @@ export declare const chainConfig: {
4170
3810
  kzg?: undefined;
4171
3811
  sidecars?: undefined;
4172
3812
  feeCurrency?: `0x${string}` | undefined;
4173
- gatewayFee?: `0x${string}` | undefined;
4174
- gatewayFeeRecipient?: `0x${string}` | undefined;
4175
3813
  } | {
4176
3814
  data?: `0x${string}` | undefined;
4177
3815
  from: `0x${string}`;
@@ -4190,8 +3828,6 @@ export declare const chainConfig: {
4190
3828
  kzg?: undefined;
4191
3829
  sidecars?: undefined;
4192
3830
  feeCurrency?: `0x${string}` | undefined;
4193
- gatewayFee?: `0x${string}` | undefined;
4194
- gatewayFeeRecipient?: `0x${string}` | undefined;
4195
3831
  } | {
4196
3832
  data?: `0x${string}` | undefined;
4197
3833
  from: `0x${string}`;
@@ -4210,28 +3846,6 @@ export declare const chainConfig: {
4210
3846
  kzg?: undefined;
4211
3847
  sidecars?: undefined;
4212
3848
  feeCurrency?: `0x${string}` | undefined;
4213
- gatewayFee?: `0x${string}` | undefined;
4214
- gatewayFeeRecipient?: `0x${string}` | undefined;
4215
- } | {
4216
- data?: `0x${string}` | undefined;
4217
- from: `0x${string}`;
4218
- gas?: `0x${string}` | undefined;
4219
- nonce?: `0x${string}` | undefined;
4220
- to?: `0x${string}` | null | undefined;
4221
- value?: `0x${string}` | undefined;
4222
- gasPrice?: undefined;
4223
- maxFeePerBlobGas?: undefined;
4224
- maxFeePerGas?: `0x${string}` | undefined;
4225
- maxPriorityFeePerGas?: `0x${string}` | undefined;
4226
- accessList?: import("../index.js").AccessList | undefined;
4227
- blobs?: undefined;
4228
- type?: "0x7c" | undefined;
4229
- blobVersionedHashes?: undefined;
4230
- kzg?: undefined;
4231
- sidecars?: undefined;
4232
- feeCurrency?: `0x${string}` | undefined;
4233
- gatewayFee?: `0x${string}` | undefined;
4234
- gatewayFeeRecipient?: `0x${string}` | undefined;
4235
3849
  } | {
4236
3850
  data?: `0x${string}` | undefined;
4237
3851
  from: `0x${string}`;
@@ -4250,8 +3864,6 @@ export declare const chainConfig: {
4250
3864
  kzg?: undefined;
4251
3865
  sidecars?: undefined;
4252
3866
  feeCurrency?: `0x${string}` | undefined;
4253
- gatewayFee?: undefined;
4254
- gatewayFeeRecipient?: undefined;
4255
3867
  } | {
4256
3868
  data?: `0x${string}` | undefined;
4257
3869
  from: `0x${string}`;
@@ -4270,8 +3882,6 @@ export declare const chainConfig: {
4270
3882
  kzg?: undefined;
4271
3883
  sidecars?: undefined;
4272
3884
  feeCurrency?: `0x${string}` | undefined;
4273
- gatewayFee?: `0x${string}` | undefined;
4274
- gatewayFeeRecipient?: `0x${string}` | undefined;
4275
3885
  } | {
4276
3886
  data?: `0x${string}` | undefined;
4277
3887
  from: `0x${string}`;
@@ -4290,8 +3900,6 @@ export declare const chainConfig: {
4290
3900
  kzg?: undefined;
4291
3901
  sidecars?: undefined;
4292
3902
  feeCurrency?: `0x${string}` | undefined;
4293
- gatewayFee?: `0x${string}` | undefined;
4294
- gatewayFeeRecipient?: `0x${string}` | undefined;
4295
3903
  } | {
4296
3904
  data?: `0x${string}` | undefined;
4297
3905
  from: `0x${string}`;
@@ -4310,28 +3918,6 @@ export declare const chainConfig: {
4310
3918
  kzg?: undefined;
4311
3919
  sidecars?: undefined;
4312
3920
  feeCurrency?: `0x${string}` | undefined;
4313
- gatewayFee?: `0x${string}` | undefined;
4314
- gatewayFeeRecipient?: `0x${string}` | undefined;
4315
- } | {
4316
- data?: `0x${string}` | undefined;
4317
- from: `0x${string}`;
4318
- gas?: `0x${string}` | undefined;
4319
- nonce?: `0x${string}` | undefined;
4320
- to?: `0x${string}` | null | undefined;
4321
- value?: `0x${string}` | undefined;
4322
- gasPrice?: undefined;
4323
- maxFeePerBlobGas?: undefined;
4324
- maxFeePerGas?: `0x${string}` | undefined;
4325
- maxPriorityFeePerGas?: `0x${string}` | undefined;
4326
- accessList?: import("../index.js").AccessList | undefined;
4327
- blobs?: undefined;
4328
- type?: "0x7c" | undefined;
4329
- blobVersionedHashes?: undefined;
4330
- kzg?: undefined;
4331
- sidecars?: undefined;
4332
- feeCurrency?: `0x${string}` | undefined;
4333
- gatewayFee?: `0x${string}` | undefined;
4334
- gatewayFeeRecipient?: `0x${string}` | undefined;
4335
3921
  } | {
4336
3922
  data?: `0x${string}` | undefined;
4337
3923
  from: `0x${string}`;
@@ -4350,8 +3936,6 @@ export declare const chainConfig: {
4350
3936
  kzg?: undefined;
4351
3937
  sidecars?: undefined;
4352
3938
  feeCurrency?: `0x${string}` | undefined;
4353
- gatewayFee?: undefined;
4354
- gatewayFeeRecipient?: undefined;
4355
3939
  } | {
4356
3940
  data?: `0x${string}` | undefined;
4357
3941
  from: `0x${string}`;
@@ -4370,8 +3954,6 @@ export declare const chainConfig: {
4370
3954
  kzg?: undefined;
4371
3955
  sidecars?: undefined;
4372
3956
  feeCurrency?: `0x${string}` | undefined;
4373
- gatewayFee?: `0x${string}` | undefined;
4374
- gatewayFeeRecipient?: `0x${string}` | undefined;
4375
3957
  } | {
4376
3958
  data?: `0x${string}` | undefined;
4377
3959
  from: `0x${string}`;
@@ -4390,8 +3972,6 @@ export declare const chainConfig: {
4390
3972
  kzg?: undefined;
4391
3973
  sidecars?: undefined;
4392
3974
  feeCurrency?: `0x${string}` | undefined;
4393
- gatewayFee?: `0x${string}` | undefined;
4394
- gatewayFeeRecipient?: `0x${string}` | undefined;
4395
3975
  } | {
4396
3976
  data?: `0x${string}` | undefined;
4397
3977
  from: `0x${string}`;
@@ -4410,28 +3990,6 @@ export declare const chainConfig: {
4410
3990
  kzg?: undefined;
4411
3991
  sidecars?: undefined;
4412
3992
  feeCurrency?: `0x${string}` | undefined;
4413
- gatewayFee?: `0x${string}` | undefined;
4414
- gatewayFeeRecipient?: `0x${string}` | undefined;
4415
- } | {
4416
- data?: `0x${string}` | undefined;
4417
- from: `0x${string}`;
4418
- gas?: `0x${string}` | undefined;
4419
- nonce?: `0x${string}` | undefined;
4420
- to?: `0x${string}` | null | undefined;
4421
- value?: `0x${string}` | undefined;
4422
- gasPrice?: undefined;
4423
- maxFeePerBlobGas?: undefined;
4424
- maxFeePerGas?: `0x${string}` | undefined;
4425
- maxPriorityFeePerGas?: `0x${string}` | undefined;
4426
- accessList?: import("../index.js").AccessList | undefined;
4427
- blobs?: undefined;
4428
- type?: "0x7c" | undefined;
4429
- blobVersionedHashes?: undefined;
4430
- kzg?: undefined;
4431
- sidecars?: undefined;
4432
- feeCurrency?: `0x${string}` | undefined;
4433
- gatewayFee?: `0x${string}` | undefined;
4434
- gatewayFeeRecipient?: `0x${string}` | undefined;
4435
3993
  } | {
4436
3994
  data?: `0x${string}` | undefined;
4437
3995
  from: `0x${string}`;
@@ -4450,8 +4008,6 @@ export declare const chainConfig: {
4450
4008
  kzg?: undefined;
4451
4009
  sidecars?: undefined;
4452
4010
  feeCurrency?: `0x${string}` | undefined;
4453
- gatewayFee?: undefined;
4454
- gatewayFeeRecipient?: undefined;
4455
4011
  } | {
4456
4012
  data?: `0x${string}` | undefined;
4457
4013
  from: `0x${string}`;
@@ -4470,28 +4026,6 @@ export declare const chainConfig: {
4470
4026
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4471
4027
  type?: "0x3" | undefined;
4472
4028
  feeCurrency?: `0x${string}` | undefined;
4473
- gatewayFee?: `0x${string}` | undefined;
4474
- gatewayFeeRecipient?: `0x${string}` | undefined;
4475
- } | {
4476
- data?: `0x${string}` | undefined;
4477
- from: `0x${string}`;
4478
- gas?: `0x${string}` | undefined;
4479
- nonce?: `0x${string}` | undefined;
4480
- value?: `0x${string}` | undefined;
4481
- to: `0x${string}` | null | undefined;
4482
- gasPrice?: undefined;
4483
- maxFeePerGas?: `0x${string}` | undefined;
4484
- maxPriorityFeePerGas?: `0x${string}` | undefined;
4485
- maxFeePerBlobGas: undefined;
4486
- accessList?: import("../index.js").AccessList | undefined;
4487
- blobs: readonly `0x${string}`[] | readonly Uint8Array[];
4488
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4489
- kzg?: import("../index.js").Kzg | undefined;
4490
- sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4491
- type?: "0x7c" | undefined;
4492
- feeCurrency?: `0x${string}` | undefined;
4493
- gatewayFee?: `0x${string}` | undefined;
4494
- gatewayFeeRecipient?: `0x${string}` | undefined;
4495
4029
  } | {
4496
4030
  data?: `0x${string}` | undefined;
4497
4031
  from: `0x${string}`;
@@ -4510,8 +4044,6 @@ export declare const chainConfig: {
4510
4044
  sidecars?: readonly import("../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4511
4045
  type?: "0x7b" | undefined;
4512
4046
  feeCurrency?: `0x${string}` | undefined;
4513
- gatewayFee?: undefined;
4514
- gatewayFeeRecipient?: undefined;
4515
4047
  }) & {};
4516
4048
  type: "transactionRequest";
4517
4049
  };