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
@@ -884,8 +884,8 @@ export declare const celoAlfajores: {
884
884
  yParity?: undefined;
885
885
  type: "legacy";
886
886
  feeCurrency: `0x${string}` | null;
887
- gatewayFee: bigint | null;
888
- gatewayFeeRecipient: `0x${string}` | null;
887
+ gatewayFee?: undefined;
888
+ gatewayFeeRecipient?: undefined;
889
889
  } | {
890
890
  r: `0x${string}`;
891
891
  s: `0x${string}`;
@@ -965,8 +965,8 @@ export declare const celoAlfajores: {
965
965
  chainId: number;
966
966
  type: "eip2930";
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;
@@ -992,8 +992,8 @@ export declare const celoAlfajores: {
992
992
  chainId: number;
993
993
  type: "eip1559";
994
994
  feeCurrency: `0x${string}` | null;
995
- gatewayFee: bigint | null;
996
- gatewayFeeRecipient: `0x${string}` | null;
995
+ gatewayFee?: undefined;
996
+ gatewayFeeRecipient?: undefined;
997
997
  } | {
998
998
  blockHash: `0x${string}` | null;
999
999
  blockNumber: bigint | null;
@@ -1073,8 +1073,8 @@ export declare const celoAlfajores: {
1073
1073
  chainId: number;
1074
1074
  type: "eip2930";
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;
@@ -1100,8 +1100,8 @@ export declare const celoAlfajores: {
1100
1100
  chainId: number;
1101
1101
  type: "eip1559";
1102
1102
  feeCurrency: `0x${string}` | null;
1103
- gatewayFee: bigint | null;
1104
- gatewayFeeRecipient: `0x${string}` | null;
1103
+ gatewayFee?: undefined;
1104
+ gatewayFeeRecipient?: undefined;
1105
1105
  } | {
1106
1106
  blockHash: `0x${string}` | null;
1107
1107
  blockNumber: bigint | null;
@@ -1181,8 +1181,8 @@ export declare const celoAlfajores: {
1181
1181
  chainId: number;
1182
1182
  type: "eip4844";
1183
1183
  feeCurrency: `0x${string}` | null;
1184
- gatewayFee: bigint | null;
1185
- gatewayFeeRecipient: `0x${string}` | null;
1184
+ gatewayFee?: undefined;
1185
+ gatewayFeeRecipient?: undefined;
1186
1186
  } | {
1187
1187
  blockHash: `0x${string}` | null;
1188
1188
  blockNumber: bigint | null;
@@ -1255,7 +1255,7 @@ export declare const celoAlfajores: {
1255
1255
  maxPriorityFeePerGas?: bigint | undefined;
1256
1256
  accessList?: import("../../index.js").AccessList | undefined;
1257
1257
  blobs?: undefined;
1258
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1258
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1259
1259
  blobVersionedHashes?: undefined;
1260
1260
  kzg?: undefined;
1261
1261
  sidecars?: undefined;
@@ -1278,8 +1278,6 @@ export declare const celoAlfajores: {
1278
1278
  sidecars?: undefined;
1279
1279
  } & {
1280
1280
  feeCurrency?: `0x${string}` | undefined;
1281
- gatewayFee?: bigint | undefined;
1282
- gatewayFeeRecipient?: `0x${string}` | undefined;
1283
1281
  }) | ({
1284
1282
  data?: `0x${string}` | undefined;
1285
1283
  from?: `0x${string}`;
@@ -1293,7 +1291,7 @@ export declare const celoAlfajores: {
1293
1291
  maxPriorityFeePerGas?: bigint | undefined;
1294
1292
  accessList?: import("../../index.js").AccessList | undefined;
1295
1293
  blobs?: undefined;
1296
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1294
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1297
1295
  blobVersionedHashes?: undefined;
1298
1296
  kzg?: undefined;
1299
1297
  sidecars?: undefined;
@@ -1316,8 +1314,6 @@ export declare const celoAlfajores: {
1316
1314
  sidecars?: undefined;
1317
1315
  } & {
1318
1316
  feeCurrency?: `0x${string}` | undefined;
1319
- gatewayFee?: bigint | undefined;
1320
- gatewayFeeRecipient?: `0x${string}` | undefined;
1321
1317
  }) | ({
1322
1318
  data?: `0x${string}` | undefined;
1323
1319
  from?: `0x${string}`;
@@ -1331,7 +1327,7 @@ export declare const celoAlfajores: {
1331
1327
  maxPriorityFeePerGas?: bigint | undefined;
1332
1328
  accessList?: import("../../index.js").AccessList | undefined;
1333
1329
  blobs?: undefined;
1334
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1330
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1335
1331
  blobVersionedHashes?: undefined;
1336
1332
  kzg?: undefined;
1337
1333
  sidecars?: undefined;
@@ -1354,8 +1350,6 @@ export declare const celoAlfajores: {
1354
1350
  sidecars?: undefined;
1355
1351
  } & {
1356
1352
  feeCurrency?: `0x${string}` | undefined;
1357
- gatewayFee?: bigint | undefined;
1358
- gatewayFeeRecipient?: `0x${string}` | undefined;
1359
1353
  }) | ({
1360
1354
  data?: `0x${string}` | undefined;
1361
1355
  from?: `0x${string}`;
@@ -1369,38 +1363,13 @@ export declare const celoAlfajores: {
1369
1363
  maxPriorityFeePerGas?: bigint | undefined;
1370
1364
  accessList?: import("../../index.js").AccessList | undefined;
1371
1365
  blobs?: undefined;
1372
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1366
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1373
1367
  blobVersionedHashes?: undefined;
1374
1368
  kzg?: undefined;
1375
1369
  sidecars?: undefined;
1376
1370
  } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
1377
1371
  accessList?: import("../../index.js").AccessList | undefined;
1378
1372
  feeCurrency?: `0x${string}` | undefined;
1379
- gatewayFee?: bigint | undefined;
1380
- gatewayFeeRecipient?: `0x${string}` | undefined;
1381
- type?: "cip42" | undefined;
1382
- }) | ({
1383
- data?: `0x${string}` | undefined;
1384
- from?: `0x${string}`;
1385
- gas?: bigint | undefined;
1386
- nonce?: number | undefined;
1387
- to?: `0x${string}` | null | undefined;
1388
- value?: bigint | undefined;
1389
- gasPrice?: bigint | undefined;
1390
- maxFeePerBlobGas?: bigint | undefined;
1391
- maxFeePerGas?: bigint | undefined;
1392
- maxPriorityFeePerGas?: bigint | undefined;
1393
- accessList?: import("../../index.js").AccessList | undefined;
1394
- blobs?: undefined;
1395
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1396
- blobVersionedHashes?: undefined;
1397
- kzg?: undefined;
1398
- sidecars?: undefined;
1399
- } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
1400
- accessList?: import("../../index.js").AccessList | undefined;
1401
- feeCurrency?: `0x${string}` | undefined;
1402
- gatewayFee?: undefined;
1403
- gatewayFeeRecipient?: undefined;
1404
1373
  type?: "cip64" | undefined;
1405
1374
  }) | ({
1406
1375
  data?: `0x${string}` | undefined;
@@ -1415,7 +1384,7 @@ export declare const celoAlfajores: {
1415
1384
  maxPriorityFeePerGas?: bigint | undefined;
1416
1385
  accessList?: import("../../index.js").AccessList | undefined;
1417
1386
  blobs?: undefined;
1418
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1387
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1419
1388
  blobVersionedHashes?: undefined;
1420
1389
  kzg?: undefined;
1421
1390
  sidecars?: undefined;
@@ -1438,8 +1407,6 @@ export declare const celoAlfajores: {
1438
1407
  sidecars?: undefined;
1439
1408
  } & {
1440
1409
  feeCurrency?: `0x${string}` | undefined;
1441
- gatewayFee?: bigint | undefined;
1442
- gatewayFeeRecipient?: `0x${string}` | undefined;
1443
1410
  }) | ({
1444
1411
  data?: `0x${string}` | undefined;
1445
1412
  from?: `0x${string}`;
@@ -1453,7 +1420,7 @@ export declare const celoAlfajores: {
1453
1420
  maxPriorityFeePerGas?: bigint | undefined;
1454
1421
  accessList?: import("../../index.js").AccessList | undefined;
1455
1422
  blobs?: undefined;
1456
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1423
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1457
1424
  blobVersionedHashes?: undefined;
1458
1425
  kzg?: undefined;
1459
1426
  sidecars?: undefined;
@@ -1476,8 +1443,6 @@ export declare const celoAlfajores: {
1476
1443
  sidecars?: undefined;
1477
1444
  } & {
1478
1445
  feeCurrency?: `0x${string}` | undefined;
1479
- gatewayFee?: bigint | undefined;
1480
- gatewayFeeRecipient?: `0x${string}` | undefined;
1481
1446
  }) | ({
1482
1447
  data?: `0x${string}` | undefined;
1483
1448
  from?: `0x${string}`;
@@ -1491,7 +1456,7 @@ export declare const celoAlfajores: {
1491
1456
  maxPriorityFeePerGas?: bigint | undefined;
1492
1457
  accessList?: import("../../index.js").AccessList | undefined;
1493
1458
  blobs?: undefined;
1494
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1459
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1495
1460
  blobVersionedHashes?: undefined;
1496
1461
  kzg?: undefined;
1497
1462
  sidecars?: undefined;
@@ -1514,31 +1479,6 @@ export declare const celoAlfajores: {
1514
1479
  sidecars?: undefined;
1515
1480
  } & {
1516
1481
  feeCurrency?: `0x${string}` | undefined;
1517
- gatewayFee?: bigint | undefined;
1518
- gatewayFeeRecipient?: `0x${string}` | undefined;
1519
- }) | ({
1520
- data?: `0x${string}` | undefined;
1521
- from?: `0x${string}`;
1522
- gas?: bigint | undefined;
1523
- nonce?: number | undefined;
1524
- to?: `0x${string}` | null | undefined;
1525
- value?: bigint | undefined;
1526
- gasPrice?: bigint | undefined;
1527
- maxFeePerBlobGas?: bigint | undefined;
1528
- maxFeePerGas?: bigint | undefined;
1529
- maxPriorityFeePerGas?: bigint | undefined;
1530
- accessList?: import("../../index.js").AccessList | undefined;
1531
- blobs?: undefined;
1532
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1533
- blobVersionedHashes?: undefined;
1534
- kzg?: undefined;
1535
- sidecars?: undefined;
1536
- } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
1537
- accessList?: import("../../index.js").AccessList | undefined;
1538
- feeCurrency?: `0x${string}` | undefined;
1539
- gatewayFee?: bigint | undefined;
1540
- gatewayFeeRecipient?: `0x${string}` | undefined;
1541
- type?: "cip42" | undefined;
1542
1482
  }) | ({
1543
1483
  data?: `0x${string}` | undefined;
1544
1484
  from?: `0x${string}`;
@@ -1552,15 +1492,13 @@ export declare const celoAlfajores: {
1552
1492
  maxPriorityFeePerGas?: bigint | undefined;
1553
1493
  accessList?: import("../../index.js").AccessList | undefined;
1554
1494
  blobs?: undefined;
1555
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1495
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1556
1496
  blobVersionedHashes?: undefined;
1557
1497
  kzg?: undefined;
1558
1498
  sidecars?: undefined;
1559
1499
  } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
1560
1500
  accessList?: import("../../index.js").AccessList | undefined;
1561
1501
  feeCurrency?: `0x${string}` | undefined;
1562
- gatewayFee?: undefined;
1563
- gatewayFeeRecipient?: undefined;
1564
1502
  type?: "cip64" | undefined;
1565
1503
  }) | ({
1566
1504
  data?: `0x${string}` | undefined;
@@ -1575,7 +1513,7 @@ export declare const celoAlfajores: {
1575
1513
  maxPriorityFeePerGas?: bigint | undefined;
1576
1514
  accessList?: import("../../index.js").AccessList | undefined;
1577
1515
  blobs?: undefined;
1578
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1516
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1579
1517
  blobVersionedHashes?: undefined;
1580
1518
  kzg?: undefined;
1581
1519
  sidecars?: undefined;
@@ -1598,8 +1536,6 @@ export declare const celoAlfajores: {
1598
1536
  sidecars?: undefined;
1599
1537
  } & {
1600
1538
  feeCurrency?: `0x${string}` | undefined;
1601
- gatewayFee?: bigint | undefined;
1602
- gatewayFeeRecipient?: `0x${string}` | undefined;
1603
1539
  }) | ({
1604
1540
  data?: `0x${string}` | undefined;
1605
1541
  from?: `0x${string}`;
@@ -1613,7 +1549,7 @@ export declare const celoAlfajores: {
1613
1549
  maxPriorityFeePerGas?: bigint | undefined;
1614
1550
  accessList?: import("../../index.js").AccessList | undefined;
1615
1551
  blobs?: undefined;
1616
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1552
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1617
1553
  blobVersionedHashes?: undefined;
1618
1554
  kzg?: undefined;
1619
1555
  sidecars?: undefined;
@@ -1636,8 +1572,6 @@ export declare const celoAlfajores: {
1636
1572
  sidecars?: undefined;
1637
1573
  } & {
1638
1574
  feeCurrency?: `0x${string}` | undefined;
1639
- gatewayFee?: bigint | undefined;
1640
- gatewayFeeRecipient?: `0x${string}` | undefined;
1641
1575
  }) | ({
1642
1576
  data?: `0x${string}` | undefined;
1643
1577
  from?: `0x${string}`;
@@ -1651,7 +1585,7 @@ export declare const celoAlfajores: {
1651
1585
  maxPriorityFeePerGas?: bigint | undefined;
1652
1586
  accessList?: import("../../index.js").AccessList | undefined;
1653
1587
  blobs?: undefined;
1654
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1588
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1655
1589
  blobVersionedHashes?: undefined;
1656
1590
  kzg?: undefined;
1657
1591
  sidecars?: undefined;
@@ -1674,31 +1608,6 @@ export declare const celoAlfajores: {
1674
1608
  sidecars?: undefined;
1675
1609
  } & {
1676
1610
  feeCurrency?: `0x${string}` | undefined;
1677
- gatewayFee?: bigint | undefined;
1678
- gatewayFeeRecipient?: `0x${string}` | undefined;
1679
- }) | ({
1680
- data?: `0x${string}` | undefined;
1681
- from?: `0x${string}`;
1682
- gas?: bigint | undefined;
1683
- nonce?: number | undefined;
1684
- to?: `0x${string}` | null | undefined;
1685
- value?: bigint | undefined;
1686
- gasPrice?: bigint | undefined;
1687
- maxFeePerBlobGas?: bigint | undefined;
1688
- maxFeePerGas?: bigint | undefined;
1689
- maxPriorityFeePerGas?: bigint | undefined;
1690
- accessList?: import("../../index.js").AccessList | undefined;
1691
- blobs?: undefined;
1692
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1693
- blobVersionedHashes?: undefined;
1694
- kzg?: undefined;
1695
- sidecars?: undefined;
1696
- } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
1697
- accessList?: import("../../index.js").AccessList | undefined;
1698
- feeCurrency?: `0x${string}` | undefined;
1699
- gatewayFee?: bigint | undefined;
1700
- gatewayFeeRecipient?: `0x${string}` | undefined;
1701
- type?: "cip42" | undefined;
1702
1611
  }) | ({
1703
1612
  data?: `0x${string}` | undefined;
1704
1613
  from?: `0x${string}`;
@@ -1712,15 +1621,13 @@ export declare const celoAlfajores: {
1712
1621
  maxPriorityFeePerGas?: bigint | undefined;
1713
1622
  accessList?: import("../../index.js").AccessList | undefined;
1714
1623
  blobs?: undefined;
1715
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1624
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1716
1625
  blobVersionedHashes?: undefined;
1717
1626
  kzg?: undefined;
1718
1627
  sidecars?: undefined;
1719
1628
  } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
1720
1629
  accessList?: import("../../index.js").AccessList | undefined;
1721
1630
  feeCurrency?: `0x${string}` | undefined;
1722
- gatewayFee?: undefined;
1723
- gatewayFeeRecipient?: undefined;
1724
1631
  type?: "cip64" | undefined;
1725
1632
  }) | ({
1726
1633
  data?: `0x${string}` | undefined;
@@ -1738,7 +1645,7 @@ export declare const celoAlfajores: {
1738
1645
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1739
1646
  kzg?: import("../../index.js").Kzg | undefined;
1740
1647
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1741
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1648
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1742
1649
  } & {
1743
1650
  data?: `0x${string}` | undefined;
1744
1651
  from: `0x${string}`;
@@ -1758,8 +1665,6 @@ export declare const celoAlfajores: {
1758
1665
  sidecars?: undefined;
1759
1666
  } & {
1760
1667
  feeCurrency?: `0x${string}` | undefined;
1761
- gatewayFee?: bigint | undefined;
1762
- gatewayFeeRecipient?: `0x${string}` | undefined;
1763
1668
  }) | ({
1764
1669
  data?: `0x${string}` | undefined;
1765
1670
  from?: `0x${string}`;
@@ -1776,7 +1681,7 @@ export declare const celoAlfajores: {
1776
1681
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1777
1682
  kzg?: import("../../index.js").Kzg | undefined;
1778
1683
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1779
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1684
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1780
1685
  } & {
1781
1686
  data?: `0x${string}` | undefined;
1782
1687
  from: `0x${string}`;
@@ -1796,8 +1701,6 @@ export declare const celoAlfajores: {
1796
1701
  sidecars?: undefined;
1797
1702
  } & {
1798
1703
  feeCurrency?: `0x${string}` | undefined;
1799
- gatewayFee?: bigint | undefined;
1800
- gatewayFeeRecipient?: `0x${string}` | undefined;
1801
1704
  }) | ({
1802
1705
  data?: `0x${string}` | undefined;
1803
1706
  from?: `0x${string}`;
@@ -1814,7 +1717,7 @@ export declare const celoAlfajores: {
1814
1717
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1815
1718
  kzg?: import("../../index.js").Kzg | undefined;
1816
1719
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1817
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1720
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1818
1721
  } & {
1819
1722
  data?: `0x${string}` | undefined;
1820
1723
  from: `0x${string}`;
@@ -1834,8 +1737,6 @@ export declare const celoAlfajores: {
1834
1737
  sidecars?: undefined;
1835
1738
  } & {
1836
1739
  feeCurrency?: `0x${string}` | undefined;
1837
- gatewayFee?: bigint | undefined;
1838
- gatewayFeeRecipient?: `0x${string}` | undefined;
1839
1740
  }) | ({
1840
1741
  data?: `0x${string}` | undefined;
1841
1742
  from?: `0x${string}`;
@@ -1852,7 +1753,7 @@ export declare const celoAlfajores: {
1852
1753
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1853
1754
  kzg?: import("../../index.js").Kzg | undefined;
1854
1755
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1855
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1756
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1856
1757
  } & {
1857
1758
  data?: `0x${string}` | undefined;
1858
1759
  from: `0x${string}`;
@@ -1872,31 +1773,6 @@ export declare const celoAlfajores: {
1872
1773
  type?: "eip4844" | undefined;
1873
1774
  } & {
1874
1775
  feeCurrency?: `0x${string}` | undefined;
1875
- gatewayFee?: bigint | undefined;
1876
- gatewayFeeRecipient?: `0x${string}` | undefined;
1877
- }) | ({
1878
- data?: `0x${string}` | undefined;
1879
- from?: `0x${string}`;
1880
- gas?: bigint | undefined;
1881
- nonce?: number | undefined;
1882
- value?: bigint | undefined;
1883
- to?: `0x${string}` | null | undefined;
1884
- gasPrice?: bigint | undefined;
1885
- maxFeePerGas?: bigint | undefined;
1886
- maxPriorityFeePerGas?: bigint | undefined;
1887
- maxFeePerBlobGas?: bigint | undefined;
1888
- accessList?: import("../../index.js").AccessList | undefined;
1889
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1890
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1891
- kzg?: import("../../index.js").Kzg | undefined;
1892
- sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1893
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1894
- } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
1895
- accessList?: import("../../index.js").AccessList | undefined;
1896
- feeCurrency?: `0x${string}` | undefined;
1897
- gatewayFee?: bigint | undefined;
1898
- gatewayFeeRecipient?: `0x${string}` | undefined;
1899
- type?: "cip42" | undefined;
1900
1776
  }) | ({
1901
1777
  data?: `0x${string}` | undefined;
1902
1778
  from?: `0x${string}`;
@@ -1913,12 +1789,10 @@ export declare const celoAlfajores: {
1913
1789
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1914
1790
  kzg?: import("../../index.js").Kzg | undefined;
1915
1791
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
1916
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
1792
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
1917
1793
  } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
1918
1794
  accessList?: import("../../index.js").AccessList | undefined;
1919
1795
  feeCurrency?: `0x${string}` | undefined;
1920
- gatewayFee?: undefined;
1921
- gatewayFeeRecipient?: undefined;
1922
1796
  type?: "cip64" | undefined;
1923
1797
  })) => ({
1924
1798
  data?: `0x${string}` | undefined;
@@ -1938,8 +1812,6 @@ export declare const celoAlfajores: {
1938
1812
  kzg?: undefined;
1939
1813
  sidecars?: undefined;
1940
1814
  feeCurrency?: `0x${string}` | undefined;
1941
- gatewayFee?: `0x${string}` | undefined;
1942
- gatewayFeeRecipient?: `0x${string}` | undefined;
1943
1815
  } | {
1944
1816
  data?: `0x${string}` | undefined;
1945
1817
  from: `0x${string}`;
@@ -1958,8 +1830,6 @@ export declare const celoAlfajores: {
1958
1830
  kzg?: undefined;
1959
1831
  sidecars?: undefined;
1960
1832
  feeCurrency?: `0x${string}` | undefined;
1961
- gatewayFee?: `0x${string}` | undefined;
1962
- gatewayFeeRecipient?: `0x${string}` | undefined;
1963
1833
  } | {
1964
1834
  data?: `0x${string}` | undefined;
1965
1835
  from: `0x${string}`;
@@ -1978,28 +1848,6 @@ export declare const celoAlfajores: {
1978
1848
  kzg?: undefined;
1979
1849
  sidecars?: undefined;
1980
1850
  feeCurrency?: `0x${string}` | undefined;
1981
- gatewayFee?: `0x${string}` | undefined;
1982
- gatewayFeeRecipient?: `0x${string}` | undefined;
1983
- } | {
1984
- data?: `0x${string}` | undefined;
1985
- from: `0x${string}`;
1986
- gas?: `0x${string}` | undefined;
1987
- nonce?: `0x${string}` | undefined;
1988
- to?: `0x${string}` | null | undefined;
1989
- value?: `0x${string}` | undefined;
1990
- gasPrice?: undefined;
1991
- maxFeePerBlobGas?: undefined;
1992
- maxFeePerGas?: `0x${string}` | undefined;
1993
- maxPriorityFeePerGas?: `0x${string}` | undefined;
1994
- accessList?: import("../../index.js").AccessList | undefined;
1995
- blobs?: undefined;
1996
- type?: "0x7c" | undefined;
1997
- blobVersionedHashes?: undefined;
1998
- kzg?: undefined;
1999
- sidecars?: undefined;
2000
- feeCurrency?: `0x${string}` | undefined;
2001
- gatewayFee?: `0x${string}` | undefined;
2002
- gatewayFeeRecipient?: `0x${string}` | undefined;
2003
1851
  } | {
2004
1852
  data?: `0x${string}` | undefined;
2005
1853
  from: `0x${string}`;
@@ -2018,8 +1866,6 @@ export declare const celoAlfajores: {
2018
1866
  kzg?: undefined;
2019
1867
  sidecars?: undefined;
2020
1868
  feeCurrency?: `0x${string}` | undefined;
2021
- gatewayFee?: undefined;
2022
- gatewayFeeRecipient?: undefined;
2023
1869
  } | {
2024
1870
  data?: `0x${string}` | undefined;
2025
1871
  from: `0x${string}`;
@@ -2038,8 +1884,6 @@ export declare const celoAlfajores: {
2038
1884
  kzg?: undefined;
2039
1885
  sidecars?: undefined;
2040
1886
  feeCurrency?: `0x${string}` | undefined;
2041
- gatewayFee?: `0x${string}` | undefined;
2042
- gatewayFeeRecipient?: `0x${string}` | undefined;
2043
1887
  } | {
2044
1888
  data?: `0x${string}` | undefined;
2045
1889
  from: `0x${string}`;
@@ -2058,8 +1902,6 @@ export declare const celoAlfajores: {
2058
1902
  kzg?: undefined;
2059
1903
  sidecars?: undefined;
2060
1904
  feeCurrency?: `0x${string}` | undefined;
2061
- gatewayFee?: `0x${string}` | undefined;
2062
- gatewayFeeRecipient?: `0x${string}` | undefined;
2063
1905
  } | {
2064
1906
  data?: `0x${string}` | undefined;
2065
1907
  from: `0x${string}`;
@@ -2078,28 +1920,6 @@ export declare const celoAlfajores: {
2078
1920
  kzg?: undefined;
2079
1921
  sidecars?: undefined;
2080
1922
  feeCurrency?: `0x${string}` | undefined;
2081
- gatewayFee?: `0x${string}` | undefined;
2082
- gatewayFeeRecipient?: `0x${string}` | undefined;
2083
- } | {
2084
- data?: `0x${string}` | undefined;
2085
- from: `0x${string}`;
2086
- gas?: `0x${string}` | undefined;
2087
- nonce?: `0x${string}` | undefined;
2088
- to?: `0x${string}` | null | undefined;
2089
- value?: `0x${string}` | undefined;
2090
- gasPrice?: undefined;
2091
- maxFeePerBlobGas?: undefined;
2092
- maxFeePerGas?: `0x${string}` | undefined;
2093
- maxPriorityFeePerGas?: `0x${string}` | undefined;
2094
- accessList?: import("../../index.js").AccessList | undefined;
2095
- blobs?: undefined;
2096
- type?: "0x7c" | undefined;
2097
- blobVersionedHashes?: undefined;
2098
- kzg?: undefined;
2099
- sidecars?: undefined;
2100
- feeCurrency?: `0x${string}` | undefined;
2101
- gatewayFee?: `0x${string}` | undefined;
2102
- gatewayFeeRecipient?: `0x${string}` | undefined;
2103
1923
  } | {
2104
1924
  data?: `0x${string}` | undefined;
2105
1925
  from: `0x${string}`;
@@ -2118,8 +1938,6 @@ export declare const celoAlfajores: {
2118
1938
  kzg?: undefined;
2119
1939
  sidecars?: undefined;
2120
1940
  feeCurrency?: `0x${string}` | undefined;
2121
- gatewayFee?: undefined;
2122
- gatewayFeeRecipient?: undefined;
2123
1941
  } | {
2124
1942
  data?: `0x${string}` | undefined;
2125
1943
  from: `0x${string}`;
@@ -2138,8 +1956,6 @@ export declare const celoAlfajores: {
2138
1956
  kzg?: undefined;
2139
1957
  sidecars?: undefined;
2140
1958
  feeCurrency?: `0x${string}` | undefined;
2141
- gatewayFee?: `0x${string}` | undefined;
2142
- gatewayFeeRecipient?: `0x${string}` | undefined;
2143
1959
  } | {
2144
1960
  data?: `0x${string}` | undefined;
2145
1961
  from: `0x${string}`;
@@ -2158,8 +1974,6 @@ export declare const celoAlfajores: {
2158
1974
  kzg?: undefined;
2159
1975
  sidecars?: undefined;
2160
1976
  feeCurrency?: `0x${string}` | undefined;
2161
- gatewayFee?: `0x${string}` | undefined;
2162
- gatewayFeeRecipient?: `0x${string}` | undefined;
2163
1977
  } | {
2164
1978
  data?: `0x${string}` | undefined;
2165
1979
  from: `0x${string}`;
@@ -2178,28 +1992,6 @@ export declare const celoAlfajores: {
2178
1992
  kzg?: undefined;
2179
1993
  sidecars?: undefined;
2180
1994
  feeCurrency?: `0x${string}` | undefined;
2181
- gatewayFee?: `0x${string}` | undefined;
2182
- gatewayFeeRecipient?: `0x${string}` | undefined;
2183
- } | {
2184
- data?: `0x${string}` | undefined;
2185
- from: `0x${string}`;
2186
- gas?: `0x${string}` | undefined;
2187
- nonce?: `0x${string}` | undefined;
2188
- to?: `0x${string}` | null | undefined;
2189
- value?: `0x${string}` | undefined;
2190
- gasPrice?: undefined;
2191
- maxFeePerBlobGas?: undefined;
2192
- maxFeePerGas?: `0x${string}` | undefined;
2193
- maxPriorityFeePerGas?: `0x${string}` | undefined;
2194
- accessList?: import("../../index.js").AccessList | undefined;
2195
- blobs?: undefined;
2196
- type?: "0x7c" | undefined;
2197
- blobVersionedHashes?: undefined;
2198
- kzg?: undefined;
2199
- sidecars?: undefined;
2200
- feeCurrency?: `0x${string}` | undefined;
2201
- gatewayFee?: `0x${string}` | undefined;
2202
- gatewayFeeRecipient?: `0x${string}` | undefined;
2203
1995
  } | {
2204
1996
  data?: `0x${string}` | undefined;
2205
1997
  from: `0x${string}`;
@@ -2218,8 +2010,6 @@ export declare const celoAlfajores: {
2218
2010
  kzg?: undefined;
2219
2011
  sidecars?: undefined;
2220
2012
  feeCurrency?: `0x${string}` | undefined;
2221
- gatewayFee?: undefined;
2222
- gatewayFeeRecipient?: undefined;
2223
2013
  } | {
2224
2014
  data?: `0x${string}` | undefined;
2225
2015
  from: `0x${string}`;
@@ -2238,28 +2028,6 @@ export declare const celoAlfajores: {
2238
2028
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
2239
2029
  type?: "0x3" | undefined;
2240
2030
  feeCurrency?: `0x${string}` | undefined;
2241
- gatewayFee?: `0x${string}` | undefined;
2242
- gatewayFeeRecipient?: `0x${string}` | undefined;
2243
- } | {
2244
- data?: `0x${string}` | undefined;
2245
- from: `0x${string}`;
2246
- gas?: `0x${string}` | undefined;
2247
- nonce?: `0x${string}` | undefined;
2248
- value?: `0x${string}` | undefined;
2249
- to: `0x${string}` | null | undefined;
2250
- gasPrice?: undefined;
2251
- maxFeePerGas?: `0x${string}` | undefined;
2252
- maxPriorityFeePerGas?: `0x${string}` | undefined;
2253
- maxFeePerBlobGas: undefined;
2254
- accessList?: import("../../index.js").AccessList | undefined;
2255
- blobs: readonly `0x${string}`[] | readonly Uint8Array[];
2256
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2257
- kzg?: import("../../index.js").Kzg | undefined;
2258
- sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
2259
- type?: "0x7c" | undefined;
2260
- feeCurrency?: `0x${string}` | undefined;
2261
- gatewayFee?: `0x${string}` | undefined;
2262
- gatewayFeeRecipient?: `0x${string}` | undefined;
2263
2031
  } | {
2264
2032
  data?: `0x${string}` | undefined;
2265
2033
  from: `0x${string}`;
@@ -2278,8 +2046,6 @@ export declare const celoAlfajores: {
2278
2046
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
2279
2047
  type?: "0x7b" | undefined;
2280
2048
  feeCurrency?: `0x${string}` | undefined;
2281
- gatewayFee?: undefined;
2282
- gatewayFeeRecipient?: undefined;
2283
2049
  }) & {};
2284
2050
  type: "transactionRequest";
2285
2051
  };
@@ -3144,8 +2910,8 @@ export declare const celoAlfajores: {
3144
2910
  yParity?: undefined;
3145
2911
  type: "legacy";
3146
2912
  feeCurrency: `0x${string}` | null;
3147
- gatewayFee: bigint | null;
3148
- gatewayFeeRecipient: `0x${string}` | null;
2913
+ gatewayFee?: undefined;
2914
+ gatewayFeeRecipient?: undefined;
3149
2915
  } | {
3150
2916
  r: `0x${string}`;
3151
2917
  s: `0x${string}`;
@@ -3225,8 +2991,8 @@ export declare const celoAlfajores: {
3225
2991
  chainId: number;
3226
2992
  type: "eip2930";
3227
2993
  feeCurrency: `0x${string}` | null;
3228
- gatewayFee: bigint | null;
3229
- gatewayFeeRecipient: `0x${string}` | null;
2994
+ gatewayFee?: undefined;
2995
+ gatewayFeeRecipient?: undefined;
3230
2996
  } | {
3231
2997
  blockHash: `0x${string}` | null;
3232
2998
  blockNumber: bigint | null;
@@ -3252,8 +3018,8 @@ export declare const celoAlfajores: {
3252
3018
  chainId: number;
3253
3019
  type: "eip1559";
3254
3020
  feeCurrency: `0x${string}` | null;
3255
- gatewayFee: bigint | null;
3256
- gatewayFeeRecipient: `0x${string}` | null;
3021
+ gatewayFee?: undefined;
3022
+ gatewayFeeRecipient?: undefined;
3257
3023
  } | {
3258
3024
  blockHash: `0x${string}` | null;
3259
3025
  blockNumber: bigint | null;
@@ -3333,8 +3099,8 @@ export declare const celoAlfajores: {
3333
3099
  chainId: number;
3334
3100
  type: "eip2930";
3335
3101
  feeCurrency: `0x${string}` | null;
3336
- gatewayFee: bigint | null;
3337
- gatewayFeeRecipient: `0x${string}` | null;
3102
+ gatewayFee?: undefined;
3103
+ gatewayFeeRecipient?: undefined;
3338
3104
  } | {
3339
3105
  blockHash: `0x${string}` | null;
3340
3106
  blockNumber: bigint | null;
@@ -3360,8 +3126,8 @@ export declare const celoAlfajores: {
3360
3126
  chainId: number;
3361
3127
  type: "eip1559";
3362
3128
  feeCurrency: `0x${string}` | null;
3363
- gatewayFee: bigint | null;
3364
- gatewayFeeRecipient: `0x${string}` | null;
3129
+ gatewayFee?: undefined;
3130
+ gatewayFeeRecipient?: undefined;
3365
3131
  } | {
3366
3132
  blockHash: `0x${string}` | null;
3367
3133
  blockNumber: bigint | null;
@@ -3441,8 +3207,8 @@ export declare const celoAlfajores: {
3441
3207
  chainId: number;
3442
3208
  type: "eip4844";
3443
3209
  feeCurrency: `0x${string}` | null;
3444
- gatewayFee: bigint | null;
3445
- gatewayFeeRecipient: `0x${string}` | null;
3210
+ gatewayFee?: undefined;
3211
+ gatewayFeeRecipient?: undefined;
3446
3212
  } | {
3447
3213
  blockHash: `0x${string}` | null;
3448
3214
  blockNumber: bigint | null;
@@ -3515,7 +3281,7 @@ export declare const celoAlfajores: {
3515
3281
  maxPriorityFeePerGas?: bigint | undefined;
3516
3282
  accessList?: import("../../index.js").AccessList | undefined;
3517
3283
  blobs?: undefined;
3518
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3284
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3519
3285
  blobVersionedHashes?: undefined;
3520
3286
  kzg?: undefined;
3521
3287
  sidecars?: undefined;
@@ -3538,8 +3304,6 @@ export declare const celoAlfajores: {
3538
3304
  sidecars?: undefined;
3539
3305
  } & {
3540
3306
  feeCurrency?: `0x${string}` | undefined;
3541
- gatewayFee?: bigint | undefined;
3542
- gatewayFeeRecipient?: `0x${string}` | undefined;
3543
3307
  }) | ({
3544
3308
  data?: `0x${string}` | undefined;
3545
3309
  from?: `0x${string}`;
@@ -3553,7 +3317,7 @@ export declare const celoAlfajores: {
3553
3317
  maxPriorityFeePerGas?: bigint | undefined;
3554
3318
  accessList?: import("../../index.js").AccessList | undefined;
3555
3319
  blobs?: undefined;
3556
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3320
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3557
3321
  blobVersionedHashes?: undefined;
3558
3322
  kzg?: undefined;
3559
3323
  sidecars?: undefined;
@@ -3576,8 +3340,6 @@ export declare const celoAlfajores: {
3576
3340
  sidecars?: undefined;
3577
3341
  } & {
3578
3342
  feeCurrency?: `0x${string}` | undefined;
3579
- gatewayFee?: bigint | undefined;
3580
- gatewayFeeRecipient?: `0x${string}` | undefined;
3581
3343
  }) | ({
3582
3344
  data?: `0x${string}` | undefined;
3583
3345
  from?: `0x${string}`;
@@ -3591,7 +3353,7 @@ export declare const celoAlfajores: {
3591
3353
  maxPriorityFeePerGas?: bigint | undefined;
3592
3354
  accessList?: import("../../index.js").AccessList | undefined;
3593
3355
  blobs?: undefined;
3594
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3356
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3595
3357
  blobVersionedHashes?: undefined;
3596
3358
  kzg?: undefined;
3597
3359
  sidecars?: undefined;
@@ -3614,8 +3376,6 @@ export declare const celoAlfajores: {
3614
3376
  sidecars?: undefined;
3615
3377
  } & {
3616
3378
  feeCurrency?: `0x${string}` | undefined;
3617
- gatewayFee?: bigint | undefined;
3618
- gatewayFeeRecipient?: `0x${string}` | undefined;
3619
3379
  }) | ({
3620
3380
  data?: `0x${string}` | undefined;
3621
3381
  from?: `0x${string}`;
@@ -3629,38 +3389,13 @@ export declare const celoAlfajores: {
3629
3389
  maxPriorityFeePerGas?: bigint | undefined;
3630
3390
  accessList?: import("../../index.js").AccessList | undefined;
3631
3391
  blobs?: undefined;
3632
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3392
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3633
3393
  blobVersionedHashes?: undefined;
3634
3394
  kzg?: undefined;
3635
3395
  sidecars?: undefined;
3636
3396
  } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
3637
3397
  accessList?: import("../../index.js").AccessList | undefined;
3638
3398
  feeCurrency?: `0x${string}` | undefined;
3639
- gatewayFee?: bigint | undefined;
3640
- gatewayFeeRecipient?: `0x${string}` | undefined;
3641
- type?: "cip42" | undefined;
3642
- }) | ({
3643
- data?: `0x${string}` | undefined;
3644
- from?: `0x${string}`;
3645
- gas?: bigint | undefined;
3646
- nonce?: number | undefined;
3647
- to?: `0x${string}` | null | undefined;
3648
- value?: bigint | undefined;
3649
- gasPrice?: bigint | undefined;
3650
- maxFeePerBlobGas?: bigint | undefined;
3651
- maxFeePerGas?: bigint | undefined;
3652
- maxPriorityFeePerGas?: bigint | undefined;
3653
- accessList?: import("../../index.js").AccessList | undefined;
3654
- blobs?: undefined;
3655
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3656
- blobVersionedHashes?: undefined;
3657
- kzg?: undefined;
3658
- sidecars?: undefined;
3659
- } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
3660
- accessList?: import("../../index.js").AccessList | undefined;
3661
- feeCurrency?: `0x${string}` | undefined;
3662
- gatewayFee?: undefined;
3663
- gatewayFeeRecipient?: undefined;
3664
3399
  type?: "cip64" | undefined;
3665
3400
  }) | ({
3666
3401
  data?: `0x${string}` | undefined;
@@ -3675,7 +3410,7 @@ export declare const celoAlfajores: {
3675
3410
  maxPriorityFeePerGas?: bigint | undefined;
3676
3411
  accessList?: import("../../index.js").AccessList | undefined;
3677
3412
  blobs?: undefined;
3678
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3413
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3679
3414
  blobVersionedHashes?: undefined;
3680
3415
  kzg?: undefined;
3681
3416
  sidecars?: undefined;
@@ -3698,8 +3433,6 @@ export declare const celoAlfajores: {
3698
3433
  sidecars?: undefined;
3699
3434
  } & {
3700
3435
  feeCurrency?: `0x${string}` | undefined;
3701
- gatewayFee?: bigint | undefined;
3702
- gatewayFeeRecipient?: `0x${string}` | undefined;
3703
3436
  }) | ({
3704
3437
  data?: `0x${string}` | undefined;
3705
3438
  from?: `0x${string}`;
@@ -3713,7 +3446,7 @@ export declare const celoAlfajores: {
3713
3446
  maxPriorityFeePerGas?: bigint | undefined;
3714
3447
  accessList?: import("../../index.js").AccessList | undefined;
3715
3448
  blobs?: undefined;
3716
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3449
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3717
3450
  blobVersionedHashes?: undefined;
3718
3451
  kzg?: undefined;
3719
3452
  sidecars?: undefined;
@@ -3736,8 +3469,6 @@ export declare const celoAlfajores: {
3736
3469
  sidecars?: undefined;
3737
3470
  } & {
3738
3471
  feeCurrency?: `0x${string}` | undefined;
3739
- gatewayFee?: bigint | undefined;
3740
- gatewayFeeRecipient?: `0x${string}` | undefined;
3741
3472
  }) | ({
3742
3473
  data?: `0x${string}` | undefined;
3743
3474
  from?: `0x${string}`;
@@ -3751,7 +3482,7 @@ export declare const celoAlfajores: {
3751
3482
  maxPriorityFeePerGas?: bigint | undefined;
3752
3483
  accessList?: import("../../index.js").AccessList | undefined;
3753
3484
  blobs?: undefined;
3754
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3485
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3755
3486
  blobVersionedHashes?: undefined;
3756
3487
  kzg?: undefined;
3757
3488
  sidecars?: undefined;
@@ -3774,31 +3505,6 @@ export declare const celoAlfajores: {
3774
3505
  sidecars?: undefined;
3775
3506
  } & {
3776
3507
  feeCurrency?: `0x${string}` | undefined;
3777
- gatewayFee?: bigint | undefined;
3778
- gatewayFeeRecipient?: `0x${string}` | undefined;
3779
- }) | ({
3780
- data?: `0x${string}` | undefined;
3781
- from?: `0x${string}`;
3782
- gas?: bigint | undefined;
3783
- nonce?: number | undefined;
3784
- to?: `0x${string}` | null | undefined;
3785
- value?: bigint | undefined;
3786
- gasPrice?: bigint | undefined;
3787
- maxFeePerBlobGas?: bigint | undefined;
3788
- maxFeePerGas?: bigint | undefined;
3789
- maxPriorityFeePerGas?: bigint | undefined;
3790
- accessList?: import("../../index.js").AccessList | undefined;
3791
- blobs?: undefined;
3792
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3793
- blobVersionedHashes?: undefined;
3794
- kzg?: undefined;
3795
- sidecars?: undefined;
3796
- } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
3797
- accessList?: import("../../index.js").AccessList | undefined;
3798
- feeCurrency?: `0x${string}` | undefined;
3799
- gatewayFee?: bigint | undefined;
3800
- gatewayFeeRecipient?: `0x${string}` | undefined;
3801
- type?: "cip42" | undefined;
3802
3508
  }) | ({
3803
3509
  data?: `0x${string}` | undefined;
3804
3510
  from?: `0x${string}`;
@@ -3812,15 +3518,13 @@ export declare const celoAlfajores: {
3812
3518
  maxPriorityFeePerGas?: bigint | undefined;
3813
3519
  accessList?: import("../../index.js").AccessList | undefined;
3814
3520
  blobs?: undefined;
3815
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3521
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3816
3522
  blobVersionedHashes?: undefined;
3817
3523
  kzg?: undefined;
3818
3524
  sidecars?: undefined;
3819
3525
  } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
3820
3526
  accessList?: import("../../index.js").AccessList | undefined;
3821
3527
  feeCurrency?: `0x${string}` | undefined;
3822
- gatewayFee?: undefined;
3823
- gatewayFeeRecipient?: undefined;
3824
3528
  type?: "cip64" | undefined;
3825
3529
  }) | ({
3826
3530
  data?: `0x${string}` | undefined;
@@ -3835,7 +3539,7 @@ export declare const celoAlfajores: {
3835
3539
  maxPriorityFeePerGas?: bigint | undefined;
3836
3540
  accessList?: import("../../index.js").AccessList | undefined;
3837
3541
  blobs?: undefined;
3838
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3542
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3839
3543
  blobVersionedHashes?: undefined;
3840
3544
  kzg?: undefined;
3841
3545
  sidecars?: undefined;
@@ -3858,8 +3562,6 @@ export declare const celoAlfajores: {
3858
3562
  sidecars?: undefined;
3859
3563
  } & {
3860
3564
  feeCurrency?: `0x${string}` | undefined;
3861
- gatewayFee?: bigint | undefined;
3862
- gatewayFeeRecipient?: `0x${string}` | undefined;
3863
3565
  }) | ({
3864
3566
  data?: `0x${string}` | undefined;
3865
3567
  from?: `0x${string}`;
@@ -3873,7 +3575,7 @@ export declare const celoAlfajores: {
3873
3575
  maxPriorityFeePerGas?: bigint | undefined;
3874
3576
  accessList?: import("../../index.js").AccessList | undefined;
3875
3577
  blobs?: undefined;
3876
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3578
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3877
3579
  blobVersionedHashes?: undefined;
3878
3580
  kzg?: undefined;
3879
3581
  sidecars?: undefined;
@@ -3896,8 +3598,6 @@ export declare const celoAlfajores: {
3896
3598
  sidecars?: undefined;
3897
3599
  } & {
3898
3600
  feeCurrency?: `0x${string}` | undefined;
3899
- gatewayFee?: bigint | undefined;
3900
- gatewayFeeRecipient?: `0x${string}` | undefined;
3901
3601
  }) | ({
3902
3602
  data?: `0x${string}` | undefined;
3903
3603
  from?: `0x${string}`;
@@ -3911,7 +3611,7 @@ export declare const celoAlfajores: {
3911
3611
  maxPriorityFeePerGas?: bigint | undefined;
3912
3612
  accessList?: import("../../index.js").AccessList | undefined;
3913
3613
  blobs?: undefined;
3914
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3614
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3915
3615
  blobVersionedHashes?: undefined;
3916
3616
  kzg?: undefined;
3917
3617
  sidecars?: undefined;
@@ -3934,31 +3634,6 @@ export declare const celoAlfajores: {
3934
3634
  sidecars?: undefined;
3935
3635
  } & {
3936
3636
  feeCurrency?: `0x${string}` | undefined;
3937
- gatewayFee?: bigint | undefined;
3938
- gatewayFeeRecipient?: `0x${string}` | undefined;
3939
- }) | ({
3940
- data?: `0x${string}` | undefined;
3941
- from?: `0x${string}`;
3942
- gas?: bigint | undefined;
3943
- nonce?: number | undefined;
3944
- to?: `0x${string}` | null | undefined;
3945
- value?: bigint | undefined;
3946
- gasPrice?: bigint | undefined;
3947
- maxFeePerBlobGas?: bigint | undefined;
3948
- maxFeePerGas?: bigint | undefined;
3949
- maxPriorityFeePerGas?: bigint | undefined;
3950
- accessList?: import("../../index.js").AccessList | undefined;
3951
- blobs?: undefined;
3952
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3953
- blobVersionedHashes?: undefined;
3954
- kzg?: undefined;
3955
- sidecars?: undefined;
3956
- } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
3957
- accessList?: import("../../index.js").AccessList | undefined;
3958
- feeCurrency?: `0x${string}` | undefined;
3959
- gatewayFee?: bigint | undefined;
3960
- gatewayFeeRecipient?: `0x${string}` | undefined;
3961
- type?: "cip42" | undefined;
3962
3637
  }) | ({
3963
3638
  data?: `0x${string}` | undefined;
3964
3639
  from?: `0x${string}`;
@@ -3972,15 +3647,13 @@ export declare const celoAlfajores: {
3972
3647
  maxPriorityFeePerGas?: bigint | undefined;
3973
3648
  accessList?: import("../../index.js").AccessList | undefined;
3974
3649
  blobs?: undefined;
3975
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3650
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
3976
3651
  blobVersionedHashes?: undefined;
3977
3652
  kzg?: undefined;
3978
3653
  sidecars?: undefined;
3979
3654
  } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
3980
3655
  accessList?: import("../../index.js").AccessList | undefined;
3981
3656
  feeCurrency?: `0x${string}` | undefined;
3982
- gatewayFee?: undefined;
3983
- gatewayFeeRecipient?: undefined;
3984
3657
  type?: "cip64" | undefined;
3985
3658
  }) | ({
3986
3659
  data?: `0x${string}` | undefined;
@@ -3998,7 +3671,7 @@ export declare const celoAlfajores: {
3998
3671
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3999
3672
  kzg?: import("../../index.js").Kzg | undefined;
4000
3673
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4001
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3674
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
4002
3675
  } & {
4003
3676
  data?: `0x${string}` | undefined;
4004
3677
  from: `0x${string}`;
@@ -4018,8 +3691,6 @@ export declare const celoAlfajores: {
4018
3691
  sidecars?: undefined;
4019
3692
  } & {
4020
3693
  feeCurrency?: `0x${string}` | undefined;
4021
- gatewayFee?: bigint | undefined;
4022
- gatewayFeeRecipient?: `0x${string}` | undefined;
4023
3694
  }) | ({
4024
3695
  data?: `0x${string}` | undefined;
4025
3696
  from?: `0x${string}`;
@@ -4036,7 +3707,7 @@ export declare const celoAlfajores: {
4036
3707
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4037
3708
  kzg?: import("../../index.js").Kzg | undefined;
4038
3709
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4039
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3710
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
4040
3711
  } & {
4041
3712
  data?: `0x${string}` | undefined;
4042
3713
  from: `0x${string}`;
@@ -4056,8 +3727,6 @@ export declare const celoAlfajores: {
4056
3727
  sidecars?: undefined;
4057
3728
  } & {
4058
3729
  feeCurrency?: `0x${string}` | undefined;
4059
- gatewayFee?: bigint | undefined;
4060
- gatewayFeeRecipient?: `0x${string}` | undefined;
4061
3730
  }) | ({
4062
3731
  data?: `0x${string}` | undefined;
4063
3732
  from?: `0x${string}`;
@@ -4074,7 +3743,7 @@ export declare const celoAlfajores: {
4074
3743
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4075
3744
  kzg?: import("../../index.js").Kzg | undefined;
4076
3745
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4077
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3746
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
4078
3747
  } & {
4079
3748
  data?: `0x${string}` | undefined;
4080
3749
  from: `0x${string}`;
@@ -4094,8 +3763,6 @@ export declare const celoAlfajores: {
4094
3763
  sidecars?: undefined;
4095
3764
  } & {
4096
3765
  feeCurrency?: `0x${string}` | undefined;
4097
- gatewayFee?: bigint | undefined;
4098
- gatewayFeeRecipient?: `0x${string}` | undefined;
4099
3766
  }) | ({
4100
3767
  data?: `0x${string}` | undefined;
4101
3768
  from?: `0x${string}`;
@@ -4112,7 +3779,7 @@ export declare const celoAlfajores: {
4112
3779
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4113
3780
  kzg?: import("../../index.js").Kzg | undefined;
4114
3781
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4115
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3782
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
4116
3783
  } & {
4117
3784
  data?: `0x${string}` | undefined;
4118
3785
  from: `0x${string}`;
@@ -4132,31 +3799,6 @@ export declare const celoAlfajores: {
4132
3799
  type?: "eip4844" | undefined;
4133
3800
  } & {
4134
3801
  feeCurrency?: `0x${string}` | undefined;
4135
- gatewayFee?: bigint | undefined;
4136
- gatewayFeeRecipient?: `0x${string}` | undefined;
4137
- }) | ({
4138
- data?: `0x${string}` | undefined;
4139
- from?: `0x${string}`;
4140
- gas?: bigint | undefined;
4141
- nonce?: number | undefined;
4142
- value?: bigint | undefined;
4143
- to?: `0x${string}` | null | undefined;
4144
- gasPrice?: bigint | undefined;
4145
- maxFeePerGas?: bigint | undefined;
4146
- maxPriorityFeePerGas?: bigint | undefined;
4147
- maxFeePerBlobGas?: bigint | undefined;
4148
- accessList?: import("../../index.js").AccessList | undefined;
4149
- blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4150
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4151
- kzg?: import("../../index.js").Kzg | undefined;
4152
- sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4153
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
4154
- } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
4155
- accessList?: import("../../index.js").AccessList | undefined;
4156
- feeCurrency?: `0x${string}` | undefined;
4157
- gatewayFee?: bigint | undefined;
4158
- gatewayFeeRecipient?: `0x${string}` | undefined;
4159
- type?: "cip42" | undefined;
4160
3802
  }) | ({
4161
3803
  data?: `0x${string}` | undefined;
4162
3804
  from?: `0x${string}`;
@@ -4173,12 +3815,10 @@ export declare const celoAlfajores: {
4173
3815
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4174
3816
  kzg?: import("../../index.js").Kzg | undefined;
4175
3817
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4176
- type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3818
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip64" | undefined;
4177
3819
  } & import("../../index.js").TransactionRequestBase & import("../../index.js").ExactPartial<import("../../index.js").FeeValuesEIP1559> & {
4178
3820
  accessList?: import("../../index.js").AccessList | undefined;
4179
3821
  feeCurrency?: `0x${string}` | undefined;
4180
- gatewayFee?: undefined;
4181
- gatewayFeeRecipient?: undefined;
4182
3822
  type?: "cip64" | undefined;
4183
3823
  })) => ({
4184
3824
  data?: `0x${string}` | undefined;
@@ -4198,8 +3838,6 @@ export declare const celoAlfajores: {
4198
3838
  kzg?: undefined;
4199
3839
  sidecars?: undefined;
4200
3840
  feeCurrency?: `0x${string}` | undefined;
4201
- gatewayFee?: `0x${string}` | undefined;
4202
- gatewayFeeRecipient?: `0x${string}` | undefined;
4203
3841
  } | {
4204
3842
  data?: `0x${string}` | undefined;
4205
3843
  from: `0x${string}`;
@@ -4218,8 +3856,6 @@ export declare const celoAlfajores: {
4218
3856
  kzg?: undefined;
4219
3857
  sidecars?: undefined;
4220
3858
  feeCurrency?: `0x${string}` | undefined;
4221
- gatewayFee?: `0x${string}` | undefined;
4222
- gatewayFeeRecipient?: `0x${string}` | undefined;
4223
3859
  } | {
4224
3860
  data?: `0x${string}` | undefined;
4225
3861
  from: `0x${string}`;
@@ -4238,28 +3874,6 @@ export declare const celoAlfajores: {
4238
3874
  kzg?: undefined;
4239
3875
  sidecars?: undefined;
4240
3876
  feeCurrency?: `0x${string}` | undefined;
4241
- gatewayFee?: `0x${string}` | undefined;
4242
- gatewayFeeRecipient?: `0x${string}` | undefined;
4243
- } | {
4244
- data?: `0x${string}` | undefined;
4245
- from: `0x${string}`;
4246
- gas?: `0x${string}` | undefined;
4247
- nonce?: `0x${string}` | undefined;
4248
- to?: `0x${string}` | null | undefined;
4249
- value?: `0x${string}` | undefined;
4250
- gasPrice?: undefined;
4251
- maxFeePerBlobGas?: undefined;
4252
- maxFeePerGas?: `0x${string}` | undefined;
4253
- maxPriorityFeePerGas?: `0x${string}` | undefined;
4254
- accessList?: import("../../index.js").AccessList | undefined;
4255
- blobs?: undefined;
4256
- type?: "0x7c" | undefined;
4257
- blobVersionedHashes?: undefined;
4258
- kzg?: undefined;
4259
- sidecars?: undefined;
4260
- feeCurrency?: `0x${string}` | undefined;
4261
- gatewayFee?: `0x${string}` | undefined;
4262
- gatewayFeeRecipient?: `0x${string}` | undefined;
4263
3877
  } | {
4264
3878
  data?: `0x${string}` | undefined;
4265
3879
  from: `0x${string}`;
@@ -4278,8 +3892,6 @@ export declare const celoAlfajores: {
4278
3892
  kzg?: undefined;
4279
3893
  sidecars?: undefined;
4280
3894
  feeCurrency?: `0x${string}` | undefined;
4281
- gatewayFee?: undefined;
4282
- gatewayFeeRecipient?: undefined;
4283
3895
  } | {
4284
3896
  data?: `0x${string}` | undefined;
4285
3897
  from: `0x${string}`;
@@ -4298,8 +3910,6 @@ export declare const celoAlfajores: {
4298
3910
  kzg?: undefined;
4299
3911
  sidecars?: undefined;
4300
3912
  feeCurrency?: `0x${string}` | undefined;
4301
- gatewayFee?: `0x${string}` | undefined;
4302
- gatewayFeeRecipient?: `0x${string}` | undefined;
4303
3913
  } | {
4304
3914
  data?: `0x${string}` | undefined;
4305
3915
  from: `0x${string}`;
@@ -4318,8 +3928,6 @@ export declare const celoAlfajores: {
4318
3928
  kzg?: undefined;
4319
3929
  sidecars?: undefined;
4320
3930
  feeCurrency?: `0x${string}` | undefined;
4321
- gatewayFee?: `0x${string}` | undefined;
4322
- gatewayFeeRecipient?: `0x${string}` | undefined;
4323
3931
  } | {
4324
3932
  data?: `0x${string}` | undefined;
4325
3933
  from: `0x${string}`;
@@ -4338,28 +3946,6 @@ export declare const celoAlfajores: {
4338
3946
  kzg?: undefined;
4339
3947
  sidecars?: undefined;
4340
3948
  feeCurrency?: `0x${string}` | undefined;
4341
- gatewayFee?: `0x${string}` | undefined;
4342
- gatewayFeeRecipient?: `0x${string}` | undefined;
4343
- } | {
4344
- data?: `0x${string}` | undefined;
4345
- from: `0x${string}`;
4346
- gas?: `0x${string}` | undefined;
4347
- nonce?: `0x${string}` | undefined;
4348
- to?: `0x${string}` | null | undefined;
4349
- value?: `0x${string}` | undefined;
4350
- gasPrice?: undefined;
4351
- maxFeePerBlobGas?: undefined;
4352
- maxFeePerGas?: `0x${string}` | undefined;
4353
- maxPriorityFeePerGas?: `0x${string}` | undefined;
4354
- accessList?: import("../../index.js").AccessList | undefined;
4355
- blobs?: undefined;
4356
- type?: "0x7c" | undefined;
4357
- blobVersionedHashes?: undefined;
4358
- kzg?: undefined;
4359
- sidecars?: undefined;
4360
- feeCurrency?: `0x${string}` | undefined;
4361
- gatewayFee?: `0x${string}` | undefined;
4362
- gatewayFeeRecipient?: `0x${string}` | undefined;
4363
3949
  } | {
4364
3950
  data?: `0x${string}` | undefined;
4365
3951
  from: `0x${string}`;
@@ -4378,8 +3964,6 @@ export declare const celoAlfajores: {
4378
3964
  kzg?: undefined;
4379
3965
  sidecars?: undefined;
4380
3966
  feeCurrency?: `0x${string}` | undefined;
4381
- gatewayFee?: undefined;
4382
- gatewayFeeRecipient?: undefined;
4383
3967
  } | {
4384
3968
  data?: `0x${string}` | undefined;
4385
3969
  from: `0x${string}`;
@@ -4398,8 +3982,6 @@ export declare const celoAlfajores: {
4398
3982
  kzg?: undefined;
4399
3983
  sidecars?: undefined;
4400
3984
  feeCurrency?: `0x${string}` | undefined;
4401
- gatewayFee?: `0x${string}` | undefined;
4402
- gatewayFeeRecipient?: `0x${string}` | undefined;
4403
3985
  } | {
4404
3986
  data?: `0x${string}` | undefined;
4405
3987
  from: `0x${string}`;
@@ -4418,8 +4000,6 @@ export declare const celoAlfajores: {
4418
4000
  kzg?: undefined;
4419
4001
  sidecars?: undefined;
4420
4002
  feeCurrency?: `0x${string}` | undefined;
4421
- gatewayFee?: `0x${string}` | undefined;
4422
- gatewayFeeRecipient?: `0x${string}` | undefined;
4423
4003
  } | {
4424
4004
  data?: `0x${string}` | undefined;
4425
4005
  from: `0x${string}`;
@@ -4438,28 +4018,6 @@ export declare const celoAlfajores: {
4438
4018
  kzg?: undefined;
4439
4019
  sidecars?: undefined;
4440
4020
  feeCurrency?: `0x${string}` | undefined;
4441
- gatewayFee?: `0x${string}` | undefined;
4442
- gatewayFeeRecipient?: `0x${string}` | undefined;
4443
- } | {
4444
- data?: `0x${string}` | undefined;
4445
- from: `0x${string}`;
4446
- gas?: `0x${string}` | undefined;
4447
- nonce?: `0x${string}` | undefined;
4448
- to?: `0x${string}` | null | undefined;
4449
- value?: `0x${string}` | undefined;
4450
- gasPrice?: undefined;
4451
- maxFeePerBlobGas?: undefined;
4452
- maxFeePerGas?: `0x${string}` | undefined;
4453
- maxPriorityFeePerGas?: `0x${string}` | undefined;
4454
- accessList?: import("../../index.js").AccessList | undefined;
4455
- blobs?: undefined;
4456
- type?: "0x7c" | undefined;
4457
- blobVersionedHashes?: undefined;
4458
- kzg?: undefined;
4459
- sidecars?: undefined;
4460
- feeCurrency?: `0x${string}` | undefined;
4461
- gatewayFee?: `0x${string}` | undefined;
4462
- gatewayFeeRecipient?: `0x${string}` | undefined;
4463
4021
  } | {
4464
4022
  data?: `0x${string}` | undefined;
4465
4023
  from: `0x${string}`;
@@ -4478,8 +4036,6 @@ export declare const celoAlfajores: {
4478
4036
  kzg?: undefined;
4479
4037
  sidecars?: undefined;
4480
4038
  feeCurrency?: `0x${string}` | undefined;
4481
- gatewayFee?: undefined;
4482
- gatewayFeeRecipient?: undefined;
4483
4039
  } | {
4484
4040
  data?: `0x${string}` | undefined;
4485
4041
  from: `0x${string}`;
@@ -4498,28 +4054,6 @@ export declare const celoAlfajores: {
4498
4054
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4499
4055
  type?: "0x3" | undefined;
4500
4056
  feeCurrency?: `0x${string}` | undefined;
4501
- gatewayFee?: `0x${string}` | undefined;
4502
- gatewayFeeRecipient?: `0x${string}` | undefined;
4503
- } | {
4504
- data?: `0x${string}` | undefined;
4505
- from: `0x${string}`;
4506
- gas?: `0x${string}` | undefined;
4507
- nonce?: `0x${string}` | undefined;
4508
- value?: `0x${string}` | undefined;
4509
- to: `0x${string}` | null | undefined;
4510
- gasPrice?: undefined;
4511
- maxFeePerGas?: `0x${string}` | undefined;
4512
- maxPriorityFeePerGas?: `0x${string}` | undefined;
4513
- maxFeePerBlobGas: undefined;
4514
- accessList?: import("../../index.js").AccessList | undefined;
4515
- blobs: readonly `0x${string}`[] | readonly Uint8Array[];
4516
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4517
- kzg?: import("../../index.js").Kzg | undefined;
4518
- sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4519
- type?: "0x7c" | undefined;
4520
- feeCurrency?: `0x${string}` | undefined;
4521
- gatewayFee?: `0x${string}` | undefined;
4522
- gatewayFeeRecipient?: `0x${string}` | undefined;
4523
4057
  } | {
4524
4058
  data?: `0x${string}` | undefined;
4525
4059
  from: `0x${string}`;
@@ -4538,8 +4072,6 @@ export declare const celoAlfajores: {
4538
4072
  sidecars?: readonly import("../../index.js").BlobSidecar<`0x${string}`>[] | undefined;
4539
4073
  type?: "0x7b" | undefined;
4540
4074
  feeCurrency?: `0x${string}` | undefined;
4541
- gatewayFee?: undefined;
4542
- gatewayFeeRecipient?: undefined;
4543
4075
  }) & {};
4544
4076
  type: "transactionRequest";
4545
4077
  };