viem 2.9.4 → 2.9.6

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 (95) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +6 -0
  3. package/_cjs/actions/public/estimateFeesPerGas.js +6 -3
  4. package/_cjs/actions/public/estimateFeesPerGas.js.map +1 -1
  5. package/_cjs/celo/chainConfig.js +2 -0
  6. package/_cjs/celo/chainConfig.js.map +1 -1
  7. package/_cjs/celo/fees.js +32 -0
  8. package/_cjs/celo/fees.js.map +1 -0
  9. package/_cjs/chains/definitions/degen.js +26 -0
  10. package/_cjs/chains/definitions/degen.js.map +1 -0
  11. package/_cjs/chains/definitions/seiDevnet.js +22 -0
  12. package/_cjs/chains/definitions/seiDevnet.js.map +1 -0
  13. package/_cjs/chains/index.js +8 -4
  14. package/_cjs/chains/index.js.map +1 -1
  15. package/_cjs/clients/transports/http.js +2 -1
  16. package/_cjs/clients/transports/http.js.map +1 -1
  17. package/_cjs/errors/version.js +1 -1
  18. package/_cjs/utils/address/getAddress.js +1 -1
  19. package/_cjs/utils/address/getAddress.js.map +1 -1
  20. package/_cjs/utils/address/isAddress.js +2 -1
  21. package/_cjs/utils/address/isAddress.js.map +1 -1
  22. package/_cjs/utils/rpc/http.js +7 -6
  23. package/_cjs/utils/rpc/http.js.map +1 -1
  24. package/_esm/actions/public/estimateFeesPerGas.js +6 -3
  25. package/_esm/actions/public/estimateFeesPerGas.js.map +1 -1
  26. package/_esm/celo/chainConfig.js +2 -0
  27. package/_esm/celo/chainConfig.js.map +1 -1
  28. package/_esm/celo/fees.js +58 -0
  29. package/_esm/celo/fees.js.map +1 -0
  30. package/_esm/chains/definitions/degen.js +23 -0
  31. package/_esm/chains/definitions/degen.js.map +1 -0
  32. package/_esm/chains/definitions/seiDevnet.js +19 -0
  33. package/_esm/chains/definitions/seiDevnet.js.map +1 -0
  34. package/_esm/chains/index.js +2 -0
  35. package/_esm/chains/index.js.map +1 -1
  36. package/_esm/clients/transports/http.js +2 -1
  37. package/_esm/clients/transports/http.js.map +1 -1
  38. package/_esm/errors/version.js +1 -1
  39. package/_esm/utils/address/getAddress.js +1 -1
  40. package/_esm/utils/address/getAddress.js.map +1 -1
  41. package/_esm/utils/address/isAddress.js +2 -1
  42. package/_esm/utils/address/isAddress.js.map +1 -1
  43. package/_esm/utils/rpc/http.js +7 -6
  44. package/_esm/utils/rpc/http.js.map +1 -1
  45. package/_types/actions/public/estimateFeesPerGas.d.ts +1 -2
  46. package/_types/actions/public/estimateFeesPerGas.d.ts.map +1 -1
  47. package/_types/actions/public/readContract.d.ts +1 -1
  48. package/_types/actions/public/readContract.d.ts.map +1 -1
  49. package/_types/actions/public/simulateContract.d.ts +1 -1
  50. package/_types/actions/public/simulateContract.d.ts.map +1 -1
  51. package/_types/celo/chainConfig.d.ts +2101 -0
  52. package/_types/celo/chainConfig.d.ts.map +1 -1
  53. package/_types/celo/fees.d.ts +4 -0
  54. package/_types/celo/fees.d.ts.map +1 -0
  55. package/_types/chains/definitions/celo.d.ts +2101 -1
  56. package/_types/chains/definitions/celo.d.ts.map +1 -1
  57. package/_types/chains/definitions/celoAlfajores.d.ts +2101 -1
  58. package/_types/chains/definitions/celoAlfajores.d.ts.map +1 -1
  59. package/_types/chains/definitions/degen.d.ts +36 -0
  60. package/_types/chains/definitions/degen.d.ts.map +1 -0
  61. package/_types/chains/definitions/seiDevnet.d.ts +35 -0
  62. package/_types/chains/definitions/seiDevnet.d.ts.map +1 -0
  63. package/_types/chains/index.d.ts +2 -0
  64. package/_types/chains/index.d.ts.map +1 -1
  65. package/_types/clients/transports/http.d.ts +3 -3
  66. package/_types/clients/transports/http.d.ts.map +1 -1
  67. package/_types/errors/version.d.ts +1 -1
  68. package/_types/types/chain.d.ts +2 -1
  69. package/_types/types/chain.d.ts.map +1 -1
  70. package/_types/utils/abi/decodeFunctionResult.d.ts +1 -1
  71. package/_types/utils/abi/decodeFunctionResult.d.ts.map +1 -1
  72. package/_types/utils/abi/getAbiItem.d.ts +1 -1
  73. package/_types/utils/abi/getAbiItem.d.ts.map +1 -1
  74. package/_types/utils/address/getAddress.d.ts.map +1 -1
  75. package/_types/utils/address/isAddress.d.ts +1 -1
  76. package/_types/utils/address/isAddress.d.ts.map +1 -1
  77. package/_types/utils/rpc/http.d.ts +11 -0
  78. package/_types/utils/rpc/http.d.ts.map +1 -1
  79. package/actions/public/estimateFeesPerGas.ts +7 -4
  80. package/actions/public/readContract.ts +1 -1
  81. package/actions/public/simulateContract.ts +1 -1
  82. package/celo/chainConfig.ts +2 -0
  83. package/celo/fees.ts +92 -0
  84. package/chains/definitions/degen.ts +23 -0
  85. package/chains/definitions/seiDevnet.ts +19 -0
  86. package/chains/index.ts +2 -0
  87. package/clients/transports/http.ts +5 -3
  88. package/errors/version.ts +1 -1
  89. package/package.json +1 -1
  90. package/types/chain.ts +7 -3
  91. package/utils/abi/decodeFunctionResult.ts +1 -1
  92. package/utils/abi/getAbiItem.ts +1 -1
  93. package/utils/address/getAddress.ts +2 -1
  94. package/utils/address/isAddress.ts +3 -1
  95. package/utils/rpc/http.ts +17 -12
@@ -2103,5 +2103,2106 @@ export declare const chainConfig: {
2103
2103
  readonly serializers: {
2104
2104
  readonly transaction: typeof import("./serializers.js").serializeTransaction;
2105
2105
  };
2106
+ readonly fees: import("../index.js").ChainFees<{
2107
+ readonly block: {
2108
+ exclude: ("nonce" | "difficulty" | "gasLimit" | "mixHash" | "uncles")[] | undefined;
2109
+ format: (args: import("../types/utils.js").Assign<import("../index.js").ExactPartial<import("../index.js").RpcBlock>, import("./types.js").CeloBlockOverrides & {
2110
+ transactions: `0x${string}`[] | import("./types.js").CeloRpcTransaction[];
2111
+ }>) => {
2112
+ baseFeePerGas: bigint | null;
2113
+ blobGasUsed: bigint;
2114
+ difficulty: bigint;
2115
+ excessBlobGas: bigint;
2116
+ extraData: `0x${string}`;
2117
+ gasLimit: bigint;
2118
+ gasUsed: bigint;
2119
+ hash: `0x${string}` | null;
2120
+ logsBloom: `0x${string}` | null;
2121
+ miner: `0x${string}`;
2122
+ mixHash: `0x${string}`;
2123
+ nonce: `0x${string}` | null;
2124
+ number: bigint | null;
2125
+ parentHash: `0x${string}`;
2126
+ receiptsRoot: `0x${string}`;
2127
+ sealFields: `0x${string}`[];
2128
+ sha3Uncles: `0x${string}`;
2129
+ size: bigint;
2130
+ stateRoot: `0x${string}`;
2131
+ timestamp: bigint;
2132
+ totalDifficulty: bigint | null;
2133
+ transactions: `0x${string}`[] | import("./types.js").CeloTransaction[];
2134
+ transactionsRoot: `0x${string}`;
2135
+ uncles: `0x${string}`[];
2136
+ withdrawals?: import("../index.js").Withdrawal[] | undefined;
2137
+ withdrawalsRoot?: `0x${string}` | undefined;
2138
+ randomness: {
2139
+ committed: `0x${string}`;
2140
+ revealed: `0x${string}`;
2141
+ };
2142
+ } & {
2143
+ nonce: never;
2144
+ difficulty: never;
2145
+ gasLimit: never;
2146
+ mixHash: never;
2147
+ uncles: never;
2148
+ };
2149
+ type: "block";
2150
+ };
2151
+ readonly transaction: {
2152
+ exclude: [] | undefined;
2153
+ format: (args: ({
2154
+ r?: `0x${string}`;
2155
+ s?: `0x${string}`;
2156
+ v?: `0x${string}`;
2157
+ yParity?: `0x${string}` | undefined;
2158
+ gasPrice?: `0x${string}` | undefined;
2159
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2160
+ maxFeePerGas?: `0x${string}` | undefined;
2161
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2162
+ to?: `0x${string}` | null;
2163
+ from?: `0x${string}`;
2164
+ gas?: `0x${string}`;
2165
+ nonce?: `0x${string}`;
2166
+ value?: `0x${string}`;
2167
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2168
+ accessList?: undefined;
2169
+ blockHash?: `0x${string}` | null;
2170
+ blockNumber?: `0x${string}` | null;
2171
+ hash?: `0x${string}`;
2172
+ input?: `0x${string}`;
2173
+ transactionIndex?: `0x${string}` | null;
2174
+ blobVersionedHashes?: undefined;
2175
+ chainId?: `0x${string}` | undefined;
2176
+ } & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
2177
+ r: `0x${string}`;
2178
+ s: `0x${string}`;
2179
+ v: `0x${string}`;
2180
+ to: `0x${string}` | null;
2181
+ from: `0x${string}`;
2182
+ gas: `0x${string}`;
2183
+ nonce: `0x${string}`;
2184
+ value: `0x${string}`;
2185
+ blockHash: `0x${string}` | null;
2186
+ blockNumber: `0x${string}` | null;
2187
+ hash: `0x${string}`;
2188
+ input: `0x${string}`;
2189
+ transactionIndex: `0x${string}` | null;
2190
+ typeHex: `0x${string}` | null;
2191
+ gasPrice: `0x${string}`;
2192
+ maxFeePerBlobGas?: undefined;
2193
+ maxFeePerGas?: undefined;
2194
+ maxPriorityFeePerGas?: undefined;
2195
+ accessList?: undefined;
2196
+ blobVersionedHashes?: undefined;
2197
+ chainId?: `0x${string}` | undefined;
2198
+ yParity?: undefined;
2199
+ type: "0x0";
2200
+ }, "yParity">, "typeHex"> & {
2201
+ feeCurrency: `0x${string}` | null;
2202
+ gatewayFee: `0x${string}` | null;
2203
+ gatewayFeeRecipient: `0x${string}` | null;
2204
+ }) | ({
2205
+ r?: `0x${string}`;
2206
+ s?: `0x${string}`;
2207
+ v?: `0x${string}`;
2208
+ yParity?: `0x${string}` | undefined;
2209
+ gasPrice?: `0x${string}` | undefined;
2210
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2211
+ maxFeePerGas?: `0x${string}` | undefined;
2212
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2213
+ to?: `0x${string}` | null;
2214
+ from?: `0x${string}`;
2215
+ gas?: `0x${string}`;
2216
+ nonce?: `0x${string}`;
2217
+ value?: `0x${string}`;
2218
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2219
+ accessList?: undefined;
2220
+ blockHash?: `0x${string}` | null;
2221
+ blockNumber?: `0x${string}` | null;
2222
+ hash?: `0x${string}`;
2223
+ input?: `0x${string}`;
2224
+ transactionIndex?: `0x${string}` | null;
2225
+ blobVersionedHashes?: undefined;
2226
+ chainId?: `0x${string}` | undefined;
2227
+ } & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
2228
+ feeCurrency: `0x${string}` | null;
2229
+ gatewayFee: `0x${string}` | null;
2230
+ gatewayFeeRecipient: `0x${string}` | null;
2231
+ type: "0x7c";
2232
+ }) | ({
2233
+ r?: `0x${string}`;
2234
+ s?: `0x${string}`;
2235
+ v?: `0x${string}`;
2236
+ yParity?: `0x${string}` | undefined;
2237
+ gasPrice?: `0x${string}` | undefined;
2238
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2239
+ maxFeePerGas?: `0x${string}` | undefined;
2240
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2241
+ to?: `0x${string}` | null;
2242
+ from?: `0x${string}`;
2243
+ gas?: `0x${string}`;
2244
+ nonce?: `0x${string}`;
2245
+ value?: `0x${string}`;
2246
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2247
+ accessList?: undefined;
2248
+ blockHash?: `0x${string}` | null;
2249
+ blockNumber?: `0x${string}` | null;
2250
+ hash?: `0x${string}`;
2251
+ input?: `0x${string}`;
2252
+ transactionIndex?: `0x${string}` | null;
2253
+ blobVersionedHashes?: undefined;
2254
+ chainId?: `0x${string}` | undefined;
2255
+ } & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
2256
+ feeCurrency: `0x${string}` | null;
2257
+ gatewayFee?: undefined;
2258
+ gatewayFeeRecipient?: undefined;
2259
+ type: "0x7b";
2260
+ }) | ({
2261
+ r?: `0x${string}`;
2262
+ s?: `0x${string}`;
2263
+ v?: `0x${string}`;
2264
+ yParity?: `0x${string}` | undefined;
2265
+ gasPrice?: `0x${string}` | undefined;
2266
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2267
+ maxFeePerGas?: `0x${string}` | undefined;
2268
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2269
+ to?: `0x${string}` | null;
2270
+ from?: `0x${string}`;
2271
+ gas?: `0x${string}`;
2272
+ nonce?: `0x${string}`;
2273
+ value?: `0x${string}`;
2274
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2275
+ accessList?: import("../index.js").AccessList | undefined;
2276
+ blockHash?: `0x${string}` | null;
2277
+ blockNumber?: `0x${string}` | null;
2278
+ hash?: `0x${string}`;
2279
+ input?: `0x${string}`;
2280
+ transactionIndex?: `0x${string}` | null;
2281
+ blobVersionedHashes?: undefined;
2282
+ chainId?: `0x${string}` | undefined;
2283
+ } & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
2284
+ r: `0x${string}`;
2285
+ s: `0x${string}`;
2286
+ v: `0x${string}`;
2287
+ to: `0x${string}` | null;
2288
+ from: `0x${string}`;
2289
+ gas: `0x${string}`;
2290
+ nonce: `0x${string}`;
2291
+ value: `0x${string}`;
2292
+ blockHash: `0x${string}` | null;
2293
+ blockNumber: `0x${string}` | null;
2294
+ hash: `0x${string}`;
2295
+ input: `0x${string}`;
2296
+ transactionIndex: `0x${string}` | null;
2297
+ typeHex: `0x${string}` | null;
2298
+ gasPrice: `0x${string}`;
2299
+ maxFeePerBlobGas?: undefined;
2300
+ maxFeePerGas?: undefined;
2301
+ maxPriorityFeePerGas?: undefined;
2302
+ accessList?: undefined;
2303
+ blobVersionedHashes?: undefined;
2304
+ chainId?: `0x${string}` | undefined;
2305
+ yParity?: undefined;
2306
+ type: "0x0";
2307
+ }, "yParity">, "typeHex"> & {
2308
+ feeCurrency: `0x${string}` | null;
2309
+ gatewayFee: `0x${string}` | null;
2310
+ gatewayFeeRecipient: `0x${string}` | null;
2311
+ }) | ({
2312
+ r?: `0x${string}`;
2313
+ s?: `0x${string}`;
2314
+ v?: `0x${string}`;
2315
+ yParity?: `0x${string}` | undefined;
2316
+ gasPrice?: `0x${string}` | undefined;
2317
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2318
+ maxFeePerGas?: `0x${string}` | undefined;
2319
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2320
+ to?: `0x${string}` | null;
2321
+ from?: `0x${string}`;
2322
+ gas?: `0x${string}`;
2323
+ nonce?: `0x${string}`;
2324
+ value?: `0x${string}`;
2325
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2326
+ accessList?: import("../index.js").AccessList | undefined;
2327
+ blockHash?: `0x${string}` | null;
2328
+ blockNumber?: `0x${string}` | null;
2329
+ hash?: `0x${string}`;
2330
+ input?: `0x${string}`;
2331
+ transactionIndex?: `0x${string}` | null;
2332
+ blobVersionedHashes?: undefined;
2333
+ chainId?: `0x${string}` | undefined;
2334
+ } & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
2335
+ blockHash: `0x${string}` | null;
2336
+ blockNumber: `0x${string}` | null;
2337
+ from: `0x${string}`;
2338
+ gas: `0x${string}`;
2339
+ hash: `0x${string}`;
2340
+ input: `0x${string}`;
2341
+ nonce: `0x${string}`;
2342
+ r: `0x${string}`;
2343
+ s: `0x${string}`;
2344
+ to: `0x${string}` | null;
2345
+ transactionIndex: `0x${string}` | null;
2346
+ typeHex: `0x${string}` | null;
2347
+ v: `0x${string}`;
2348
+ value: `0x${string}`;
2349
+ yParity: `0x${string}`;
2350
+ gasPrice: `0x${string}`;
2351
+ maxFeePerBlobGas?: undefined;
2352
+ maxFeePerGas?: undefined;
2353
+ maxPriorityFeePerGas?: undefined;
2354
+ accessList: import("../index.js").AccessList;
2355
+ blobVersionedHashes?: undefined;
2356
+ chainId: `0x${string}`;
2357
+ type: "0x1";
2358
+ }, "yParity">, "typeHex"> & {
2359
+ feeCurrency: `0x${string}` | null;
2360
+ gatewayFee: `0x${string}` | null;
2361
+ gatewayFeeRecipient: `0x${string}` | null;
2362
+ }) | ({
2363
+ r?: `0x${string}`;
2364
+ s?: `0x${string}`;
2365
+ v?: `0x${string}`;
2366
+ yParity?: `0x${string}` | undefined;
2367
+ gasPrice?: `0x${string}` | undefined;
2368
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2369
+ maxFeePerGas?: `0x${string}` | undefined;
2370
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2371
+ to?: `0x${string}` | null;
2372
+ from?: `0x${string}`;
2373
+ gas?: `0x${string}`;
2374
+ nonce?: `0x${string}`;
2375
+ value?: `0x${string}`;
2376
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2377
+ accessList?: import("../index.js").AccessList | undefined;
2378
+ blockHash?: `0x${string}` | null;
2379
+ blockNumber?: `0x${string}` | null;
2380
+ hash?: `0x${string}`;
2381
+ input?: `0x${string}`;
2382
+ transactionIndex?: `0x${string}` | null;
2383
+ blobVersionedHashes?: undefined;
2384
+ chainId?: `0x${string}` | undefined;
2385
+ } & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
2386
+ blockHash: `0x${string}` | null;
2387
+ blockNumber: `0x${string}` | null;
2388
+ from: `0x${string}`;
2389
+ gas: `0x${string}`;
2390
+ hash: `0x${string}`;
2391
+ input: `0x${string}`;
2392
+ nonce: `0x${string}`;
2393
+ r: `0x${string}`;
2394
+ s: `0x${string}`;
2395
+ to: `0x${string}` | null;
2396
+ transactionIndex: `0x${string}` | null;
2397
+ typeHex: `0x${string}` | null;
2398
+ v: `0x${string}`;
2399
+ value: `0x${string}`;
2400
+ yParity: `0x${string}`;
2401
+ gasPrice?: undefined;
2402
+ maxFeePerBlobGas?: undefined;
2403
+ maxFeePerGas: `0x${string}`;
2404
+ maxPriorityFeePerGas: `0x${string}`;
2405
+ accessList: import("../index.js").AccessList;
2406
+ blobVersionedHashes?: undefined;
2407
+ chainId: `0x${string}`;
2408
+ type: "0x2";
2409
+ }, "yParity">, "typeHex"> & {
2410
+ feeCurrency: `0x${string}` | null;
2411
+ gatewayFee: `0x${string}` | null;
2412
+ gatewayFeeRecipient: `0x${string}` | null;
2413
+ }) | ({
2414
+ r?: `0x${string}`;
2415
+ s?: `0x${string}`;
2416
+ v?: `0x${string}`;
2417
+ yParity?: `0x${string}` | undefined;
2418
+ gasPrice?: `0x${string}` | undefined;
2419
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2420
+ maxFeePerGas?: `0x${string}` | undefined;
2421
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2422
+ to?: `0x${string}` | null;
2423
+ from?: `0x${string}`;
2424
+ gas?: `0x${string}`;
2425
+ nonce?: `0x${string}`;
2426
+ value?: `0x${string}`;
2427
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2428
+ accessList?: import("../index.js").AccessList | undefined;
2429
+ blockHash?: `0x${string}` | null;
2430
+ blockNumber?: `0x${string}` | null;
2431
+ hash?: `0x${string}`;
2432
+ input?: `0x${string}`;
2433
+ transactionIndex?: `0x${string}` | null;
2434
+ blobVersionedHashes?: undefined;
2435
+ chainId?: `0x${string}` | undefined;
2436
+ } & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
2437
+ feeCurrency: `0x${string}` | null;
2438
+ gatewayFee: `0x${string}` | null;
2439
+ gatewayFeeRecipient: `0x${string}` | null;
2440
+ type: "0x7c";
2441
+ }) | ({
2442
+ r?: `0x${string}`;
2443
+ s?: `0x${string}`;
2444
+ v?: `0x${string}`;
2445
+ yParity?: `0x${string}` | undefined;
2446
+ gasPrice?: `0x${string}` | undefined;
2447
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2448
+ maxFeePerGas?: `0x${string}` | undefined;
2449
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2450
+ to?: `0x${string}` | null;
2451
+ from?: `0x${string}`;
2452
+ gas?: `0x${string}`;
2453
+ nonce?: `0x${string}`;
2454
+ value?: `0x${string}`;
2455
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2456
+ accessList?: import("../index.js").AccessList | undefined;
2457
+ blockHash?: `0x${string}` | null;
2458
+ blockNumber?: `0x${string}` | null;
2459
+ hash?: `0x${string}`;
2460
+ input?: `0x${string}`;
2461
+ transactionIndex?: `0x${string}` | null;
2462
+ blobVersionedHashes?: undefined;
2463
+ chainId?: `0x${string}` | undefined;
2464
+ } & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
2465
+ feeCurrency: `0x${string}` | null;
2466
+ gatewayFee?: undefined;
2467
+ gatewayFeeRecipient?: undefined;
2468
+ type: "0x7b";
2469
+ }) | ({
2470
+ r?: `0x${string}`;
2471
+ s?: `0x${string}`;
2472
+ v?: `0x${string}`;
2473
+ yParity?: `0x${string}` | undefined;
2474
+ gasPrice?: `0x${string}` | undefined;
2475
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2476
+ maxFeePerGas?: `0x${string}` | undefined;
2477
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2478
+ to?: `0x${string}` | null;
2479
+ from?: `0x${string}`;
2480
+ gas?: `0x${string}`;
2481
+ nonce?: `0x${string}`;
2482
+ value?: `0x${string}`;
2483
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2484
+ accessList?: import("../index.js").AccessList | undefined;
2485
+ blockHash?: `0x${string}` | null;
2486
+ blockNumber?: `0x${string}` | null;
2487
+ hash?: `0x${string}`;
2488
+ input?: `0x${string}`;
2489
+ transactionIndex?: `0x${string}` | null;
2490
+ blobVersionedHashes?: undefined;
2491
+ chainId?: `0x${string}` | undefined;
2492
+ } & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
2493
+ r: `0x${string}`;
2494
+ s: `0x${string}`;
2495
+ v: `0x${string}`;
2496
+ to: `0x${string}` | null;
2497
+ from: `0x${string}`;
2498
+ gas: `0x${string}`;
2499
+ nonce: `0x${string}`;
2500
+ value: `0x${string}`;
2501
+ blockHash: `0x${string}` | null;
2502
+ blockNumber: `0x${string}` | null;
2503
+ hash: `0x${string}`;
2504
+ input: `0x${string}`;
2505
+ transactionIndex: `0x${string}` | null;
2506
+ typeHex: `0x${string}` | null;
2507
+ gasPrice: `0x${string}`;
2508
+ maxFeePerBlobGas?: undefined;
2509
+ maxFeePerGas?: undefined;
2510
+ maxPriorityFeePerGas?: undefined;
2511
+ accessList?: undefined;
2512
+ blobVersionedHashes?: undefined;
2513
+ chainId?: `0x${string}` | undefined;
2514
+ yParity?: undefined;
2515
+ type: "0x0";
2516
+ }, "yParity">, "typeHex"> & {
2517
+ feeCurrency: `0x${string}` | null;
2518
+ gatewayFee: `0x${string}` | null;
2519
+ gatewayFeeRecipient: `0x${string}` | null;
2520
+ }) | ({
2521
+ r?: `0x${string}`;
2522
+ s?: `0x${string}`;
2523
+ v?: `0x${string}`;
2524
+ yParity?: `0x${string}` | undefined;
2525
+ gasPrice?: `0x${string}` | undefined;
2526
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2527
+ maxFeePerGas?: `0x${string}` | undefined;
2528
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2529
+ to?: `0x${string}` | null;
2530
+ from?: `0x${string}`;
2531
+ gas?: `0x${string}`;
2532
+ nonce?: `0x${string}`;
2533
+ value?: `0x${string}`;
2534
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2535
+ accessList?: import("../index.js").AccessList | undefined;
2536
+ blockHash?: `0x${string}` | null;
2537
+ blockNumber?: `0x${string}` | null;
2538
+ hash?: `0x${string}`;
2539
+ input?: `0x${string}`;
2540
+ transactionIndex?: `0x${string}` | null;
2541
+ blobVersionedHashes?: undefined;
2542
+ chainId?: `0x${string}` | undefined;
2543
+ } & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
2544
+ blockHash: `0x${string}` | null;
2545
+ blockNumber: `0x${string}` | null;
2546
+ from: `0x${string}`;
2547
+ gas: `0x${string}`;
2548
+ hash: `0x${string}`;
2549
+ input: `0x${string}`;
2550
+ nonce: `0x${string}`;
2551
+ r: `0x${string}`;
2552
+ s: `0x${string}`;
2553
+ to: `0x${string}` | null;
2554
+ transactionIndex: `0x${string}` | null;
2555
+ typeHex: `0x${string}` | null;
2556
+ v: `0x${string}`;
2557
+ value: `0x${string}`;
2558
+ yParity: `0x${string}`;
2559
+ gasPrice: `0x${string}`;
2560
+ maxFeePerBlobGas?: undefined;
2561
+ maxFeePerGas?: undefined;
2562
+ maxPriorityFeePerGas?: undefined;
2563
+ accessList: import("../index.js").AccessList;
2564
+ blobVersionedHashes?: undefined;
2565
+ chainId: `0x${string}`;
2566
+ type: "0x1";
2567
+ }, "yParity">, "typeHex"> & {
2568
+ feeCurrency: `0x${string}` | null;
2569
+ gatewayFee: `0x${string}` | null;
2570
+ gatewayFeeRecipient: `0x${string}` | null;
2571
+ }) | ({
2572
+ r?: `0x${string}`;
2573
+ s?: `0x${string}`;
2574
+ v?: `0x${string}`;
2575
+ yParity?: `0x${string}` | undefined;
2576
+ gasPrice?: `0x${string}` | undefined;
2577
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2578
+ maxFeePerGas?: `0x${string}` | undefined;
2579
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2580
+ to?: `0x${string}` | null;
2581
+ from?: `0x${string}`;
2582
+ gas?: `0x${string}`;
2583
+ nonce?: `0x${string}`;
2584
+ value?: `0x${string}`;
2585
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2586
+ accessList?: import("../index.js").AccessList | undefined;
2587
+ blockHash?: `0x${string}` | null;
2588
+ blockNumber?: `0x${string}` | null;
2589
+ hash?: `0x${string}`;
2590
+ input?: `0x${string}`;
2591
+ transactionIndex?: `0x${string}` | null;
2592
+ blobVersionedHashes?: undefined;
2593
+ chainId?: `0x${string}` | undefined;
2594
+ } & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
2595
+ blockHash: `0x${string}` | null;
2596
+ blockNumber: `0x${string}` | null;
2597
+ from: `0x${string}`;
2598
+ gas: `0x${string}`;
2599
+ hash: `0x${string}`;
2600
+ input: `0x${string}`;
2601
+ nonce: `0x${string}`;
2602
+ r: `0x${string}`;
2603
+ s: `0x${string}`;
2604
+ to: `0x${string}` | null;
2605
+ transactionIndex: `0x${string}` | null;
2606
+ typeHex: `0x${string}` | null;
2607
+ v: `0x${string}`;
2608
+ value: `0x${string}`;
2609
+ yParity: `0x${string}`;
2610
+ gasPrice?: undefined;
2611
+ maxFeePerBlobGas?: undefined;
2612
+ maxFeePerGas: `0x${string}`;
2613
+ maxPriorityFeePerGas: `0x${string}`;
2614
+ accessList: import("../index.js").AccessList;
2615
+ blobVersionedHashes?: undefined;
2616
+ chainId: `0x${string}`;
2617
+ type: "0x2";
2618
+ }, "yParity">, "typeHex"> & {
2619
+ feeCurrency: `0x${string}` | null;
2620
+ gatewayFee: `0x${string}` | null;
2621
+ gatewayFeeRecipient: `0x${string}` | null;
2622
+ }) | ({
2623
+ r?: `0x${string}`;
2624
+ s?: `0x${string}`;
2625
+ v?: `0x${string}`;
2626
+ yParity?: `0x${string}` | undefined;
2627
+ gasPrice?: `0x${string}` | undefined;
2628
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2629
+ maxFeePerGas?: `0x${string}` | undefined;
2630
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2631
+ to?: `0x${string}` | null;
2632
+ from?: `0x${string}`;
2633
+ gas?: `0x${string}`;
2634
+ nonce?: `0x${string}`;
2635
+ value?: `0x${string}`;
2636
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2637
+ accessList?: import("../index.js").AccessList | undefined;
2638
+ blockHash?: `0x${string}` | null;
2639
+ blockNumber?: `0x${string}` | null;
2640
+ hash?: `0x${string}`;
2641
+ input?: `0x${string}`;
2642
+ transactionIndex?: `0x${string}` | null;
2643
+ blobVersionedHashes?: undefined;
2644
+ chainId?: `0x${string}` | undefined;
2645
+ } & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
2646
+ feeCurrency: `0x${string}` | null;
2647
+ gatewayFee: `0x${string}` | null;
2648
+ gatewayFeeRecipient: `0x${string}` | null;
2649
+ type: "0x7c";
2650
+ }) | ({
2651
+ r?: `0x${string}`;
2652
+ s?: `0x${string}`;
2653
+ v?: `0x${string}`;
2654
+ yParity?: `0x${string}` | undefined;
2655
+ gasPrice?: `0x${string}` | undefined;
2656
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2657
+ maxFeePerGas?: `0x${string}` | undefined;
2658
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2659
+ to?: `0x${string}` | null;
2660
+ from?: `0x${string}`;
2661
+ gas?: `0x${string}`;
2662
+ nonce?: `0x${string}`;
2663
+ value?: `0x${string}`;
2664
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2665
+ accessList?: import("../index.js").AccessList | undefined;
2666
+ blockHash?: `0x${string}` | null;
2667
+ blockNumber?: `0x${string}` | null;
2668
+ hash?: `0x${string}`;
2669
+ input?: `0x${string}`;
2670
+ transactionIndex?: `0x${string}` | null;
2671
+ blobVersionedHashes?: undefined;
2672
+ chainId?: `0x${string}` | undefined;
2673
+ } & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
2674
+ feeCurrency: `0x${string}` | null;
2675
+ gatewayFee?: undefined;
2676
+ gatewayFeeRecipient?: undefined;
2677
+ type: "0x7b";
2678
+ }) | ({
2679
+ r?: `0x${string}`;
2680
+ s?: `0x${string}`;
2681
+ v?: `0x${string}`;
2682
+ yParity?: `0x${string}` | undefined;
2683
+ gasPrice?: `0x${string}` | undefined;
2684
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2685
+ maxFeePerGas?: `0x${string}` | undefined;
2686
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2687
+ to?: `0x${string}` | null;
2688
+ from?: `0x${string}`;
2689
+ gas?: `0x${string}`;
2690
+ nonce?: `0x${string}`;
2691
+ value?: `0x${string}`;
2692
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2693
+ accessList?: import("../index.js").AccessList | undefined;
2694
+ blockHash?: `0x${string}` | null;
2695
+ blockNumber?: `0x${string}` | null;
2696
+ hash?: `0x${string}`;
2697
+ input?: `0x${string}`;
2698
+ transactionIndex?: `0x${string}` | null;
2699
+ blobVersionedHashes?: `0x${string}`[] | undefined;
2700
+ chainId?: `0x${string}` | undefined;
2701
+ } & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
2702
+ r: `0x${string}`;
2703
+ s: `0x${string}`;
2704
+ v: `0x${string}`;
2705
+ to: `0x${string}` | null;
2706
+ from: `0x${string}`;
2707
+ gas: `0x${string}`;
2708
+ nonce: `0x${string}`;
2709
+ value: `0x${string}`;
2710
+ blockHash: `0x${string}` | null;
2711
+ blockNumber: `0x${string}` | null;
2712
+ hash: `0x${string}`;
2713
+ input: `0x${string}`;
2714
+ transactionIndex: `0x${string}` | null;
2715
+ typeHex: `0x${string}` | null;
2716
+ gasPrice: `0x${string}`;
2717
+ maxFeePerBlobGas?: undefined;
2718
+ maxFeePerGas?: undefined;
2719
+ maxPriorityFeePerGas?: undefined;
2720
+ accessList?: undefined;
2721
+ blobVersionedHashes?: undefined;
2722
+ chainId?: `0x${string}` | undefined;
2723
+ yParity?: undefined;
2724
+ type: "0x0";
2725
+ }, "yParity">, "typeHex"> & {
2726
+ feeCurrency: `0x${string}` | null;
2727
+ gatewayFee: `0x${string}` | null;
2728
+ gatewayFeeRecipient: `0x${string}` | null;
2729
+ }) | ({
2730
+ r?: `0x${string}`;
2731
+ s?: `0x${string}`;
2732
+ v?: `0x${string}`;
2733
+ yParity?: `0x${string}` | undefined;
2734
+ gasPrice?: `0x${string}` | undefined;
2735
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2736
+ maxFeePerGas?: `0x${string}` | undefined;
2737
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2738
+ to?: `0x${string}` | null;
2739
+ from?: `0x${string}`;
2740
+ gas?: `0x${string}`;
2741
+ nonce?: `0x${string}`;
2742
+ value?: `0x${string}`;
2743
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2744
+ accessList?: import("../index.js").AccessList | undefined;
2745
+ blockHash?: `0x${string}` | null;
2746
+ blockNumber?: `0x${string}` | null;
2747
+ hash?: `0x${string}`;
2748
+ input?: `0x${string}`;
2749
+ transactionIndex?: `0x${string}` | null;
2750
+ blobVersionedHashes?: `0x${string}`[] | undefined;
2751
+ chainId?: `0x${string}` | undefined;
2752
+ } & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
2753
+ blockHash: `0x${string}` | null;
2754
+ blockNumber: `0x${string}` | null;
2755
+ from: `0x${string}`;
2756
+ gas: `0x${string}`;
2757
+ hash: `0x${string}`;
2758
+ input: `0x${string}`;
2759
+ nonce: `0x${string}`;
2760
+ r: `0x${string}`;
2761
+ s: `0x${string}`;
2762
+ to: `0x${string}` | null;
2763
+ transactionIndex: `0x${string}` | null;
2764
+ typeHex: `0x${string}` | null;
2765
+ v: `0x${string}`;
2766
+ value: `0x${string}`;
2767
+ yParity: `0x${string}`;
2768
+ gasPrice: `0x${string}`;
2769
+ maxFeePerBlobGas?: undefined;
2770
+ maxFeePerGas?: undefined;
2771
+ maxPriorityFeePerGas?: undefined;
2772
+ accessList: import("../index.js").AccessList;
2773
+ blobVersionedHashes?: undefined;
2774
+ chainId: `0x${string}`;
2775
+ type: "0x1";
2776
+ }, "yParity">, "typeHex"> & {
2777
+ feeCurrency: `0x${string}` | null;
2778
+ gatewayFee: `0x${string}` | null;
2779
+ gatewayFeeRecipient: `0x${string}` | null;
2780
+ }) | ({
2781
+ r?: `0x${string}`;
2782
+ s?: `0x${string}`;
2783
+ v?: `0x${string}`;
2784
+ yParity?: `0x${string}` | undefined;
2785
+ gasPrice?: `0x${string}` | undefined;
2786
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2787
+ maxFeePerGas?: `0x${string}` | undefined;
2788
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2789
+ to?: `0x${string}` | null;
2790
+ from?: `0x${string}`;
2791
+ gas?: `0x${string}`;
2792
+ nonce?: `0x${string}`;
2793
+ value?: `0x${string}`;
2794
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2795
+ accessList?: import("../index.js").AccessList | undefined;
2796
+ blockHash?: `0x${string}` | null;
2797
+ blockNumber?: `0x${string}` | null;
2798
+ hash?: `0x${string}`;
2799
+ input?: `0x${string}`;
2800
+ transactionIndex?: `0x${string}` | null;
2801
+ blobVersionedHashes?: `0x${string}`[] | undefined;
2802
+ chainId?: `0x${string}` | undefined;
2803
+ } & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
2804
+ blockHash: `0x${string}` | null;
2805
+ blockNumber: `0x${string}` | null;
2806
+ from: `0x${string}`;
2807
+ gas: `0x${string}`;
2808
+ hash: `0x${string}`;
2809
+ input: `0x${string}`;
2810
+ nonce: `0x${string}`;
2811
+ r: `0x${string}`;
2812
+ s: `0x${string}`;
2813
+ to: `0x${string}` | null;
2814
+ transactionIndex: `0x${string}` | null;
2815
+ typeHex: `0x${string}` | null;
2816
+ v: `0x${string}`;
2817
+ value: `0x${string}`;
2818
+ yParity: `0x${string}`;
2819
+ gasPrice?: undefined;
2820
+ maxFeePerBlobGas?: undefined;
2821
+ maxFeePerGas: `0x${string}`;
2822
+ maxPriorityFeePerGas: `0x${string}`;
2823
+ accessList: import("../index.js").AccessList;
2824
+ blobVersionedHashes?: undefined;
2825
+ chainId: `0x${string}`;
2826
+ type: "0x2";
2827
+ }, "yParity">, "typeHex"> & {
2828
+ feeCurrency: `0x${string}` | null;
2829
+ gatewayFee: `0x${string}` | null;
2830
+ gatewayFeeRecipient: `0x${string}` | null;
2831
+ }) | ({
2832
+ r?: `0x${string}`;
2833
+ s?: `0x${string}`;
2834
+ v?: `0x${string}`;
2835
+ yParity?: `0x${string}` | undefined;
2836
+ gasPrice?: `0x${string}` | undefined;
2837
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2838
+ maxFeePerGas?: `0x${string}` | undefined;
2839
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2840
+ to?: `0x${string}` | null;
2841
+ from?: `0x${string}`;
2842
+ gas?: `0x${string}`;
2843
+ nonce?: `0x${string}`;
2844
+ value?: `0x${string}`;
2845
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2846
+ accessList?: import("../index.js").AccessList | undefined;
2847
+ blockHash?: `0x${string}` | null;
2848
+ blockNumber?: `0x${string}` | null;
2849
+ hash?: `0x${string}`;
2850
+ input?: `0x${string}`;
2851
+ transactionIndex?: `0x${string}` | null;
2852
+ blobVersionedHashes?: `0x${string}`[] | undefined;
2853
+ chainId?: `0x${string}` | undefined;
2854
+ } & import("../types/utils.js").Omit<import("../types/utils.js").PartialBy<{
2855
+ blockHash: `0x${string}` | null;
2856
+ blockNumber: `0x${string}` | null;
2857
+ from: `0x${string}`;
2858
+ gas: `0x${string}`;
2859
+ hash: `0x${string}`;
2860
+ input: `0x${string}`;
2861
+ nonce: `0x${string}`;
2862
+ r: `0x${string}`;
2863
+ s: `0x${string}`;
2864
+ to: `0x${string}` | null;
2865
+ transactionIndex: `0x${string}` | null;
2866
+ typeHex: `0x${string}` | null;
2867
+ v: `0x${string}`;
2868
+ value: `0x${string}`;
2869
+ yParity: `0x${string}`;
2870
+ gasPrice?: undefined;
2871
+ maxFeePerBlobGas: `0x${string}`;
2872
+ maxFeePerGas: `0x${string}`;
2873
+ maxPriorityFeePerGas: `0x${string}`;
2874
+ accessList: import("../index.js").AccessList;
2875
+ blobVersionedHashes: `0x${string}`[];
2876
+ chainId: `0x${string}`;
2877
+ type: "0x3";
2878
+ }, "yParity">, "typeHex"> & {
2879
+ feeCurrency: `0x${string}` | null;
2880
+ gatewayFee: `0x${string}` | null;
2881
+ gatewayFeeRecipient: `0x${string}` | null;
2882
+ }) | ({
2883
+ r?: `0x${string}`;
2884
+ s?: `0x${string}`;
2885
+ v?: `0x${string}`;
2886
+ yParity?: `0x${string}` | undefined;
2887
+ gasPrice?: `0x${string}` | undefined;
2888
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2889
+ maxFeePerGas?: `0x${string}` | undefined;
2890
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2891
+ to?: `0x${string}` | null;
2892
+ from?: `0x${string}`;
2893
+ gas?: `0x${string}`;
2894
+ nonce?: `0x${string}`;
2895
+ value?: `0x${string}`;
2896
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2897
+ accessList?: import("../index.js").AccessList | undefined;
2898
+ blockHash?: `0x${string}` | null;
2899
+ blockNumber?: `0x${string}` | null;
2900
+ hash?: `0x${string}`;
2901
+ input?: `0x${string}`;
2902
+ transactionIndex?: `0x${string}` | null;
2903
+ blobVersionedHashes?: `0x${string}`[] | undefined;
2904
+ chainId?: `0x${string}` | undefined;
2905
+ } & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
2906
+ feeCurrency: `0x${string}` | null;
2907
+ gatewayFee: `0x${string}` | null;
2908
+ gatewayFeeRecipient: `0x${string}` | null;
2909
+ type: "0x7c";
2910
+ }) | ({
2911
+ r?: `0x${string}`;
2912
+ s?: `0x${string}`;
2913
+ v?: `0x${string}`;
2914
+ yParity?: `0x${string}` | undefined;
2915
+ gasPrice?: `0x${string}` | undefined;
2916
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2917
+ maxFeePerGas?: `0x${string}` | undefined;
2918
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2919
+ to?: `0x${string}` | null;
2920
+ from?: `0x${string}`;
2921
+ gas?: `0x${string}`;
2922
+ nonce?: `0x${string}`;
2923
+ value?: `0x${string}`;
2924
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b";
2925
+ accessList?: import("../index.js").AccessList | undefined;
2926
+ blockHash?: `0x${string}` | null;
2927
+ blockNumber?: `0x${string}` | null;
2928
+ hash?: `0x${string}`;
2929
+ input?: `0x${string}`;
2930
+ transactionIndex?: `0x${string}` | null;
2931
+ blobVersionedHashes?: `0x${string}`[] | undefined;
2932
+ chainId?: `0x${string}` | undefined;
2933
+ } & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
2934
+ feeCurrency: `0x${string}` | null;
2935
+ gatewayFee?: undefined;
2936
+ gatewayFeeRecipient?: undefined;
2937
+ type: "0x7b";
2938
+ })) => ({
2939
+ r: `0x${string}`;
2940
+ s: `0x${string}`;
2941
+ v: bigint;
2942
+ to: `0x${string}` | null;
2943
+ from: `0x${string}`;
2944
+ gas: bigint;
2945
+ nonce: number;
2946
+ value: bigint;
2947
+ blockHash: `0x${string}` | null;
2948
+ blockNumber: bigint | null;
2949
+ hash: `0x${string}`;
2950
+ input: `0x${string}`;
2951
+ transactionIndex: number | null;
2952
+ typeHex: `0x${string}` | null;
2953
+ gasPrice: bigint;
2954
+ maxFeePerBlobGas?: undefined;
2955
+ maxFeePerGas?: undefined;
2956
+ maxPriorityFeePerGas?: undefined;
2957
+ accessList?: undefined;
2958
+ blobVersionedHashes?: undefined;
2959
+ chainId?: number | undefined;
2960
+ yParity?: undefined;
2961
+ type: "legacy";
2962
+ feeCurrency: `0x${string}` | null;
2963
+ gatewayFee: bigint | null;
2964
+ gatewayFeeRecipient: `0x${string}` | null;
2965
+ } | {
2966
+ r: `0x${string}`;
2967
+ s: `0x${string}`;
2968
+ v: bigint;
2969
+ to: `0x${string}` | null;
2970
+ from: `0x${string}`;
2971
+ gas: bigint;
2972
+ nonce: number;
2973
+ value: bigint;
2974
+ blockHash: `0x${string}` | null;
2975
+ blockNumber: bigint | null;
2976
+ hash: `0x${string}`;
2977
+ input: `0x${string}`;
2978
+ transactionIndex: number | null;
2979
+ typeHex: `0x${string}` | null;
2980
+ gasPrice: undefined;
2981
+ maxFeePerBlobGas?: undefined;
2982
+ maxFeePerGas: bigint;
2983
+ maxPriorityFeePerGas: bigint;
2984
+ accessList?: undefined;
2985
+ blobVersionedHashes?: undefined;
2986
+ chainId?: number | undefined;
2987
+ yParity: number;
2988
+ type: "cip42";
2989
+ feeCurrency: `0x${string}` | null;
2990
+ gatewayFee: bigint | null;
2991
+ gatewayFeeRecipient: `0x${string}` | null;
2992
+ } | {
2993
+ r: `0x${string}`;
2994
+ s: `0x${string}`;
2995
+ v: bigint;
2996
+ to: `0x${string}` | null;
2997
+ from: `0x${string}`;
2998
+ gas: bigint;
2999
+ nonce: number;
3000
+ value: bigint;
3001
+ blockHash: `0x${string}` | null;
3002
+ blockNumber: bigint | null;
3003
+ hash: `0x${string}`;
3004
+ input: `0x${string}`;
3005
+ transactionIndex: number | null;
3006
+ typeHex: `0x${string}` | null;
3007
+ gasPrice: undefined;
3008
+ maxFeePerBlobGas?: undefined;
3009
+ maxFeePerGas: bigint;
3010
+ maxPriorityFeePerGas: bigint;
3011
+ accessList?: undefined;
3012
+ blobVersionedHashes?: undefined;
3013
+ chainId?: number | undefined;
3014
+ yParity: number;
3015
+ type: "cip64";
3016
+ feeCurrency: `0x${string}` | null;
3017
+ gatewayFee?: undefined;
3018
+ gatewayFeeRecipient?: undefined;
3019
+ } | {
3020
+ blockHash: `0x${string}` | null;
3021
+ blockNumber: bigint | null;
3022
+ from: `0x${string}`;
3023
+ gas: bigint;
3024
+ hash: `0x${string}`;
3025
+ input: `0x${string}`;
3026
+ nonce: number;
3027
+ r: `0x${string}`;
3028
+ s: `0x${string}`;
3029
+ to: `0x${string}` | null;
3030
+ transactionIndex: number | null;
3031
+ typeHex: `0x${string}` | null;
3032
+ v: bigint;
3033
+ value: bigint;
3034
+ yParity: number;
3035
+ gasPrice: bigint;
3036
+ maxFeePerBlobGas?: undefined;
3037
+ maxFeePerGas?: undefined;
3038
+ maxPriorityFeePerGas?: undefined;
3039
+ accessList: import("../index.js").AccessList;
3040
+ blobVersionedHashes?: undefined;
3041
+ chainId: number;
3042
+ type: "eip2930";
3043
+ feeCurrency: `0x${string}` | null;
3044
+ gatewayFee: bigint | null;
3045
+ gatewayFeeRecipient: `0x${string}` | null;
3046
+ } | {
3047
+ blockHash: `0x${string}` | null;
3048
+ blockNumber: bigint | null;
3049
+ from: `0x${string}`;
3050
+ gas: bigint;
3051
+ hash: `0x${string}`;
3052
+ input: `0x${string}`;
3053
+ nonce: number;
3054
+ r: `0x${string}`;
3055
+ s: `0x${string}`;
3056
+ to: `0x${string}` | null;
3057
+ transactionIndex: number | null;
3058
+ typeHex: `0x${string}` | null;
3059
+ v: bigint;
3060
+ value: bigint;
3061
+ yParity: number;
3062
+ gasPrice: undefined;
3063
+ maxFeePerBlobGas?: undefined;
3064
+ maxFeePerGas: bigint;
3065
+ maxPriorityFeePerGas: bigint;
3066
+ accessList: import("../index.js").AccessList;
3067
+ blobVersionedHashes?: undefined;
3068
+ chainId: number;
3069
+ type: "eip1559";
3070
+ feeCurrency: `0x${string}` | null;
3071
+ gatewayFee: bigint | null;
3072
+ gatewayFeeRecipient: `0x${string}` | null;
3073
+ } | {
3074
+ blockHash: `0x${string}` | null;
3075
+ blockNumber: bigint | null;
3076
+ from: `0x${string}`;
3077
+ gas: bigint;
3078
+ hash: `0x${string}`;
3079
+ input: `0x${string}`;
3080
+ nonce: number;
3081
+ r: `0x${string}`;
3082
+ s: `0x${string}`;
3083
+ to: `0x${string}` | null;
3084
+ transactionIndex: number | null;
3085
+ typeHex: `0x${string}` | null;
3086
+ v: bigint;
3087
+ value: bigint;
3088
+ yParity: number;
3089
+ gasPrice: undefined;
3090
+ maxFeePerBlobGas?: undefined;
3091
+ maxFeePerGas: bigint;
3092
+ maxPriorityFeePerGas: bigint;
3093
+ accessList: import("../index.js").AccessList;
3094
+ blobVersionedHashes?: undefined;
3095
+ chainId: number;
3096
+ type: "cip42";
3097
+ feeCurrency: `0x${string}` | null;
3098
+ gatewayFee: bigint | null;
3099
+ gatewayFeeRecipient: `0x${string}` | null;
3100
+ } | {
3101
+ blockHash: `0x${string}` | null;
3102
+ blockNumber: bigint | null;
3103
+ from: `0x${string}`;
3104
+ gas: bigint;
3105
+ hash: `0x${string}`;
3106
+ input: `0x${string}`;
3107
+ nonce: number;
3108
+ r: `0x${string}`;
3109
+ s: `0x${string}`;
3110
+ to: `0x${string}` | null;
3111
+ transactionIndex: number | null;
3112
+ typeHex: `0x${string}` | null;
3113
+ v: bigint;
3114
+ value: bigint;
3115
+ yParity: number;
3116
+ gasPrice: undefined;
3117
+ maxFeePerBlobGas?: undefined;
3118
+ maxFeePerGas: bigint;
3119
+ maxPriorityFeePerGas: bigint;
3120
+ accessList: import("../index.js").AccessList;
3121
+ blobVersionedHashes?: undefined;
3122
+ chainId: number;
3123
+ type: "cip64";
3124
+ feeCurrency: `0x${string}` | null;
3125
+ gatewayFee?: undefined;
3126
+ gatewayFeeRecipient?: undefined;
3127
+ } | {
3128
+ blockHash: `0x${string}` | null;
3129
+ blockNumber: bigint | null;
3130
+ from: `0x${string}`;
3131
+ gas: bigint;
3132
+ hash: `0x${string}`;
3133
+ input: `0x${string}`;
3134
+ nonce: number;
3135
+ r: `0x${string}`;
3136
+ s: `0x${string}`;
3137
+ to: `0x${string}` | null;
3138
+ transactionIndex: number | null;
3139
+ typeHex: `0x${string}` | null;
3140
+ v: bigint;
3141
+ value: bigint;
3142
+ yParity: number;
3143
+ gasPrice: bigint;
3144
+ maxFeePerBlobGas?: undefined;
3145
+ maxFeePerGas: undefined;
3146
+ maxPriorityFeePerGas: undefined;
3147
+ accessList: import("../index.js").AccessList;
3148
+ blobVersionedHashes?: undefined;
3149
+ chainId: number;
3150
+ type: "eip2930";
3151
+ feeCurrency: `0x${string}` | null;
3152
+ gatewayFee: bigint | null;
3153
+ gatewayFeeRecipient: `0x${string}` | null;
3154
+ } | {
3155
+ blockHash: `0x${string}` | null;
3156
+ blockNumber: bigint | null;
3157
+ from: `0x${string}`;
3158
+ gas: bigint;
3159
+ hash: `0x${string}`;
3160
+ input: `0x${string}`;
3161
+ nonce: number;
3162
+ r: `0x${string}`;
3163
+ s: `0x${string}`;
3164
+ to: `0x${string}` | null;
3165
+ transactionIndex: number | null;
3166
+ typeHex: `0x${string}` | null;
3167
+ v: bigint;
3168
+ value: bigint;
3169
+ yParity: number;
3170
+ gasPrice?: undefined;
3171
+ maxFeePerBlobGas?: undefined;
3172
+ maxFeePerGas: bigint;
3173
+ maxPriorityFeePerGas: bigint;
3174
+ accessList: import("../index.js").AccessList;
3175
+ blobVersionedHashes?: undefined;
3176
+ chainId: number;
3177
+ type: "eip1559";
3178
+ feeCurrency: `0x${string}` | null;
3179
+ gatewayFee: bigint | null;
3180
+ gatewayFeeRecipient: `0x${string}` | null;
3181
+ } | {
3182
+ blockHash: `0x${string}` | null;
3183
+ blockNumber: bigint | null;
3184
+ from: `0x${string}`;
3185
+ gas: bigint;
3186
+ hash: `0x${string}`;
3187
+ input: `0x${string}`;
3188
+ nonce: number;
3189
+ r: `0x${string}`;
3190
+ s: `0x${string}`;
3191
+ to: `0x${string}` | null;
3192
+ transactionIndex: number | null;
3193
+ typeHex: `0x${string}` | null;
3194
+ v: bigint;
3195
+ value: bigint;
3196
+ yParity: number;
3197
+ gasPrice?: undefined;
3198
+ maxFeePerBlobGas?: undefined;
3199
+ maxFeePerGas: bigint;
3200
+ maxPriorityFeePerGas: bigint;
3201
+ accessList: import("../index.js").AccessList;
3202
+ blobVersionedHashes?: undefined;
3203
+ chainId: number;
3204
+ type: "cip42";
3205
+ feeCurrency: `0x${string}` | null;
3206
+ gatewayFee: bigint | null;
3207
+ gatewayFeeRecipient: `0x${string}` | null;
3208
+ } | {
3209
+ blockHash: `0x${string}` | null;
3210
+ blockNumber: bigint | null;
3211
+ from: `0x${string}`;
3212
+ gas: bigint;
3213
+ hash: `0x${string}`;
3214
+ input: `0x${string}`;
3215
+ nonce: number;
3216
+ r: `0x${string}`;
3217
+ s: `0x${string}`;
3218
+ to: `0x${string}` | null;
3219
+ transactionIndex: number | null;
3220
+ typeHex: `0x${string}` | null;
3221
+ v: bigint;
3222
+ value: bigint;
3223
+ yParity: number;
3224
+ gasPrice?: undefined;
3225
+ maxFeePerBlobGas?: undefined;
3226
+ maxFeePerGas: bigint;
3227
+ maxPriorityFeePerGas: bigint;
3228
+ accessList: import("../index.js").AccessList;
3229
+ blobVersionedHashes?: undefined;
3230
+ chainId: number;
3231
+ type: "cip64";
3232
+ feeCurrency: `0x${string}` | null;
3233
+ gatewayFee?: undefined;
3234
+ gatewayFeeRecipient?: undefined;
3235
+ } | {
3236
+ blockHash: `0x${string}` | null;
3237
+ blockNumber: bigint | null;
3238
+ from: `0x${string}`;
3239
+ gas: bigint;
3240
+ hash: `0x${string}`;
3241
+ input: `0x${string}`;
3242
+ nonce: number;
3243
+ r: `0x${string}`;
3244
+ s: `0x${string}`;
3245
+ to: `0x${string}` | null;
3246
+ transactionIndex: number | null;
3247
+ typeHex: `0x${string}` | null;
3248
+ v: bigint;
3249
+ value: bigint;
3250
+ yParity: number;
3251
+ gasPrice?: undefined;
3252
+ maxFeePerBlobGas: bigint;
3253
+ maxFeePerGas: bigint;
3254
+ maxPriorityFeePerGas: bigint;
3255
+ accessList: import("../index.js").AccessList;
3256
+ blobVersionedHashes: `0x${string}`[];
3257
+ chainId: number;
3258
+ type: "eip4844";
3259
+ feeCurrency: `0x${string}` | null;
3260
+ gatewayFee: bigint | null;
3261
+ gatewayFeeRecipient: `0x${string}` | null;
3262
+ } | {
3263
+ blockHash: `0x${string}` | null;
3264
+ blockNumber: bigint | null;
3265
+ from: `0x${string}`;
3266
+ gas: bigint;
3267
+ hash: `0x${string}`;
3268
+ input: `0x${string}`;
3269
+ nonce: number;
3270
+ r: `0x${string}`;
3271
+ s: `0x${string}`;
3272
+ to: `0x${string}` | null;
3273
+ transactionIndex: number | null;
3274
+ typeHex: `0x${string}` | null;
3275
+ v: bigint;
3276
+ value: bigint;
3277
+ yParity: number;
3278
+ gasPrice?: undefined;
3279
+ maxFeePerBlobGas: undefined;
3280
+ maxFeePerGas: bigint;
3281
+ maxPriorityFeePerGas: bigint;
3282
+ accessList: import("../index.js").AccessList;
3283
+ blobVersionedHashes: `0x${string}`[];
3284
+ chainId: number;
3285
+ type: "cip42";
3286
+ feeCurrency: `0x${string}` | null;
3287
+ gatewayFee: bigint | null;
3288
+ gatewayFeeRecipient: `0x${string}` | null;
3289
+ } | {
3290
+ blockHash: `0x${string}` | null;
3291
+ blockNumber: bigint | null;
3292
+ from: `0x${string}`;
3293
+ gas: bigint;
3294
+ hash: `0x${string}`;
3295
+ input: `0x${string}`;
3296
+ nonce: number;
3297
+ r: `0x${string}`;
3298
+ s: `0x${string}`;
3299
+ to: `0x${string}` | null;
3300
+ transactionIndex: number | null;
3301
+ typeHex: `0x${string}` | null;
3302
+ v: bigint;
3303
+ value: bigint;
3304
+ yParity: number;
3305
+ gasPrice?: undefined;
3306
+ maxFeePerBlobGas: undefined;
3307
+ maxFeePerGas: bigint;
3308
+ maxPriorityFeePerGas: bigint;
3309
+ accessList: import("../index.js").AccessList;
3310
+ blobVersionedHashes: `0x${string}`[];
3311
+ chainId: number;
3312
+ type: "cip64";
3313
+ feeCurrency: `0x${string}` | null;
3314
+ gatewayFee?: undefined;
3315
+ gatewayFeeRecipient?: undefined;
3316
+ }) & {};
3317
+ type: "transaction";
3318
+ };
3319
+ readonly transactionRequest: {
3320
+ exclude: [] | undefined;
3321
+ format: (args: ({
3322
+ data?: `0x${string}` | undefined;
3323
+ from?: `0x${string}`;
3324
+ gas?: bigint | undefined;
3325
+ nonce?: number | undefined;
3326
+ to?: `0x${string}` | null | undefined;
3327
+ value?: bigint | undefined;
3328
+ gasPrice?: bigint | undefined;
3329
+ maxFeePerBlobGas?: bigint | undefined;
3330
+ maxFeePerGas?: bigint | undefined;
3331
+ maxPriorityFeePerGas?: bigint | undefined;
3332
+ accessList?: import("../index.js").AccessList | undefined;
3333
+ blobs?: undefined;
3334
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3335
+ } & {
3336
+ data?: `0x${string}` | undefined;
3337
+ from: `0x${string}`;
3338
+ gas?: bigint | undefined;
3339
+ nonce?: number | undefined;
3340
+ to?: `0x${string}` | null | undefined;
3341
+ value?: bigint | undefined;
3342
+ gasPrice?: bigint | undefined;
3343
+ maxFeePerBlobGas?: undefined;
3344
+ maxFeePerGas?: undefined;
3345
+ maxPriorityFeePerGas?: undefined;
3346
+ accessList?: undefined;
3347
+ blobs?: undefined;
3348
+ type?: "legacy" | undefined;
3349
+ } & {
3350
+ feeCurrency?: `0x${string}` | undefined;
3351
+ gatewayFee?: bigint | undefined;
3352
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3353
+ }) | ({
3354
+ data?: `0x${string}` | undefined;
3355
+ from?: `0x${string}`;
3356
+ gas?: bigint | undefined;
3357
+ nonce?: number | undefined;
3358
+ to?: `0x${string}` | null | undefined;
3359
+ value?: bigint | undefined;
3360
+ gasPrice?: bigint | undefined;
3361
+ maxFeePerBlobGas?: bigint | undefined;
3362
+ maxFeePerGas?: bigint | undefined;
3363
+ maxPriorityFeePerGas?: bigint | undefined;
3364
+ accessList?: import("../index.js").AccessList | undefined;
3365
+ blobs?: undefined;
3366
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3367
+ } & {
3368
+ data?: `0x${string}` | undefined;
3369
+ from: `0x${string}`;
3370
+ gas?: bigint | undefined;
3371
+ nonce?: number | undefined;
3372
+ to?: `0x${string}` | null | undefined;
3373
+ value?: bigint | undefined;
3374
+ gasPrice?: bigint | undefined;
3375
+ maxFeePerBlobGas?: undefined;
3376
+ maxFeePerGas?: undefined;
3377
+ maxPriorityFeePerGas?: undefined;
3378
+ accessList?: import("../index.js").AccessList | undefined;
3379
+ blobs?: undefined;
3380
+ type?: "eip2930" | undefined;
3381
+ } & {
3382
+ feeCurrency?: `0x${string}` | undefined;
3383
+ gatewayFee?: bigint | undefined;
3384
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3385
+ }) | ({
3386
+ data?: `0x${string}` | undefined;
3387
+ from?: `0x${string}`;
3388
+ gas?: bigint | undefined;
3389
+ nonce?: number | undefined;
3390
+ to?: `0x${string}` | null | undefined;
3391
+ value?: bigint | undefined;
3392
+ gasPrice?: bigint | undefined;
3393
+ maxFeePerBlobGas?: bigint | undefined;
3394
+ maxFeePerGas?: bigint | undefined;
3395
+ maxPriorityFeePerGas?: bigint | undefined;
3396
+ accessList?: import("../index.js").AccessList | undefined;
3397
+ blobs?: undefined;
3398
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3399
+ } & {
3400
+ data?: `0x${string}` | undefined;
3401
+ from: `0x${string}`;
3402
+ gas?: bigint | undefined;
3403
+ nonce?: number | undefined;
3404
+ to?: `0x${string}` | null | undefined;
3405
+ value?: bigint | undefined;
3406
+ gasPrice?: undefined;
3407
+ maxFeePerBlobGas?: undefined;
3408
+ maxFeePerGas?: bigint | undefined;
3409
+ maxPriorityFeePerGas?: bigint | undefined;
3410
+ accessList?: import("../index.js").AccessList | undefined;
3411
+ blobs?: undefined;
3412
+ type?: "eip1559" | undefined;
3413
+ } & {
3414
+ feeCurrency?: `0x${string}` | undefined;
3415
+ gatewayFee?: bigint | undefined;
3416
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3417
+ }) | ({
3418
+ data?: `0x${string}` | undefined;
3419
+ from?: `0x${string}`;
3420
+ gas?: bigint | undefined;
3421
+ nonce?: number | undefined;
3422
+ to?: `0x${string}` | null | undefined;
3423
+ value?: bigint | undefined;
3424
+ gasPrice?: bigint | undefined;
3425
+ maxFeePerBlobGas?: bigint | undefined;
3426
+ maxFeePerGas?: bigint | undefined;
3427
+ maxPriorityFeePerGas?: bigint | undefined;
3428
+ accessList?: import("../index.js").AccessList | undefined;
3429
+ blobs?: undefined;
3430
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3431
+ } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3432
+ accessList?: import("../index.js").AccessList | undefined;
3433
+ feeCurrency?: `0x${string}` | undefined;
3434
+ gatewayFee?: bigint | undefined;
3435
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3436
+ type?: "cip42" | undefined;
3437
+ }) | ({
3438
+ data?: `0x${string}` | undefined;
3439
+ from?: `0x${string}`;
3440
+ gas?: bigint | undefined;
3441
+ nonce?: number | undefined;
3442
+ to?: `0x${string}` | null | undefined;
3443
+ value?: bigint | undefined;
3444
+ gasPrice?: bigint | undefined;
3445
+ maxFeePerBlobGas?: bigint | undefined;
3446
+ maxFeePerGas?: bigint | undefined;
3447
+ maxPriorityFeePerGas?: bigint | undefined;
3448
+ accessList?: import("../index.js").AccessList | undefined;
3449
+ blobs?: undefined;
3450
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3451
+ } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3452
+ accessList?: import("../index.js").AccessList | undefined;
3453
+ feeCurrency?: `0x${string}` | undefined;
3454
+ gatewayFee?: undefined;
3455
+ gatewayFeeRecipient?: undefined;
3456
+ type?: "cip64" | undefined;
3457
+ }) | ({
3458
+ data?: `0x${string}` | undefined;
3459
+ from?: `0x${string}`;
3460
+ gas?: bigint | undefined;
3461
+ nonce?: number | undefined;
3462
+ to?: `0x${string}` | null | undefined;
3463
+ value?: bigint | undefined;
3464
+ gasPrice?: bigint | undefined;
3465
+ maxFeePerBlobGas?: bigint | undefined;
3466
+ maxFeePerGas?: bigint | undefined;
3467
+ maxPriorityFeePerGas?: bigint | undefined;
3468
+ accessList?: import("../index.js").AccessList | undefined;
3469
+ blobs?: undefined;
3470
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3471
+ } & {
3472
+ data?: `0x${string}` | undefined;
3473
+ from: `0x${string}`;
3474
+ gas?: bigint | undefined;
3475
+ nonce?: number | undefined;
3476
+ to?: `0x${string}` | null | undefined;
3477
+ value?: bigint | undefined;
3478
+ gasPrice?: bigint | undefined;
3479
+ maxFeePerBlobGas?: undefined;
3480
+ maxFeePerGas?: undefined;
3481
+ maxPriorityFeePerGas?: undefined;
3482
+ accessList?: undefined;
3483
+ blobs?: undefined;
3484
+ type?: "legacy" | undefined;
3485
+ } & {
3486
+ feeCurrency?: `0x${string}` | undefined;
3487
+ gatewayFee?: bigint | undefined;
3488
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3489
+ }) | ({
3490
+ data?: `0x${string}` | undefined;
3491
+ from?: `0x${string}`;
3492
+ gas?: bigint | undefined;
3493
+ nonce?: number | undefined;
3494
+ to?: `0x${string}` | null | undefined;
3495
+ value?: bigint | undefined;
3496
+ gasPrice?: bigint | undefined;
3497
+ maxFeePerBlobGas?: bigint | undefined;
3498
+ maxFeePerGas?: bigint | undefined;
3499
+ maxPriorityFeePerGas?: bigint | undefined;
3500
+ accessList?: import("../index.js").AccessList | undefined;
3501
+ blobs?: undefined;
3502
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3503
+ } & {
3504
+ data?: `0x${string}` | undefined;
3505
+ from: `0x${string}`;
3506
+ gas?: bigint | undefined;
3507
+ nonce?: number | undefined;
3508
+ to?: `0x${string}` | null | undefined;
3509
+ value?: bigint | undefined;
3510
+ gasPrice?: bigint | undefined;
3511
+ maxFeePerBlobGas?: undefined;
3512
+ maxFeePerGas?: undefined;
3513
+ maxPriorityFeePerGas?: undefined;
3514
+ accessList?: import("../index.js").AccessList | undefined;
3515
+ blobs?: undefined;
3516
+ type?: "eip2930" | undefined;
3517
+ } & {
3518
+ feeCurrency?: `0x${string}` | undefined;
3519
+ gatewayFee?: bigint | undefined;
3520
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3521
+ }) | ({
3522
+ data?: `0x${string}` | undefined;
3523
+ from?: `0x${string}`;
3524
+ gas?: bigint | undefined;
3525
+ nonce?: number | undefined;
3526
+ to?: `0x${string}` | null | undefined;
3527
+ value?: bigint | undefined;
3528
+ gasPrice?: bigint | undefined;
3529
+ maxFeePerBlobGas?: bigint | undefined;
3530
+ maxFeePerGas?: bigint | undefined;
3531
+ maxPriorityFeePerGas?: bigint | undefined;
3532
+ accessList?: import("../index.js").AccessList | undefined;
3533
+ blobs?: undefined;
3534
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3535
+ } & {
3536
+ data?: `0x${string}` | undefined;
3537
+ from: `0x${string}`;
3538
+ gas?: bigint | undefined;
3539
+ nonce?: number | undefined;
3540
+ to?: `0x${string}` | null | undefined;
3541
+ value?: bigint | undefined;
3542
+ gasPrice?: undefined;
3543
+ maxFeePerBlobGas?: undefined;
3544
+ maxFeePerGas?: bigint | undefined;
3545
+ maxPriorityFeePerGas?: bigint | undefined;
3546
+ accessList?: import("../index.js").AccessList | undefined;
3547
+ blobs?: undefined;
3548
+ type?: "eip1559" | undefined;
3549
+ } & {
3550
+ feeCurrency?: `0x${string}` | undefined;
3551
+ gatewayFee?: bigint | undefined;
3552
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3553
+ }) | ({
3554
+ data?: `0x${string}` | undefined;
3555
+ from?: `0x${string}`;
3556
+ gas?: bigint | undefined;
3557
+ nonce?: number | undefined;
3558
+ to?: `0x${string}` | null | undefined;
3559
+ value?: bigint | undefined;
3560
+ gasPrice?: bigint | undefined;
3561
+ maxFeePerBlobGas?: bigint | undefined;
3562
+ maxFeePerGas?: bigint | undefined;
3563
+ maxPriorityFeePerGas?: bigint | undefined;
3564
+ accessList?: import("../index.js").AccessList | undefined;
3565
+ blobs?: undefined;
3566
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3567
+ } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3568
+ accessList?: import("../index.js").AccessList | undefined;
3569
+ feeCurrency?: `0x${string}` | undefined;
3570
+ gatewayFee?: bigint | undefined;
3571
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3572
+ type?: "cip42" | undefined;
3573
+ }) | ({
3574
+ data?: `0x${string}` | undefined;
3575
+ from?: `0x${string}`;
3576
+ gas?: bigint | undefined;
3577
+ nonce?: number | undefined;
3578
+ to?: `0x${string}` | null | undefined;
3579
+ value?: bigint | undefined;
3580
+ gasPrice?: bigint | undefined;
3581
+ maxFeePerBlobGas?: bigint | undefined;
3582
+ maxFeePerGas?: bigint | undefined;
3583
+ maxPriorityFeePerGas?: bigint | undefined;
3584
+ accessList?: import("../index.js").AccessList | undefined;
3585
+ blobs?: undefined;
3586
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3587
+ } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3588
+ accessList?: import("../index.js").AccessList | undefined;
3589
+ feeCurrency?: `0x${string}` | undefined;
3590
+ gatewayFee?: undefined;
3591
+ gatewayFeeRecipient?: undefined;
3592
+ type?: "cip64" | undefined;
3593
+ }) | ({
3594
+ data?: `0x${string}` | undefined;
3595
+ from?: `0x${string}`;
3596
+ gas?: bigint | undefined;
3597
+ nonce?: number | undefined;
3598
+ to?: `0x${string}` | null | undefined;
3599
+ value?: bigint | undefined;
3600
+ gasPrice?: bigint | undefined;
3601
+ maxFeePerBlobGas?: bigint | undefined;
3602
+ maxFeePerGas?: bigint | undefined;
3603
+ maxPriorityFeePerGas?: bigint | undefined;
3604
+ accessList?: import("../index.js").AccessList | undefined;
3605
+ blobs?: undefined;
3606
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3607
+ } & {
3608
+ data?: `0x${string}` | undefined;
3609
+ from: `0x${string}`;
3610
+ gas?: bigint | undefined;
3611
+ nonce?: number | undefined;
3612
+ to?: `0x${string}` | null | undefined;
3613
+ value?: bigint | undefined;
3614
+ gasPrice?: bigint | undefined;
3615
+ maxFeePerBlobGas?: undefined;
3616
+ maxFeePerGas?: undefined;
3617
+ maxPriorityFeePerGas?: undefined;
3618
+ accessList?: undefined;
3619
+ blobs?: undefined;
3620
+ type?: "legacy" | undefined;
3621
+ } & {
3622
+ feeCurrency?: `0x${string}` | undefined;
3623
+ gatewayFee?: bigint | undefined;
3624
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3625
+ }) | ({
3626
+ data?: `0x${string}` | undefined;
3627
+ from?: `0x${string}`;
3628
+ gas?: bigint | undefined;
3629
+ nonce?: number | undefined;
3630
+ to?: `0x${string}` | null | undefined;
3631
+ value?: bigint | undefined;
3632
+ gasPrice?: bigint | undefined;
3633
+ maxFeePerBlobGas?: bigint | undefined;
3634
+ maxFeePerGas?: bigint | undefined;
3635
+ maxPriorityFeePerGas?: bigint | undefined;
3636
+ accessList?: import("../index.js").AccessList | undefined;
3637
+ blobs?: undefined;
3638
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3639
+ } & {
3640
+ data?: `0x${string}` | undefined;
3641
+ from: `0x${string}`;
3642
+ gas?: bigint | undefined;
3643
+ nonce?: number | undefined;
3644
+ to?: `0x${string}` | null | undefined;
3645
+ value?: bigint | undefined;
3646
+ gasPrice?: bigint | undefined;
3647
+ maxFeePerBlobGas?: undefined;
3648
+ maxFeePerGas?: undefined;
3649
+ maxPriorityFeePerGas?: undefined;
3650
+ accessList?: import("../index.js").AccessList | undefined;
3651
+ blobs?: undefined;
3652
+ type?: "eip2930" | undefined;
3653
+ } & {
3654
+ feeCurrency?: `0x${string}` | undefined;
3655
+ gatewayFee?: bigint | undefined;
3656
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3657
+ }) | ({
3658
+ data?: `0x${string}` | undefined;
3659
+ from?: `0x${string}`;
3660
+ gas?: bigint | undefined;
3661
+ nonce?: number | undefined;
3662
+ to?: `0x${string}` | null | undefined;
3663
+ value?: bigint | undefined;
3664
+ gasPrice?: bigint | undefined;
3665
+ maxFeePerBlobGas?: bigint | undefined;
3666
+ maxFeePerGas?: bigint | undefined;
3667
+ maxPriorityFeePerGas?: bigint | undefined;
3668
+ accessList?: import("../index.js").AccessList | undefined;
3669
+ blobs?: undefined;
3670
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3671
+ } & {
3672
+ data?: `0x${string}` | undefined;
3673
+ from: `0x${string}`;
3674
+ gas?: bigint | undefined;
3675
+ nonce?: number | undefined;
3676
+ to?: `0x${string}` | null | undefined;
3677
+ value?: bigint | undefined;
3678
+ gasPrice?: undefined;
3679
+ maxFeePerBlobGas?: undefined;
3680
+ maxFeePerGas?: bigint | undefined;
3681
+ maxPriorityFeePerGas?: bigint | undefined;
3682
+ accessList?: import("../index.js").AccessList | undefined;
3683
+ blobs?: undefined;
3684
+ type?: "eip1559" | undefined;
3685
+ } & {
3686
+ feeCurrency?: `0x${string}` | undefined;
3687
+ gatewayFee?: bigint | undefined;
3688
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3689
+ }) | ({
3690
+ data?: `0x${string}` | undefined;
3691
+ from?: `0x${string}`;
3692
+ gas?: bigint | undefined;
3693
+ nonce?: number | undefined;
3694
+ to?: `0x${string}` | null | undefined;
3695
+ value?: bigint | undefined;
3696
+ gasPrice?: bigint | undefined;
3697
+ maxFeePerBlobGas?: bigint | undefined;
3698
+ maxFeePerGas?: bigint | undefined;
3699
+ maxPriorityFeePerGas?: bigint | undefined;
3700
+ accessList?: import("../index.js").AccessList | undefined;
3701
+ blobs?: undefined;
3702
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3703
+ } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3704
+ accessList?: import("../index.js").AccessList | undefined;
3705
+ feeCurrency?: `0x${string}` | undefined;
3706
+ gatewayFee?: bigint | undefined;
3707
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3708
+ type?: "cip42" | undefined;
3709
+ }) | ({
3710
+ data?: `0x${string}` | undefined;
3711
+ from?: `0x${string}`;
3712
+ gas?: bigint | undefined;
3713
+ nonce?: number | undefined;
3714
+ to?: `0x${string}` | null | undefined;
3715
+ value?: bigint | undefined;
3716
+ gasPrice?: bigint | undefined;
3717
+ maxFeePerBlobGas?: bigint | undefined;
3718
+ maxFeePerGas?: bigint | undefined;
3719
+ maxPriorityFeePerGas?: bigint | undefined;
3720
+ accessList?: import("../index.js").AccessList | undefined;
3721
+ blobs?: undefined;
3722
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3723
+ } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3724
+ accessList?: import("../index.js").AccessList | undefined;
3725
+ feeCurrency?: `0x${string}` | undefined;
3726
+ gatewayFee?: undefined;
3727
+ gatewayFeeRecipient?: undefined;
3728
+ type?: "cip64" | undefined;
3729
+ }) | ({
3730
+ data?: `0x${string}` | undefined;
3731
+ from?: `0x${string}`;
3732
+ gas?: bigint | undefined;
3733
+ nonce?: number | undefined;
3734
+ value?: bigint | undefined;
3735
+ to?: `0x${string}` | null | undefined;
3736
+ gasPrice?: bigint | undefined;
3737
+ maxFeePerGas?: bigint | undefined;
3738
+ maxPriorityFeePerGas?: bigint | undefined;
3739
+ maxFeePerBlobGas?: bigint | undefined;
3740
+ accessList?: import("../index.js").AccessList | undefined;
3741
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3742
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3743
+ } & {
3744
+ data?: `0x${string}` | undefined;
3745
+ from: `0x${string}`;
3746
+ gas?: bigint | undefined;
3747
+ nonce?: number | undefined;
3748
+ to?: `0x${string}` | null | undefined;
3749
+ value?: bigint | undefined;
3750
+ gasPrice?: bigint | undefined;
3751
+ maxFeePerBlobGas?: undefined;
3752
+ maxFeePerGas?: undefined;
3753
+ maxPriorityFeePerGas?: undefined;
3754
+ accessList?: undefined;
3755
+ blobs?: undefined;
3756
+ type?: "legacy" | undefined;
3757
+ } & {
3758
+ feeCurrency?: `0x${string}` | undefined;
3759
+ gatewayFee?: bigint | undefined;
3760
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3761
+ }) | ({
3762
+ data?: `0x${string}` | undefined;
3763
+ from?: `0x${string}`;
3764
+ gas?: bigint | undefined;
3765
+ nonce?: number | undefined;
3766
+ value?: bigint | undefined;
3767
+ to?: `0x${string}` | null | undefined;
3768
+ gasPrice?: bigint | undefined;
3769
+ maxFeePerGas?: bigint | undefined;
3770
+ maxPriorityFeePerGas?: bigint | undefined;
3771
+ maxFeePerBlobGas?: bigint | undefined;
3772
+ accessList?: import("../index.js").AccessList | undefined;
3773
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3774
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3775
+ } & {
3776
+ data?: `0x${string}` | undefined;
3777
+ from: `0x${string}`;
3778
+ gas?: bigint | undefined;
3779
+ nonce?: number | undefined;
3780
+ to?: `0x${string}` | null | undefined;
3781
+ value?: bigint | undefined;
3782
+ gasPrice?: bigint | undefined;
3783
+ maxFeePerBlobGas?: undefined;
3784
+ maxFeePerGas?: undefined;
3785
+ maxPriorityFeePerGas?: undefined;
3786
+ accessList?: import("../index.js").AccessList | undefined;
3787
+ blobs?: undefined;
3788
+ type?: "eip2930" | undefined;
3789
+ } & {
3790
+ feeCurrency?: `0x${string}` | undefined;
3791
+ gatewayFee?: bigint | undefined;
3792
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3793
+ }) | ({
3794
+ data?: `0x${string}` | undefined;
3795
+ from?: `0x${string}`;
3796
+ gas?: bigint | undefined;
3797
+ nonce?: number | undefined;
3798
+ value?: bigint | undefined;
3799
+ to?: `0x${string}` | null | undefined;
3800
+ gasPrice?: bigint | undefined;
3801
+ maxFeePerGas?: bigint | undefined;
3802
+ maxPriorityFeePerGas?: bigint | undefined;
3803
+ maxFeePerBlobGas?: bigint | undefined;
3804
+ accessList?: import("../index.js").AccessList | undefined;
3805
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3806
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3807
+ } & {
3808
+ data?: `0x${string}` | undefined;
3809
+ from: `0x${string}`;
3810
+ gas?: bigint | undefined;
3811
+ nonce?: number | undefined;
3812
+ to?: `0x${string}` | null | undefined;
3813
+ value?: bigint | undefined;
3814
+ gasPrice?: undefined;
3815
+ maxFeePerBlobGas?: undefined;
3816
+ maxFeePerGas?: bigint | undefined;
3817
+ maxPriorityFeePerGas?: bigint | undefined;
3818
+ accessList?: import("../index.js").AccessList | undefined;
3819
+ blobs?: undefined;
3820
+ type?: "eip1559" | undefined;
3821
+ } & {
3822
+ feeCurrency?: `0x${string}` | undefined;
3823
+ gatewayFee?: bigint | undefined;
3824
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3825
+ }) | ({
3826
+ data?: `0x${string}` | undefined;
3827
+ from?: `0x${string}`;
3828
+ gas?: bigint | undefined;
3829
+ nonce?: number | undefined;
3830
+ value?: bigint | undefined;
3831
+ to?: `0x${string}` | null | undefined;
3832
+ gasPrice?: bigint | undefined;
3833
+ maxFeePerGas?: bigint | undefined;
3834
+ maxPriorityFeePerGas?: bigint | undefined;
3835
+ maxFeePerBlobGas?: bigint | undefined;
3836
+ accessList?: import("../index.js").AccessList | undefined;
3837
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3838
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3839
+ } & {
3840
+ data?: `0x${string}` | undefined;
3841
+ from: `0x${string}`;
3842
+ gas?: bigint | undefined;
3843
+ nonce?: number | undefined;
3844
+ value?: bigint | undefined;
3845
+ to: `0x${string}` | null;
3846
+ gasPrice?: undefined;
3847
+ maxFeePerGas?: bigint | undefined;
3848
+ maxPriorityFeePerGas?: bigint | undefined;
3849
+ maxFeePerBlobGas: bigint;
3850
+ accessList?: import("../index.js").AccessList | undefined;
3851
+ blobs: readonly `0x${string}`[] | readonly Uint8Array[];
3852
+ type?: "eip4844" | undefined;
3853
+ } & {
3854
+ feeCurrency?: `0x${string}` | undefined;
3855
+ gatewayFee?: bigint | undefined;
3856
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3857
+ }) | ({
3858
+ data?: `0x${string}` | undefined;
3859
+ from?: `0x${string}`;
3860
+ gas?: bigint | undefined;
3861
+ nonce?: number | undefined;
3862
+ value?: bigint | undefined;
3863
+ to?: `0x${string}` | null | undefined;
3864
+ gasPrice?: bigint | undefined;
3865
+ maxFeePerGas?: bigint | undefined;
3866
+ maxPriorityFeePerGas?: bigint | undefined;
3867
+ maxFeePerBlobGas?: bigint | undefined;
3868
+ accessList?: import("../index.js").AccessList | undefined;
3869
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3870
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3871
+ } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3872
+ accessList?: import("../index.js").AccessList | undefined;
3873
+ feeCurrency?: `0x${string}` | undefined;
3874
+ gatewayFee?: bigint | undefined;
3875
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3876
+ type?: "cip42" | undefined;
3877
+ }) | ({
3878
+ data?: `0x${string}` | undefined;
3879
+ from?: `0x${string}`;
3880
+ gas?: bigint | undefined;
3881
+ nonce?: number | undefined;
3882
+ value?: bigint | undefined;
3883
+ to?: `0x${string}` | null | undefined;
3884
+ gasPrice?: bigint | undefined;
3885
+ maxFeePerGas?: bigint | undefined;
3886
+ maxPriorityFeePerGas?: bigint | undefined;
3887
+ maxFeePerBlobGas?: bigint | undefined;
3888
+ accessList?: import("../index.js").AccessList | undefined;
3889
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3890
+ type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "cip42" | "cip64" | undefined;
3891
+ } & import("../index.js").TransactionRequestBase & import("../index.js").ExactPartial<import("../index.js").FeeValuesEIP1559> & {
3892
+ accessList?: import("../index.js").AccessList | undefined;
3893
+ feeCurrency?: `0x${string}` | undefined;
3894
+ gatewayFee?: undefined;
3895
+ gatewayFeeRecipient?: undefined;
3896
+ type?: "cip64" | undefined;
3897
+ })) => ({
3898
+ data?: `0x${string}` | undefined;
3899
+ from: `0x${string}`;
3900
+ gas?: `0x${string}` | undefined;
3901
+ nonce?: `0x${string}` | undefined;
3902
+ to?: `0x${string}` | null | undefined;
3903
+ value?: `0x${string}` | undefined;
3904
+ gasPrice?: `0x${string}` | undefined;
3905
+ maxFeePerBlobGas?: undefined;
3906
+ maxFeePerGas?: undefined;
3907
+ maxPriorityFeePerGas?: undefined;
3908
+ accessList?: undefined;
3909
+ blobs?: undefined;
3910
+ type?: "0x0" | undefined;
3911
+ feeCurrency?: `0x${string}` | undefined;
3912
+ gatewayFee?: `0x${string}` | undefined;
3913
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3914
+ } | {
3915
+ data?: `0x${string}` | undefined;
3916
+ from: `0x${string}`;
3917
+ gas?: `0x${string}` | undefined;
3918
+ nonce?: `0x${string}` | undefined;
3919
+ to?: `0x${string}` | null | undefined;
3920
+ value?: `0x${string}` | undefined;
3921
+ gasPrice?: `0x${string}` | undefined;
3922
+ maxFeePerBlobGas?: undefined;
3923
+ maxFeePerGas?: undefined;
3924
+ maxPriorityFeePerGas?: undefined;
3925
+ accessList?: import("../index.js").AccessList | undefined;
3926
+ blobs?: undefined;
3927
+ type?: "0x1" | undefined;
3928
+ feeCurrency?: `0x${string}` | undefined;
3929
+ gatewayFee?: `0x${string}` | undefined;
3930
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3931
+ } | {
3932
+ data?: `0x${string}` | undefined;
3933
+ from: `0x${string}`;
3934
+ gas?: `0x${string}` | undefined;
3935
+ nonce?: `0x${string}` | undefined;
3936
+ to?: `0x${string}` | null | undefined;
3937
+ value?: `0x${string}` | undefined;
3938
+ gasPrice?: undefined;
3939
+ maxFeePerBlobGas?: undefined;
3940
+ maxFeePerGas?: `0x${string}` | undefined;
3941
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3942
+ accessList?: import("../index.js").AccessList | undefined;
3943
+ blobs?: undefined;
3944
+ type?: "0x2" | undefined;
3945
+ feeCurrency?: `0x${string}` | undefined;
3946
+ gatewayFee?: `0x${string}` | undefined;
3947
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3948
+ } | {
3949
+ data?: `0x${string}` | undefined;
3950
+ from: `0x${string}`;
3951
+ gas?: `0x${string}` | undefined;
3952
+ nonce?: `0x${string}` | undefined;
3953
+ to?: `0x${string}` | null | undefined;
3954
+ value?: `0x${string}` | undefined;
3955
+ gasPrice?: undefined;
3956
+ maxFeePerBlobGas?: undefined;
3957
+ maxFeePerGas?: `0x${string}` | undefined;
3958
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3959
+ accessList?: import("../index.js").AccessList | undefined;
3960
+ blobs?: undefined;
3961
+ type?: "0x7c" | undefined;
3962
+ feeCurrency?: `0x${string}` | undefined;
3963
+ gatewayFee?: `0x${string}` | undefined;
3964
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3965
+ } | {
3966
+ data?: `0x${string}` | undefined;
3967
+ from: `0x${string}`;
3968
+ gas?: `0x${string}` | undefined;
3969
+ nonce?: `0x${string}` | undefined;
3970
+ to?: `0x${string}` | null | undefined;
3971
+ value?: `0x${string}` | undefined;
3972
+ gasPrice?: undefined;
3973
+ maxFeePerBlobGas?: undefined;
3974
+ maxFeePerGas?: `0x${string}` | undefined;
3975
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3976
+ accessList?: import("../index.js").AccessList | undefined;
3977
+ blobs?: undefined;
3978
+ type?: "0x7b" | undefined;
3979
+ feeCurrency?: `0x${string}` | undefined;
3980
+ gatewayFee?: undefined;
3981
+ gatewayFeeRecipient?: undefined;
3982
+ } | {
3983
+ data?: `0x${string}` | undefined;
3984
+ from: `0x${string}`;
3985
+ gas?: `0x${string}` | undefined;
3986
+ nonce?: `0x${string}` | undefined;
3987
+ to?: `0x${string}` | null | undefined;
3988
+ value?: `0x${string}` | undefined;
3989
+ gasPrice?: `0x${string}` | undefined;
3990
+ maxFeePerBlobGas?: undefined;
3991
+ maxFeePerGas?: undefined;
3992
+ maxPriorityFeePerGas?: undefined;
3993
+ accessList?: undefined;
3994
+ blobs?: undefined;
3995
+ type?: "0x0" | undefined;
3996
+ feeCurrency?: `0x${string}` | undefined;
3997
+ gatewayFee?: `0x${string}` | undefined;
3998
+ gatewayFeeRecipient?: `0x${string}` | undefined;
3999
+ } | {
4000
+ data?: `0x${string}` | undefined;
4001
+ from: `0x${string}`;
4002
+ gas?: `0x${string}` | undefined;
4003
+ nonce?: `0x${string}` | undefined;
4004
+ to?: `0x${string}` | null | undefined;
4005
+ value?: `0x${string}` | undefined;
4006
+ gasPrice?: `0x${string}` | undefined;
4007
+ maxFeePerBlobGas?: undefined;
4008
+ maxFeePerGas?: undefined;
4009
+ maxPriorityFeePerGas?: undefined;
4010
+ accessList?: import("../index.js").AccessList | undefined;
4011
+ blobs?: undefined;
4012
+ type?: "0x1" | undefined;
4013
+ feeCurrency?: `0x${string}` | undefined;
4014
+ gatewayFee?: `0x${string}` | undefined;
4015
+ gatewayFeeRecipient?: `0x${string}` | undefined;
4016
+ } | {
4017
+ data?: `0x${string}` | undefined;
4018
+ from: `0x${string}`;
4019
+ gas?: `0x${string}` | undefined;
4020
+ nonce?: `0x${string}` | undefined;
4021
+ to?: `0x${string}` | null | undefined;
4022
+ value?: `0x${string}` | undefined;
4023
+ gasPrice?: undefined;
4024
+ maxFeePerBlobGas?: undefined;
4025
+ maxFeePerGas?: `0x${string}` | undefined;
4026
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4027
+ accessList?: import("../index.js").AccessList | undefined;
4028
+ blobs?: undefined;
4029
+ type?: "0x2" | undefined;
4030
+ feeCurrency?: `0x${string}` | undefined;
4031
+ gatewayFee?: `0x${string}` | undefined;
4032
+ gatewayFeeRecipient?: `0x${string}` | undefined;
4033
+ } | {
4034
+ data?: `0x${string}` | undefined;
4035
+ from: `0x${string}`;
4036
+ gas?: `0x${string}` | undefined;
4037
+ nonce?: `0x${string}` | undefined;
4038
+ to?: `0x${string}` | null | undefined;
4039
+ value?: `0x${string}` | undefined;
4040
+ gasPrice?: undefined;
4041
+ maxFeePerBlobGas?: undefined;
4042
+ maxFeePerGas?: `0x${string}` | undefined;
4043
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4044
+ accessList?: import("../index.js").AccessList | undefined;
4045
+ blobs?: undefined;
4046
+ type?: "0x7c" | undefined;
4047
+ feeCurrency?: `0x${string}` | undefined;
4048
+ gatewayFee?: `0x${string}` | undefined;
4049
+ gatewayFeeRecipient?: `0x${string}` | undefined;
4050
+ } | {
4051
+ data?: `0x${string}` | undefined;
4052
+ from: `0x${string}`;
4053
+ gas?: `0x${string}` | undefined;
4054
+ nonce?: `0x${string}` | undefined;
4055
+ to?: `0x${string}` | null | undefined;
4056
+ value?: `0x${string}` | undefined;
4057
+ gasPrice?: undefined;
4058
+ maxFeePerBlobGas?: undefined;
4059
+ maxFeePerGas?: `0x${string}` | undefined;
4060
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4061
+ accessList?: import("../index.js").AccessList | undefined;
4062
+ blobs?: undefined;
4063
+ type?: "0x7b" | undefined;
4064
+ feeCurrency?: `0x${string}` | undefined;
4065
+ gatewayFee?: undefined;
4066
+ gatewayFeeRecipient?: undefined;
4067
+ } | {
4068
+ data?: `0x${string}` | undefined;
4069
+ from: `0x${string}`;
4070
+ gas?: `0x${string}` | undefined;
4071
+ nonce?: `0x${string}` | undefined;
4072
+ to?: `0x${string}` | null | undefined;
4073
+ value?: `0x${string}` | undefined;
4074
+ gasPrice?: `0x${string}` | undefined;
4075
+ maxFeePerBlobGas?: undefined;
4076
+ maxFeePerGas?: undefined;
4077
+ maxPriorityFeePerGas?: undefined;
4078
+ accessList?: undefined;
4079
+ blobs?: undefined;
4080
+ type?: "0x0" | undefined;
4081
+ feeCurrency?: `0x${string}` | undefined;
4082
+ gatewayFee?: `0x${string}` | undefined;
4083
+ gatewayFeeRecipient?: `0x${string}` | undefined;
4084
+ } | {
4085
+ data?: `0x${string}` | undefined;
4086
+ from: `0x${string}`;
4087
+ gas?: `0x${string}` | undefined;
4088
+ nonce?: `0x${string}` | undefined;
4089
+ to?: `0x${string}` | null | undefined;
4090
+ value?: `0x${string}` | undefined;
4091
+ gasPrice?: `0x${string}` | undefined;
4092
+ maxFeePerBlobGas?: undefined;
4093
+ maxFeePerGas?: undefined;
4094
+ maxPriorityFeePerGas?: undefined;
4095
+ accessList?: import("../index.js").AccessList | undefined;
4096
+ blobs?: undefined;
4097
+ type?: "0x1" | undefined;
4098
+ feeCurrency?: `0x${string}` | undefined;
4099
+ gatewayFee?: `0x${string}` | undefined;
4100
+ gatewayFeeRecipient?: `0x${string}` | undefined;
4101
+ } | {
4102
+ data?: `0x${string}` | undefined;
4103
+ from: `0x${string}`;
4104
+ gas?: `0x${string}` | undefined;
4105
+ nonce?: `0x${string}` | undefined;
4106
+ to?: `0x${string}` | null | undefined;
4107
+ value?: `0x${string}` | undefined;
4108
+ gasPrice?: undefined;
4109
+ maxFeePerBlobGas?: undefined;
4110
+ maxFeePerGas?: `0x${string}` | undefined;
4111
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4112
+ accessList?: import("../index.js").AccessList | undefined;
4113
+ blobs?: undefined;
4114
+ type?: "0x2" | undefined;
4115
+ feeCurrency?: `0x${string}` | undefined;
4116
+ gatewayFee?: `0x${string}` | undefined;
4117
+ gatewayFeeRecipient?: `0x${string}` | undefined;
4118
+ } | {
4119
+ data?: `0x${string}` | undefined;
4120
+ from: `0x${string}`;
4121
+ gas?: `0x${string}` | undefined;
4122
+ nonce?: `0x${string}` | undefined;
4123
+ to?: `0x${string}` | null | undefined;
4124
+ value?: `0x${string}` | undefined;
4125
+ gasPrice?: undefined;
4126
+ maxFeePerBlobGas?: undefined;
4127
+ maxFeePerGas?: `0x${string}` | undefined;
4128
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4129
+ accessList?: import("../index.js").AccessList | undefined;
4130
+ blobs?: undefined;
4131
+ type?: "0x7c" | undefined;
4132
+ feeCurrency?: `0x${string}` | undefined;
4133
+ gatewayFee?: `0x${string}` | undefined;
4134
+ gatewayFeeRecipient?: `0x${string}` | undefined;
4135
+ } | {
4136
+ data?: `0x${string}` | undefined;
4137
+ from: `0x${string}`;
4138
+ gas?: `0x${string}` | undefined;
4139
+ nonce?: `0x${string}` | undefined;
4140
+ to?: `0x${string}` | null | undefined;
4141
+ value?: `0x${string}` | undefined;
4142
+ gasPrice?: undefined;
4143
+ maxFeePerBlobGas?: undefined;
4144
+ maxFeePerGas?: `0x${string}` | undefined;
4145
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4146
+ accessList?: import("../index.js").AccessList | undefined;
4147
+ blobs?: undefined;
4148
+ type?: "0x7b" | undefined;
4149
+ feeCurrency?: `0x${string}` | undefined;
4150
+ gatewayFee?: undefined;
4151
+ gatewayFeeRecipient?: undefined;
4152
+ } | {
4153
+ data?: `0x${string}` | undefined;
4154
+ from: `0x${string}`;
4155
+ gas?: `0x${string}` | undefined;
4156
+ nonce?: `0x${string}` | undefined;
4157
+ value?: `0x${string}` | undefined;
4158
+ to: `0x${string}` | null;
4159
+ gasPrice?: undefined;
4160
+ maxFeePerGas?: `0x${string}` | undefined;
4161
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4162
+ maxFeePerBlobGas: `0x${string}`;
4163
+ accessList?: import("../index.js").AccessList | undefined;
4164
+ blobs: readonly `0x${string}`[] | readonly Uint8Array[];
4165
+ type?: "0x3" | undefined;
4166
+ feeCurrency?: `0x${string}` | undefined;
4167
+ gatewayFee?: `0x${string}` | undefined;
4168
+ gatewayFeeRecipient?: `0x${string}` | undefined;
4169
+ } | {
4170
+ data?: `0x${string}` | undefined;
4171
+ from: `0x${string}`;
4172
+ gas?: `0x${string}` | undefined;
4173
+ nonce?: `0x${string}` | undefined;
4174
+ value?: `0x${string}` | undefined;
4175
+ to: `0x${string}` | null | undefined;
4176
+ gasPrice?: undefined;
4177
+ maxFeePerGas?: `0x${string}` | undefined;
4178
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4179
+ maxFeePerBlobGas: undefined;
4180
+ accessList?: import("../index.js").AccessList | undefined;
4181
+ blobs: readonly `0x${string}`[] | readonly Uint8Array[];
4182
+ type?: "0x7c" | undefined;
4183
+ feeCurrency?: `0x${string}` | undefined;
4184
+ gatewayFee?: `0x${string}` | undefined;
4185
+ gatewayFeeRecipient?: `0x${string}` | undefined;
4186
+ } | {
4187
+ data?: `0x${string}` | undefined;
4188
+ from: `0x${string}`;
4189
+ gas?: `0x${string}` | undefined;
4190
+ nonce?: `0x${string}` | undefined;
4191
+ value?: `0x${string}` | undefined;
4192
+ to: `0x${string}` | null | undefined;
4193
+ gasPrice?: undefined;
4194
+ maxFeePerGas?: `0x${string}` | undefined;
4195
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
4196
+ maxFeePerBlobGas: undefined;
4197
+ accessList?: import("../index.js").AccessList | undefined;
4198
+ blobs: readonly `0x${string}`[] | readonly Uint8Array[];
4199
+ type?: "0x7b" | undefined;
4200
+ feeCurrency?: `0x${string}` | undefined;
4201
+ gatewayFee?: undefined;
4202
+ gatewayFeeRecipient?: undefined;
4203
+ }) & {};
4204
+ type: "transactionRequest";
4205
+ };
4206
+ }>;
2106
4207
  };
2107
4208
  //# sourceMappingURL=chainConfig.d.ts.map