@funkit/connect 1.2.5 → 1.2.7
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 +23 -0
- package/dist/components/Box/Box.d.ts +3 -3
- package/dist/components/CloseButton/CloseButton.d.ts +1 -1
- package/dist/components/FunButton/FunIconButton.d.ts +7 -7
- package/dist/components/FunCheckoutHistoryModal/FunCheckoutHistoryDetail.d.ts +1 -1
- package/dist/components/FunNotification/FunCheckoutNotification.d.ts +1 -1
- package/dist/components/FunTransactionSummary/FunTxSummaryHistory.d.ts +1 -1
- package/dist/components/FunkitProvider/AppContext.d.ts +3 -3
- package/dist/components/FunkitProvider/CoolModeContext.d.ts +0 -1
- package/dist/components/FunkitProvider/FunkitCheckoutContext.d.ts +2 -7
- package/dist/components/FunkitProvider/FunkitConfigContext.d.ts +1 -1
- package/dist/components/FunkitProvider/FunkitSandboxContext.d.ts +0 -1
- package/dist/components/FunkitProvider/FunkitWeb2Provider.d.ts +2 -15
- package/dist/components/FunkitProvider/GeneralWalletProvider.d.ts +8 -8
- package/dist/components/FunkitProvider/ShowRecentTransactionsContext.d.ts +0 -1
- package/dist/components/FunkitProvider/provideFunkitConnectChains.d.ts +1 -1
- package/dist/components/FunkitProvider/useCoolMode.d.ts +0 -1
- package/dist/components/InfoButton/InfoButton.d.ts +1 -1
- package/dist/config/getDefaultConfig.d.ts +510 -510
- package/dist/consts/funkit.d.ts +30 -9
- package/dist/css/atoms.d.ts +0 -1
- package/dist/hooks/useCheckoutAccountBalanceTransfer.d.ts +10 -10
- package/dist/hooks/useCheckoutStateBooleans.d.ts +1 -1
- package/dist/index.css +8 -8
- package/dist/index.d.ts +1 -2
- package/dist/index.js +426 -137
- package/dist/themes/baseTheme.d.ts +1 -1
- package/dist/utils/checkout.d.ts +25 -25
- package/dist/utils/flags/config.d.ts +14 -0
- package/dist/utils/flags/endpoint.d.ts +22 -0
- package/dist/utils/flags/hash.d.ts +13 -0
- package/dist/utils/flags/impl.d.ts +26 -0
- package/dist/utils/flags/index.d.ts +7 -0
- package/dist/utils/flags/types.d.ts +39 -0
- package/dist/utils/funLogger.d.ts +7 -1
- package/dist/utils/memoize.d.ts +3 -0
- package/dist/utils/mesh.d.ts +0 -1
- package/dist/wallets/computeWalletConnectMetaData.d.ts +1 -1
- package/dist/wallets/walletConnectors/funkitConnectWallet/funkitConnectWallet.js +4 -5
- package/dist/wallets/walletConnectors/index.js +45 -45
- package/package.json +9 -5
|
@@ -124,8 +124,8 @@ export declare const getDefaultChains: () => ({
|
|
|
124
124
|
formatters: {
|
|
125
125
|
readonly block: {
|
|
126
126
|
exclude: [] | undefined;
|
|
127
|
-
format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcBlock
|
|
128
|
-
transactions: `0x${string}`[] | import("viem/chains").OpStackRpcTransaction
|
|
127
|
+
format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcBlock>, import("viem/chains").OpStackRpcBlockOverrides & {
|
|
128
|
+
transactions: `0x${string}`[] | import("viem/chains").OpStackRpcTransaction[];
|
|
129
129
|
}>) => {
|
|
130
130
|
baseFeePerGas: bigint | null;
|
|
131
131
|
blobGasUsed: bigint;
|
|
@@ -148,36 +148,36 @@ export declare const getDefaultChains: () => ({
|
|
|
148
148
|
stateRoot: `0x${string}`;
|
|
149
149
|
timestamp: bigint;
|
|
150
150
|
totalDifficulty: bigint | null;
|
|
151
|
-
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction
|
|
151
|
+
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction[];
|
|
152
152
|
transactionsRoot: `0x${string}`;
|
|
153
153
|
uncles: `0x${string}`[];
|
|
154
154
|
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
155
155
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
156
|
-
};
|
|
156
|
+
} & {};
|
|
157
157
|
type: "block";
|
|
158
158
|
};
|
|
159
159
|
readonly transaction: {
|
|
160
160
|
exclude: [] | undefined;
|
|
161
161
|
format: (args: ({
|
|
162
|
-
r?: `0x${string}
|
|
163
|
-
s?: `0x${string}
|
|
164
|
-
v?: `0x${string}
|
|
162
|
+
r?: `0x${string}`;
|
|
163
|
+
s?: `0x${string}`;
|
|
164
|
+
v?: `0x${string}`;
|
|
165
165
|
yParity?: `0x${string}` | undefined;
|
|
166
166
|
gasPrice?: `0x${string}` | undefined;
|
|
167
167
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
168
168
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
169
169
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
170
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
171
|
-
to?: `0x${string}` | null
|
|
172
|
-
from?: `0x${string}
|
|
173
|
-
gas?: `0x${string}
|
|
174
|
-
nonce?: `0x${string}
|
|
175
|
-
value?: `0x${string}
|
|
176
|
-
blockHash?: `0x${string}` | null
|
|
177
|
-
blockNumber?: `0x${string}` | null
|
|
178
|
-
hash?: `0x${string}
|
|
179
|
-
input?: `0x${string}
|
|
180
|
-
transactionIndex?: `0x${string}` | null
|
|
170
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
171
|
+
to?: `0x${string}` | null;
|
|
172
|
+
from?: `0x${string}`;
|
|
173
|
+
gas?: `0x${string}`;
|
|
174
|
+
nonce?: `0x${string}`;
|
|
175
|
+
value?: `0x${string}`;
|
|
176
|
+
blockHash?: `0x${string}` | null;
|
|
177
|
+
blockNumber?: `0x${string}` | null;
|
|
178
|
+
hash?: `0x${string}`;
|
|
179
|
+
input?: `0x${string}`;
|
|
180
|
+
transactionIndex?: `0x${string}` | null;
|
|
181
181
|
accessList?: undefined;
|
|
182
182
|
blobVersionedHashes?: undefined;
|
|
183
183
|
chainId?: `0x${string}` | undefined;
|
|
@@ -210,25 +210,25 @@ export declare const getDefaultChains: () => ({
|
|
|
210
210
|
mint?: undefined;
|
|
211
211
|
sourceHash?: undefined;
|
|
212
212
|
}) | ({
|
|
213
|
-
r?: `0x${string}
|
|
214
|
-
s?: `0x${string}
|
|
215
|
-
v?: `0x${string}
|
|
213
|
+
r?: `0x${string}`;
|
|
214
|
+
s?: `0x${string}`;
|
|
215
|
+
v?: `0x${string}`;
|
|
216
216
|
yParity?: `0x${string}` | undefined;
|
|
217
217
|
gasPrice?: `0x${string}` | undefined;
|
|
218
218
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
219
219
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
220
220
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
221
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
222
|
-
to?: `0x${string}` | null
|
|
223
|
-
from?: `0x${string}
|
|
224
|
-
gas?: `0x${string}
|
|
225
|
-
nonce?: `0x${string}
|
|
226
|
-
value?: `0x${string}
|
|
227
|
-
blockHash?: `0x${string}` | null
|
|
228
|
-
blockNumber?: `0x${string}` | null
|
|
229
|
-
hash?: `0x${string}
|
|
230
|
-
input?: `0x${string}
|
|
231
|
-
transactionIndex?: `0x${string}` | null
|
|
221
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
222
|
+
to?: `0x${string}` | null;
|
|
223
|
+
from?: `0x${string}`;
|
|
224
|
+
gas?: `0x${string}`;
|
|
225
|
+
nonce?: `0x${string}`;
|
|
226
|
+
value?: `0x${string}`;
|
|
227
|
+
blockHash?: `0x${string}` | null;
|
|
228
|
+
blockNumber?: `0x${string}` | null;
|
|
229
|
+
hash?: `0x${string}`;
|
|
230
|
+
input?: `0x${string}`;
|
|
231
|
+
transactionIndex?: `0x${string}` | null;
|
|
232
232
|
accessList?: undefined;
|
|
233
233
|
blobVersionedHashes?: undefined;
|
|
234
234
|
chainId?: `0x${string}` | undefined;
|
|
@@ -238,25 +238,25 @@ export declare const getDefaultChains: () => ({
|
|
|
238
238
|
sourceHash: `0x${string}`;
|
|
239
239
|
type: "0x7e";
|
|
240
240
|
}) | ({
|
|
241
|
-
r?: `0x${string}
|
|
242
|
-
s?: `0x${string}
|
|
243
|
-
v?: `0x${string}
|
|
241
|
+
r?: `0x${string}`;
|
|
242
|
+
s?: `0x${string}`;
|
|
243
|
+
v?: `0x${string}`;
|
|
244
244
|
yParity?: `0x${string}` | undefined;
|
|
245
245
|
gasPrice?: `0x${string}` | undefined;
|
|
246
246
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
247
247
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
248
248
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
249
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
250
|
-
to?: `0x${string}` | null
|
|
251
|
-
from?: `0x${string}
|
|
252
|
-
gas?: `0x${string}
|
|
253
|
-
nonce?: `0x${string}
|
|
254
|
-
value?: `0x${string}
|
|
255
|
-
blockHash?: `0x${string}` | null
|
|
256
|
-
blockNumber?: `0x${string}` | null
|
|
257
|
-
hash?: `0x${string}
|
|
258
|
-
input?: `0x${string}
|
|
259
|
-
transactionIndex?: `0x${string}` | null
|
|
249
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
250
|
+
to?: `0x${string}` | null;
|
|
251
|
+
from?: `0x${string}`;
|
|
252
|
+
gas?: `0x${string}`;
|
|
253
|
+
nonce?: `0x${string}`;
|
|
254
|
+
value?: `0x${string}`;
|
|
255
|
+
blockHash?: `0x${string}` | null;
|
|
256
|
+
blockNumber?: `0x${string}` | null;
|
|
257
|
+
hash?: `0x${string}`;
|
|
258
|
+
input?: `0x${string}`;
|
|
259
|
+
transactionIndex?: `0x${string}` | null;
|
|
260
260
|
accessList?: import("viem").AccessList | undefined;
|
|
261
261
|
blobVersionedHashes?: undefined;
|
|
262
262
|
chainId?: `0x${string}` | undefined;
|
|
@@ -289,25 +289,25 @@ export declare const getDefaultChains: () => ({
|
|
|
289
289
|
mint?: undefined;
|
|
290
290
|
sourceHash?: undefined;
|
|
291
291
|
}) | ({
|
|
292
|
-
r?: `0x${string}
|
|
293
|
-
s?: `0x${string}
|
|
294
|
-
v?: `0x${string}
|
|
292
|
+
r?: `0x${string}`;
|
|
293
|
+
s?: `0x${string}`;
|
|
294
|
+
v?: `0x${string}`;
|
|
295
295
|
yParity?: `0x${string}` | undefined;
|
|
296
296
|
gasPrice?: `0x${string}` | undefined;
|
|
297
297
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
298
298
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
299
299
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
300
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
301
|
-
to?: `0x${string}` | null
|
|
302
|
-
from?: `0x${string}
|
|
303
|
-
gas?: `0x${string}
|
|
304
|
-
nonce?: `0x${string}
|
|
305
|
-
value?: `0x${string}
|
|
306
|
-
blockHash?: `0x${string}` | null
|
|
307
|
-
blockNumber?: `0x${string}` | null
|
|
308
|
-
hash?: `0x${string}
|
|
309
|
-
input?: `0x${string}
|
|
310
|
-
transactionIndex?: `0x${string}` | null
|
|
300
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
301
|
+
to?: `0x${string}` | null;
|
|
302
|
+
from?: `0x${string}`;
|
|
303
|
+
gas?: `0x${string}`;
|
|
304
|
+
nonce?: `0x${string}`;
|
|
305
|
+
value?: `0x${string}`;
|
|
306
|
+
blockHash?: `0x${string}` | null;
|
|
307
|
+
blockNumber?: `0x${string}` | null;
|
|
308
|
+
hash?: `0x${string}`;
|
|
309
|
+
input?: `0x${string}`;
|
|
310
|
+
transactionIndex?: `0x${string}` | null;
|
|
311
311
|
accessList?: import("viem").AccessList | undefined;
|
|
312
312
|
blobVersionedHashes?: undefined;
|
|
313
313
|
chainId?: `0x${string}` | undefined;
|
|
@@ -340,25 +340,25 @@ export declare const getDefaultChains: () => ({
|
|
|
340
340
|
mint?: undefined;
|
|
341
341
|
sourceHash?: undefined;
|
|
342
342
|
}) | ({
|
|
343
|
-
r?: `0x${string}
|
|
344
|
-
s?: `0x${string}
|
|
345
|
-
v?: `0x${string}
|
|
343
|
+
r?: `0x${string}`;
|
|
344
|
+
s?: `0x${string}`;
|
|
345
|
+
v?: `0x${string}`;
|
|
346
346
|
yParity?: `0x${string}` | undefined;
|
|
347
347
|
gasPrice?: `0x${string}` | undefined;
|
|
348
348
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
349
349
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
350
350
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
351
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
352
|
-
to?: `0x${string}` | null
|
|
353
|
-
from?: `0x${string}
|
|
354
|
-
gas?: `0x${string}
|
|
355
|
-
nonce?: `0x${string}
|
|
356
|
-
value?: `0x${string}
|
|
357
|
-
blockHash?: `0x${string}` | null
|
|
358
|
-
blockNumber?: `0x${string}` | null
|
|
359
|
-
hash?: `0x${string}
|
|
360
|
-
input?: `0x${string}
|
|
361
|
-
transactionIndex?: `0x${string}` | null
|
|
351
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
352
|
+
to?: `0x${string}` | null;
|
|
353
|
+
from?: `0x${string}`;
|
|
354
|
+
gas?: `0x${string}`;
|
|
355
|
+
nonce?: `0x${string}`;
|
|
356
|
+
value?: `0x${string}`;
|
|
357
|
+
blockHash?: `0x${string}` | null;
|
|
358
|
+
blockNumber?: `0x${string}` | null;
|
|
359
|
+
hash?: `0x${string}`;
|
|
360
|
+
input?: `0x${string}`;
|
|
361
|
+
transactionIndex?: `0x${string}` | null;
|
|
362
362
|
accessList?: import("viem").AccessList | undefined;
|
|
363
363
|
blobVersionedHashes?: undefined;
|
|
364
364
|
chainId?: `0x${string}` | undefined;
|
|
@@ -391,25 +391,25 @@ export declare const getDefaultChains: () => ({
|
|
|
391
391
|
mint?: undefined;
|
|
392
392
|
sourceHash?: undefined;
|
|
393
393
|
}) | ({
|
|
394
|
-
r?: `0x${string}
|
|
395
|
-
s?: `0x${string}
|
|
396
|
-
v?: `0x${string}
|
|
394
|
+
r?: `0x${string}`;
|
|
395
|
+
s?: `0x${string}`;
|
|
396
|
+
v?: `0x${string}`;
|
|
397
397
|
yParity?: `0x${string}` | undefined;
|
|
398
398
|
gasPrice?: `0x${string}` | undefined;
|
|
399
399
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
400
400
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
401
401
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
402
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
403
|
-
to?: `0x${string}` | null
|
|
404
|
-
from?: `0x${string}
|
|
405
|
-
gas?: `0x${string}
|
|
406
|
-
nonce?: `0x${string}
|
|
407
|
-
value?: `0x${string}
|
|
408
|
-
blockHash?: `0x${string}` | null
|
|
409
|
-
blockNumber?: `0x${string}` | null
|
|
410
|
-
hash?: `0x${string}
|
|
411
|
-
input?: `0x${string}
|
|
412
|
-
transactionIndex?: `0x${string}` | null
|
|
402
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
403
|
+
to?: `0x${string}` | null;
|
|
404
|
+
from?: `0x${string}`;
|
|
405
|
+
gas?: `0x${string}`;
|
|
406
|
+
nonce?: `0x${string}`;
|
|
407
|
+
value?: `0x${string}`;
|
|
408
|
+
blockHash?: `0x${string}` | null;
|
|
409
|
+
blockNumber?: `0x${string}` | null;
|
|
410
|
+
hash?: `0x${string}`;
|
|
411
|
+
input?: `0x${string}`;
|
|
412
|
+
transactionIndex?: `0x${string}` | null;
|
|
413
413
|
accessList?: import("viem").AccessList | undefined;
|
|
414
414
|
blobVersionedHashes?: undefined;
|
|
415
415
|
chainId?: `0x${string}` | undefined;
|
|
@@ -419,25 +419,25 @@ export declare const getDefaultChains: () => ({
|
|
|
419
419
|
sourceHash: `0x${string}`;
|
|
420
420
|
type: "0x7e";
|
|
421
421
|
}) | ({
|
|
422
|
-
r?: `0x${string}
|
|
423
|
-
s?: `0x${string}
|
|
424
|
-
v?: `0x${string}
|
|
422
|
+
r?: `0x${string}`;
|
|
423
|
+
s?: `0x${string}`;
|
|
424
|
+
v?: `0x${string}`;
|
|
425
425
|
yParity?: `0x${string}` | undefined;
|
|
426
426
|
gasPrice?: `0x${string}` | undefined;
|
|
427
427
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
428
428
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
429
429
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
430
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
431
|
-
to?: `0x${string}` | null
|
|
432
|
-
from?: `0x${string}
|
|
433
|
-
gas?: `0x${string}
|
|
434
|
-
nonce?: `0x${string}
|
|
435
|
-
value?: `0x${string}
|
|
436
|
-
blockHash?: `0x${string}` | null
|
|
437
|
-
blockNumber?: `0x${string}` | null
|
|
438
|
-
hash?: `0x${string}
|
|
439
|
-
input?: `0x${string}
|
|
440
|
-
transactionIndex?: `0x${string}` | null
|
|
430
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
431
|
+
to?: `0x${string}` | null;
|
|
432
|
+
from?: `0x${string}`;
|
|
433
|
+
gas?: `0x${string}`;
|
|
434
|
+
nonce?: `0x${string}`;
|
|
435
|
+
value?: `0x${string}`;
|
|
436
|
+
blockHash?: `0x${string}` | null;
|
|
437
|
+
blockNumber?: `0x${string}` | null;
|
|
438
|
+
hash?: `0x${string}`;
|
|
439
|
+
input?: `0x${string}`;
|
|
440
|
+
transactionIndex?: `0x${string}` | null;
|
|
441
441
|
accessList?: import("viem").AccessList | undefined;
|
|
442
442
|
blobVersionedHashes?: undefined;
|
|
443
443
|
chainId?: `0x${string}` | undefined;
|
|
@@ -470,25 +470,25 @@ export declare const getDefaultChains: () => ({
|
|
|
470
470
|
mint?: undefined;
|
|
471
471
|
sourceHash?: undefined;
|
|
472
472
|
}) | ({
|
|
473
|
-
r?: `0x${string}
|
|
474
|
-
s?: `0x${string}
|
|
475
|
-
v?: `0x${string}
|
|
473
|
+
r?: `0x${string}`;
|
|
474
|
+
s?: `0x${string}`;
|
|
475
|
+
v?: `0x${string}`;
|
|
476
476
|
yParity?: `0x${string}` | undefined;
|
|
477
477
|
gasPrice?: `0x${string}` | undefined;
|
|
478
478
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
479
479
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
480
480
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
481
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
482
|
-
to?: `0x${string}` | null
|
|
483
|
-
from?: `0x${string}
|
|
484
|
-
gas?: `0x${string}
|
|
485
|
-
nonce?: `0x${string}
|
|
486
|
-
value?: `0x${string}
|
|
487
|
-
blockHash?: `0x${string}` | null
|
|
488
|
-
blockNumber?: `0x${string}` | null
|
|
489
|
-
hash?: `0x${string}
|
|
490
|
-
input?: `0x${string}
|
|
491
|
-
transactionIndex?: `0x${string}` | null
|
|
481
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
482
|
+
to?: `0x${string}` | null;
|
|
483
|
+
from?: `0x${string}`;
|
|
484
|
+
gas?: `0x${string}`;
|
|
485
|
+
nonce?: `0x${string}`;
|
|
486
|
+
value?: `0x${string}`;
|
|
487
|
+
blockHash?: `0x${string}` | null;
|
|
488
|
+
blockNumber?: `0x${string}` | null;
|
|
489
|
+
hash?: `0x${string}`;
|
|
490
|
+
input?: `0x${string}`;
|
|
491
|
+
transactionIndex?: `0x${string}` | null;
|
|
492
492
|
accessList?: import("viem").AccessList | undefined;
|
|
493
493
|
blobVersionedHashes?: undefined;
|
|
494
494
|
chainId?: `0x${string}` | undefined;
|
|
@@ -521,25 +521,25 @@ export declare const getDefaultChains: () => ({
|
|
|
521
521
|
mint?: undefined;
|
|
522
522
|
sourceHash?: undefined;
|
|
523
523
|
}) | ({
|
|
524
|
-
r?: `0x${string}
|
|
525
|
-
s?: `0x${string}
|
|
526
|
-
v?: `0x${string}
|
|
524
|
+
r?: `0x${string}`;
|
|
525
|
+
s?: `0x${string}`;
|
|
526
|
+
v?: `0x${string}`;
|
|
527
527
|
yParity?: `0x${string}` | undefined;
|
|
528
528
|
gasPrice?: `0x${string}` | undefined;
|
|
529
529
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
530
530
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
531
531
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
532
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
533
|
-
to?: `0x${string}` | null
|
|
534
|
-
from?: `0x${string}
|
|
535
|
-
gas?: `0x${string}
|
|
536
|
-
nonce?: `0x${string}
|
|
537
|
-
value?: `0x${string}
|
|
538
|
-
blockHash?: `0x${string}` | null
|
|
539
|
-
blockNumber?: `0x${string}` | null
|
|
540
|
-
hash?: `0x${string}
|
|
541
|
-
input?: `0x${string}
|
|
542
|
-
transactionIndex?: `0x${string}` | null
|
|
532
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
533
|
+
to?: `0x${string}` | null;
|
|
534
|
+
from?: `0x${string}`;
|
|
535
|
+
gas?: `0x${string}`;
|
|
536
|
+
nonce?: `0x${string}`;
|
|
537
|
+
value?: `0x${string}`;
|
|
538
|
+
blockHash?: `0x${string}` | null;
|
|
539
|
+
blockNumber?: `0x${string}` | null;
|
|
540
|
+
hash?: `0x${string}`;
|
|
541
|
+
input?: `0x${string}`;
|
|
542
|
+
transactionIndex?: `0x${string}` | null;
|
|
543
543
|
accessList?: import("viem").AccessList | undefined;
|
|
544
544
|
blobVersionedHashes?: undefined;
|
|
545
545
|
chainId?: `0x${string}` | undefined;
|
|
@@ -572,25 +572,25 @@ export declare const getDefaultChains: () => ({
|
|
|
572
572
|
mint?: undefined;
|
|
573
573
|
sourceHash?: undefined;
|
|
574
574
|
}) | ({
|
|
575
|
-
r?: `0x${string}
|
|
576
|
-
s?: `0x${string}
|
|
577
|
-
v?: `0x${string}
|
|
575
|
+
r?: `0x${string}`;
|
|
576
|
+
s?: `0x${string}`;
|
|
577
|
+
v?: `0x${string}`;
|
|
578
578
|
yParity?: `0x${string}` | undefined;
|
|
579
579
|
gasPrice?: `0x${string}` | undefined;
|
|
580
580
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
581
581
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
582
582
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
583
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
584
|
-
to?: `0x${string}` | null
|
|
585
|
-
from?: `0x${string}
|
|
586
|
-
gas?: `0x${string}
|
|
587
|
-
nonce?: `0x${string}
|
|
588
|
-
value?: `0x${string}
|
|
589
|
-
blockHash?: `0x${string}` | null
|
|
590
|
-
blockNumber?: `0x${string}` | null
|
|
591
|
-
hash?: `0x${string}
|
|
592
|
-
input?: `0x${string}
|
|
593
|
-
transactionIndex?: `0x${string}` | null
|
|
583
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
584
|
+
to?: `0x${string}` | null;
|
|
585
|
+
from?: `0x${string}`;
|
|
586
|
+
gas?: `0x${string}`;
|
|
587
|
+
nonce?: `0x${string}`;
|
|
588
|
+
value?: `0x${string}`;
|
|
589
|
+
blockHash?: `0x${string}` | null;
|
|
590
|
+
blockNumber?: `0x${string}` | null;
|
|
591
|
+
hash?: `0x${string}`;
|
|
592
|
+
input?: `0x${string}`;
|
|
593
|
+
transactionIndex?: `0x${string}` | null;
|
|
594
594
|
accessList?: import("viem").AccessList | undefined;
|
|
595
595
|
blobVersionedHashes?: undefined;
|
|
596
596
|
chainId?: `0x${string}` | undefined;
|
|
@@ -600,25 +600,25 @@ export declare const getDefaultChains: () => ({
|
|
|
600
600
|
sourceHash: `0x${string}`;
|
|
601
601
|
type: "0x7e";
|
|
602
602
|
}) | ({
|
|
603
|
-
r?: `0x${string}
|
|
604
|
-
s?: `0x${string}
|
|
605
|
-
v?: `0x${string}
|
|
603
|
+
r?: `0x${string}`;
|
|
604
|
+
s?: `0x${string}`;
|
|
605
|
+
v?: `0x${string}`;
|
|
606
606
|
yParity?: `0x${string}` | undefined;
|
|
607
607
|
gasPrice?: `0x${string}` | undefined;
|
|
608
608
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
609
609
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
610
610
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
611
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
612
|
-
to?: `0x${string}` | null
|
|
613
|
-
from?: `0x${string}
|
|
614
|
-
gas?: `0x${string}
|
|
615
|
-
nonce?: `0x${string}
|
|
616
|
-
value?: `0x${string}
|
|
617
|
-
blockHash?: `0x${string}` | null
|
|
618
|
-
blockNumber?: `0x${string}` | null
|
|
619
|
-
hash?: `0x${string}
|
|
620
|
-
input?: `0x${string}
|
|
621
|
-
transactionIndex?: `0x${string}` | null
|
|
611
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
612
|
+
to?: `0x${string}` | null;
|
|
613
|
+
from?: `0x${string}`;
|
|
614
|
+
gas?: `0x${string}`;
|
|
615
|
+
nonce?: `0x${string}`;
|
|
616
|
+
value?: `0x${string}`;
|
|
617
|
+
blockHash?: `0x${string}` | null;
|
|
618
|
+
blockNumber?: `0x${string}` | null;
|
|
619
|
+
hash?: `0x${string}`;
|
|
620
|
+
input?: `0x${string}`;
|
|
621
|
+
transactionIndex?: `0x${string}` | null;
|
|
622
622
|
accessList?: import("viem").AccessList | undefined;
|
|
623
623
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
624
624
|
chainId?: `0x${string}` | undefined;
|
|
@@ -651,25 +651,25 @@ export declare const getDefaultChains: () => ({
|
|
|
651
651
|
mint?: undefined;
|
|
652
652
|
sourceHash?: undefined;
|
|
653
653
|
}) | ({
|
|
654
|
-
r?: `0x${string}
|
|
655
|
-
s?: `0x${string}
|
|
656
|
-
v?: `0x${string}
|
|
654
|
+
r?: `0x${string}`;
|
|
655
|
+
s?: `0x${string}`;
|
|
656
|
+
v?: `0x${string}`;
|
|
657
657
|
yParity?: `0x${string}` | undefined;
|
|
658
658
|
gasPrice?: `0x${string}` | undefined;
|
|
659
659
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
660
660
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
661
661
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
662
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
663
|
-
to?: `0x${string}` | null
|
|
664
|
-
from?: `0x${string}
|
|
665
|
-
gas?: `0x${string}
|
|
666
|
-
nonce?: `0x${string}
|
|
667
|
-
value?: `0x${string}
|
|
668
|
-
blockHash?: `0x${string}` | null
|
|
669
|
-
blockNumber?: `0x${string}` | null
|
|
670
|
-
hash?: `0x${string}
|
|
671
|
-
input?: `0x${string}
|
|
672
|
-
transactionIndex?: `0x${string}` | null
|
|
662
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
663
|
+
to?: `0x${string}` | null;
|
|
664
|
+
from?: `0x${string}`;
|
|
665
|
+
gas?: `0x${string}`;
|
|
666
|
+
nonce?: `0x${string}`;
|
|
667
|
+
value?: `0x${string}`;
|
|
668
|
+
blockHash?: `0x${string}` | null;
|
|
669
|
+
blockNumber?: `0x${string}` | null;
|
|
670
|
+
hash?: `0x${string}`;
|
|
671
|
+
input?: `0x${string}`;
|
|
672
|
+
transactionIndex?: `0x${string}` | null;
|
|
673
673
|
accessList?: import("viem").AccessList | undefined;
|
|
674
674
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
675
675
|
chainId?: `0x${string}` | undefined;
|
|
@@ -702,25 +702,25 @@ export declare const getDefaultChains: () => ({
|
|
|
702
702
|
mint?: undefined;
|
|
703
703
|
sourceHash?: undefined;
|
|
704
704
|
}) | ({
|
|
705
|
-
r?: `0x${string}
|
|
706
|
-
s?: `0x${string}
|
|
707
|
-
v?: `0x${string}
|
|
705
|
+
r?: `0x${string}`;
|
|
706
|
+
s?: `0x${string}`;
|
|
707
|
+
v?: `0x${string}`;
|
|
708
708
|
yParity?: `0x${string}` | undefined;
|
|
709
709
|
gasPrice?: `0x${string}` | undefined;
|
|
710
710
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
711
711
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
712
712
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
713
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
714
|
-
to?: `0x${string}` | null
|
|
715
|
-
from?: `0x${string}
|
|
716
|
-
gas?: `0x${string}
|
|
717
|
-
nonce?: `0x${string}
|
|
718
|
-
value?: `0x${string}
|
|
719
|
-
blockHash?: `0x${string}` | null
|
|
720
|
-
blockNumber?: `0x${string}` | null
|
|
721
|
-
hash?: `0x${string}
|
|
722
|
-
input?: `0x${string}
|
|
723
|
-
transactionIndex?: `0x${string}` | null
|
|
713
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
714
|
+
to?: `0x${string}` | null;
|
|
715
|
+
from?: `0x${string}`;
|
|
716
|
+
gas?: `0x${string}`;
|
|
717
|
+
nonce?: `0x${string}`;
|
|
718
|
+
value?: `0x${string}`;
|
|
719
|
+
blockHash?: `0x${string}` | null;
|
|
720
|
+
blockNumber?: `0x${string}` | null;
|
|
721
|
+
hash?: `0x${string}`;
|
|
722
|
+
input?: `0x${string}`;
|
|
723
|
+
transactionIndex?: `0x${string}` | null;
|
|
724
724
|
accessList?: import("viem").AccessList | undefined;
|
|
725
725
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
726
726
|
chainId?: `0x${string}` | undefined;
|
|
@@ -753,25 +753,25 @@ export declare const getDefaultChains: () => ({
|
|
|
753
753
|
mint?: undefined;
|
|
754
754
|
sourceHash?: undefined;
|
|
755
755
|
}) | ({
|
|
756
|
-
r?: `0x${string}
|
|
757
|
-
s?: `0x${string}
|
|
758
|
-
v?: `0x${string}
|
|
756
|
+
r?: `0x${string}`;
|
|
757
|
+
s?: `0x${string}`;
|
|
758
|
+
v?: `0x${string}`;
|
|
759
759
|
yParity?: `0x${string}` | undefined;
|
|
760
760
|
gasPrice?: `0x${string}` | undefined;
|
|
761
761
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
762
762
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
763
763
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
764
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
765
|
-
to?: `0x${string}` | null
|
|
766
|
-
from?: `0x${string}
|
|
767
|
-
gas?: `0x${string}
|
|
768
|
-
nonce?: `0x${string}
|
|
769
|
-
value?: `0x${string}
|
|
770
|
-
blockHash?: `0x${string}` | null
|
|
771
|
-
blockNumber?: `0x${string}` | null
|
|
772
|
-
hash?: `0x${string}
|
|
773
|
-
input?: `0x${string}
|
|
774
|
-
transactionIndex?: `0x${string}` | null
|
|
764
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
765
|
+
to?: `0x${string}` | null;
|
|
766
|
+
from?: `0x${string}`;
|
|
767
|
+
gas?: `0x${string}`;
|
|
768
|
+
nonce?: `0x${string}`;
|
|
769
|
+
value?: `0x${string}`;
|
|
770
|
+
blockHash?: `0x${string}` | null;
|
|
771
|
+
blockNumber?: `0x${string}` | null;
|
|
772
|
+
hash?: `0x${string}`;
|
|
773
|
+
input?: `0x${string}`;
|
|
774
|
+
transactionIndex?: `0x${string}` | null;
|
|
775
775
|
accessList?: import("viem").AccessList | undefined;
|
|
776
776
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
777
777
|
chainId?: `0x${string}` | undefined;
|
|
@@ -804,25 +804,25 @@ export declare const getDefaultChains: () => ({
|
|
|
804
804
|
mint?: undefined;
|
|
805
805
|
sourceHash?: undefined;
|
|
806
806
|
}) | ({
|
|
807
|
-
r?: `0x${string}
|
|
808
|
-
s?: `0x${string}
|
|
809
|
-
v?: `0x${string}
|
|
807
|
+
r?: `0x${string}`;
|
|
808
|
+
s?: `0x${string}`;
|
|
809
|
+
v?: `0x${string}`;
|
|
810
810
|
yParity?: `0x${string}` | undefined;
|
|
811
811
|
gasPrice?: `0x${string}` | undefined;
|
|
812
812
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
813
813
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
814
814
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
815
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
816
|
-
to?: `0x${string}` | null
|
|
817
|
-
from?: `0x${string}
|
|
818
|
-
gas?: `0x${string}
|
|
819
|
-
nonce?: `0x${string}
|
|
820
|
-
value?: `0x${string}
|
|
821
|
-
blockHash?: `0x${string}` | null
|
|
822
|
-
blockNumber?: `0x${string}` | null
|
|
823
|
-
hash?: `0x${string}
|
|
824
|
-
input?: `0x${string}
|
|
825
|
-
transactionIndex?: `0x${string}` | null
|
|
815
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
816
|
+
to?: `0x${string}` | null;
|
|
817
|
+
from?: `0x${string}`;
|
|
818
|
+
gas?: `0x${string}`;
|
|
819
|
+
nonce?: `0x${string}`;
|
|
820
|
+
value?: `0x${string}`;
|
|
821
|
+
blockHash?: `0x${string}` | null;
|
|
822
|
+
blockNumber?: `0x${string}` | null;
|
|
823
|
+
hash?: `0x${string}`;
|
|
824
|
+
input?: `0x${string}`;
|
|
825
|
+
transactionIndex?: `0x${string}` | null;
|
|
826
826
|
accessList?: import("viem").AccessList | undefined;
|
|
827
827
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
828
828
|
chainId?: `0x${string}` | undefined;
|
|
@@ -831,7 +831,7 @@ export declare const getDefaultChains: () => ({
|
|
|
831
831
|
mint?: `0x${string}` | undefined;
|
|
832
832
|
sourceHash: `0x${string}`;
|
|
833
833
|
type: "0x7e";
|
|
834
|
-
})) => {
|
|
834
|
+
})) => ({
|
|
835
835
|
r: `0x${string}`;
|
|
836
836
|
s: `0x${string}`;
|
|
837
837
|
v: bigint;
|
|
@@ -882,7 +882,7 @@ export declare const getDefaultChains: () => ({
|
|
|
882
882
|
chainId?: number | undefined;
|
|
883
883
|
yParity: number;
|
|
884
884
|
type: "deposit";
|
|
885
|
-
isSystemTx?: boolean
|
|
885
|
+
isSystemTx?: boolean;
|
|
886
886
|
mint?: bigint | undefined;
|
|
887
887
|
sourceHash: `0x${string}`;
|
|
888
888
|
} | {
|
|
@@ -963,7 +963,7 @@ export declare const getDefaultChains: () => ({
|
|
|
963
963
|
blobVersionedHashes?: undefined;
|
|
964
964
|
chainId: number;
|
|
965
965
|
type: "deposit";
|
|
966
|
-
isSystemTx?: boolean
|
|
966
|
+
isSystemTx?: boolean;
|
|
967
967
|
mint?: bigint | undefined;
|
|
968
968
|
sourceHash: `0x${string}`;
|
|
969
969
|
} | {
|
|
@@ -1044,7 +1044,7 @@ export declare const getDefaultChains: () => ({
|
|
|
1044
1044
|
blobVersionedHashes?: undefined;
|
|
1045
1045
|
chainId: number;
|
|
1046
1046
|
type: "deposit";
|
|
1047
|
-
isSystemTx?: boolean
|
|
1047
|
+
isSystemTx?: boolean;
|
|
1048
1048
|
mint?: bigint | undefined;
|
|
1049
1049
|
sourceHash: `0x${string}`;
|
|
1050
1050
|
} | {
|
|
@@ -1098,10 +1098,10 @@ export declare const getDefaultChains: () => ({
|
|
|
1098
1098
|
blobVersionedHashes: `0x${string}`[];
|
|
1099
1099
|
chainId: number;
|
|
1100
1100
|
type: "deposit";
|
|
1101
|
-
isSystemTx?: boolean
|
|
1101
|
+
isSystemTx?: boolean;
|
|
1102
1102
|
mint?: bigint | undefined;
|
|
1103
1103
|
sourceHash: `0x${string}`;
|
|
1104
|
-
};
|
|
1104
|
+
}) & {};
|
|
1105
1105
|
type: "transaction";
|
|
1106
1106
|
};
|
|
1107
1107
|
readonly transactionReceipt: {
|
|
@@ -1116,7 +1116,7 @@ export declare const getDefaultChains: () => ({
|
|
|
1116
1116
|
effectiveGasPrice: bigint;
|
|
1117
1117
|
from: `0x${string}`;
|
|
1118
1118
|
gasUsed: bigint;
|
|
1119
|
-
logs: import("viem").Log<bigint, number, false
|
|
1119
|
+
logs: import("viem").Log<bigint, number, false>[];
|
|
1120
1120
|
logsBloom: `0x${string}`;
|
|
1121
1121
|
root?: `0x${string}` | undefined;
|
|
1122
1122
|
status: "success" | "reverted";
|
|
@@ -1128,7 +1128,7 @@ export declare const getDefaultChains: () => ({
|
|
|
1128
1128
|
l1GasUsed: bigint | null;
|
|
1129
1129
|
l1Fee: bigint | null;
|
|
1130
1130
|
l1FeeScalar: number | null;
|
|
1131
|
-
};
|
|
1131
|
+
} & {};
|
|
1132
1132
|
type: "transactionReceipt";
|
|
1133
1133
|
};
|
|
1134
1134
|
};
|
|
@@ -1265,8 +1265,8 @@ export declare const getDefaultChains: () => ({
|
|
|
1265
1265
|
formatters: {
|
|
1266
1266
|
readonly block: {
|
|
1267
1267
|
exclude: [] | undefined;
|
|
1268
|
-
format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcBlock
|
|
1269
|
-
transactions: `0x${string}`[] | import("viem/chains").OpStackRpcTransaction
|
|
1268
|
+
format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcBlock>, import("viem/chains").OpStackRpcBlockOverrides & {
|
|
1269
|
+
transactions: `0x${string}`[] | import("viem/chains").OpStackRpcTransaction[];
|
|
1270
1270
|
}>) => {
|
|
1271
1271
|
baseFeePerGas: bigint | null;
|
|
1272
1272
|
blobGasUsed: bigint;
|
|
@@ -1289,36 +1289,36 @@ export declare const getDefaultChains: () => ({
|
|
|
1289
1289
|
stateRoot: `0x${string}`;
|
|
1290
1290
|
timestamp: bigint;
|
|
1291
1291
|
totalDifficulty: bigint | null;
|
|
1292
|
-
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction
|
|
1292
|
+
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction[];
|
|
1293
1293
|
transactionsRoot: `0x${string}`;
|
|
1294
1294
|
uncles: `0x${string}`[];
|
|
1295
1295
|
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
1296
1296
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1297
|
-
};
|
|
1297
|
+
} & {};
|
|
1298
1298
|
type: "block";
|
|
1299
1299
|
};
|
|
1300
1300
|
readonly transaction: {
|
|
1301
1301
|
exclude: [] | undefined;
|
|
1302
1302
|
format: (args: ({
|
|
1303
|
-
r?: `0x${string}
|
|
1304
|
-
s?: `0x${string}
|
|
1305
|
-
v?: `0x${string}
|
|
1303
|
+
r?: `0x${string}`;
|
|
1304
|
+
s?: `0x${string}`;
|
|
1305
|
+
v?: `0x${string}`;
|
|
1306
1306
|
yParity?: `0x${string}` | undefined;
|
|
1307
1307
|
gasPrice?: `0x${string}` | undefined;
|
|
1308
1308
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1309
1309
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1310
1310
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1311
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1312
|
-
to?: `0x${string}` | null
|
|
1313
|
-
from?: `0x${string}
|
|
1314
|
-
gas?: `0x${string}
|
|
1315
|
-
nonce?: `0x${string}
|
|
1316
|
-
value?: `0x${string}
|
|
1317
|
-
blockHash?: `0x${string}` | null
|
|
1318
|
-
blockNumber?: `0x${string}` | null
|
|
1319
|
-
hash?: `0x${string}
|
|
1320
|
-
input?: `0x${string}
|
|
1321
|
-
transactionIndex?: `0x${string}` | null
|
|
1311
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1312
|
+
to?: `0x${string}` | null;
|
|
1313
|
+
from?: `0x${string}`;
|
|
1314
|
+
gas?: `0x${string}`;
|
|
1315
|
+
nonce?: `0x${string}`;
|
|
1316
|
+
value?: `0x${string}`;
|
|
1317
|
+
blockHash?: `0x${string}` | null;
|
|
1318
|
+
blockNumber?: `0x${string}` | null;
|
|
1319
|
+
hash?: `0x${string}`;
|
|
1320
|
+
input?: `0x${string}`;
|
|
1321
|
+
transactionIndex?: `0x${string}` | null;
|
|
1322
1322
|
accessList?: undefined;
|
|
1323
1323
|
blobVersionedHashes?: undefined;
|
|
1324
1324
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1351,25 +1351,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1351
1351
|
mint?: undefined;
|
|
1352
1352
|
sourceHash?: undefined;
|
|
1353
1353
|
}) | ({
|
|
1354
|
-
r?: `0x${string}
|
|
1355
|
-
s?: `0x${string}
|
|
1356
|
-
v?: `0x${string}
|
|
1354
|
+
r?: `0x${string}`;
|
|
1355
|
+
s?: `0x${string}`;
|
|
1356
|
+
v?: `0x${string}`;
|
|
1357
1357
|
yParity?: `0x${string}` | undefined;
|
|
1358
1358
|
gasPrice?: `0x${string}` | undefined;
|
|
1359
1359
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1360
1360
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1361
1361
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1362
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1363
|
-
to?: `0x${string}` | null
|
|
1364
|
-
from?: `0x${string}
|
|
1365
|
-
gas?: `0x${string}
|
|
1366
|
-
nonce?: `0x${string}
|
|
1367
|
-
value?: `0x${string}
|
|
1368
|
-
blockHash?: `0x${string}` | null
|
|
1369
|
-
blockNumber?: `0x${string}` | null
|
|
1370
|
-
hash?: `0x${string}
|
|
1371
|
-
input?: `0x${string}
|
|
1372
|
-
transactionIndex?: `0x${string}` | null
|
|
1362
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1363
|
+
to?: `0x${string}` | null;
|
|
1364
|
+
from?: `0x${string}`;
|
|
1365
|
+
gas?: `0x${string}`;
|
|
1366
|
+
nonce?: `0x${string}`;
|
|
1367
|
+
value?: `0x${string}`;
|
|
1368
|
+
blockHash?: `0x${string}` | null;
|
|
1369
|
+
blockNumber?: `0x${string}` | null;
|
|
1370
|
+
hash?: `0x${string}`;
|
|
1371
|
+
input?: `0x${string}`;
|
|
1372
|
+
transactionIndex?: `0x${string}` | null;
|
|
1373
1373
|
accessList?: undefined;
|
|
1374
1374
|
blobVersionedHashes?: undefined;
|
|
1375
1375
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1379,25 +1379,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1379
1379
|
sourceHash: `0x${string}`;
|
|
1380
1380
|
type: "0x7e";
|
|
1381
1381
|
}) | ({
|
|
1382
|
-
r?: `0x${string}
|
|
1383
|
-
s?: `0x${string}
|
|
1384
|
-
v?: `0x${string}
|
|
1382
|
+
r?: `0x${string}`;
|
|
1383
|
+
s?: `0x${string}`;
|
|
1384
|
+
v?: `0x${string}`;
|
|
1385
1385
|
yParity?: `0x${string}` | undefined;
|
|
1386
1386
|
gasPrice?: `0x${string}` | undefined;
|
|
1387
1387
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1388
1388
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1389
1389
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1390
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1391
|
-
to?: `0x${string}` | null
|
|
1392
|
-
from?: `0x${string}
|
|
1393
|
-
gas?: `0x${string}
|
|
1394
|
-
nonce?: `0x${string}
|
|
1395
|
-
value?: `0x${string}
|
|
1396
|
-
blockHash?: `0x${string}` | null
|
|
1397
|
-
blockNumber?: `0x${string}` | null
|
|
1398
|
-
hash?: `0x${string}
|
|
1399
|
-
input?: `0x${string}
|
|
1400
|
-
transactionIndex?: `0x${string}` | null
|
|
1390
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1391
|
+
to?: `0x${string}` | null;
|
|
1392
|
+
from?: `0x${string}`;
|
|
1393
|
+
gas?: `0x${string}`;
|
|
1394
|
+
nonce?: `0x${string}`;
|
|
1395
|
+
value?: `0x${string}`;
|
|
1396
|
+
blockHash?: `0x${string}` | null;
|
|
1397
|
+
blockNumber?: `0x${string}` | null;
|
|
1398
|
+
hash?: `0x${string}`;
|
|
1399
|
+
input?: `0x${string}`;
|
|
1400
|
+
transactionIndex?: `0x${string}` | null;
|
|
1401
1401
|
accessList?: import("viem").AccessList | undefined;
|
|
1402
1402
|
blobVersionedHashes?: undefined;
|
|
1403
1403
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1430,25 +1430,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1430
1430
|
mint?: undefined;
|
|
1431
1431
|
sourceHash?: undefined;
|
|
1432
1432
|
}) | ({
|
|
1433
|
-
r?: `0x${string}
|
|
1434
|
-
s?: `0x${string}
|
|
1435
|
-
v?: `0x${string}
|
|
1433
|
+
r?: `0x${string}`;
|
|
1434
|
+
s?: `0x${string}`;
|
|
1435
|
+
v?: `0x${string}`;
|
|
1436
1436
|
yParity?: `0x${string}` | undefined;
|
|
1437
1437
|
gasPrice?: `0x${string}` | undefined;
|
|
1438
1438
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1439
1439
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1440
1440
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1441
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1442
|
-
to?: `0x${string}` | null
|
|
1443
|
-
from?: `0x${string}
|
|
1444
|
-
gas?: `0x${string}
|
|
1445
|
-
nonce?: `0x${string}
|
|
1446
|
-
value?: `0x${string}
|
|
1447
|
-
blockHash?: `0x${string}` | null
|
|
1448
|
-
blockNumber?: `0x${string}` | null
|
|
1449
|
-
hash?: `0x${string}
|
|
1450
|
-
input?: `0x${string}
|
|
1451
|
-
transactionIndex?: `0x${string}` | null
|
|
1441
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1442
|
+
to?: `0x${string}` | null;
|
|
1443
|
+
from?: `0x${string}`;
|
|
1444
|
+
gas?: `0x${string}`;
|
|
1445
|
+
nonce?: `0x${string}`;
|
|
1446
|
+
value?: `0x${string}`;
|
|
1447
|
+
blockHash?: `0x${string}` | null;
|
|
1448
|
+
blockNumber?: `0x${string}` | null;
|
|
1449
|
+
hash?: `0x${string}`;
|
|
1450
|
+
input?: `0x${string}`;
|
|
1451
|
+
transactionIndex?: `0x${string}` | null;
|
|
1452
1452
|
accessList?: import("viem").AccessList | undefined;
|
|
1453
1453
|
blobVersionedHashes?: undefined;
|
|
1454
1454
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1481,25 +1481,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1481
1481
|
mint?: undefined;
|
|
1482
1482
|
sourceHash?: undefined;
|
|
1483
1483
|
}) | ({
|
|
1484
|
-
r?: `0x${string}
|
|
1485
|
-
s?: `0x${string}
|
|
1486
|
-
v?: `0x${string}
|
|
1484
|
+
r?: `0x${string}`;
|
|
1485
|
+
s?: `0x${string}`;
|
|
1486
|
+
v?: `0x${string}`;
|
|
1487
1487
|
yParity?: `0x${string}` | undefined;
|
|
1488
1488
|
gasPrice?: `0x${string}` | undefined;
|
|
1489
1489
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1490
1490
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1491
1491
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1492
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1493
|
-
to?: `0x${string}` | null
|
|
1494
|
-
from?: `0x${string}
|
|
1495
|
-
gas?: `0x${string}
|
|
1496
|
-
nonce?: `0x${string}
|
|
1497
|
-
value?: `0x${string}
|
|
1498
|
-
blockHash?: `0x${string}` | null
|
|
1499
|
-
blockNumber?: `0x${string}` | null
|
|
1500
|
-
hash?: `0x${string}
|
|
1501
|
-
input?: `0x${string}
|
|
1502
|
-
transactionIndex?: `0x${string}` | null
|
|
1492
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1493
|
+
to?: `0x${string}` | null;
|
|
1494
|
+
from?: `0x${string}`;
|
|
1495
|
+
gas?: `0x${string}`;
|
|
1496
|
+
nonce?: `0x${string}`;
|
|
1497
|
+
value?: `0x${string}`;
|
|
1498
|
+
blockHash?: `0x${string}` | null;
|
|
1499
|
+
blockNumber?: `0x${string}` | null;
|
|
1500
|
+
hash?: `0x${string}`;
|
|
1501
|
+
input?: `0x${string}`;
|
|
1502
|
+
transactionIndex?: `0x${string}` | null;
|
|
1503
1503
|
accessList?: import("viem").AccessList | undefined;
|
|
1504
1504
|
blobVersionedHashes?: undefined;
|
|
1505
1505
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1532,25 +1532,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1532
1532
|
mint?: undefined;
|
|
1533
1533
|
sourceHash?: undefined;
|
|
1534
1534
|
}) | ({
|
|
1535
|
-
r?: `0x${string}
|
|
1536
|
-
s?: `0x${string}
|
|
1537
|
-
v?: `0x${string}
|
|
1535
|
+
r?: `0x${string}`;
|
|
1536
|
+
s?: `0x${string}`;
|
|
1537
|
+
v?: `0x${string}`;
|
|
1538
1538
|
yParity?: `0x${string}` | undefined;
|
|
1539
1539
|
gasPrice?: `0x${string}` | undefined;
|
|
1540
1540
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1541
1541
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1542
1542
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1543
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1544
|
-
to?: `0x${string}` | null
|
|
1545
|
-
from?: `0x${string}
|
|
1546
|
-
gas?: `0x${string}
|
|
1547
|
-
nonce?: `0x${string}
|
|
1548
|
-
value?: `0x${string}
|
|
1549
|
-
blockHash?: `0x${string}` | null
|
|
1550
|
-
blockNumber?: `0x${string}` | null
|
|
1551
|
-
hash?: `0x${string}
|
|
1552
|
-
input?: `0x${string}
|
|
1553
|
-
transactionIndex?: `0x${string}` | null
|
|
1543
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1544
|
+
to?: `0x${string}` | null;
|
|
1545
|
+
from?: `0x${string}`;
|
|
1546
|
+
gas?: `0x${string}`;
|
|
1547
|
+
nonce?: `0x${string}`;
|
|
1548
|
+
value?: `0x${string}`;
|
|
1549
|
+
blockHash?: `0x${string}` | null;
|
|
1550
|
+
blockNumber?: `0x${string}` | null;
|
|
1551
|
+
hash?: `0x${string}`;
|
|
1552
|
+
input?: `0x${string}`;
|
|
1553
|
+
transactionIndex?: `0x${string}` | null;
|
|
1554
1554
|
accessList?: import("viem").AccessList | undefined;
|
|
1555
1555
|
blobVersionedHashes?: undefined;
|
|
1556
1556
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1560,25 +1560,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1560
1560
|
sourceHash: `0x${string}`;
|
|
1561
1561
|
type: "0x7e";
|
|
1562
1562
|
}) | ({
|
|
1563
|
-
r?: `0x${string}
|
|
1564
|
-
s?: `0x${string}
|
|
1565
|
-
v?: `0x${string}
|
|
1563
|
+
r?: `0x${string}`;
|
|
1564
|
+
s?: `0x${string}`;
|
|
1565
|
+
v?: `0x${string}`;
|
|
1566
1566
|
yParity?: `0x${string}` | undefined;
|
|
1567
1567
|
gasPrice?: `0x${string}` | undefined;
|
|
1568
1568
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1569
1569
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1570
1570
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1571
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1572
|
-
to?: `0x${string}` | null
|
|
1573
|
-
from?: `0x${string}
|
|
1574
|
-
gas?: `0x${string}
|
|
1575
|
-
nonce?: `0x${string}
|
|
1576
|
-
value?: `0x${string}
|
|
1577
|
-
blockHash?: `0x${string}` | null
|
|
1578
|
-
blockNumber?: `0x${string}` | null
|
|
1579
|
-
hash?: `0x${string}
|
|
1580
|
-
input?: `0x${string}
|
|
1581
|
-
transactionIndex?: `0x${string}` | null
|
|
1571
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1572
|
+
to?: `0x${string}` | null;
|
|
1573
|
+
from?: `0x${string}`;
|
|
1574
|
+
gas?: `0x${string}`;
|
|
1575
|
+
nonce?: `0x${string}`;
|
|
1576
|
+
value?: `0x${string}`;
|
|
1577
|
+
blockHash?: `0x${string}` | null;
|
|
1578
|
+
blockNumber?: `0x${string}` | null;
|
|
1579
|
+
hash?: `0x${string}`;
|
|
1580
|
+
input?: `0x${string}`;
|
|
1581
|
+
transactionIndex?: `0x${string}` | null;
|
|
1582
1582
|
accessList?: import("viem").AccessList | undefined;
|
|
1583
1583
|
blobVersionedHashes?: undefined;
|
|
1584
1584
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1611,25 +1611,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1611
1611
|
mint?: undefined;
|
|
1612
1612
|
sourceHash?: undefined;
|
|
1613
1613
|
}) | ({
|
|
1614
|
-
r?: `0x${string}
|
|
1615
|
-
s?: `0x${string}
|
|
1616
|
-
v?: `0x${string}
|
|
1614
|
+
r?: `0x${string}`;
|
|
1615
|
+
s?: `0x${string}`;
|
|
1616
|
+
v?: `0x${string}`;
|
|
1617
1617
|
yParity?: `0x${string}` | undefined;
|
|
1618
1618
|
gasPrice?: `0x${string}` | undefined;
|
|
1619
1619
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1620
1620
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1621
1621
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1622
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1623
|
-
to?: `0x${string}` | null
|
|
1624
|
-
from?: `0x${string}
|
|
1625
|
-
gas?: `0x${string}
|
|
1626
|
-
nonce?: `0x${string}
|
|
1627
|
-
value?: `0x${string}
|
|
1628
|
-
blockHash?: `0x${string}` | null
|
|
1629
|
-
blockNumber?: `0x${string}` | null
|
|
1630
|
-
hash?: `0x${string}
|
|
1631
|
-
input?: `0x${string}
|
|
1632
|
-
transactionIndex?: `0x${string}` | null
|
|
1622
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1623
|
+
to?: `0x${string}` | null;
|
|
1624
|
+
from?: `0x${string}`;
|
|
1625
|
+
gas?: `0x${string}`;
|
|
1626
|
+
nonce?: `0x${string}`;
|
|
1627
|
+
value?: `0x${string}`;
|
|
1628
|
+
blockHash?: `0x${string}` | null;
|
|
1629
|
+
blockNumber?: `0x${string}` | null;
|
|
1630
|
+
hash?: `0x${string}`;
|
|
1631
|
+
input?: `0x${string}`;
|
|
1632
|
+
transactionIndex?: `0x${string}` | null;
|
|
1633
1633
|
accessList?: import("viem").AccessList | undefined;
|
|
1634
1634
|
blobVersionedHashes?: undefined;
|
|
1635
1635
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1662,25 +1662,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1662
1662
|
mint?: undefined;
|
|
1663
1663
|
sourceHash?: undefined;
|
|
1664
1664
|
}) | ({
|
|
1665
|
-
r?: `0x${string}
|
|
1666
|
-
s?: `0x${string}
|
|
1667
|
-
v?: `0x${string}
|
|
1665
|
+
r?: `0x${string}`;
|
|
1666
|
+
s?: `0x${string}`;
|
|
1667
|
+
v?: `0x${string}`;
|
|
1668
1668
|
yParity?: `0x${string}` | undefined;
|
|
1669
1669
|
gasPrice?: `0x${string}` | undefined;
|
|
1670
1670
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1671
1671
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1672
1672
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1673
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1674
|
-
to?: `0x${string}` | null
|
|
1675
|
-
from?: `0x${string}
|
|
1676
|
-
gas?: `0x${string}
|
|
1677
|
-
nonce?: `0x${string}
|
|
1678
|
-
value?: `0x${string}
|
|
1679
|
-
blockHash?: `0x${string}` | null
|
|
1680
|
-
blockNumber?: `0x${string}` | null
|
|
1681
|
-
hash?: `0x${string}
|
|
1682
|
-
input?: `0x${string}
|
|
1683
|
-
transactionIndex?: `0x${string}` | null
|
|
1673
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1674
|
+
to?: `0x${string}` | null;
|
|
1675
|
+
from?: `0x${string}`;
|
|
1676
|
+
gas?: `0x${string}`;
|
|
1677
|
+
nonce?: `0x${string}`;
|
|
1678
|
+
value?: `0x${string}`;
|
|
1679
|
+
blockHash?: `0x${string}` | null;
|
|
1680
|
+
blockNumber?: `0x${string}` | null;
|
|
1681
|
+
hash?: `0x${string}`;
|
|
1682
|
+
input?: `0x${string}`;
|
|
1683
|
+
transactionIndex?: `0x${string}` | null;
|
|
1684
1684
|
accessList?: import("viem").AccessList | undefined;
|
|
1685
1685
|
blobVersionedHashes?: undefined;
|
|
1686
1686
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1713,25 +1713,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1713
1713
|
mint?: undefined;
|
|
1714
1714
|
sourceHash?: undefined;
|
|
1715
1715
|
}) | ({
|
|
1716
|
-
r?: `0x${string}
|
|
1717
|
-
s?: `0x${string}
|
|
1718
|
-
v?: `0x${string}
|
|
1716
|
+
r?: `0x${string}`;
|
|
1717
|
+
s?: `0x${string}`;
|
|
1718
|
+
v?: `0x${string}`;
|
|
1719
1719
|
yParity?: `0x${string}` | undefined;
|
|
1720
1720
|
gasPrice?: `0x${string}` | undefined;
|
|
1721
1721
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1722
1722
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1723
1723
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1724
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1725
|
-
to?: `0x${string}` | null
|
|
1726
|
-
from?: `0x${string}
|
|
1727
|
-
gas?: `0x${string}
|
|
1728
|
-
nonce?: `0x${string}
|
|
1729
|
-
value?: `0x${string}
|
|
1730
|
-
blockHash?: `0x${string}` | null
|
|
1731
|
-
blockNumber?: `0x${string}` | null
|
|
1732
|
-
hash?: `0x${string}
|
|
1733
|
-
input?: `0x${string}
|
|
1734
|
-
transactionIndex?: `0x${string}` | null
|
|
1724
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1725
|
+
to?: `0x${string}` | null;
|
|
1726
|
+
from?: `0x${string}`;
|
|
1727
|
+
gas?: `0x${string}`;
|
|
1728
|
+
nonce?: `0x${string}`;
|
|
1729
|
+
value?: `0x${string}`;
|
|
1730
|
+
blockHash?: `0x${string}` | null;
|
|
1731
|
+
blockNumber?: `0x${string}` | null;
|
|
1732
|
+
hash?: `0x${string}`;
|
|
1733
|
+
input?: `0x${string}`;
|
|
1734
|
+
transactionIndex?: `0x${string}` | null;
|
|
1735
1735
|
accessList?: import("viem").AccessList | undefined;
|
|
1736
1736
|
blobVersionedHashes?: undefined;
|
|
1737
1737
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1741,25 +1741,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1741
1741
|
sourceHash: `0x${string}`;
|
|
1742
1742
|
type: "0x7e";
|
|
1743
1743
|
}) | ({
|
|
1744
|
-
r?: `0x${string}
|
|
1745
|
-
s?: `0x${string}
|
|
1746
|
-
v?: `0x${string}
|
|
1744
|
+
r?: `0x${string}`;
|
|
1745
|
+
s?: `0x${string}`;
|
|
1746
|
+
v?: `0x${string}`;
|
|
1747
1747
|
yParity?: `0x${string}` | undefined;
|
|
1748
1748
|
gasPrice?: `0x${string}` | undefined;
|
|
1749
1749
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1750
1750
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1751
1751
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1752
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1753
|
-
to?: `0x${string}` | null
|
|
1754
|
-
from?: `0x${string}
|
|
1755
|
-
gas?: `0x${string}
|
|
1756
|
-
nonce?: `0x${string}
|
|
1757
|
-
value?: `0x${string}
|
|
1758
|
-
blockHash?: `0x${string}` | null
|
|
1759
|
-
blockNumber?: `0x${string}` | null
|
|
1760
|
-
hash?: `0x${string}
|
|
1761
|
-
input?: `0x${string}
|
|
1762
|
-
transactionIndex?: `0x${string}` | null
|
|
1752
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1753
|
+
to?: `0x${string}` | null;
|
|
1754
|
+
from?: `0x${string}`;
|
|
1755
|
+
gas?: `0x${string}`;
|
|
1756
|
+
nonce?: `0x${string}`;
|
|
1757
|
+
value?: `0x${string}`;
|
|
1758
|
+
blockHash?: `0x${string}` | null;
|
|
1759
|
+
blockNumber?: `0x${string}` | null;
|
|
1760
|
+
hash?: `0x${string}`;
|
|
1761
|
+
input?: `0x${string}`;
|
|
1762
|
+
transactionIndex?: `0x${string}` | null;
|
|
1763
1763
|
accessList?: import("viem").AccessList | undefined;
|
|
1764
1764
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
1765
1765
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1792,25 +1792,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1792
1792
|
mint?: undefined;
|
|
1793
1793
|
sourceHash?: undefined;
|
|
1794
1794
|
}) | ({
|
|
1795
|
-
r?: `0x${string}
|
|
1796
|
-
s?: `0x${string}
|
|
1797
|
-
v?: `0x${string}
|
|
1795
|
+
r?: `0x${string}`;
|
|
1796
|
+
s?: `0x${string}`;
|
|
1797
|
+
v?: `0x${string}`;
|
|
1798
1798
|
yParity?: `0x${string}` | undefined;
|
|
1799
1799
|
gasPrice?: `0x${string}` | undefined;
|
|
1800
1800
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1801
1801
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1802
1802
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1803
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1804
|
-
to?: `0x${string}` | null
|
|
1805
|
-
from?: `0x${string}
|
|
1806
|
-
gas?: `0x${string}
|
|
1807
|
-
nonce?: `0x${string}
|
|
1808
|
-
value?: `0x${string}
|
|
1809
|
-
blockHash?: `0x${string}` | null
|
|
1810
|
-
blockNumber?: `0x${string}` | null
|
|
1811
|
-
hash?: `0x${string}
|
|
1812
|
-
input?: `0x${string}
|
|
1813
|
-
transactionIndex?: `0x${string}` | null
|
|
1803
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1804
|
+
to?: `0x${string}` | null;
|
|
1805
|
+
from?: `0x${string}`;
|
|
1806
|
+
gas?: `0x${string}`;
|
|
1807
|
+
nonce?: `0x${string}`;
|
|
1808
|
+
value?: `0x${string}`;
|
|
1809
|
+
blockHash?: `0x${string}` | null;
|
|
1810
|
+
blockNumber?: `0x${string}` | null;
|
|
1811
|
+
hash?: `0x${string}`;
|
|
1812
|
+
input?: `0x${string}`;
|
|
1813
|
+
transactionIndex?: `0x${string}` | null;
|
|
1814
1814
|
accessList?: import("viem").AccessList | undefined;
|
|
1815
1815
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
1816
1816
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1843,25 +1843,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1843
1843
|
mint?: undefined;
|
|
1844
1844
|
sourceHash?: undefined;
|
|
1845
1845
|
}) | ({
|
|
1846
|
-
r?: `0x${string}
|
|
1847
|
-
s?: `0x${string}
|
|
1848
|
-
v?: `0x${string}
|
|
1846
|
+
r?: `0x${string}`;
|
|
1847
|
+
s?: `0x${string}`;
|
|
1848
|
+
v?: `0x${string}`;
|
|
1849
1849
|
yParity?: `0x${string}` | undefined;
|
|
1850
1850
|
gasPrice?: `0x${string}` | undefined;
|
|
1851
1851
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1852
1852
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1853
1853
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1854
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1855
|
-
to?: `0x${string}` | null
|
|
1856
|
-
from?: `0x${string}
|
|
1857
|
-
gas?: `0x${string}
|
|
1858
|
-
nonce?: `0x${string}
|
|
1859
|
-
value?: `0x${string}
|
|
1860
|
-
blockHash?: `0x${string}` | null
|
|
1861
|
-
blockNumber?: `0x${string}` | null
|
|
1862
|
-
hash?: `0x${string}
|
|
1863
|
-
input?: `0x${string}
|
|
1864
|
-
transactionIndex?: `0x${string}` | null
|
|
1854
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1855
|
+
to?: `0x${string}` | null;
|
|
1856
|
+
from?: `0x${string}`;
|
|
1857
|
+
gas?: `0x${string}`;
|
|
1858
|
+
nonce?: `0x${string}`;
|
|
1859
|
+
value?: `0x${string}`;
|
|
1860
|
+
blockHash?: `0x${string}` | null;
|
|
1861
|
+
blockNumber?: `0x${string}` | null;
|
|
1862
|
+
hash?: `0x${string}`;
|
|
1863
|
+
input?: `0x${string}`;
|
|
1864
|
+
transactionIndex?: `0x${string}` | null;
|
|
1865
1865
|
accessList?: import("viem").AccessList | undefined;
|
|
1866
1866
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
1867
1867
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1894,25 +1894,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1894
1894
|
mint?: undefined;
|
|
1895
1895
|
sourceHash?: undefined;
|
|
1896
1896
|
}) | ({
|
|
1897
|
-
r?: `0x${string}
|
|
1898
|
-
s?: `0x${string}
|
|
1899
|
-
v?: `0x${string}
|
|
1897
|
+
r?: `0x${string}`;
|
|
1898
|
+
s?: `0x${string}`;
|
|
1899
|
+
v?: `0x${string}`;
|
|
1900
1900
|
yParity?: `0x${string}` | undefined;
|
|
1901
1901
|
gasPrice?: `0x${string}` | undefined;
|
|
1902
1902
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1903
1903
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1904
1904
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1905
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1906
|
-
to?: `0x${string}` | null
|
|
1907
|
-
from?: `0x${string}
|
|
1908
|
-
gas?: `0x${string}
|
|
1909
|
-
nonce?: `0x${string}
|
|
1910
|
-
value?: `0x${string}
|
|
1911
|
-
blockHash?: `0x${string}` | null
|
|
1912
|
-
blockNumber?: `0x${string}` | null
|
|
1913
|
-
hash?: `0x${string}
|
|
1914
|
-
input?: `0x${string}
|
|
1915
|
-
transactionIndex?: `0x${string}` | null
|
|
1905
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1906
|
+
to?: `0x${string}` | null;
|
|
1907
|
+
from?: `0x${string}`;
|
|
1908
|
+
gas?: `0x${string}`;
|
|
1909
|
+
nonce?: `0x${string}`;
|
|
1910
|
+
value?: `0x${string}`;
|
|
1911
|
+
blockHash?: `0x${string}` | null;
|
|
1912
|
+
blockNumber?: `0x${string}` | null;
|
|
1913
|
+
hash?: `0x${string}`;
|
|
1914
|
+
input?: `0x${string}`;
|
|
1915
|
+
transactionIndex?: `0x${string}` | null;
|
|
1916
1916
|
accessList?: import("viem").AccessList | undefined;
|
|
1917
1917
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
1918
1918
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1945,25 +1945,25 @@ export declare const getDefaultChains: () => ({
|
|
|
1945
1945
|
mint?: undefined;
|
|
1946
1946
|
sourceHash?: undefined;
|
|
1947
1947
|
}) | ({
|
|
1948
|
-
r?: `0x${string}
|
|
1949
|
-
s?: `0x${string}
|
|
1950
|
-
v?: `0x${string}
|
|
1948
|
+
r?: `0x${string}`;
|
|
1949
|
+
s?: `0x${string}`;
|
|
1950
|
+
v?: `0x${string}`;
|
|
1951
1951
|
yParity?: `0x${string}` | undefined;
|
|
1952
1952
|
gasPrice?: `0x${string}` | undefined;
|
|
1953
1953
|
maxFeePerBlobGas?: `0x${string}` | undefined;
|
|
1954
1954
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1955
1955
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1956
|
-
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e"
|
|
1957
|
-
to?: `0x${string}` | null
|
|
1958
|
-
from?: `0x${string}
|
|
1959
|
-
gas?: `0x${string}
|
|
1960
|
-
nonce?: `0x${string}
|
|
1961
|
-
value?: `0x${string}
|
|
1962
|
-
blockHash?: `0x${string}` | null
|
|
1963
|
-
blockNumber?: `0x${string}` | null
|
|
1964
|
-
hash?: `0x${string}
|
|
1965
|
-
input?: `0x${string}
|
|
1966
|
-
transactionIndex?: `0x${string}` | null
|
|
1956
|
+
type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e";
|
|
1957
|
+
to?: `0x${string}` | null;
|
|
1958
|
+
from?: `0x${string}`;
|
|
1959
|
+
gas?: `0x${string}`;
|
|
1960
|
+
nonce?: `0x${string}`;
|
|
1961
|
+
value?: `0x${string}`;
|
|
1962
|
+
blockHash?: `0x${string}` | null;
|
|
1963
|
+
blockNumber?: `0x${string}` | null;
|
|
1964
|
+
hash?: `0x${string}`;
|
|
1965
|
+
input?: `0x${string}`;
|
|
1966
|
+
transactionIndex?: `0x${string}` | null;
|
|
1967
1967
|
accessList?: import("viem").AccessList | undefined;
|
|
1968
1968
|
blobVersionedHashes?: `0x${string}`[] | undefined;
|
|
1969
1969
|
chainId?: `0x${string}` | undefined;
|
|
@@ -1972,7 +1972,7 @@ export declare const getDefaultChains: () => ({
|
|
|
1972
1972
|
mint?: `0x${string}` | undefined;
|
|
1973
1973
|
sourceHash: `0x${string}`;
|
|
1974
1974
|
type: "0x7e";
|
|
1975
|
-
})) => {
|
|
1975
|
+
})) => ({
|
|
1976
1976
|
r: `0x${string}`;
|
|
1977
1977
|
s: `0x${string}`;
|
|
1978
1978
|
v: bigint;
|
|
@@ -2023,7 +2023,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2023
2023
|
chainId?: number | undefined;
|
|
2024
2024
|
yParity: number;
|
|
2025
2025
|
type: "deposit";
|
|
2026
|
-
isSystemTx?: boolean
|
|
2026
|
+
isSystemTx?: boolean;
|
|
2027
2027
|
mint?: bigint | undefined;
|
|
2028
2028
|
sourceHash: `0x${string}`;
|
|
2029
2029
|
} | {
|
|
@@ -2104,7 +2104,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2104
2104
|
blobVersionedHashes?: undefined;
|
|
2105
2105
|
chainId: number;
|
|
2106
2106
|
type: "deposit";
|
|
2107
|
-
isSystemTx?: boolean
|
|
2107
|
+
isSystemTx?: boolean;
|
|
2108
2108
|
mint?: bigint | undefined;
|
|
2109
2109
|
sourceHash: `0x${string}`;
|
|
2110
2110
|
} | {
|
|
@@ -2185,7 +2185,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2185
2185
|
blobVersionedHashes?: undefined;
|
|
2186
2186
|
chainId: number;
|
|
2187
2187
|
type: "deposit";
|
|
2188
|
-
isSystemTx?: boolean
|
|
2188
|
+
isSystemTx?: boolean;
|
|
2189
2189
|
mint?: bigint | undefined;
|
|
2190
2190
|
sourceHash: `0x${string}`;
|
|
2191
2191
|
} | {
|
|
@@ -2239,10 +2239,10 @@ export declare const getDefaultChains: () => ({
|
|
|
2239
2239
|
blobVersionedHashes: `0x${string}`[];
|
|
2240
2240
|
chainId: number;
|
|
2241
2241
|
type: "deposit";
|
|
2242
|
-
isSystemTx?: boolean
|
|
2242
|
+
isSystemTx?: boolean;
|
|
2243
2243
|
mint?: bigint | undefined;
|
|
2244
2244
|
sourceHash: `0x${string}`;
|
|
2245
|
-
};
|
|
2245
|
+
}) & {};
|
|
2246
2246
|
type: "transaction";
|
|
2247
2247
|
};
|
|
2248
2248
|
readonly transactionReceipt: {
|
|
@@ -2257,7 +2257,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2257
2257
|
effectiveGasPrice: bigint;
|
|
2258
2258
|
from: `0x${string}`;
|
|
2259
2259
|
gasUsed: bigint;
|
|
2260
|
-
logs: import("viem").Log<bigint, number, false
|
|
2260
|
+
logs: import("viem").Log<bigint, number, false>[];
|
|
2261
2261
|
logsBloom: `0x${string}`;
|
|
2262
2262
|
root?: `0x${string}` | undefined;
|
|
2263
2263
|
status: "success" | "reverted";
|
|
@@ -2269,7 +2269,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2269
2269
|
l1GasUsed: bigint | null;
|
|
2270
2270
|
l1Fee: bigint | null;
|
|
2271
2271
|
l1FeeScalar: number | null;
|
|
2272
|
-
};
|
|
2272
|
+
} & {};
|
|
2273
2273
|
type: "transactionReceipt";
|
|
2274
2274
|
};
|
|
2275
2275
|
};
|
|
@@ -2306,13 +2306,13 @@ export declare const getDefaultChains: () => ({
|
|
|
2306
2306
|
sourceId?: number | undefined;
|
|
2307
2307
|
testnet?: boolean | undefined;
|
|
2308
2308
|
custom: {
|
|
2309
|
-
readonly getEip712Domain: import("viem/zksync").EIP712DomainFn<import("viem/
|
|
2309
|
+
readonly getEip712Domain: import("viem/zksync").EIP712DomainFn<import("viem/chains").ZkSyncTransactionSerializable, import("viem/chains").ZkSyncEIP712TransactionSignable>;
|
|
2310
2310
|
};
|
|
2311
2311
|
formatters: {
|
|
2312
2312
|
readonly block: {
|
|
2313
2313
|
exclude: [] | undefined;
|
|
2314
|
-
format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcBlock
|
|
2315
|
-
transactions: `0x${string}`[] | import("viem/
|
|
2314
|
+
format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcBlock>, import("viem/chains").ZkSyncRpcBlockOverrides & {
|
|
2315
|
+
transactions: `0x${string}`[] | import("viem/chains").ZkSyncRpcTransaction[];
|
|
2316
2316
|
}>) => {
|
|
2317
2317
|
baseFeePerGas: bigint | null;
|
|
2318
2318
|
blobGasUsed: bigint;
|
|
@@ -2335,19 +2335,19 @@ export declare const getDefaultChains: () => ({
|
|
|
2335
2335
|
stateRoot: `0x${string}`;
|
|
2336
2336
|
timestamp: bigint;
|
|
2337
2337
|
totalDifficulty: bigint | null;
|
|
2338
|
-
transactions: `0x${string}`[] | import("viem/
|
|
2338
|
+
transactions: `0x${string}`[] | import("viem/chains").ZkSyncTransaction[];
|
|
2339
2339
|
transactionsRoot: `0x${string}`;
|
|
2340
2340
|
uncles: `0x${string}`[];
|
|
2341
2341
|
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
2342
2342
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
2343
2343
|
l1BatchNumber: bigint | null;
|
|
2344
2344
|
l1BatchTimestamp: bigint | null;
|
|
2345
|
-
};
|
|
2345
|
+
} & {};
|
|
2346
2346
|
type: "block";
|
|
2347
2347
|
};
|
|
2348
2348
|
readonly transaction: {
|
|
2349
2349
|
exclude: [] | undefined;
|
|
2350
|
-
format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcTransaction
|
|
2350
|
+
format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcTransaction>, import("viem/chains").ZkSyncRpcTransaction>) => ({
|
|
2351
2351
|
r: `0x${string}`;
|
|
2352
2352
|
s: `0x${string}`;
|
|
2353
2353
|
v: bigint;
|
|
@@ -2711,12 +2711,12 @@ export declare const getDefaultChains: () => ({
|
|
|
2711
2711
|
type: "priority" | "eip712";
|
|
2712
2712
|
l1BatchNumber: bigint | null;
|
|
2713
2713
|
l1BatchTxIndex: bigint | null;
|
|
2714
|
-
};
|
|
2714
|
+
}) & {};
|
|
2715
2715
|
type: "transaction";
|
|
2716
2716
|
};
|
|
2717
2717
|
readonly transactionReceipt: {
|
|
2718
2718
|
exclude: [] | undefined;
|
|
2719
|
-
format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcTransactionReceipt>, import("viem/
|
|
2719
|
+
format: (args: import("viem/chains").Assign<import("viem").ExactPartial<import("viem").RpcTransactionReceipt>, import("viem/chains").ZkSyncRpcTransactionReceiptOverrides>) => {
|
|
2720
2720
|
blobGasPrice?: bigint | undefined;
|
|
2721
2721
|
blobGasUsed?: bigint | undefined;
|
|
2722
2722
|
blockHash: `0x${string}`;
|
|
@@ -2726,25 +2726,25 @@ export declare const getDefaultChains: () => ({
|
|
|
2726
2726
|
effectiveGasPrice: bigint;
|
|
2727
2727
|
from: `0x${string}`;
|
|
2728
2728
|
gasUsed: bigint;
|
|
2729
|
-
logs: import("viem/
|
|
2729
|
+
logs: import("viem/chains").ZkSyncLog[];
|
|
2730
2730
|
logsBloom: `0x${string}`;
|
|
2731
2731
|
root?: `0x${string}` | undefined;
|
|
2732
2732
|
status: "success" | "reverted";
|
|
2733
2733
|
to: `0x${string}` | null;
|
|
2734
2734
|
transactionHash: `0x${string}`;
|
|
2735
2735
|
transactionIndex: number;
|
|
2736
|
-
type: import("viem/
|
|
2736
|
+
type: import("viem/chains").ZkSyncTransactionType;
|
|
2737
2737
|
l1BatchNumber: bigint | null;
|
|
2738
2738
|
l1BatchTxIndex: bigint | null;
|
|
2739
|
-
l2ToL1Logs: import("viem/
|
|
2740
|
-
};
|
|
2739
|
+
l2ToL1Logs: import("viem/chains").ZkSyncL2ToL1Log[];
|
|
2740
|
+
} & {};
|
|
2741
2741
|
type: "transactionReceipt";
|
|
2742
2742
|
};
|
|
2743
2743
|
readonly transactionRequest: {
|
|
2744
2744
|
exclude: ("gasPerPubdata" | "paymaster" | "factoryDeps" | "paymasterInput" | "customSignature")[] | undefined;
|
|
2745
2745
|
format: (args: ({
|
|
2746
2746
|
data?: `0x${string}` | undefined;
|
|
2747
|
-
from?: `0x${string}
|
|
2747
|
+
from?: `0x${string}`;
|
|
2748
2748
|
gas?: bigint | undefined;
|
|
2749
2749
|
nonce?: number | undefined;
|
|
2750
2750
|
to?: `0x${string}` | null | undefined;
|
|
@@ -2755,7 +2755,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2755
2755
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
2756
2756
|
accessList?: undefined;
|
|
2757
2757
|
blobs?: undefined;
|
|
2758
|
-
type?: "legacy" | "
|
|
2758
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
2759
2759
|
blobVersionedHashes?: undefined;
|
|
2760
2760
|
kzg?: undefined;
|
|
2761
2761
|
sidecars?: undefined;
|
|
@@ -2784,7 +2784,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2784
2784
|
factoryDeps?: undefined;
|
|
2785
2785
|
}) | ({
|
|
2786
2786
|
data?: `0x${string}` | undefined;
|
|
2787
|
-
from?: `0x${string}
|
|
2787
|
+
from?: `0x${string}`;
|
|
2788
2788
|
gas?: bigint | undefined;
|
|
2789
2789
|
nonce?: number | undefined;
|
|
2790
2790
|
to?: `0x${string}` | null | undefined;
|
|
@@ -2795,7 +2795,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2795
2795
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
2796
2796
|
accessList?: undefined;
|
|
2797
2797
|
blobs?: undefined;
|
|
2798
|
-
type?: "legacy" | "
|
|
2798
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
2799
2799
|
blobVersionedHashes?: undefined;
|
|
2800
2800
|
kzg?: undefined;
|
|
2801
2801
|
sidecars?: undefined;
|
|
@@ -2824,7 +2824,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2824
2824
|
factoryDeps?: undefined;
|
|
2825
2825
|
}) | ({
|
|
2826
2826
|
data?: `0x${string}` | undefined;
|
|
2827
|
-
from?: `0x${string}
|
|
2827
|
+
from?: `0x${string}`;
|
|
2828
2828
|
gas?: bigint | undefined;
|
|
2829
2829
|
nonce?: number | undefined;
|
|
2830
2830
|
to?: `0x${string}` | null | undefined;
|
|
@@ -2835,7 +2835,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2835
2835
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
2836
2836
|
accessList?: undefined;
|
|
2837
2837
|
blobs?: undefined;
|
|
2838
|
-
type?: "legacy" | "
|
|
2838
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
2839
2839
|
blobVersionedHashes?: undefined;
|
|
2840
2840
|
kzg?: undefined;
|
|
2841
2841
|
sidecars?: undefined;
|
|
@@ -2864,7 +2864,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2864
2864
|
factoryDeps?: undefined;
|
|
2865
2865
|
}) | ({
|
|
2866
2866
|
data?: `0x${string}` | undefined;
|
|
2867
|
-
from?: `0x${string}
|
|
2867
|
+
from?: `0x${string}`;
|
|
2868
2868
|
gas?: bigint | undefined;
|
|
2869
2869
|
nonce?: number | undefined;
|
|
2870
2870
|
to?: `0x${string}` | null | undefined;
|
|
@@ -2875,11 +2875,11 @@ export declare const getDefaultChains: () => ({
|
|
|
2875
2875
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
2876
2876
|
accessList?: undefined;
|
|
2877
2877
|
blobs?: undefined;
|
|
2878
|
-
type?: "legacy" | "
|
|
2878
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
2879
2879
|
blobVersionedHashes?: undefined;
|
|
2880
2880
|
kzg?: undefined;
|
|
2881
2881
|
sidecars?: undefined;
|
|
2882
|
-
} & Omit<import("viem").TransactionRequestBase
|
|
2882
|
+
} & Omit<import("viem").TransactionRequestBase, "type"> & import("viem").ExactPartial<import("viem").FeeValuesEIP1559> & {
|
|
2883
2883
|
gasPerPubdata?: bigint | undefined;
|
|
2884
2884
|
customSignature?: `0x${string}` | undefined;
|
|
2885
2885
|
factoryDeps?: `0x${string}`[] | undefined;
|
|
@@ -2889,7 +2889,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2889
2889
|
paymasterInput: `0x${string}`;
|
|
2890
2890
|
}) | ({
|
|
2891
2891
|
data?: `0x${string}` | undefined;
|
|
2892
|
-
from?: `0x${string}
|
|
2892
|
+
from?: `0x${string}`;
|
|
2893
2893
|
gas?: bigint | undefined;
|
|
2894
2894
|
nonce?: number | undefined;
|
|
2895
2895
|
to?: `0x${string}` | null | undefined;
|
|
@@ -2900,11 +2900,11 @@ export declare const getDefaultChains: () => ({
|
|
|
2900
2900
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
2901
2901
|
accessList?: undefined;
|
|
2902
2902
|
blobs?: undefined;
|
|
2903
|
-
type?: "legacy" | "
|
|
2903
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
2904
2904
|
blobVersionedHashes?: undefined;
|
|
2905
2905
|
kzg?: undefined;
|
|
2906
2906
|
sidecars?: undefined;
|
|
2907
|
-
} & Omit<import("viem").TransactionRequestBase
|
|
2907
|
+
} & Omit<import("viem").TransactionRequestBase, "type"> & import("viem").ExactPartial<import("viem").FeeValuesEIP1559> & {
|
|
2908
2908
|
gasPerPubdata?: bigint | undefined;
|
|
2909
2909
|
customSignature?: `0x${string}` | undefined;
|
|
2910
2910
|
factoryDeps?: `0x${string}`[] | undefined;
|
|
@@ -2914,7 +2914,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2914
2914
|
paymasterInput?: undefined;
|
|
2915
2915
|
}) | ({
|
|
2916
2916
|
data?: `0x${string}` | undefined;
|
|
2917
|
-
from?: `0x${string}
|
|
2917
|
+
from?: `0x${string}`;
|
|
2918
2918
|
gas?: bigint | undefined;
|
|
2919
2919
|
nonce?: number | undefined;
|
|
2920
2920
|
to?: `0x${string}` | null | undefined;
|
|
@@ -2925,7 +2925,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2925
2925
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
2926
2926
|
accessList?: import("viem").AccessList | undefined;
|
|
2927
2927
|
blobs?: undefined;
|
|
2928
|
-
type?: "legacy" | "
|
|
2928
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
2929
2929
|
blobVersionedHashes?: undefined;
|
|
2930
2930
|
kzg?: undefined;
|
|
2931
2931
|
sidecars?: undefined;
|
|
@@ -2954,7 +2954,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2954
2954
|
factoryDeps?: undefined;
|
|
2955
2955
|
}) | ({
|
|
2956
2956
|
data?: `0x${string}` | undefined;
|
|
2957
|
-
from?: `0x${string}
|
|
2957
|
+
from?: `0x${string}`;
|
|
2958
2958
|
gas?: bigint | undefined;
|
|
2959
2959
|
nonce?: number | undefined;
|
|
2960
2960
|
to?: `0x${string}` | null | undefined;
|
|
@@ -2965,7 +2965,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2965
2965
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
2966
2966
|
accessList?: import("viem").AccessList | undefined;
|
|
2967
2967
|
blobs?: undefined;
|
|
2968
|
-
type?: "legacy" | "
|
|
2968
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
2969
2969
|
blobVersionedHashes?: undefined;
|
|
2970
2970
|
kzg?: undefined;
|
|
2971
2971
|
sidecars?: undefined;
|
|
@@ -2994,7 +2994,7 @@ export declare const getDefaultChains: () => ({
|
|
|
2994
2994
|
factoryDeps?: undefined;
|
|
2995
2995
|
}) | ({
|
|
2996
2996
|
data?: `0x${string}` | undefined;
|
|
2997
|
-
from?: `0x${string}
|
|
2997
|
+
from?: `0x${string}`;
|
|
2998
2998
|
gas?: bigint | undefined;
|
|
2999
2999
|
nonce?: number | undefined;
|
|
3000
3000
|
to?: `0x${string}` | null | undefined;
|
|
@@ -3005,7 +3005,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3005
3005
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
3006
3006
|
accessList?: import("viem").AccessList | undefined;
|
|
3007
3007
|
blobs?: undefined;
|
|
3008
|
-
type?: "legacy" | "
|
|
3008
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3009
3009
|
blobVersionedHashes?: undefined;
|
|
3010
3010
|
kzg?: undefined;
|
|
3011
3011
|
sidecars?: undefined;
|
|
@@ -3034,7 +3034,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3034
3034
|
factoryDeps?: undefined;
|
|
3035
3035
|
}) | ({
|
|
3036
3036
|
data?: `0x${string}` | undefined;
|
|
3037
|
-
from?: `0x${string}
|
|
3037
|
+
from?: `0x${string}`;
|
|
3038
3038
|
gas?: bigint | undefined;
|
|
3039
3039
|
nonce?: number | undefined;
|
|
3040
3040
|
to?: `0x${string}` | null | undefined;
|
|
@@ -3045,11 +3045,11 @@ export declare const getDefaultChains: () => ({
|
|
|
3045
3045
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
3046
3046
|
accessList?: import("viem").AccessList | undefined;
|
|
3047
3047
|
blobs?: undefined;
|
|
3048
|
-
type?: "legacy" | "
|
|
3048
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3049
3049
|
blobVersionedHashes?: undefined;
|
|
3050
3050
|
kzg?: undefined;
|
|
3051
3051
|
sidecars?: undefined;
|
|
3052
|
-
} & Omit<import("viem").TransactionRequestBase
|
|
3052
|
+
} & Omit<import("viem").TransactionRequestBase, "type"> & import("viem").ExactPartial<import("viem").FeeValuesEIP1559> & {
|
|
3053
3053
|
gasPerPubdata?: bigint | undefined;
|
|
3054
3054
|
customSignature?: `0x${string}` | undefined;
|
|
3055
3055
|
factoryDeps?: `0x${string}`[] | undefined;
|
|
@@ -3059,7 +3059,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3059
3059
|
paymasterInput: `0x${string}`;
|
|
3060
3060
|
}) | ({
|
|
3061
3061
|
data?: `0x${string}` | undefined;
|
|
3062
|
-
from?: `0x${string}
|
|
3062
|
+
from?: `0x${string}`;
|
|
3063
3063
|
gas?: bigint | undefined;
|
|
3064
3064
|
nonce?: number | undefined;
|
|
3065
3065
|
to?: `0x${string}` | null | undefined;
|
|
@@ -3070,11 +3070,11 @@ export declare const getDefaultChains: () => ({
|
|
|
3070
3070
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
3071
3071
|
accessList?: import("viem").AccessList | undefined;
|
|
3072
3072
|
blobs?: undefined;
|
|
3073
|
-
type?: "legacy" | "
|
|
3073
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3074
3074
|
blobVersionedHashes?: undefined;
|
|
3075
3075
|
kzg?: undefined;
|
|
3076
3076
|
sidecars?: undefined;
|
|
3077
|
-
} & Omit<import("viem").TransactionRequestBase
|
|
3077
|
+
} & Omit<import("viem").TransactionRequestBase, "type"> & import("viem").ExactPartial<import("viem").FeeValuesEIP1559> & {
|
|
3078
3078
|
gasPerPubdata?: bigint | undefined;
|
|
3079
3079
|
customSignature?: `0x${string}` | undefined;
|
|
3080
3080
|
factoryDeps?: `0x${string}`[] | undefined;
|
|
@@ -3084,7 +3084,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3084
3084
|
paymasterInput?: undefined;
|
|
3085
3085
|
}) | ({
|
|
3086
3086
|
data?: `0x${string}` | undefined;
|
|
3087
|
-
from?: `0x${string}
|
|
3087
|
+
from?: `0x${string}`;
|
|
3088
3088
|
gas?: bigint | undefined;
|
|
3089
3089
|
nonce?: number | undefined;
|
|
3090
3090
|
to?: `0x${string}` | null | undefined;
|
|
@@ -3095,7 +3095,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3095
3095
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
3096
3096
|
accessList?: import("viem").AccessList | undefined;
|
|
3097
3097
|
blobs?: undefined;
|
|
3098
|
-
type?: "legacy" | "
|
|
3098
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3099
3099
|
blobVersionedHashes?: undefined;
|
|
3100
3100
|
kzg?: undefined;
|
|
3101
3101
|
sidecars?: undefined;
|
|
@@ -3124,7 +3124,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3124
3124
|
factoryDeps?: undefined;
|
|
3125
3125
|
}) | ({
|
|
3126
3126
|
data?: `0x${string}` | undefined;
|
|
3127
|
-
from?: `0x${string}
|
|
3127
|
+
from?: `0x${string}`;
|
|
3128
3128
|
gas?: bigint | undefined;
|
|
3129
3129
|
nonce?: number | undefined;
|
|
3130
3130
|
to?: `0x${string}` | null | undefined;
|
|
@@ -3135,7 +3135,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3135
3135
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
3136
3136
|
accessList?: import("viem").AccessList | undefined;
|
|
3137
3137
|
blobs?: undefined;
|
|
3138
|
-
type?: "legacy" | "
|
|
3138
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3139
3139
|
blobVersionedHashes?: undefined;
|
|
3140
3140
|
kzg?: undefined;
|
|
3141
3141
|
sidecars?: undefined;
|
|
@@ -3164,7 +3164,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3164
3164
|
factoryDeps?: undefined;
|
|
3165
3165
|
}) | ({
|
|
3166
3166
|
data?: `0x${string}` | undefined;
|
|
3167
|
-
from?: `0x${string}
|
|
3167
|
+
from?: `0x${string}`;
|
|
3168
3168
|
gas?: bigint | undefined;
|
|
3169
3169
|
nonce?: number | undefined;
|
|
3170
3170
|
to?: `0x${string}` | null | undefined;
|
|
@@ -3175,7 +3175,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3175
3175
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
3176
3176
|
accessList?: import("viem").AccessList | undefined;
|
|
3177
3177
|
blobs?: undefined;
|
|
3178
|
-
type?: "legacy" | "
|
|
3178
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3179
3179
|
blobVersionedHashes?: undefined;
|
|
3180
3180
|
kzg?: undefined;
|
|
3181
3181
|
sidecars?: undefined;
|
|
@@ -3204,7 +3204,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3204
3204
|
factoryDeps?: undefined;
|
|
3205
3205
|
}) | ({
|
|
3206
3206
|
data?: `0x${string}` | undefined;
|
|
3207
|
-
from?: `0x${string}
|
|
3207
|
+
from?: `0x${string}`;
|
|
3208
3208
|
gas?: bigint | undefined;
|
|
3209
3209
|
nonce?: number | undefined;
|
|
3210
3210
|
to?: `0x${string}` | null | undefined;
|
|
@@ -3215,11 +3215,11 @@ export declare const getDefaultChains: () => ({
|
|
|
3215
3215
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
3216
3216
|
accessList?: import("viem").AccessList | undefined;
|
|
3217
3217
|
blobs?: undefined;
|
|
3218
|
-
type?: "legacy" | "
|
|
3218
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3219
3219
|
blobVersionedHashes?: undefined;
|
|
3220
3220
|
kzg?: undefined;
|
|
3221
3221
|
sidecars?: undefined;
|
|
3222
|
-
} & Omit<import("viem").TransactionRequestBase
|
|
3222
|
+
} & Omit<import("viem").TransactionRequestBase, "type"> & import("viem").ExactPartial<import("viem").FeeValuesEIP1559> & {
|
|
3223
3223
|
gasPerPubdata?: bigint | undefined;
|
|
3224
3224
|
customSignature?: `0x${string}` | undefined;
|
|
3225
3225
|
factoryDeps?: `0x${string}`[] | undefined;
|
|
@@ -3229,7 +3229,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3229
3229
|
paymasterInput: `0x${string}`;
|
|
3230
3230
|
}) | ({
|
|
3231
3231
|
data?: `0x${string}` | undefined;
|
|
3232
|
-
from?: `0x${string}
|
|
3232
|
+
from?: `0x${string}`;
|
|
3233
3233
|
gas?: bigint | undefined;
|
|
3234
3234
|
nonce?: number | undefined;
|
|
3235
3235
|
to?: `0x${string}` | null | undefined;
|
|
@@ -3240,11 +3240,11 @@ export declare const getDefaultChains: () => ({
|
|
|
3240
3240
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
3241
3241
|
accessList?: import("viem").AccessList | undefined;
|
|
3242
3242
|
blobs?: undefined;
|
|
3243
|
-
type?: "legacy" | "
|
|
3243
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3244
3244
|
blobVersionedHashes?: undefined;
|
|
3245
3245
|
kzg?: undefined;
|
|
3246
3246
|
sidecars?: undefined;
|
|
3247
|
-
} & Omit<import("viem").TransactionRequestBase
|
|
3247
|
+
} & Omit<import("viem").TransactionRequestBase, "type"> & import("viem").ExactPartial<import("viem").FeeValuesEIP1559> & {
|
|
3248
3248
|
gasPerPubdata?: bigint | undefined;
|
|
3249
3249
|
customSignature?: `0x${string}` | undefined;
|
|
3250
3250
|
factoryDeps?: `0x${string}`[] | undefined;
|
|
@@ -3254,7 +3254,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3254
3254
|
paymasterInput?: undefined;
|
|
3255
3255
|
}) | ({
|
|
3256
3256
|
data?: `0x${string}` | undefined;
|
|
3257
|
-
from?: `0x${string}
|
|
3257
|
+
from?: `0x${string}`;
|
|
3258
3258
|
gas?: bigint | undefined;
|
|
3259
3259
|
nonce?: number | undefined;
|
|
3260
3260
|
value?: bigint | undefined;
|
|
@@ -3268,7 +3268,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3268
3268
|
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3269
3269
|
kzg?: import("viem").Kzg | undefined;
|
|
3270
3270
|
sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3271
|
-
type?: "legacy" | "
|
|
3271
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3272
3272
|
} & {
|
|
3273
3273
|
data?: `0x${string}` | undefined;
|
|
3274
3274
|
from: `0x${string}`;
|
|
@@ -3294,7 +3294,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3294
3294
|
factoryDeps?: undefined;
|
|
3295
3295
|
}) | ({
|
|
3296
3296
|
data?: `0x${string}` | undefined;
|
|
3297
|
-
from?: `0x${string}
|
|
3297
|
+
from?: `0x${string}`;
|
|
3298
3298
|
gas?: bigint | undefined;
|
|
3299
3299
|
nonce?: number | undefined;
|
|
3300
3300
|
value?: bigint | undefined;
|
|
@@ -3308,7 +3308,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3308
3308
|
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3309
3309
|
kzg?: import("viem").Kzg | undefined;
|
|
3310
3310
|
sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3311
|
-
type?: "legacy" | "
|
|
3311
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3312
3312
|
} & {
|
|
3313
3313
|
data?: `0x${string}` | undefined;
|
|
3314
3314
|
from: `0x${string}`;
|
|
@@ -3334,7 +3334,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3334
3334
|
factoryDeps?: undefined;
|
|
3335
3335
|
}) | ({
|
|
3336
3336
|
data?: `0x${string}` | undefined;
|
|
3337
|
-
from?: `0x${string}
|
|
3337
|
+
from?: `0x${string}`;
|
|
3338
3338
|
gas?: bigint | undefined;
|
|
3339
3339
|
nonce?: number | undefined;
|
|
3340
3340
|
value?: bigint | undefined;
|
|
@@ -3348,7 +3348,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3348
3348
|
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3349
3349
|
kzg?: import("viem").Kzg | undefined;
|
|
3350
3350
|
sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3351
|
-
type?: "legacy" | "
|
|
3351
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3352
3352
|
} & {
|
|
3353
3353
|
data?: `0x${string}` | undefined;
|
|
3354
3354
|
from: `0x${string}`;
|
|
@@ -3374,7 +3374,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3374
3374
|
factoryDeps?: undefined;
|
|
3375
3375
|
}) | ({
|
|
3376
3376
|
data?: `0x${string}` | undefined;
|
|
3377
|
-
from?: `0x${string}
|
|
3377
|
+
from?: `0x${string}`;
|
|
3378
3378
|
gas?: bigint | undefined;
|
|
3379
3379
|
nonce?: number | undefined;
|
|
3380
3380
|
value?: bigint | undefined;
|
|
@@ -3388,7 +3388,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3388
3388
|
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3389
3389
|
kzg?: import("viem").Kzg | undefined;
|
|
3390
3390
|
sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3391
|
-
type?: "legacy" | "
|
|
3391
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3392
3392
|
} & {
|
|
3393
3393
|
data?: `0x${string}` | undefined;
|
|
3394
3394
|
from: `0x${string}`;
|
|
@@ -3414,7 +3414,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3414
3414
|
factoryDeps?: undefined;
|
|
3415
3415
|
}) | ({
|
|
3416
3416
|
data?: `0x${string}` | undefined;
|
|
3417
|
-
from?: `0x${string}
|
|
3417
|
+
from?: `0x${string}`;
|
|
3418
3418
|
gas?: bigint | undefined;
|
|
3419
3419
|
nonce?: number | undefined;
|
|
3420
3420
|
value?: bigint | undefined;
|
|
@@ -3428,8 +3428,8 @@ export declare const getDefaultChains: () => ({
|
|
|
3428
3428
|
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3429
3429
|
kzg?: import("viem").Kzg | undefined;
|
|
3430
3430
|
sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3431
|
-
type?: "legacy" | "
|
|
3432
|
-
} & Omit<import("viem").TransactionRequestBase
|
|
3431
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3432
|
+
} & Omit<import("viem").TransactionRequestBase, "type"> & import("viem").ExactPartial<import("viem").FeeValuesEIP1559> & {
|
|
3433
3433
|
gasPerPubdata?: bigint | undefined;
|
|
3434
3434
|
customSignature?: `0x${string}` | undefined;
|
|
3435
3435
|
factoryDeps?: `0x${string}`[] | undefined;
|
|
@@ -3439,7 +3439,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3439
3439
|
paymasterInput: `0x${string}`;
|
|
3440
3440
|
}) | ({
|
|
3441
3441
|
data?: `0x${string}` | undefined;
|
|
3442
|
-
from?: `0x${string}
|
|
3442
|
+
from?: `0x${string}`;
|
|
3443
3443
|
gas?: bigint | undefined;
|
|
3444
3444
|
nonce?: number | undefined;
|
|
3445
3445
|
value?: bigint | undefined;
|
|
@@ -3453,8 +3453,8 @@ export declare const getDefaultChains: () => ({
|
|
|
3453
3453
|
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3454
3454
|
kzg?: import("viem").Kzg | undefined;
|
|
3455
3455
|
sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3456
|
-
type?: "legacy" | "
|
|
3457
|
-
} & Omit<import("viem").TransactionRequestBase
|
|
3456
|
+
type?: "legacy" | "eip1559" | "eip4844" | "eip2930" | "priority" | "eip712" | undefined;
|
|
3457
|
+
} & Omit<import("viem").TransactionRequestBase, "type"> & import("viem").ExactPartial<import("viem").FeeValuesEIP1559> & {
|
|
3458
3458
|
gasPerPubdata?: bigint | undefined;
|
|
3459
3459
|
customSignature?: `0x${string}` | undefined;
|
|
3460
3460
|
factoryDeps?: `0x${string}`[] | undefined;
|
|
@@ -3533,7 +3533,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3533
3533
|
blobVersionedHashes?: undefined;
|
|
3534
3534
|
kzg?: undefined;
|
|
3535
3535
|
sidecars?: undefined;
|
|
3536
|
-
eip712Meta: import("viem/
|
|
3536
|
+
eip712Meta: import("viem/chains").ZkSyncEip712Meta;
|
|
3537
3537
|
} | {
|
|
3538
3538
|
data?: `0x${string}` | undefined;
|
|
3539
3539
|
from: `0x${string}`;
|
|
@@ -3605,7 +3605,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3605
3605
|
blobVersionedHashes?: undefined;
|
|
3606
3606
|
kzg?: undefined;
|
|
3607
3607
|
sidecars?: undefined;
|
|
3608
|
-
eip712Meta: import("viem/
|
|
3608
|
+
eip712Meta: import("viem/chains").ZkSyncEip712Meta;
|
|
3609
3609
|
} | {
|
|
3610
3610
|
data?: `0x${string}` | undefined;
|
|
3611
3611
|
from: `0x${string}`;
|
|
@@ -3677,7 +3677,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3677
3677
|
blobVersionedHashes?: undefined;
|
|
3678
3678
|
kzg?: undefined;
|
|
3679
3679
|
sidecars?: undefined;
|
|
3680
|
-
eip712Meta: import("viem/
|
|
3680
|
+
eip712Meta: import("viem/chains").ZkSyncEip712Meta;
|
|
3681
3681
|
} | {
|
|
3682
3682
|
data?: `0x${string}` | undefined;
|
|
3683
3683
|
from: `0x${string}`;
|
|
@@ -3713,7 +3713,7 @@ export declare const getDefaultChains: () => ({
|
|
|
3713
3713
|
kzg?: import("viem").Kzg | undefined;
|
|
3714
3714
|
sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3715
3715
|
type: "0xff" | "0x71";
|
|
3716
|
-
eip712Meta: import("viem/
|
|
3716
|
+
eip712Meta: import("viem/chains").ZkSyncEip712Meta;
|
|
3717
3717
|
}) & {
|
|
3718
3718
|
gasPerPubdata: never;
|
|
3719
3719
|
paymaster: never;
|