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