sablier 3.12.0 → 3.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/dist/cjs/evm/chains/builder.js +1 -1
  3. package/dist/cjs/evm/chains/builder.js.map +1 -1
  4. package/dist/cjs/evm/chains/custom.js +9 -9
  5. package/dist/cjs/evm/chains/custom.js.map +1 -1
  6. package/dist/cjs/evm/contracts/queries.js +1 -1
  7. package/dist/cjs/evm/contracts/queries.js.map +1 -1
  8. package/dist/cjs/evm/releases/lockup/v2.0/deployments.js +1 -1
  9. package/dist/cjs/evm/releases/lockup/v2.0/deployments.js.map +1 -1
  10. package/dist/cjs/evm/releases/resolvers.js +14 -22
  11. package/dist/cjs/evm/releases/resolvers.js.map +1 -1
  12. package/dist/cjs/internal/factories/chains.js +5 -15
  13. package/dist/cjs/internal/factories/chains.js.map +1 -1
  14. package/dist/cjs/internal/factories/queries.js +3 -9
  15. package/dist/cjs/internal/factories/queries.js.map +1 -1
  16. package/dist/cjs/internal/utils/object-path.js +3 -3
  17. package/dist/cjs/internal/utils/object-path.js.map +1 -1
  18. package/dist/cjs/sablier.js +2 -6
  19. package/dist/cjs/sablier.js.map +1 -1
  20. package/dist/cjs/solana/chains/chains.js +13 -13
  21. package/dist/cjs/solana/chains/chains.js.map +1 -1
  22. package/dist/cjs/solana/programs/catalog.js +1 -1
  23. package/dist/cjs/solana/programs/catalog.js.map +1 -1
  24. package/dist/cjs/solana/programs/queries.js +1 -1
  25. package/dist/cjs/solana/programs/queries.js.map +1 -1
  26. package/dist/cjs/solana/releases/resolvers.js +5 -6
  27. package/dist/cjs/solana/releases/resolvers.js.map +1 -1
  28. package/dist/esm/evm/chains/builder.js +1 -1
  29. package/dist/esm/evm/chains/builder.js.map +1 -1
  30. package/dist/esm/evm/chains/custom.js +9 -9
  31. package/dist/esm/evm/chains/custom.js.map +1 -1
  32. package/dist/esm/evm/contracts/queries.js +1 -1
  33. package/dist/esm/evm/contracts/queries.js.map +1 -1
  34. package/dist/esm/evm/releases/lockup/v2.0/deployments.js +1 -1
  35. package/dist/esm/evm/releases/lockup/v2.0/deployments.js.map +1 -1
  36. package/dist/esm/evm/releases/resolvers.js +14 -22
  37. package/dist/esm/evm/releases/resolvers.js.map +1 -1
  38. package/dist/esm/internal/factories/chains.js +5 -15
  39. package/dist/esm/internal/factories/chains.js.map +1 -1
  40. package/dist/esm/internal/factories/queries.js +3 -9
  41. package/dist/esm/internal/factories/queries.js.map +1 -1
  42. package/dist/esm/internal/utils/object-path.js +3 -3
  43. package/dist/esm/internal/utils/object-path.js.map +1 -1
  44. package/dist/esm/sablier.js +2 -6
  45. package/dist/esm/sablier.js.map +1 -1
  46. package/dist/esm/solana/chains/chains.js +13 -13
  47. package/dist/esm/solana/chains/chains.js.map +1 -1
  48. package/dist/esm/solana/programs/catalog.js +1 -1
  49. package/dist/esm/solana/programs/catalog.js.map +1 -1
  50. package/dist/esm/solana/programs/queries.js +1 -1
  51. package/dist/esm/solana/programs/queries.js.map +1 -1
  52. package/dist/esm/solana/releases/resolvers.js +5 -6
  53. package/dist/esm/solana/releases/resolvers.js.map +1 -1
  54. package/dist/types/evm/chains/custom.d.ts +10 -1
  55. package/dist/types/evm/chains/custom.d.ts.map +1 -1
  56. package/dist/types/evm/chains/specs.d.ts +245 -21
  57. package/dist/types/evm/chains/specs.d.ts.map +1 -1
  58. package/dist/types/evm/releases/resolvers.d.ts.map +1 -1
  59. package/dist/types/internal/factories/chains.d.ts.map +1 -1
  60. package/dist/types/internal/factories/queries.d.ts.map +1 -1
  61. package/dist/types/sablier.d.ts.map +1 -1
  62. package/dist/types/solana/releases/resolvers.d.ts.map +1 -1
  63. package/package.json +63 -63
@@ -38,6 +38,7 @@ export declare const chainSpecs: {
38
38
  };
39
39
  };
40
40
  sourceId?: number | undefined | undefined;
41
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
41
42
  testnet?: boolean | undefined | undefined;
42
43
  custom: {
43
44
  readonly getEip712Domain: import("viem/zksync").EIP712DomainFn<import("viem/chains").ZkSyncTransactionSerializable, import("viem/chains").ZkSyncEIP712TransactionSignable>;
@@ -93,6 +94,7 @@ export declare const chainSpecs: {
93
94
  value: bigint;
94
95
  blockHash: `0x${string}` | null;
95
96
  blockNumber: bigint | null;
97
+ blockTimestamp?: bigint | undefined;
96
98
  hash: import("viem").Hash;
97
99
  input: import("viem").Hex;
98
100
  transactionIndex: number | null;
@@ -112,6 +114,7 @@ export declare const chainSpecs: {
112
114
  } | {
113
115
  blockHash: `0x${string}` | null;
114
116
  blockNumber: bigint | null;
117
+ blockTimestamp?: bigint | undefined;
115
118
  from: import("abitype").Address;
116
119
  gas: bigint;
117
120
  hash: import("viem").Hash;
@@ -139,6 +142,7 @@ export declare const chainSpecs: {
139
142
  } | {
140
143
  blockHash: `0x${string}` | null;
141
144
  blockNumber: bigint | null;
145
+ blockTimestamp?: bigint | undefined;
142
146
  from: import("abitype").Address;
143
147
  gas: bigint;
144
148
  hash: import("viem").Hash;
@@ -166,6 +170,7 @@ export declare const chainSpecs: {
166
170
  } | {
167
171
  blockHash: `0x${string}` | null;
168
172
  blockNumber: bigint | null;
173
+ blockTimestamp?: bigint | undefined;
169
174
  from: import("abitype").Address;
170
175
  gas: bigint;
171
176
  hash: import("viem").Hash;
@@ -193,6 +198,7 @@ export declare const chainSpecs: {
193
198
  } | {
194
199
  blockHash: `0x${string}` | null;
195
200
  blockNumber: bigint | null;
201
+ blockTimestamp?: bigint | undefined;
196
202
  from: import("abitype").Address;
197
203
  gas: bigint;
198
204
  hash: import("viem").Hash;
@@ -220,6 +226,7 @@ export declare const chainSpecs: {
220
226
  } | {
221
227
  blockHash: `0x${string}` | null;
222
228
  blockNumber: bigint | null;
229
+ blockTimestamp?: bigint | undefined;
223
230
  from: import("abitype").Address;
224
231
  gas: bigint;
225
232
  hash: import("viem").Hash;
@@ -243,6 +250,7 @@ export declare const chainSpecs: {
243
250
  } | {
244
251
  blockHash: `0x${string}` | null;
245
252
  blockNumber: bigint | null;
253
+ blockTimestamp?: bigint | undefined;
246
254
  from: import("abitype").Address;
247
255
  gas: bigint;
248
256
  hash: import("viem").Hash;
@@ -275,9 +283,9 @@ export declare const chainSpecs: {
275
283
  from: import("abitype").Address;
276
284
  blockHash: import("viem").Hash;
277
285
  blockNumber: bigint;
286
+ blockTimestamp?: bigint | undefined;
278
287
  transactionIndex: number;
279
288
  status: "success" | "reverted";
280
- blockTimestamp?: bigint | undefined;
281
289
  transactionHash: import("viem").Hash;
282
290
  logsBloom: import("viem").Hex;
283
291
  blobGasUsed?: bigint | undefined;
@@ -433,8 +441,10 @@ export declare const chainSpecs: {
433
441
  };
434
442
  };
435
443
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
444
+ client: import("viem").Client;
436
445
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
437
446
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
447
+ client: import("viem").Client;
438
448
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
439
449
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
440
450
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -486,14 +496,17 @@ export declare const chainSpecs: {
486
496
  };
487
497
  };
488
498
  sourceId?: number | undefined | undefined;
499
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
489
500
  testnet?: boolean | undefined | undefined;
490
501
  custom?: Record<string, unknown> | undefined;
491
502
  extendSchema?: Record<string, unknown> | undefined;
492
503
  fees?: import("viem").ChainFees<undefined> | undefined;
493
504
  formatters?: undefined;
494
505
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
506
+ client: import("viem").Client;
495
507
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
496
508
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
509
+ client: import("viem").Client;
497
510
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
498
511
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
499
512
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -545,14 +558,17 @@ export declare const chainSpecs: {
545
558
  };
546
559
  };
547
560
  sourceId?: number | undefined | undefined;
561
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
548
562
  testnet: true;
549
563
  custom?: Record<string, unknown> | undefined;
550
564
  extendSchema?: Record<string, unknown> | undefined;
551
565
  fees?: import("viem").ChainFees<undefined> | undefined;
552
566
  formatters?: undefined;
553
567
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
568
+ client: import("viem").Client;
554
569
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
555
570
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
571
+ client: import("viem").Client;
556
572
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
557
573
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
558
574
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -601,14 +617,17 @@ export declare const chainSpecs: {
601
617
  };
602
618
  };
603
619
  sourceId?: number | undefined | undefined;
620
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
604
621
  testnet?: boolean | undefined | undefined;
605
622
  custom?: Record<string, unknown> | undefined;
606
623
  extendSchema?: Record<string, unknown> | undefined;
607
624
  fees?: import("viem").ChainFees<undefined> | undefined;
608
625
  formatters?: undefined;
609
626
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
627
+ client: import("viem").Client;
610
628
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
611
629
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
630
+ client: import("viem").Client;
612
631
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
613
632
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
614
633
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -708,6 +727,7 @@ export declare const chainSpecs: {
708
727
  };
709
728
  };
710
729
  sourceId: 1;
730
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
711
731
  testnet?: boolean | undefined | undefined;
712
732
  custom?: Record<string, unknown> | undefined;
713
733
  extendSchema?: Record<string, unknown> | undefined;
@@ -751,6 +771,7 @@ export declare const chainSpecs: {
751
771
  format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
752
772
  blockHash: `0x${string}` | null;
753
773
  blockNumber: bigint | null;
774
+ blockTimestamp?: bigint | undefined;
754
775
  from: import("abitype").Address;
755
776
  gas: bigint;
756
777
  hash: import("viem").Hash;
@@ -783,6 +804,7 @@ export declare const chainSpecs: {
783
804
  value: bigint;
784
805
  blockHash: `0x${string}` | null;
785
806
  blockNumber: bigint | null;
807
+ blockTimestamp?: bigint | undefined;
786
808
  hash: import("viem").Hash;
787
809
  input: import("viem").Hex;
788
810
  transactionIndex: number | null;
@@ -803,6 +825,7 @@ export declare const chainSpecs: {
803
825
  } | {
804
826
  blockHash: `0x${string}` | null;
805
827
  blockNumber: bigint | null;
828
+ blockTimestamp?: bigint | undefined;
806
829
  from: import("abitype").Address;
807
830
  gas: bigint;
808
831
  hash: import("viem").Hash;
@@ -831,6 +854,7 @@ export declare const chainSpecs: {
831
854
  } | {
832
855
  blockHash: `0x${string}` | null;
833
856
  blockNumber: bigint | null;
857
+ blockTimestamp?: bigint | undefined;
834
858
  from: import("abitype").Address;
835
859
  gas: bigint;
836
860
  hash: import("viem").Hash;
@@ -859,6 +883,7 @@ export declare const chainSpecs: {
859
883
  } | {
860
884
  blockHash: `0x${string}` | null;
861
885
  blockNumber: bigint | null;
886
+ blockTimestamp?: bigint | undefined;
862
887
  from: import("abitype").Address;
863
888
  gas: bigint;
864
889
  hash: import("viem").Hash;
@@ -887,6 +912,7 @@ export declare const chainSpecs: {
887
912
  } | {
888
913
  blockHash: `0x${string}` | null;
889
914
  blockNumber: bigint | null;
915
+ blockTimestamp?: bigint | undefined;
890
916
  from: import("abitype").Address;
891
917
  gas: bigint;
892
918
  hash: import("viem").Hash;
@@ -936,6 +962,8 @@ export declare const chainSpecs: {
936
962
  transactionHash: import("viem").Hash;
937
963
  transactionIndex: number;
938
964
  type: import("viem").TransactionType;
965
+ depositNonce?: bigint | undefined | undefined;
966
+ depositReceiptVersion?: number | undefined | undefined;
939
967
  l1GasPrice: bigint | null;
940
968
  l1GasUsed: bigint | null;
941
969
  l1Fee: bigint | null;
@@ -945,8 +973,10 @@ export declare const chainSpecs: {
945
973
  };
946
974
  };
947
975
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
976
+ client: import("viem").Client;
948
977
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
949
978
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
979
+ client: import("viem").Client;
950
980
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
951
981
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
952
982
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -1039,6 +1069,7 @@ export declare const chainSpecs: {
1039
1069
  };
1040
1070
  };
1041
1071
  sourceId: 11155111;
1072
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
1042
1073
  testnet: true;
1043
1074
  custom?: Record<string, unknown> | undefined;
1044
1075
  extendSchema?: Record<string, unknown> | undefined;
@@ -1082,6 +1113,7 @@ export declare const chainSpecs: {
1082
1113
  format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
1083
1114
  blockHash: `0x${string}` | null;
1084
1115
  blockNumber: bigint | null;
1116
+ blockTimestamp?: bigint | undefined;
1085
1117
  from: import("abitype").Address;
1086
1118
  gas: bigint;
1087
1119
  hash: import("viem").Hash;
@@ -1114,6 +1146,7 @@ export declare const chainSpecs: {
1114
1146
  value: bigint;
1115
1147
  blockHash: `0x${string}` | null;
1116
1148
  blockNumber: bigint | null;
1149
+ blockTimestamp?: bigint | undefined;
1117
1150
  hash: import("viem").Hash;
1118
1151
  input: import("viem").Hex;
1119
1152
  transactionIndex: number | null;
@@ -1134,6 +1167,7 @@ export declare const chainSpecs: {
1134
1167
  } | {
1135
1168
  blockHash: `0x${string}` | null;
1136
1169
  blockNumber: bigint | null;
1170
+ blockTimestamp?: bigint | undefined;
1137
1171
  from: import("abitype").Address;
1138
1172
  gas: bigint;
1139
1173
  hash: import("viem").Hash;
@@ -1162,6 +1196,7 @@ export declare const chainSpecs: {
1162
1196
  } | {
1163
1197
  blockHash: `0x${string}` | null;
1164
1198
  blockNumber: bigint | null;
1199
+ blockTimestamp?: bigint | undefined;
1165
1200
  from: import("abitype").Address;
1166
1201
  gas: bigint;
1167
1202
  hash: import("viem").Hash;
@@ -1190,6 +1225,7 @@ export declare const chainSpecs: {
1190
1225
  } | {
1191
1226
  blockHash: `0x${string}` | null;
1192
1227
  blockNumber: bigint | null;
1228
+ blockTimestamp?: bigint | undefined;
1193
1229
  from: import("abitype").Address;
1194
1230
  gas: bigint;
1195
1231
  hash: import("viem").Hash;
@@ -1218,6 +1254,7 @@ export declare const chainSpecs: {
1218
1254
  } | {
1219
1255
  blockHash: `0x${string}` | null;
1220
1256
  blockNumber: bigint | null;
1257
+ blockTimestamp?: bigint | undefined;
1221
1258
  from: import("abitype").Address;
1222
1259
  gas: bigint;
1223
1260
  hash: import("viem").Hash;
@@ -1267,6 +1304,8 @@ export declare const chainSpecs: {
1267
1304
  transactionHash: import("viem").Hash;
1268
1305
  transactionIndex: number;
1269
1306
  type: import("viem").TransactionType;
1307
+ depositNonce?: bigint | undefined | undefined;
1308
+ depositReceiptVersion?: number | undefined | undefined;
1270
1309
  l1GasPrice: bigint | null;
1271
1310
  l1GasUsed: bigint | null;
1272
1311
  l1Fee: bigint | null;
@@ -1276,8 +1315,10 @@ export declare const chainSpecs: {
1276
1315
  };
1277
1316
  };
1278
1317
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1318
+ client: import("viem").Client;
1279
1319
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1280
1320
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1321
+ client: import("viem").Client;
1281
1322
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1282
1323
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
1283
1324
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -1334,6 +1375,7 @@ export declare const chainSpecs: {
1334
1375
  };
1335
1376
  };
1336
1377
  sourceId?: number | undefined | undefined;
1378
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
1337
1379
  testnet: true;
1338
1380
  custom: {
1339
1381
  readonly getEip712Domain: import("viem/zksync").EIP712DomainFn<import("viem/chains").ZkSyncTransactionSerializable, import("viem/chains").ZkSyncEIP712TransactionSignable>;
@@ -1389,6 +1431,7 @@ export declare const chainSpecs: {
1389
1431
  value: bigint;
1390
1432
  blockHash: `0x${string}` | null;
1391
1433
  blockNumber: bigint | null;
1434
+ blockTimestamp?: bigint | undefined;
1392
1435
  hash: import("viem").Hash;
1393
1436
  input: import("viem").Hex;
1394
1437
  transactionIndex: number | null;
@@ -1408,6 +1451,7 @@ export declare const chainSpecs: {
1408
1451
  } | {
1409
1452
  blockHash: `0x${string}` | null;
1410
1453
  blockNumber: bigint | null;
1454
+ blockTimestamp?: bigint | undefined;
1411
1455
  from: import("abitype").Address;
1412
1456
  gas: bigint;
1413
1457
  hash: import("viem").Hash;
@@ -1435,6 +1479,7 @@ export declare const chainSpecs: {
1435
1479
  } | {
1436
1480
  blockHash: `0x${string}` | null;
1437
1481
  blockNumber: bigint | null;
1482
+ blockTimestamp?: bigint | undefined;
1438
1483
  from: import("abitype").Address;
1439
1484
  gas: bigint;
1440
1485
  hash: import("viem").Hash;
@@ -1462,6 +1507,7 @@ export declare const chainSpecs: {
1462
1507
  } | {
1463
1508
  blockHash: `0x${string}` | null;
1464
1509
  blockNumber: bigint | null;
1510
+ blockTimestamp?: bigint | undefined;
1465
1511
  from: import("abitype").Address;
1466
1512
  gas: bigint;
1467
1513
  hash: import("viem").Hash;
@@ -1489,6 +1535,7 @@ export declare const chainSpecs: {
1489
1535
  } | {
1490
1536
  blockHash: `0x${string}` | null;
1491
1537
  blockNumber: bigint | null;
1538
+ blockTimestamp?: bigint | undefined;
1492
1539
  from: import("abitype").Address;
1493
1540
  gas: bigint;
1494
1541
  hash: import("viem").Hash;
@@ -1516,6 +1563,7 @@ export declare const chainSpecs: {
1516
1563
  } | {
1517
1564
  blockHash: `0x${string}` | null;
1518
1565
  blockNumber: bigint | null;
1566
+ blockTimestamp?: bigint | undefined;
1519
1567
  from: import("abitype").Address;
1520
1568
  gas: bigint;
1521
1569
  hash: import("viem").Hash;
@@ -1539,6 +1587,7 @@ export declare const chainSpecs: {
1539
1587
  } | {
1540
1588
  blockHash: `0x${string}` | null;
1541
1589
  blockNumber: bigint | null;
1590
+ blockTimestamp?: bigint | undefined;
1542
1591
  from: import("abitype").Address;
1543
1592
  gas: bigint;
1544
1593
  hash: import("viem").Hash;
@@ -1571,9 +1620,9 @@ export declare const chainSpecs: {
1571
1620
  from: import("abitype").Address;
1572
1621
  blockHash: import("viem").Hash;
1573
1622
  blockNumber: bigint;
1623
+ blockTimestamp?: bigint | undefined;
1574
1624
  transactionIndex: number;
1575
1625
  status: "success" | "reverted";
1576
- blockTimestamp?: bigint | undefined;
1577
1626
  transactionHash: import("viem").Hash;
1578
1627
  logsBloom: import("viem").Hex;
1579
1628
  blobGasUsed?: bigint | undefined;
@@ -1729,8 +1778,10 @@ export declare const chainSpecs: {
1729
1778
  };
1730
1779
  };
1731
1780
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1781
+ client: import("viem").Client;
1732
1782
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1733
1783
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1784
+ client: import("viem").Client;
1734
1785
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1735
1786
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
1736
1787
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -1790,14 +1841,17 @@ export declare const chainSpecs: {
1790
1841
  };
1791
1842
  };
1792
1843
  sourceId?: number | undefined | undefined;
1844
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
1793
1845
  testnet: false;
1794
1846
  custom?: Record<string, unknown> | undefined;
1795
1847
  extendSchema?: Record<string, unknown> | undefined;
1796
1848
  fees?: import("viem").ChainFees<undefined> | undefined;
1797
1849
  formatters?: undefined;
1798
1850
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1851
+ client: import("viem").Client;
1799
1852
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1800
1853
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1854
+ client: import("viem").Client;
1801
1855
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1802
1856
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
1803
1857
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -1883,6 +1937,7 @@ export declare const chainSpecs: {
1883
1937
  };
1884
1938
  };
1885
1939
  sourceId: 1;
1940
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
1886
1941
  testnet?: boolean | undefined | undefined;
1887
1942
  custom?: Record<string, unknown> | undefined;
1888
1943
  extendSchema?: Record<string, unknown> | undefined;
@@ -1926,6 +1981,7 @@ export declare const chainSpecs: {
1926
1981
  format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
1927
1982
  blockHash: `0x${string}` | null;
1928
1983
  blockNumber: bigint | null;
1984
+ blockTimestamp?: bigint | undefined;
1929
1985
  from: import("abitype").Address;
1930
1986
  gas: bigint;
1931
1987
  hash: import("viem").Hash;
@@ -1958,6 +2014,7 @@ export declare const chainSpecs: {
1958
2014
  value: bigint;
1959
2015
  blockHash: `0x${string}` | null;
1960
2016
  blockNumber: bigint | null;
2017
+ blockTimestamp?: bigint | undefined;
1961
2018
  hash: import("viem").Hash;
1962
2019
  input: import("viem").Hex;
1963
2020
  transactionIndex: number | null;
@@ -1978,6 +2035,7 @@ export declare const chainSpecs: {
1978
2035
  } | {
1979
2036
  blockHash: `0x${string}` | null;
1980
2037
  blockNumber: bigint | null;
2038
+ blockTimestamp?: bigint | undefined;
1981
2039
  from: import("abitype").Address;
1982
2040
  gas: bigint;
1983
2041
  hash: import("viem").Hash;
@@ -2006,6 +2064,7 @@ export declare const chainSpecs: {
2006
2064
  } | {
2007
2065
  blockHash: `0x${string}` | null;
2008
2066
  blockNumber: bigint | null;
2067
+ blockTimestamp?: bigint | undefined;
2009
2068
  from: import("abitype").Address;
2010
2069
  gas: bigint;
2011
2070
  hash: import("viem").Hash;
@@ -2034,6 +2093,7 @@ export declare const chainSpecs: {
2034
2093
  } | {
2035
2094
  blockHash: `0x${string}` | null;
2036
2095
  blockNumber: bigint | null;
2096
+ blockTimestamp?: bigint | undefined;
2037
2097
  from: import("abitype").Address;
2038
2098
  gas: bigint;
2039
2099
  hash: import("viem").Hash;
@@ -2062,6 +2122,7 @@ export declare const chainSpecs: {
2062
2122
  } | {
2063
2123
  blockHash: `0x${string}` | null;
2064
2124
  blockNumber: bigint | null;
2125
+ blockTimestamp?: bigint | undefined;
2065
2126
  from: import("abitype").Address;
2066
2127
  gas: bigint;
2067
2128
  hash: import("viem").Hash;
@@ -2111,6 +2172,8 @@ export declare const chainSpecs: {
2111
2172
  transactionHash: import("viem").Hash;
2112
2173
  transactionIndex: number;
2113
2174
  type: import("viem").TransactionType;
2175
+ depositNonce?: bigint | undefined | undefined;
2176
+ depositReceiptVersion?: number | undefined | undefined;
2114
2177
  l1GasPrice: bigint | null;
2115
2178
  l1GasUsed: bigint | null;
2116
2179
  l1Fee: bigint | null;
@@ -2120,8 +2183,10 @@ export declare const chainSpecs: {
2120
2183
  };
2121
2184
  };
2122
2185
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2186
+ client: import("viem").Client;
2123
2187
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2124
2188
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2189
+ client: import("viem").Client;
2125
2190
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2126
2191
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
2127
2192
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -2174,14 +2239,17 @@ export declare const chainSpecs: {
2174
2239
  };
2175
2240
  };
2176
2241
  sourceId?: number | undefined | undefined;
2242
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
2177
2243
  testnet?: boolean | undefined | undefined;
2178
2244
  custom?: Record<string, unknown> | undefined;
2179
2245
  extendSchema?: Record<string, unknown> | undefined;
2180
2246
  fees?: import("viem").ChainFees<undefined> | undefined;
2181
2247
  formatters?: undefined;
2182
2248
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2249
+ client: import("viem").Client;
2183
2250
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2184
2251
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2252
+ client: import("viem").Client;
2185
2253
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2186
2254
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
2187
2255
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -2233,14 +2301,17 @@ export declare const chainSpecs: {
2233
2301
  };
2234
2302
  };
2235
2303
  sourceId?: number | undefined | undefined;
2304
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
2236
2305
  testnet?: boolean | undefined | undefined;
2237
2306
  custom?: Record<string, unknown> | undefined;
2238
2307
  extendSchema?: Record<string, unknown> | undefined;
2239
2308
  fees?: import("viem").ChainFees<undefined> | undefined;
2240
2309
  formatters?: undefined;
2241
2310
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2311
+ client: import("viem").Client;
2242
2312
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2243
2313
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2314
+ client: import("viem").Client;
2244
2315
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2245
2316
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
2246
2317
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -2300,14 +2371,17 @@ export declare const chainSpecs: {
2300
2371
  };
2301
2372
  };
2302
2373
  sourceId?: number | undefined | undefined;
2374
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
2303
2375
  testnet: false;
2304
2376
  custom?: Record<string, unknown> | undefined;
2305
2377
  extendSchema?: Record<string, unknown> | undefined;
2306
2378
  fees?: import("viem").ChainFees<undefined> | undefined;
2307
2379
  formatters?: undefined;
2308
2380
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2381
+ client: import("viem").Client;
2309
2382
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2310
2383
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2384
+ client: import("viem").Client;
2311
2385
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2312
2386
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
2313
2387
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -2357,14 +2431,17 @@ export declare const chainSpecs: {
2357
2431
  };
2358
2432
  };
2359
2433
  sourceId?: number | undefined | undefined;
2434
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
2360
2435
  testnet: false;
2361
2436
  custom?: Record<string, unknown> | undefined;
2362
2437
  extendSchema?: Record<string, unknown> | undefined;
2363
2438
  fees?: import("viem").ChainFees<undefined> | undefined;
2364
2439
  formatters?: undefined;
2365
2440
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2441
+ client: import("viem").Client;
2366
2442
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2367
2443
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2444
+ client: import("viem").Client;
2368
2445
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2369
2446
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
2370
2447
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -2413,14 +2490,17 @@ export declare const chainSpecs: {
2413
2490
  };
2414
2491
  };
2415
2492
  sourceId?: number | undefined | undefined;
2493
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
2416
2494
  testnet?: boolean | undefined | undefined;
2417
2495
  custom?: Record<string, unknown> | undefined;
2418
2496
  extendSchema?: Record<string, unknown> | undefined;
2419
2497
  fees?: import("viem").ChainFees<undefined> | undefined;
2420
2498
  formatters?: undefined;
2421
2499
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2500
+ client: import("viem").Client;
2422
2501
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2423
2502
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2503
+ client: import("viem").Client;
2424
2504
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2425
2505
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
2426
2506
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -2448,15 +2528,12 @@ export declare const chainSpecs: {
2448
2528
  };
2449
2529
  };
2450
2530
  blockTime?: number | undefined | undefined;
2451
- contracts?: {
2452
- [x: string]: import("viem").ChainContract | {
2453
- [sourceId: number]: import("viem").ChainContract | undefined;
2454
- } | undefined;
2455
- ensRegistry?: import("viem").ChainContract | undefined;
2456
- ensUniversalResolver?: import("viem").ChainContract | undefined;
2457
- multicall3?: import("viem").ChainContract | undefined;
2458
- erc6492Verifier?: import("viem").ChainContract | undefined;
2459
- } | undefined;
2531
+ contracts: {
2532
+ readonly multicall3: {
2533
+ readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
2534
+ readonly blockCreated: 13051;
2535
+ };
2536
+ };
2460
2537
  ensTlds?: readonly string[] | undefined;
2461
2538
  id: 999;
2462
2539
  name: "HyperEVM";
@@ -2472,14 +2549,17 @@ export declare const chainSpecs: {
2472
2549
  };
2473
2550
  };
2474
2551
  sourceId?: number | undefined | undefined;
2552
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
2475
2553
  testnet: false;
2476
2554
  custom?: Record<string, unknown> | undefined;
2477
2555
  extendSchema?: Record<string, unknown> | undefined;
2478
2556
  fees?: import("viem").ChainFees<undefined> | undefined;
2479
2557
  formatters?: undefined;
2480
2558
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2559
+ client: import("viem").Client;
2481
2560
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2482
2561
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2562
+ client: import("viem").Client;
2483
2563
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2484
2564
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
2485
2565
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -2533,14 +2613,17 @@ export declare const chainSpecs: {
2533
2613
  };
2534
2614
  };
2535
2615
  sourceId?: number | undefined | undefined;
2616
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
2536
2617
  testnet: false;
2537
2618
  custom?: Record<string, unknown> | undefined;
2538
2619
  extendSchema?: Record<string, unknown> | undefined;
2539
2620
  fees?: import("viem").ChainFees<undefined> | undefined;
2540
2621
  formatters?: undefined;
2541
2622
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2623
+ client: import("viem").Client;
2542
2624
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2543
2625
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2626
+ client: import("viem").Client;
2544
2627
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2545
2628
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
2546
2629
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -2597,6 +2680,7 @@ export declare const chainSpecs: {
2597
2680
  };
2598
2681
  };
2599
2682
  sourceId?: number | undefined | undefined;
2683
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
2600
2684
  testnet: false;
2601
2685
  custom?: Record<string, unknown> | undefined;
2602
2686
  extendSchema?: Record<string, unknown> | undefined;
@@ -2606,8 +2690,10 @@ export declare const chainSpecs: {
2606
2690
  };
2607
2691
  formatters?: undefined;
2608
2692
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2693
+ client: import("viem").Client;
2609
2694
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2610
2695
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2696
+ client: import("viem").Client;
2611
2697
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2612
2698
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
2613
2699
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -2667,6 +2753,7 @@ export declare const chainSpecs: {
2667
2753
  };
2668
2754
  };
2669
2755
  sourceId?: number | undefined | undefined;
2756
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
2670
2757
  testnet: true;
2671
2758
  custom?: Record<string, unknown> | undefined;
2672
2759
  extendSchema?: Record<string, unknown> | undefined;
@@ -2676,8 +2763,10 @@ export declare const chainSpecs: {
2676
2763
  };
2677
2764
  formatters?: undefined;
2678
2765
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2766
+ client: import("viem").Client;
2679
2767
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2680
2768
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2769
+ client: import("viem").Client;
2681
2770
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2682
2771
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
2683
2772
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -2728,18 +2817,21 @@ export declare const chainSpecs: {
2728
2817
  experimental_preconfirmationTime?: number | undefined | undefined;
2729
2818
  rpcUrls: {
2730
2819
  readonly default: {
2731
- readonly http: readonly ["https://eth.merkle.io"];
2820
+ readonly http: readonly ["https://ethereum.reth.rs/rpc"];
2732
2821
  };
2733
2822
  };
2734
2823
  sourceId?: number | undefined | undefined;
2824
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
2735
2825
  testnet?: boolean | undefined | undefined;
2736
2826
  custom?: Record<string, unknown> | undefined;
2737
2827
  extendSchema?: Record<string, unknown> | undefined;
2738
2828
  fees?: import("viem").ChainFees<undefined> | undefined;
2739
2829
  formatters?: undefined;
2740
2830
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2831
+ client: import("viem").Client;
2741
2832
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2742
2833
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2834
+ client: import("viem").Client;
2743
2835
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2744
2836
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
2745
2837
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -2827,6 +2919,7 @@ export declare const chainSpecs: {
2827
2919
  };
2828
2920
  };
2829
2921
  sourceId: 1;
2922
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
2830
2923
  testnet?: boolean | undefined | undefined;
2831
2924
  custom?: Record<string, unknown> | undefined;
2832
2925
  extendSchema?: Record<string, unknown> | undefined;
@@ -2870,6 +2963,7 @@ export declare const chainSpecs: {
2870
2963
  format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
2871
2964
  blockHash: `0x${string}` | null;
2872
2965
  blockNumber: bigint | null;
2966
+ blockTimestamp?: bigint | undefined;
2873
2967
  from: import("abitype").Address;
2874
2968
  gas: bigint;
2875
2969
  hash: import("viem").Hash;
@@ -2902,6 +2996,7 @@ export declare const chainSpecs: {
2902
2996
  value: bigint;
2903
2997
  blockHash: `0x${string}` | null;
2904
2998
  blockNumber: bigint | null;
2999
+ blockTimestamp?: bigint | undefined;
2905
3000
  hash: import("viem").Hash;
2906
3001
  input: import("viem").Hex;
2907
3002
  transactionIndex: number | null;
@@ -2922,6 +3017,7 @@ export declare const chainSpecs: {
2922
3017
  } | {
2923
3018
  blockHash: `0x${string}` | null;
2924
3019
  blockNumber: bigint | null;
3020
+ blockTimestamp?: bigint | undefined;
2925
3021
  from: import("abitype").Address;
2926
3022
  gas: bigint;
2927
3023
  hash: import("viem").Hash;
@@ -2950,6 +3046,7 @@ export declare const chainSpecs: {
2950
3046
  } | {
2951
3047
  blockHash: `0x${string}` | null;
2952
3048
  blockNumber: bigint | null;
3049
+ blockTimestamp?: bigint | undefined;
2953
3050
  from: import("abitype").Address;
2954
3051
  gas: bigint;
2955
3052
  hash: import("viem").Hash;
@@ -2978,6 +3075,7 @@ export declare const chainSpecs: {
2978
3075
  } | {
2979
3076
  blockHash: `0x${string}` | null;
2980
3077
  blockNumber: bigint | null;
3078
+ blockTimestamp?: bigint | undefined;
2981
3079
  from: import("abitype").Address;
2982
3080
  gas: bigint;
2983
3081
  hash: import("viem").Hash;
@@ -3006,6 +3104,7 @@ export declare const chainSpecs: {
3006
3104
  } | {
3007
3105
  blockHash: `0x${string}` | null;
3008
3106
  blockNumber: bigint | null;
3107
+ blockTimestamp?: bigint | undefined;
3009
3108
  from: import("abitype").Address;
3010
3109
  gas: bigint;
3011
3110
  hash: import("viem").Hash;
@@ -3055,6 +3154,8 @@ export declare const chainSpecs: {
3055
3154
  transactionHash: import("viem").Hash;
3056
3155
  transactionIndex: number;
3057
3156
  type: import("viem").TransactionType;
3157
+ depositNonce?: bigint | undefined | undefined;
3158
+ depositReceiptVersion?: number | undefined | undefined;
3058
3159
  l1GasPrice: bigint | null;
3059
3160
  l1GasUsed: bigint | null;
3060
3161
  l1Fee: bigint | null;
@@ -3064,8 +3165,10 @@ export declare const chainSpecs: {
3064
3165
  };
3065
3166
  };
3066
3167
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3168
+ client: import("viem").Client;
3067
3169
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3068
3170
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3171
+ client: import("viem").Client;
3069
3172
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3070
3173
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
3071
3174
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -3097,13 +3200,13 @@ export declare const chainSpecs: {
3097
3200
  base: {
3098
3201
  blockExplorers: {
3099
3202
  readonly default: {
3100
- readonly name: "MonadVision";
3101
- readonly url: "https://monadvision.com";
3102
- };
3103
- readonly monadscan: {
3104
3203
  readonly name: "Monadscan";
3105
3204
  readonly url: "https://monadscan.com";
3106
- readonly apiUrl: "https://api.monadscan.com/api";
3205
+ readonly apiUrl: "https://api.etherscan.io/v2/api?chainid=143";
3206
+ };
3207
+ readonly monadvision: {
3208
+ readonly name: "MonadVision";
3209
+ readonly url: "https://monadvision.com";
3107
3210
  };
3108
3211
  };
3109
3212
  blockTime: 400;
@@ -3129,14 +3232,17 @@ export declare const chainSpecs: {
3129
3232
  };
3130
3233
  };
3131
3234
  sourceId?: number | undefined | undefined;
3235
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
3132
3236
  testnet: false;
3133
3237
  custom?: Record<string, unknown> | undefined;
3134
3238
  extendSchema?: Record<string, unknown> | undefined;
3135
3239
  fees?: import("viem").ChainFees<undefined> | undefined;
3136
3240
  formatters?: undefined;
3137
3241
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3242
+ client: import("viem").Client;
3138
3243
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3139
3244
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3245
+ client: import("viem").Client;
3140
3246
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3141
3247
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
3142
3248
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -3194,14 +3300,17 @@ export declare const chainSpecs: {
3194
3300
  };
3195
3301
  };
3196
3302
  sourceId?: number | undefined | undefined;
3303
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
3197
3304
  testnet: false;
3198
3305
  custom?: Record<string, unknown> | undefined;
3199
3306
  extendSchema?: Record<string, unknown> | undefined;
3200
3307
  fees?: import("viem").ChainFees<undefined> | undefined;
3201
3308
  formatters?: undefined;
3202
3309
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3310
+ client: import("viem").Client;
3203
3311
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3204
3312
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3313
+ client: import("viem").Client;
3205
3314
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3206
3315
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
3207
3316
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -3286,6 +3395,7 @@ export declare const chainSpecs: {
3286
3395
  };
3287
3396
  };
3288
3397
  sourceId: 1;
3398
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
3289
3399
  testnet?: boolean | undefined | undefined;
3290
3400
  custom?: Record<string, unknown> | undefined;
3291
3401
  extendSchema?: Record<string, unknown> | undefined;
@@ -3329,6 +3439,7 @@ export declare const chainSpecs: {
3329
3439
  format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
3330
3440
  blockHash: `0x${string}` | null;
3331
3441
  blockNumber: bigint | null;
3442
+ blockTimestamp?: bigint | undefined;
3332
3443
  from: import("abitype").Address;
3333
3444
  gas: bigint;
3334
3445
  hash: import("viem").Hash;
@@ -3361,6 +3472,7 @@ export declare const chainSpecs: {
3361
3472
  value: bigint;
3362
3473
  blockHash: `0x${string}` | null;
3363
3474
  blockNumber: bigint | null;
3475
+ blockTimestamp?: bigint | undefined;
3364
3476
  hash: import("viem").Hash;
3365
3477
  input: import("viem").Hex;
3366
3478
  transactionIndex: number | null;
@@ -3381,6 +3493,7 @@ export declare const chainSpecs: {
3381
3493
  } | {
3382
3494
  blockHash: `0x${string}` | null;
3383
3495
  blockNumber: bigint | null;
3496
+ blockTimestamp?: bigint | undefined;
3384
3497
  from: import("abitype").Address;
3385
3498
  gas: bigint;
3386
3499
  hash: import("viem").Hash;
@@ -3409,6 +3522,7 @@ export declare const chainSpecs: {
3409
3522
  } | {
3410
3523
  blockHash: `0x${string}` | null;
3411
3524
  blockNumber: bigint | null;
3525
+ blockTimestamp?: bigint | undefined;
3412
3526
  from: import("abitype").Address;
3413
3527
  gas: bigint;
3414
3528
  hash: import("viem").Hash;
@@ -3437,6 +3551,7 @@ export declare const chainSpecs: {
3437
3551
  } | {
3438
3552
  blockHash: `0x${string}` | null;
3439
3553
  blockNumber: bigint | null;
3554
+ blockTimestamp?: bigint | undefined;
3440
3555
  from: import("abitype").Address;
3441
3556
  gas: bigint;
3442
3557
  hash: import("viem").Hash;
@@ -3465,6 +3580,7 @@ export declare const chainSpecs: {
3465
3580
  } | {
3466
3581
  blockHash: `0x${string}` | null;
3467
3582
  blockNumber: bigint | null;
3583
+ blockTimestamp?: bigint | undefined;
3468
3584
  from: import("abitype").Address;
3469
3585
  gas: bigint;
3470
3586
  hash: import("viem").Hash;
@@ -3514,6 +3630,8 @@ export declare const chainSpecs: {
3514
3630
  transactionHash: import("viem").Hash;
3515
3631
  transactionIndex: number;
3516
3632
  type: import("viem").TransactionType;
3633
+ depositNonce?: bigint | undefined | undefined;
3634
+ depositReceiptVersion?: number | undefined | undefined;
3517
3635
  l1GasPrice: bigint | null;
3518
3636
  l1GasUsed: bigint | null;
3519
3637
  l1Fee: bigint | null;
@@ -3523,8 +3641,10 @@ export declare const chainSpecs: {
3523
3641
  };
3524
3642
  };
3525
3643
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3644
+ client: import("viem").Client;
3526
3645
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3527
3646
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3647
+ client: import("viem").Client;
3528
3648
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3529
3649
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
3530
3650
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -3615,6 +3735,7 @@ export declare const chainSpecs: {
3615
3735
  };
3616
3736
  };
3617
3737
  sourceId: 11155111;
3738
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
3618
3739
  testnet: true;
3619
3740
  custom?: Record<string, unknown> | undefined;
3620
3741
  extendSchema?: Record<string, unknown> | undefined;
@@ -3658,6 +3779,7 @@ export declare const chainSpecs: {
3658
3779
  format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
3659
3780
  blockHash: `0x${string}` | null;
3660
3781
  blockNumber: bigint | null;
3782
+ blockTimestamp?: bigint | undefined;
3661
3783
  from: import("abitype").Address;
3662
3784
  gas: bigint;
3663
3785
  hash: import("viem").Hash;
@@ -3690,6 +3812,7 @@ export declare const chainSpecs: {
3690
3812
  value: bigint;
3691
3813
  blockHash: `0x${string}` | null;
3692
3814
  blockNumber: bigint | null;
3815
+ blockTimestamp?: bigint | undefined;
3693
3816
  hash: import("viem").Hash;
3694
3817
  input: import("viem").Hex;
3695
3818
  transactionIndex: number | null;
@@ -3710,6 +3833,7 @@ export declare const chainSpecs: {
3710
3833
  } | {
3711
3834
  blockHash: `0x${string}` | null;
3712
3835
  blockNumber: bigint | null;
3836
+ blockTimestamp?: bigint | undefined;
3713
3837
  from: import("abitype").Address;
3714
3838
  gas: bigint;
3715
3839
  hash: import("viem").Hash;
@@ -3738,6 +3862,7 @@ export declare const chainSpecs: {
3738
3862
  } | {
3739
3863
  blockHash: `0x${string}` | null;
3740
3864
  blockNumber: bigint | null;
3865
+ blockTimestamp?: bigint | undefined;
3741
3866
  from: import("abitype").Address;
3742
3867
  gas: bigint;
3743
3868
  hash: import("viem").Hash;
@@ -3766,6 +3891,7 @@ export declare const chainSpecs: {
3766
3891
  } | {
3767
3892
  blockHash: `0x${string}` | null;
3768
3893
  blockNumber: bigint | null;
3894
+ blockTimestamp?: bigint | undefined;
3769
3895
  from: import("abitype").Address;
3770
3896
  gas: bigint;
3771
3897
  hash: import("viem").Hash;
@@ -3794,6 +3920,7 @@ export declare const chainSpecs: {
3794
3920
  } | {
3795
3921
  blockHash: `0x${string}` | null;
3796
3922
  blockNumber: bigint | null;
3923
+ blockTimestamp?: bigint | undefined;
3797
3924
  from: import("abitype").Address;
3798
3925
  gas: bigint;
3799
3926
  hash: import("viem").Hash;
@@ -3843,6 +3970,8 @@ export declare const chainSpecs: {
3843
3970
  transactionHash: import("viem").Hash;
3844
3971
  transactionIndex: number;
3845
3972
  type: import("viem").TransactionType;
3973
+ depositNonce?: bigint | undefined | undefined;
3974
+ depositReceiptVersion?: number | undefined | undefined;
3846
3975
  l1GasPrice: bigint | null;
3847
3976
  l1GasUsed: bigint | null;
3848
3977
  l1Fee: bigint | null;
@@ -3852,8 +3981,10 @@ export declare const chainSpecs: {
3852
3981
  };
3853
3982
  };
3854
3983
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3984
+ client: import("viem").Client;
3855
3985
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3856
3986
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3987
+ client: import("viem").Client;
3857
3988
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3858
3989
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
3859
3990
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -3905,14 +4036,17 @@ export declare const chainSpecs: {
3905
4036
  };
3906
4037
  };
3907
4038
  sourceId?: number | undefined | undefined;
4039
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
3908
4040
  testnet?: boolean | undefined | undefined;
3909
4041
  custom?: Record<string, unknown> | undefined;
3910
4042
  extendSchema?: Record<string, unknown> | undefined;
3911
4043
  fees?: import("viem").ChainFees<undefined> | undefined;
3912
4044
  formatters?: undefined;
3913
4045
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4046
+ client: import("viem").Client;
3914
4047
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3915
4048
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4049
+ client: import("viem").Client;
3916
4050
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3917
4051
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
3918
4052
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -3953,7 +4087,7 @@ export declare const chainSpecs: {
3953
4087
  } | undefined;
3954
4088
  ensTlds?: readonly string[] | undefined;
3955
4089
  id: 4663;
3956
- name: "Robinhood Chain";
4090
+ name: "Robinhood";
3957
4091
  nativeCurrency: {
3958
4092
  readonly decimals: 18;
3959
4093
  readonly name: "Ether";
@@ -3966,14 +4100,17 @@ export declare const chainSpecs: {
3966
4100
  };
3967
4101
  };
3968
4102
  sourceId?: number | undefined | undefined;
4103
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
3969
4104
  testnet: false;
3970
4105
  custom?: Record<string, unknown> | undefined;
3971
4106
  extendSchema?: Record<string, unknown> | undefined;
3972
4107
  fees?: import("viem").ChainFees<undefined> | undefined;
3973
4108
  formatters?: undefined;
3974
4109
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4110
+ client: import("viem").Client;
3975
4111
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3976
4112
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4113
+ client: import("viem").Client;
3977
4114
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3978
4115
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
3979
4116
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -4019,14 +4156,17 @@ export declare const chainSpecs: {
4019
4156
  };
4020
4157
  };
4021
4158
  sourceId?: number | undefined | undefined;
4159
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
4022
4160
  testnet?: boolean | undefined | undefined;
4023
4161
  custom?: Record<string, unknown> | undefined;
4024
4162
  extendSchema?: Record<string, unknown> | undefined;
4025
4163
  fees?: import("viem").ChainFees<undefined> | undefined;
4026
4164
  formatters?: undefined;
4027
4165
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4166
+ client: import("viem").Client;
4028
4167
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4029
4168
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4169
+ client: import("viem").Client;
4030
4170
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4031
4171
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
4032
4172
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -4077,14 +4217,17 @@ export declare const chainSpecs: {
4077
4217
  };
4078
4218
  };
4079
4219
  sourceId?: number | undefined | undefined;
4220
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
4080
4221
  testnet: false;
4081
4222
  custom?: Record<string, unknown> | undefined;
4082
4223
  extendSchema?: Record<string, unknown> | undefined;
4083
4224
  fees?: import("viem").ChainFees<undefined> | undefined;
4084
4225
  formatters?: undefined;
4085
4226
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4227
+ client: import("viem").Client;
4086
4228
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4087
4229
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4230
+ client: import("viem").Client;
4088
4231
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4089
4232
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
4090
4233
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -4135,14 +4278,17 @@ export declare const chainSpecs: {
4135
4278
  };
4136
4279
  };
4137
4280
  sourceId?: number | undefined | undefined;
4281
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
4138
4282
  testnet?: boolean | undefined | undefined;
4139
4283
  custom?: Record<string, unknown> | undefined;
4140
4284
  extendSchema?: Record<string, unknown> | undefined;
4141
4285
  fees?: import("viem").ChainFees<undefined> | undefined;
4142
4286
  formatters?: undefined;
4143
4287
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4288
+ client: import("viem").Client;
4144
4289
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4145
4290
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4291
+ client: import("viem").Client;
4146
4292
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4147
4293
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
4148
4294
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -4210,14 +4356,17 @@ export declare const chainSpecs: {
4210
4356
  };
4211
4357
  };
4212
4358
  sourceId?: number | undefined | undefined;
4359
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
4213
4360
  testnet: true;
4214
4361
  custom?: Record<string, unknown> | undefined;
4215
4362
  extendSchema?: Record<string, unknown> | undefined;
4216
4363
  fees?: import("viem").ChainFees<undefined> | undefined;
4217
4364
  formatters?: undefined;
4218
4365
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4366
+ client: import("viem").Client;
4219
4367
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4220
4368
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4369
+ client: import("viem").Client;
4221
4370
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4222
4371
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
4223
4372
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -4267,14 +4416,17 @@ export declare const chainSpecs: {
4267
4416
  };
4268
4417
  };
4269
4418
  sourceId?: number | undefined | undefined;
4419
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
4270
4420
  testnet: false;
4271
4421
  custom?: Record<string, unknown> | undefined;
4272
4422
  extendSchema?: Record<string, unknown> | undefined;
4273
4423
  fees?: import("viem").ChainFees<undefined> | undefined;
4274
4424
  formatters?: undefined;
4275
4425
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4426
+ client: import("viem").Client;
4276
4427
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4277
4428
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4429
+ client: import("viem").Client;
4278
4430
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4279
4431
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
4280
4432
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -4324,6 +4476,7 @@ export declare const chainSpecs: {
4324
4476
  };
4325
4477
  };
4326
4478
  sourceId?: number | undefined | undefined;
4479
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
4327
4480
  testnet: false;
4328
4481
  custom: {
4329
4482
  readonly getEip712Domain: import("viem/zksync").EIP712DomainFn<import("viem/chains").ZkSyncTransactionSerializable, import("viem/chains").ZkSyncEIP712TransactionSignable>;
@@ -4379,6 +4532,7 @@ export declare const chainSpecs: {
4379
4532
  value: bigint;
4380
4533
  blockHash: `0x${string}` | null;
4381
4534
  blockNumber: bigint | null;
4535
+ blockTimestamp?: bigint | undefined;
4382
4536
  hash: import("viem").Hash;
4383
4537
  input: import("viem").Hex;
4384
4538
  transactionIndex: number | null;
@@ -4398,6 +4552,7 @@ export declare const chainSpecs: {
4398
4552
  } | {
4399
4553
  blockHash: `0x${string}` | null;
4400
4554
  blockNumber: bigint | null;
4555
+ blockTimestamp?: bigint | undefined;
4401
4556
  from: import("abitype").Address;
4402
4557
  gas: bigint;
4403
4558
  hash: import("viem").Hash;
@@ -4425,6 +4580,7 @@ export declare const chainSpecs: {
4425
4580
  } | {
4426
4581
  blockHash: `0x${string}` | null;
4427
4582
  blockNumber: bigint | null;
4583
+ blockTimestamp?: bigint | undefined;
4428
4584
  from: import("abitype").Address;
4429
4585
  gas: bigint;
4430
4586
  hash: import("viem").Hash;
@@ -4452,6 +4608,7 @@ export declare const chainSpecs: {
4452
4608
  } | {
4453
4609
  blockHash: `0x${string}` | null;
4454
4610
  blockNumber: bigint | null;
4611
+ blockTimestamp?: bigint | undefined;
4455
4612
  from: import("abitype").Address;
4456
4613
  gas: bigint;
4457
4614
  hash: import("viem").Hash;
@@ -4479,6 +4636,7 @@ export declare const chainSpecs: {
4479
4636
  } | {
4480
4637
  blockHash: `0x${string}` | null;
4481
4638
  blockNumber: bigint | null;
4639
+ blockTimestamp?: bigint | undefined;
4482
4640
  from: import("abitype").Address;
4483
4641
  gas: bigint;
4484
4642
  hash: import("viem").Hash;
@@ -4506,6 +4664,7 @@ export declare const chainSpecs: {
4506
4664
  } | {
4507
4665
  blockHash: `0x${string}` | null;
4508
4666
  blockNumber: bigint | null;
4667
+ blockTimestamp?: bigint | undefined;
4509
4668
  from: import("abitype").Address;
4510
4669
  gas: bigint;
4511
4670
  hash: import("viem").Hash;
@@ -4529,6 +4688,7 @@ export declare const chainSpecs: {
4529
4688
  } | {
4530
4689
  blockHash: `0x${string}` | null;
4531
4690
  blockNumber: bigint | null;
4691
+ blockTimestamp?: bigint | undefined;
4532
4692
  from: import("abitype").Address;
4533
4693
  gas: bigint;
4534
4694
  hash: import("viem").Hash;
@@ -4561,9 +4721,9 @@ export declare const chainSpecs: {
4561
4721
  from: import("abitype").Address;
4562
4722
  blockHash: import("viem").Hash;
4563
4723
  blockNumber: bigint;
4724
+ blockTimestamp?: bigint | undefined;
4564
4725
  transactionIndex: number;
4565
4726
  status: "success" | "reverted";
4566
- blockTimestamp?: bigint | undefined;
4567
4727
  transactionHash: import("viem").Hash;
4568
4728
  logsBloom: import("viem").Hex;
4569
4729
  blobGasUsed?: bigint | undefined;
@@ -4719,8 +4879,10 @@ export declare const chainSpecs: {
4719
4879
  };
4720
4880
  };
4721
4881
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4882
+ client: import("viem").Client;
4722
4883
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4723
4884
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4885
+ client: import("viem").Client;
4724
4886
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4725
4887
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
4726
4888
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -4819,6 +4981,7 @@ export declare const chainSpecs: {
4819
4981
  };
4820
4982
  };
4821
4983
  sourceId: 1;
4984
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
4822
4985
  testnet?: boolean | undefined | undefined;
4823
4986
  custom?: Record<string, unknown> | undefined;
4824
4987
  extendSchema?: Record<string, unknown> | undefined;
@@ -4862,6 +5025,7 @@ export declare const chainSpecs: {
4862
5025
  format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
4863
5026
  blockHash: `0x${string}` | null;
4864
5027
  blockNumber: bigint | null;
5028
+ blockTimestamp?: bigint | undefined;
4865
5029
  from: import("abitype").Address;
4866
5030
  gas: bigint;
4867
5031
  hash: import("viem").Hash;
@@ -4894,6 +5058,7 @@ export declare const chainSpecs: {
4894
5058
  value: bigint;
4895
5059
  blockHash: `0x${string}` | null;
4896
5060
  blockNumber: bigint | null;
5061
+ blockTimestamp?: bigint | undefined;
4897
5062
  hash: import("viem").Hash;
4898
5063
  input: import("viem").Hex;
4899
5064
  transactionIndex: number | null;
@@ -4914,6 +5079,7 @@ export declare const chainSpecs: {
4914
5079
  } | {
4915
5080
  blockHash: `0x${string}` | null;
4916
5081
  blockNumber: bigint | null;
5082
+ blockTimestamp?: bigint | undefined;
4917
5083
  from: import("abitype").Address;
4918
5084
  gas: bigint;
4919
5085
  hash: import("viem").Hash;
@@ -4942,6 +5108,7 @@ export declare const chainSpecs: {
4942
5108
  } | {
4943
5109
  blockHash: `0x${string}` | null;
4944
5110
  blockNumber: bigint | null;
5111
+ blockTimestamp?: bigint | undefined;
4945
5112
  from: import("abitype").Address;
4946
5113
  gas: bigint;
4947
5114
  hash: import("viem").Hash;
@@ -4970,6 +5137,7 @@ export declare const chainSpecs: {
4970
5137
  } | {
4971
5138
  blockHash: `0x${string}` | null;
4972
5139
  blockNumber: bigint | null;
5140
+ blockTimestamp?: bigint | undefined;
4973
5141
  from: import("abitype").Address;
4974
5142
  gas: bigint;
4975
5143
  hash: import("viem").Hash;
@@ -4998,6 +5166,7 @@ export declare const chainSpecs: {
4998
5166
  } | {
4999
5167
  blockHash: `0x${string}` | null;
5000
5168
  blockNumber: bigint | null;
5169
+ blockTimestamp?: bigint | undefined;
5001
5170
  from: import("abitype").Address;
5002
5171
  gas: bigint;
5003
5172
  hash: import("viem").Hash;
@@ -5047,6 +5216,8 @@ export declare const chainSpecs: {
5047
5216
  transactionHash: import("viem").Hash;
5048
5217
  transactionIndex: number;
5049
5218
  type: import("viem").TransactionType;
5219
+ depositNonce?: bigint | undefined | undefined;
5220
+ depositReceiptVersion?: number | undefined | undefined;
5050
5221
  l1GasPrice: bigint | null;
5051
5222
  l1GasUsed: bigint | null;
5052
5223
  l1Fee: bigint | null;
@@ -5056,8 +5227,10 @@ export declare const chainSpecs: {
5056
5227
  };
5057
5228
  };
5058
5229
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5230
+ client: import("viem").Client;
5059
5231
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5060
5232
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5233
+ client: import("viem").Client;
5061
5234
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5062
5235
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
5063
5236
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -5137,6 +5310,7 @@ export declare const chainSpecs: {
5137
5310
  };
5138
5311
  };
5139
5312
  sourceId: 11155111;
5313
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
5140
5314
  testnet: true;
5141
5315
  custom?: Record<string, unknown> | undefined;
5142
5316
  extendSchema?: Record<string, unknown> | undefined;
@@ -5180,6 +5354,7 @@ export declare const chainSpecs: {
5180
5354
  format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
5181
5355
  blockHash: `0x${string}` | null;
5182
5356
  blockNumber: bigint | null;
5357
+ blockTimestamp?: bigint | undefined;
5183
5358
  from: import("abitype").Address;
5184
5359
  gas: bigint;
5185
5360
  hash: import("viem").Hash;
@@ -5212,6 +5387,7 @@ export declare const chainSpecs: {
5212
5387
  value: bigint;
5213
5388
  blockHash: `0x${string}` | null;
5214
5389
  blockNumber: bigint | null;
5390
+ blockTimestamp?: bigint | undefined;
5215
5391
  hash: import("viem").Hash;
5216
5392
  input: import("viem").Hex;
5217
5393
  transactionIndex: number | null;
@@ -5232,6 +5408,7 @@ export declare const chainSpecs: {
5232
5408
  } | {
5233
5409
  blockHash: `0x${string}` | null;
5234
5410
  blockNumber: bigint | null;
5411
+ blockTimestamp?: bigint | undefined;
5235
5412
  from: import("abitype").Address;
5236
5413
  gas: bigint;
5237
5414
  hash: import("viem").Hash;
@@ -5260,6 +5437,7 @@ export declare const chainSpecs: {
5260
5437
  } | {
5261
5438
  blockHash: `0x${string}` | null;
5262
5439
  blockNumber: bigint | null;
5440
+ blockTimestamp?: bigint | undefined;
5263
5441
  from: import("abitype").Address;
5264
5442
  gas: bigint;
5265
5443
  hash: import("viem").Hash;
@@ -5288,6 +5466,7 @@ export declare const chainSpecs: {
5288
5466
  } | {
5289
5467
  blockHash: `0x${string}` | null;
5290
5468
  blockNumber: bigint | null;
5469
+ blockTimestamp?: bigint | undefined;
5291
5470
  from: import("abitype").Address;
5292
5471
  gas: bigint;
5293
5472
  hash: import("viem").Hash;
@@ -5316,6 +5495,7 @@ export declare const chainSpecs: {
5316
5495
  } | {
5317
5496
  blockHash: `0x${string}` | null;
5318
5497
  blockNumber: bigint | null;
5498
+ blockTimestamp?: bigint | undefined;
5319
5499
  from: import("abitype").Address;
5320
5500
  gas: bigint;
5321
5501
  hash: import("viem").Hash;
@@ -5365,6 +5545,8 @@ export declare const chainSpecs: {
5365
5545
  transactionHash: import("viem").Hash;
5366
5546
  transactionIndex: number;
5367
5547
  type: import("viem").TransactionType;
5548
+ depositNonce?: bigint | undefined | undefined;
5549
+ depositReceiptVersion?: number | undefined | undefined;
5368
5550
  l1GasPrice: bigint | null;
5369
5551
  l1GasUsed: bigint | null;
5370
5552
  l1Fee: bigint | null;
@@ -5374,8 +5556,10 @@ export declare const chainSpecs: {
5374
5556
  };
5375
5557
  };
5376
5558
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5559
+ client: import("viem").Client;
5377
5560
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5378
5561
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5562
+ client: import("viem").Client;
5379
5563
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5380
5564
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
5381
5565
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -5423,14 +5607,17 @@ export declare const chainSpecs: {
5423
5607
  };
5424
5608
  };
5425
5609
  sourceId?: number | undefined | undefined;
5610
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
5426
5611
  testnet?: boolean | undefined | undefined;
5427
5612
  custom?: Record<string, unknown> | undefined;
5428
5613
  extendSchema?: Record<string, unknown> | undefined;
5429
5614
  fees?: import("viem").ChainFees<undefined> | undefined;
5430
5615
  formatters?: undefined;
5431
5616
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5617
+ client: import("viem").Client;
5432
5618
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5433
5619
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5620
+ client: import("viem").Client;
5434
5621
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5435
5622
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
5436
5623
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -5478,14 +5665,17 @@ export declare const chainSpecs: {
5478
5665
  };
5479
5666
  };
5480
5667
  sourceId?: number | undefined | undefined;
5668
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
5481
5669
  testnet: false;
5482
5670
  custom?: Record<string, unknown> | undefined;
5483
5671
  extendSchema?: Record<string, unknown> | undefined;
5484
5672
  fees?: import("viem").ChainFees<undefined> | undefined;
5485
5673
  formatters?: undefined;
5486
5674
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5675
+ client: import("viem").Client;
5487
5676
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5488
5677
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5678
+ client: import("viem").Client;
5489
5679
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5490
5680
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
5491
5681
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -5565,6 +5755,7 @@ export declare const chainSpecs: {
5565
5755
  };
5566
5756
  };
5567
5757
  sourceId: 1;
5758
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
5568
5759
  testnet?: boolean | undefined | undefined;
5569
5760
  custom?: Record<string, unknown> | undefined;
5570
5761
  extendSchema?: Record<string, unknown> | undefined;
@@ -5608,6 +5799,7 @@ export declare const chainSpecs: {
5608
5799
  format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
5609
5800
  blockHash: `0x${string}` | null;
5610
5801
  blockNumber: bigint | null;
5802
+ blockTimestamp?: bigint | undefined;
5611
5803
  from: import("abitype").Address;
5612
5804
  gas: bigint;
5613
5805
  hash: import("viem").Hash;
@@ -5640,6 +5832,7 @@ export declare const chainSpecs: {
5640
5832
  value: bigint;
5641
5833
  blockHash: `0x${string}` | null;
5642
5834
  blockNumber: bigint | null;
5835
+ blockTimestamp?: bigint | undefined;
5643
5836
  hash: import("viem").Hash;
5644
5837
  input: import("viem").Hex;
5645
5838
  transactionIndex: number | null;
@@ -5660,6 +5853,7 @@ export declare const chainSpecs: {
5660
5853
  } | {
5661
5854
  blockHash: `0x${string}` | null;
5662
5855
  blockNumber: bigint | null;
5856
+ blockTimestamp?: bigint | undefined;
5663
5857
  from: import("abitype").Address;
5664
5858
  gas: bigint;
5665
5859
  hash: import("viem").Hash;
@@ -5688,6 +5882,7 @@ export declare const chainSpecs: {
5688
5882
  } | {
5689
5883
  blockHash: `0x${string}` | null;
5690
5884
  blockNumber: bigint | null;
5885
+ blockTimestamp?: bigint | undefined;
5691
5886
  from: import("abitype").Address;
5692
5887
  gas: bigint;
5693
5888
  hash: import("viem").Hash;
@@ -5716,6 +5911,7 @@ export declare const chainSpecs: {
5716
5911
  } | {
5717
5912
  blockHash: `0x${string}` | null;
5718
5913
  blockNumber: bigint | null;
5914
+ blockTimestamp?: bigint | undefined;
5719
5915
  from: import("abitype").Address;
5720
5916
  gas: bigint;
5721
5917
  hash: import("viem").Hash;
@@ -5744,6 +5940,7 @@ export declare const chainSpecs: {
5744
5940
  } | {
5745
5941
  blockHash: `0x${string}` | null;
5746
5942
  blockNumber: bigint | null;
5943
+ blockTimestamp?: bigint | undefined;
5747
5944
  from: import("abitype").Address;
5748
5945
  gas: bigint;
5749
5946
  hash: import("viem").Hash;
@@ -5793,6 +5990,8 @@ export declare const chainSpecs: {
5793
5990
  transactionHash: import("viem").Hash;
5794
5991
  transactionIndex: number;
5795
5992
  type: import("viem").TransactionType;
5993
+ depositNonce?: bigint | undefined | undefined;
5994
+ depositReceiptVersion?: number | undefined | undefined;
5796
5995
  l1GasPrice: bigint | null;
5797
5996
  l1GasUsed: bigint | null;
5798
5997
  l1Fee: bigint | null;
@@ -5802,8 +6001,10 @@ export declare const chainSpecs: {
5802
6001
  };
5803
6002
  };
5804
6003
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
6004
+ client: import("viem").Client;
5805
6005
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5806
6006
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
6007
+ client: import("viem").Client;
5807
6008
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5808
6009
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
5809
6010
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -5856,14 +6057,17 @@ export declare const chainSpecs: {
5856
6057
  };
5857
6058
  };
5858
6059
  sourceId?: number | undefined | undefined;
6060
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
5859
6061
  testnet?: boolean | undefined | undefined;
5860
6062
  custom?: Record<string, unknown> | undefined;
5861
6063
  extendSchema?: Record<string, unknown> | undefined;
5862
6064
  fees?: import("viem").ChainFees<undefined> | undefined;
5863
6065
  formatters?: undefined;
5864
6066
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
6067
+ client: import("viem").Client;
5865
6068
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5866
6069
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
6070
+ client: import("viem").Client;
5867
6071
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5868
6072
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
5869
6073
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -5916,6 +6120,7 @@ export declare const chainSpecs: {
5916
6120
  };
5917
6121
  };
5918
6122
  sourceId?: number | undefined | undefined;
6123
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
5919
6124
  testnet?: boolean | undefined | undefined;
5920
6125
  custom: {
5921
6126
  readonly getEip712Domain: import("viem/zksync").EIP712DomainFn<import("viem/chains").ZkSyncTransactionSerializable, import("viem/chains").ZkSyncEIP712TransactionSignable>;
@@ -5971,6 +6176,7 @@ export declare const chainSpecs: {
5971
6176
  value: bigint;
5972
6177
  blockHash: `0x${string}` | null;
5973
6178
  blockNumber: bigint | null;
6179
+ blockTimestamp?: bigint | undefined;
5974
6180
  hash: import("viem").Hash;
5975
6181
  input: import("viem").Hex;
5976
6182
  transactionIndex: number | null;
@@ -5990,6 +6196,7 @@ export declare const chainSpecs: {
5990
6196
  } | {
5991
6197
  blockHash: `0x${string}` | null;
5992
6198
  blockNumber: bigint | null;
6199
+ blockTimestamp?: bigint | undefined;
5993
6200
  from: import("abitype").Address;
5994
6201
  gas: bigint;
5995
6202
  hash: import("viem").Hash;
@@ -6017,6 +6224,7 @@ export declare const chainSpecs: {
6017
6224
  } | {
6018
6225
  blockHash: `0x${string}` | null;
6019
6226
  blockNumber: bigint | null;
6227
+ blockTimestamp?: bigint | undefined;
6020
6228
  from: import("abitype").Address;
6021
6229
  gas: bigint;
6022
6230
  hash: import("viem").Hash;
@@ -6044,6 +6252,7 @@ export declare const chainSpecs: {
6044
6252
  } | {
6045
6253
  blockHash: `0x${string}` | null;
6046
6254
  blockNumber: bigint | null;
6255
+ blockTimestamp?: bigint | undefined;
6047
6256
  from: import("abitype").Address;
6048
6257
  gas: bigint;
6049
6258
  hash: import("viem").Hash;
@@ -6071,6 +6280,7 @@ export declare const chainSpecs: {
6071
6280
  } | {
6072
6281
  blockHash: `0x${string}` | null;
6073
6282
  blockNumber: bigint | null;
6283
+ blockTimestamp?: bigint | undefined;
6074
6284
  from: import("abitype").Address;
6075
6285
  gas: bigint;
6076
6286
  hash: import("viem").Hash;
@@ -6098,6 +6308,7 @@ export declare const chainSpecs: {
6098
6308
  } | {
6099
6309
  blockHash: `0x${string}` | null;
6100
6310
  blockNumber: bigint | null;
6311
+ blockTimestamp?: bigint | undefined;
6101
6312
  from: import("abitype").Address;
6102
6313
  gas: bigint;
6103
6314
  hash: import("viem").Hash;
@@ -6121,6 +6332,7 @@ export declare const chainSpecs: {
6121
6332
  } | {
6122
6333
  blockHash: `0x${string}` | null;
6123
6334
  blockNumber: bigint | null;
6335
+ blockTimestamp?: bigint | undefined;
6124
6336
  from: import("abitype").Address;
6125
6337
  gas: bigint;
6126
6338
  hash: import("viem").Hash;
@@ -6153,9 +6365,9 @@ export declare const chainSpecs: {
6153
6365
  from: import("abitype").Address;
6154
6366
  blockHash: import("viem").Hash;
6155
6367
  blockNumber: bigint;
6368
+ blockTimestamp?: bigint | undefined;
6156
6369
  transactionIndex: number;
6157
6370
  status: "success" | "reverted";
6158
- blockTimestamp?: bigint | undefined;
6159
6371
  transactionHash: import("viem").Hash;
6160
6372
  logsBloom: import("viem").Hex;
6161
6373
  blobGasUsed?: bigint | undefined;
@@ -6311,8 +6523,10 @@ export declare const chainSpecs: {
6311
6523
  };
6312
6524
  };
6313
6525
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
6526
+ client: import("viem").Client;
6314
6527
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
6315
6528
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
6529
+ client: import("viem").Client;
6316
6530
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
6317
6531
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
6318
6532
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
@@ -6380,6 +6594,7 @@ export declare const chainSpecs: {
6380
6594
  };
6381
6595
  };
6382
6596
  sourceId?: number | undefined | undefined;
6597
+ supportsTransactionReplacementDetection?: boolean | undefined | undefined;
6383
6598
  testnet: true;
6384
6599
  custom: {
6385
6600
  readonly getEip712Domain: import("viem/zksync").EIP712DomainFn<import("viem/chains").ZkSyncTransactionSerializable, import("viem/chains").ZkSyncEIP712TransactionSignable>;
@@ -6435,6 +6650,7 @@ export declare const chainSpecs: {
6435
6650
  value: bigint;
6436
6651
  blockHash: `0x${string}` | null;
6437
6652
  blockNumber: bigint | null;
6653
+ blockTimestamp?: bigint | undefined;
6438
6654
  hash: import("viem").Hash;
6439
6655
  input: import("viem").Hex;
6440
6656
  transactionIndex: number | null;
@@ -6454,6 +6670,7 @@ export declare const chainSpecs: {
6454
6670
  } | {
6455
6671
  blockHash: `0x${string}` | null;
6456
6672
  blockNumber: bigint | null;
6673
+ blockTimestamp?: bigint | undefined;
6457
6674
  from: import("abitype").Address;
6458
6675
  gas: bigint;
6459
6676
  hash: import("viem").Hash;
@@ -6481,6 +6698,7 @@ export declare const chainSpecs: {
6481
6698
  } | {
6482
6699
  blockHash: `0x${string}` | null;
6483
6700
  blockNumber: bigint | null;
6701
+ blockTimestamp?: bigint | undefined;
6484
6702
  from: import("abitype").Address;
6485
6703
  gas: bigint;
6486
6704
  hash: import("viem").Hash;
@@ -6508,6 +6726,7 @@ export declare const chainSpecs: {
6508
6726
  } | {
6509
6727
  blockHash: `0x${string}` | null;
6510
6728
  blockNumber: bigint | null;
6729
+ blockTimestamp?: bigint | undefined;
6511
6730
  from: import("abitype").Address;
6512
6731
  gas: bigint;
6513
6732
  hash: import("viem").Hash;
@@ -6535,6 +6754,7 @@ export declare const chainSpecs: {
6535
6754
  } | {
6536
6755
  blockHash: `0x${string}` | null;
6537
6756
  blockNumber: bigint | null;
6757
+ blockTimestamp?: bigint | undefined;
6538
6758
  from: import("abitype").Address;
6539
6759
  gas: bigint;
6540
6760
  hash: import("viem").Hash;
@@ -6562,6 +6782,7 @@ export declare const chainSpecs: {
6562
6782
  } | {
6563
6783
  blockHash: `0x${string}` | null;
6564
6784
  blockNumber: bigint | null;
6785
+ blockTimestamp?: bigint | undefined;
6565
6786
  from: import("abitype").Address;
6566
6787
  gas: bigint;
6567
6788
  hash: import("viem").Hash;
@@ -6585,6 +6806,7 @@ export declare const chainSpecs: {
6585
6806
  } | {
6586
6807
  blockHash: `0x${string}` | null;
6587
6808
  blockNumber: bigint | null;
6809
+ blockTimestamp?: bigint | undefined;
6588
6810
  from: import("abitype").Address;
6589
6811
  gas: bigint;
6590
6812
  hash: import("viem").Hash;
@@ -6617,9 +6839,9 @@ export declare const chainSpecs: {
6617
6839
  from: import("abitype").Address;
6618
6840
  blockHash: import("viem").Hash;
6619
6841
  blockNumber: bigint;
6842
+ blockTimestamp?: bigint | undefined;
6620
6843
  transactionIndex: number;
6621
6844
  status: "success" | "reverted";
6622
- blockTimestamp?: bigint | undefined;
6623
6845
  transactionHash: import("viem").Hash;
6624
6846
  logsBloom: import("viem").Hex;
6625
6847
  blobGasUsed?: bigint | undefined;
@@ -6775,8 +6997,10 @@ export declare const chainSpecs: {
6775
6997
  };
6776
6998
  };
6777
6999
  prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
7000
+ client: import("viem").Client;
6778
7001
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
6779
7002
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
7003
+ client: import("viem").Client;
6780
7004
  phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
6781
7005
  }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
6782
7006
  runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];