@gfxlabs/oku-chains 1.5.0 → 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -536,7 +536,7 @@ declare const base: Readonly<{
536
536
  readonly block: {
537
537
  exclude: [
538
538
  ] | undefined;
539
- format: (args: import("viem/chains").OpStackRpcBlock) => {
539
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
540
540
  baseFeePerGas: bigint | null;
541
541
  blobGasUsed: bigint;
542
542
  difficulty: bigint;
@@ -570,7 +570,7 @@ declare const base: Readonly<{
570
570
  readonly transaction: {
571
571
  exclude: [
572
572
  ] | undefined;
573
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
573
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
574
574
  blockHash: `0x${string}` | null;
575
575
  blockNumber: bigint | null;
576
576
  from: import("abitype").Address;
@@ -740,7 +740,7 @@ declare const base: Readonly<{
740
740
  readonly transactionReceipt: {
741
741
  exclude: [
742
742
  ] | undefined;
743
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
743
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
744
744
  blobGasPrice?: bigint | undefined;
745
745
  blobGasUsed?: bigint | undefined;
746
746
  blockHash: import("viem").Hash;
@@ -942,7 +942,7 @@ declare const blast: Readonly<{
942
942
  readonly block: {
943
943
  exclude: [
944
944
  ] | undefined;
945
- format: (args: import("viem/chains").OpStackRpcBlock) => {
945
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
946
946
  baseFeePerGas: bigint | null;
947
947
  blobGasUsed: bigint;
948
948
  difficulty: bigint;
@@ -976,7 +976,7 @@ declare const blast: Readonly<{
976
976
  readonly transaction: {
977
977
  exclude: [
978
978
  ] | undefined;
979
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
979
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
980
980
  blockHash: `0x${string}` | null;
981
981
  blockNumber: bigint | null;
982
982
  from: import("abitype").Address;
@@ -1146,7 +1146,7 @@ declare const blast: Readonly<{
1146
1146
  readonly transactionReceipt: {
1147
1147
  exclude: [
1148
1148
  ] | undefined;
1149
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
1149
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
1150
1150
  blobGasPrice?: bigint | undefined;
1151
1151
  blobGasUsed?: bigint | undefined;
1152
1152
  blockHash: import("viem").Hash;
@@ -1348,7 +1348,7 @@ declare const bob: Readonly<{
1348
1348
  readonly block: {
1349
1349
  exclude: [
1350
1350
  ] | undefined;
1351
- format: (args: import("viem/chains").OpStackRpcBlock) => {
1351
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
1352
1352
  baseFeePerGas: bigint | null;
1353
1353
  blobGasUsed: bigint;
1354
1354
  difficulty: bigint;
@@ -1382,7 +1382,7 @@ declare const bob: Readonly<{
1382
1382
  readonly transaction: {
1383
1383
  exclude: [
1384
1384
  ] | undefined;
1385
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
1385
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
1386
1386
  blockHash: `0x${string}` | null;
1387
1387
  blockNumber: bigint | null;
1388
1388
  from: import("abitype").Address;
@@ -1552,7 +1552,7 @@ declare const bob: Readonly<{
1552
1552
  readonly transactionReceipt: {
1553
1553
  exclude: [
1554
1554
  ] | undefined;
1555
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
1555
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
1556
1556
  blobGasPrice?: bigint | undefined;
1557
1557
  blobGasUsed?: bigint | undefined;
1558
1558
  blockHash: import("viem").Hash;
@@ -2026,7 +2026,7 @@ declare const celo: Readonly<{
2026
2026
  readonly block: {
2027
2027
  exclude: [
2028
2028
  ] | undefined;
2029
- format: (args: import("viem/chains").CeloRpcBlock) => {
2029
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
2030
2030
  baseFeePerGas: bigint | null;
2031
2031
  blobGasUsed: bigint;
2032
2032
  difficulty: bigint;
@@ -2060,7 +2060,7 @@ declare const celo: Readonly<{
2060
2060
  readonly transaction: {
2061
2061
  exclude: [
2062
2062
  ] | undefined;
2063
- format: (args: import("viem/chains").CeloRpcTransaction) => ({
2063
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
2064
2064
  r: import("viem").Hex;
2065
2065
  s: import("viem").Hex;
2066
2066
  v: bigint;
@@ -2301,8 +2301,8 @@ declare const celo: Readonly<{
2301
2301
  mint?: bigint | undefined | undefined;
2302
2302
  sourceHash: import("viem").Hex;
2303
2303
  type: "deposit";
2304
- accessList?: undefined;
2305
2304
  blobVersionedHashes?: undefined;
2305
+ accessList?: undefined;
2306
2306
  authorizationList?: undefined;
2307
2307
  chainId?: undefined;
2308
2308
  feeCurrency?: undefined;
@@ -2314,7 +2314,7 @@ declare const celo: Readonly<{
2314
2314
  readonly transactionRequest: {
2315
2315
  exclude: [
2316
2316
  ] | undefined;
2317
- format: (args: import("viem/chains").CeloTransactionRequest) => ({
2317
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
2318
2318
  data?: `0x${string}` | undefined;
2319
2319
  from?: `0x${string}` | undefined;
2320
2320
  gas?: `0x${string}` | undefined;
@@ -2326,10 +2326,10 @@ declare const celo: Readonly<{
2326
2326
  maxFeePerBlobGas?: undefined | undefined;
2327
2327
  maxFeePerGas?: undefined | undefined;
2328
2328
  maxPriorityFeePerGas?: undefined | undefined;
2329
- accessList?: undefined;
2330
2329
  blobs?: undefined;
2331
2330
  blobVersionedHashes?: undefined;
2332
2331
  kzg?: undefined;
2332
+ accessList?: undefined;
2333
2333
  sidecars?: undefined;
2334
2334
  authorizationList?: undefined;
2335
2335
  feeCurrency?: `0x${string}` | undefined;
@@ -2380,14 +2380,33 @@ declare const celo: Readonly<{
2380
2380
  nonce?: `0x${string}` | undefined;
2381
2381
  to: `0x${string}` | null;
2382
2382
  gasPrice?: undefined | undefined;
2383
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2383
2384
  maxFeePerGas?: `0x${string}` | undefined;
2384
2385
  maxPriorityFeePerGas?: `0x${string}` | undefined;
2385
- maxFeePerBlobGas: `0x${string}`;
2386
2386
  accessList?: import("viem").AccessList | undefined;
2387
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2388
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2389
+ blobVersionedHashes: readonly import("viem").Hex[];
2390
+ kzg?: undefined;
2391
+ authorizationList?: undefined;
2392
+ feeCurrency?: `0x${string}` | undefined;
2393
+ } | {
2394
+ type?: "0x3" | undefined;
2395
+ data?: `0x${string}` | undefined;
2396
+ value?: `0x${string}` | undefined;
2397
+ gas?: `0x${string}` | undefined;
2398
+ from?: `0x${string}` | undefined;
2399
+ nonce?: `0x${string}` | undefined;
2400
+ to: `0x${string}` | null;
2401
+ gasPrice?: undefined | undefined;
2402
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2403
+ maxFeePerGas?: `0x${string}` | undefined;
2404
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2405
+ accessList?: import("viem").AccessList | undefined;
2406
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2387
2407
  blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
2388
2408
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2389
2409
  kzg?: import("viem").Kzg | undefined;
2390
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2391
2410
  authorizationList?: undefined;
2392
2411
  feeCurrency?: `0x${string}` | undefined;
2393
2412
  } | {
@@ -2436,7 +2455,7 @@ declare const celo: Readonly<{
2436
2455
  readonly block: {
2437
2456
  exclude: [
2438
2457
  ] | undefined;
2439
- format: (args: import("viem/chains").CeloRpcBlock) => {
2458
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
2440
2459
  baseFeePerGas: bigint | null;
2441
2460
  blobGasUsed: bigint;
2442
2461
  difficulty: bigint;
@@ -2470,7 +2489,7 @@ declare const celo: Readonly<{
2470
2489
  readonly transaction: {
2471
2490
  exclude: [
2472
2491
  ] | undefined;
2473
- format: (args: import("viem/chains").CeloRpcTransaction) => ({
2492
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
2474
2493
  r: import("viem").Hex;
2475
2494
  s: import("viem").Hex;
2476
2495
  v: bigint;
@@ -2711,8 +2730,8 @@ declare const celo: Readonly<{
2711
2730
  mint?: bigint | undefined | undefined;
2712
2731
  sourceHash: import("viem").Hex;
2713
2732
  type: "deposit";
2714
- accessList?: undefined;
2715
2733
  blobVersionedHashes?: undefined;
2734
+ accessList?: undefined;
2716
2735
  authorizationList?: undefined;
2717
2736
  chainId?: undefined;
2718
2737
  feeCurrency?: undefined;
@@ -2724,7 +2743,7 @@ declare const celo: Readonly<{
2724
2743
  readonly transactionRequest: {
2725
2744
  exclude: [
2726
2745
  ] | undefined;
2727
- format: (args: import("viem/chains").CeloTransactionRequest) => ({
2746
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
2728
2747
  data?: `0x${string}` | undefined;
2729
2748
  from?: `0x${string}` | undefined;
2730
2749
  gas?: `0x${string}` | undefined;
@@ -2736,10 +2755,10 @@ declare const celo: Readonly<{
2736
2755
  maxFeePerBlobGas?: undefined | undefined;
2737
2756
  maxFeePerGas?: undefined | undefined;
2738
2757
  maxPriorityFeePerGas?: undefined | undefined;
2739
- accessList?: undefined;
2740
2758
  blobs?: undefined;
2741
2759
  blobVersionedHashes?: undefined;
2742
2760
  kzg?: undefined;
2761
+ accessList?: undefined;
2743
2762
  sidecars?: undefined;
2744
2763
  authorizationList?: undefined;
2745
2764
  feeCurrency?: `0x${string}` | undefined;
@@ -2790,14 +2809,33 @@ declare const celo: Readonly<{
2790
2809
  nonce?: `0x${string}` | undefined;
2791
2810
  to: `0x${string}` | null;
2792
2811
  gasPrice?: undefined | undefined;
2812
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2813
+ maxFeePerGas?: `0x${string}` | undefined;
2814
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2815
+ accessList?: import("viem").AccessList | undefined;
2816
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2817
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2818
+ blobVersionedHashes: readonly import("viem").Hex[];
2819
+ kzg?: undefined;
2820
+ authorizationList?: undefined;
2821
+ feeCurrency?: `0x${string}` | undefined;
2822
+ } | {
2823
+ type?: "0x3" | undefined;
2824
+ data?: `0x${string}` | undefined;
2825
+ value?: `0x${string}` | undefined;
2826
+ gas?: `0x${string}` | undefined;
2827
+ from?: `0x${string}` | undefined;
2828
+ nonce?: `0x${string}` | undefined;
2829
+ to: `0x${string}` | null;
2830
+ gasPrice?: undefined | undefined;
2831
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2793
2832
  maxFeePerGas?: `0x${string}` | undefined;
2794
2833
  maxPriorityFeePerGas?: `0x${string}` | undefined;
2795
- maxFeePerBlobGas: `0x${string}`;
2796
2834
  accessList?: import("viem").AccessList | undefined;
2835
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2797
2836
  blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
2798
2837
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2799
2838
  kzg?: import("viem").Kzg | undefined;
2800
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2801
2839
  authorizationList?: undefined;
2802
2840
  feeCurrency?: `0x${string}` | undefined;
2803
2841
  } | {
@@ -3396,7 +3434,7 @@ declare const gnosis: Readonly<{
3396
3434
  readonly apiUrl: "https://api.gnosisscan.io/api";
3397
3435
  };
3398
3436
  };
3399
- blockTime?: number | undefined | undefined | undefined;
3437
+ blockTime: 5000;
3400
3438
  ensTlds?: readonly string[] | undefined;
3401
3439
  id: 100;
3402
3440
  name: "Gnosis";
@@ -4075,7 +4113,7 @@ declare const linea: Readonly<{
4075
4113
  readonly apiUrl: "https://api.lineascan.build/api";
4076
4114
  };
4077
4115
  };
4078
- blockTime?: number | undefined | undefined | undefined;
4116
+ blockTime: 2000;
4079
4117
  ensTlds: readonly [
4080
4118
  ".linea.eth"
4081
4119
  ];
@@ -4254,7 +4292,7 @@ declare const lisk: Readonly<{
4254
4292
  readonly block: {
4255
4293
  exclude: [
4256
4294
  ] | undefined;
4257
- format: (args: import("viem/chains").OpStackRpcBlock) => {
4295
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
4258
4296
  baseFeePerGas: bigint | null;
4259
4297
  blobGasUsed: bigint;
4260
4298
  difficulty: bigint;
@@ -4288,7 +4326,7 @@ declare const lisk: Readonly<{
4288
4326
  readonly transaction: {
4289
4327
  exclude: [
4290
4328
  ] | undefined;
4291
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
4329
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
4292
4330
  blockHash: `0x${string}` | null;
4293
4331
  blockNumber: bigint | null;
4294
4332
  from: import("abitype").Address;
@@ -4458,7 +4496,7 @@ declare const lisk: Readonly<{
4458
4496
  readonly transactionReceipt: {
4459
4497
  exclude: [
4460
4498
  ] | undefined;
4461
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
4499
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
4462
4500
  blobGasPrice?: bigint | undefined;
4463
4501
  blobGasUsed?: bigint | undefined;
4464
4502
  blockHash: import("viem").Hash;
@@ -5229,7 +5267,7 @@ declare const metal: Readonly<{
5229
5267
  readonly block: {
5230
5268
  exclude: [
5231
5269
  ] | undefined;
5232
- format: (args: import("viem/chains").OpStackRpcBlock) => {
5270
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
5233
5271
  baseFeePerGas: bigint | null;
5234
5272
  blobGasUsed: bigint;
5235
5273
  difficulty: bigint;
@@ -5263,7 +5301,7 @@ declare const metal: Readonly<{
5263
5301
  readonly transaction: {
5264
5302
  exclude: [
5265
5303
  ] | undefined;
5266
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
5304
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
5267
5305
  blockHash: `0x${string}` | null;
5268
5306
  blockNumber: bigint | null;
5269
5307
  from: import("abitype").Address;
@@ -5433,7 +5471,7 @@ declare const metal: Readonly<{
5433
5471
  readonly transactionReceipt: {
5434
5472
  exclude: [
5435
5473
  ] | undefined;
5436
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
5474
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
5437
5475
  blobGasPrice?: bigint | undefined;
5438
5476
  blobGasUsed?: bigint | undefined;
5439
5477
  blockHash: import("viem").Hash;
@@ -5959,7 +5997,7 @@ declare const optimism: Readonly<{
5959
5997
  readonly block: {
5960
5998
  exclude: [
5961
5999
  ] | undefined;
5962
- format: (args: import("viem/chains").OpStackRpcBlock) => {
6000
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
5963
6001
  baseFeePerGas: bigint | null;
5964
6002
  blobGasUsed: bigint;
5965
6003
  difficulty: bigint;
@@ -5993,7 +6031,7 @@ declare const optimism: Readonly<{
5993
6031
  readonly transaction: {
5994
6032
  exclude: [
5995
6033
  ] | undefined;
5996
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
6034
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
5997
6035
  blockHash: `0x${string}` | null;
5998
6036
  blockNumber: bigint | null;
5999
6037
  from: import("abitype").Address;
@@ -6163,7 +6201,7 @@ declare const optimism: Readonly<{
6163
6201
  readonly transactionReceipt: {
6164
6202
  exclude: [
6165
6203
  ] | undefined;
6166
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
6204
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
6167
6205
  blobGasPrice?: bigint | undefined;
6168
6206
  blobGasUsed?: bigint | undefined;
6169
6207
  blockHash: import("viem").Hash;
@@ -6277,9 +6315,6 @@ declare const plasma: Readonly<{
6277
6315
  multicall3: {
6278
6316
  address: "0xcA11bde05977b3631167028862bE2a173976CA11";
6279
6317
  };
6280
- ensRegistry?: import("viem").ChainContract | undefined;
6281
- ensUniversalResolver?: import("viem").ChainContract | undefined;
6282
- erc6492Verifier?: import("viem").ChainContract | undefined;
6283
6318
  };
6284
6319
  blockExplorers: {
6285
6320
  readonly default: {
@@ -6287,7 +6322,7 @@ declare const plasma: Readonly<{
6287
6322
  readonly url: "https://plasmascan.to";
6288
6323
  };
6289
6324
  };
6290
- blockTime?: number | undefined | undefined | undefined;
6325
+ blockTime: 1000;
6291
6326
  ensTlds?: readonly string[] | undefined;
6292
6327
  id: 9745;
6293
6328
  nativeCurrency: {
@@ -6476,7 +6511,7 @@ declare const polygon: Readonly<{
6476
6511
  readonly apiUrl: "https://api.polygonscan.com/api";
6477
6512
  };
6478
6513
  };
6479
- blockTime?: number | undefined | undefined | undefined;
6514
+ blockTime: 2000;
6480
6515
  ensTlds?: readonly string[] | undefined;
6481
6516
  id: 137;
6482
6517
  name: "Polygon";
@@ -7010,7 +7045,7 @@ declare const scroll: Readonly<{
7010
7045
  readonly apiUrl: "https://api.scrollscan.com/api";
7011
7046
  };
7012
7047
  };
7013
- blockTime?: number | undefined | undefined | undefined;
7048
+ blockTime: 3000;
7014
7049
  ensTlds?: readonly string[] | undefined;
7015
7050
  id: 534352;
7016
7051
  name: "Scroll";
@@ -7910,7 +7945,7 @@ declare const unichain: Readonly<{
7910
7945
  readonly block: {
7911
7946
  exclude: [
7912
7947
  ] | undefined;
7913
- format: (args: import("viem/chains").OpStackRpcBlock) => {
7948
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
7914
7949
  baseFeePerGas: bigint | null;
7915
7950
  blobGasUsed: bigint;
7916
7951
  difficulty: bigint;
@@ -7944,7 +7979,7 @@ declare const unichain: Readonly<{
7944
7979
  readonly transaction: {
7945
7980
  exclude: [
7946
7981
  ] | undefined;
7947
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
7982
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
7948
7983
  blockHash: `0x${string}` | null;
7949
7984
  blockNumber: bigint | null;
7950
7985
  from: import("abitype").Address;
@@ -8114,7 +8149,7 @@ declare const unichain: Readonly<{
8114
8149
  readonly transactionReceipt: {
8115
8150
  exclude: [
8116
8151
  ] | undefined;
8117
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
8152
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
8118
8153
  blobGasPrice?: bigint | undefined;
8119
8154
  blobGasUsed?: bigint | undefined;
8120
8155
  blockHash: import("viem").Hash;
@@ -8316,7 +8351,7 @@ declare const worldchain: Readonly<{
8316
8351
  readonly block: {
8317
8352
  exclude: [
8318
8353
  ] | undefined;
8319
- format: (args: import("viem/chains").OpStackRpcBlock) => {
8354
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
8320
8355
  baseFeePerGas: bigint | null;
8321
8356
  blobGasUsed: bigint;
8322
8357
  difficulty: bigint;
@@ -8350,7 +8385,7 @@ declare const worldchain: Readonly<{
8350
8385
  readonly transaction: {
8351
8386
  exclude: [
8352
8387
  ] | undefined;
8353
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
8388
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
8354
8389
  blockHash: `0x${string}` | null;
8355
8390
  blockNumber: bigint | null;
8356
8391
  from: import("viem").Address;
@@ -8520,7 +8555,7 @@ declare const worldchain: Readonly<{
8520
8555
  readonly transactionReceipt: {
8521
8556
  exclude: [
8522
8557
  ] | undefined;
8523
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
8558
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
8524
8559
  blobGasPrice?: bigint | undefined;
8525
8560
  blobGasUsed?: bigint | undefined;
8526
8561
  blockHash: import("viem").Hash;
@@ -9068,7 +9103,7 @@ declare const zkSync: Readonly<{
9068
9103
  readonly block: {
9069
9104
  exclude: [
9070
9105
  ] | undefined;
9071
- format: (args: import("viem/chains").ZkSyncRpcBlock) => {
9106
+ format: (args: import("viem/chains").ZkSyncRpcBlock, action?: string | undefined) => {
9072
9107
  baseFeePerGas: bigint | null;
9073
9108
  blobGasUsed: bigint;
9074
9109
  difficulty: bigint;
@@ -9104,7 +9139,7 @@ declare const zkSync: Readonly<{
9104
9139
  readonly transaction: {
9105
9140
  exclude: [
9106
9141
  ] | undefined;
9107
- format: (args: import("viem/chains").ZkSyncRpcTransaction) => ({
9142
+ format: (args: import("viem/chains").ZkSyncRpcTransaction, action?: string | undefined) => ({
9108
9143
  r: import("viem").Hex;
9109
9144
  s: import("viem").Hex;
9110
9145
  v: bigint;
@@ -9291,7 +9326,7 @@ declare const zkSync: Readonly<{
9291
9326
  readonly transactionReceipt: {
9292
9327
  exclude: [
9293
9328
  ] | undefined;
9294
- format: (args: import("viem/chains").ZkSyncRpcTransactionReceipt) => {
9329
+ format: (args: import("viem/chains").ZkSyncRpcTransactionReceipt, action?: string | undefined) => {
9295
9330
  contractAddress: import("abitype").Address | null | undefined;
9296
9331
  type: import("viem/chains").ZkSyncTransactionType;
9297
9332
  status: "success" | "reverted";
@@ -9317,7 +9352,7 @@ declare const zkSync: Readonly<{
9317
9352
  };
9318
9353
  readonly transactionRequest: {
9319
9354
  exclude: ("paymaster" | "gasPerPubdata" | "factoryDeps" | "paymasterInput" | "customSignature")[] | undefined;
9320
- format: (args: import("viem/chains").ZkSyncTransactionRequest) => ({
9355
+ format: (args: import("viem/chains").ZkSyncTransactionRequest, action?: string | undefined) => ({
9321
9356
  data?: `0x${string}` | undefined;
9322
9357
  from?: `0x${string}` | undefined;
9323
9358
  gas?: `0x${string}` | undefined;
@@ -9329,10 +9364,10 @@ declare const zkSync: Readonly<{
9329
9364
  maxFeePerBlobGas?: undefined | undefined;
9330
9365
  maxFeePerGas?: undefined | undefined;
9331
9366
  maxPriorityFeePerGas?: undefined | undefined;
9332
- accessList?: undefined;
9333
9367
  blobs?: undefined;
9334
9368
  blobVersionedHashes?: undefined;
9335
9369
  kzg?: undefined;
9370
+ accessList?: undefined;
9336
9371
  sidecars?: undefined;
9337
9372
  authorizationList?: undefined;
9338
9373
  eip712Meta?: undefined | undefined;
@@ -9383,14 +9418,33 @@ declare const zkSync: Readonly<{
9383
9418
  nonce?: `0x${string}` | undefined;
9384
9419
  to: `0x${string}` | null;
9385
9420
  gasPrice?: undefined | undefined;
9421
+ maxFeePerBlobGas?: `0x${string}` | undefined;
9386
9422
  maxFeePerGas?: `0x${string}` | undefined;
9387
9423
  maxPriorityFeePerGas?: `0x${string}` | undefined;
9388
- maxFeePerBlobGas: `0x${string}`;
9389
9424
  accessList?: import("viem").AccessList | undefined;
9425
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
9426
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
9427
+ blobVersionedHashes: readonly import("viem").Hex[];
9428
+ kzg?: undefined;
9429
+ authorizationList?: undefined;
9430
+ eip712Meta?: undefined | undefined;
9431
+ } | {
9432
+ type?: "0x3" | undefined;
9433
+ data?: `0x${string}` | undefined;
9434
+ value?: `0x${string}` | undefined;
9435
+ gas?: `0x${string}` | undefined;
9436
+ from?: `0x${string}` | undefined;
9437
+ nonce?: `0x${string}` | undefined;
9438
+ to: `0x${string}` | null;
9439
+ gasPrice?: undefined | undefined;
9440
+ maxFeePerBlobGas?: `0x${string}` | undefined;
9441
+ maxFeePerGas?: `0x${string}` | undefined;
9442
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
9443
+ accessList?: import("viem").AccessList | undefined;
9444
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
9390
9445
  blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
9391
9446
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
9392
9447
  kzg?: import("viem").Kzg | undefined;
9393
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
9394
9448
  authorizationList?: undefined;
9395
9449
  eip712Meta?: undefined | undefined;
9396
9450
  } | {
@@ -10056,7 +10110,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
10056
10110
  formatters: {
10057
10111
  readonly block: {
10058
10112
  exclude: [] | undefined;
10059
- format: (args: import("viem/chains").OpStackRpcBlock) => {
10113
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
10060
10114
  baseFeePerGas: bigint | null;
10061
10115
  blobGasUsed: bigint;
10062
10116
  difficulty: bigint;
@@ -10089,7 +10143,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
10089
10143
  };
10090
10144
  readonly transaction: {
10091
10145
  exclude: [] | undefined;
10092
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
10146
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
10093
10147
  blockHash: `0x${string}` | null;
10094
10148
  blockNumber: bigint | null;
10095
10149
  from: import("abitype").Address;
@@ -10258,7 +10312,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
10258
10312
  };
10259
10313
  readonly transactionReceipt: {
10260
10314
  exclude: [] | undefined;
10261
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
10315
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
10262
10316
  blobGasPrice?: bigint | undefined;
10263
10317
  blobGasUsed?: bigint | undefined;
10264
10318
  blockHash: import("viem").Hash;
@@ -10586,7 +10640,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
10586
10640
  formatters: {
10587
10641
  readonly block: {
10588
10642
  exclude: [] | undefined;
10589
- format: (args: import("viem/chains").OpStackRpcBlock) => {
10643
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
10590
10644
  baseFeePerGas: bigint | null;
10591
10645
  blobGasUsed: bigint;
10592
10646
  difficulty: bigint;
@@ -10619,7 +10673,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
10619
10673
  };
10620
10674
  readonly transaction: {
10621
10675
  exclude: [] | undefined;
10622
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
10676
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
10623
10677
  blockHash: `0x${string}` | null;
10624
10678
  blockNumber: bigint | null;
10625
10679
  from: import("abitype").Address;
@@ -10788,7 +10842,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
10788
10842
  };
10789
10843
  readonly transactionReceipt: {
10790
10844
  exclude: [] | undefined;
10791
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
10845
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
10792
10846
  blobGasPrice?: bigint | undefined;
10793
10847
  blobGasUsed?: bigint | undefined;
10794
10848
  blockHash: import("viem").Hash;
@@ -11701,7 +11755,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
11701
11755
  formatters: {
11702
11756
  readonly block: {
11703
11757
  exclude: [] | undefined;
11704
- format: (args: import("viem/chains").OpStackRpcBlock) => {
11758
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
11705
11759
  baseFeePerGas: bigint | null;
11706
11760
  blobGasUsed: bigint;
11707
11761
  difficulty: bigint;
@@ -11734,7 +11788,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
11734
11788
  };
11735
11789
  readonly transaction: {
11736
11790
  exclude: [] | undefined;
11737
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
11791
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
11738
11792
  blockHash: `0x${string}` | null;
11739
11793
  blockNumber: bigint | null;
11740
11794
  from: import("abitype").Address;
@@ -11903,7 +11957,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
11903
11957
  };
11904
11958
  readonly transactionReceipt: {
11905
11959
  exclude: [] | undefined;
11906
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
11960
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
11907
11961
  blobGasPrice?: bigint | undefined;
11908
11962
  blobGasUsed?: bigint | undefined;
11909
11963
  blockHash: import("viem").Hash;
@@ -12098,7 +12152,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12098
12152
  readonly apiUrl: "https://api.polygonscan.com/api";
12099
12153
  };
12100
12154
  };
12101
- blockTime?: number | undefined | undefined | undefined;
12155
+ blockTime: 2000;
12102
12156
  ensTlds?: readonly string[] | undefined;
12103
12157
  id: 137;
12104
12158
  name: "Polygon";
@@ -12402,7 +12456,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12402
12456
  readonly apiUrl: "https://api.scrollscan.com/api";
12403
12457
  };
12404
12458
  };
12405
- blockTime?: number | undefined | undefined | undefined;
12459
+ blockTime: 3000;
12406
12460
  ensTlds?: readonly string[] | undefined;
12407
12461
  id: 534352;
12408
12462
  name: "Scroll";
@@ -12704,7 +12758,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12704
12758
  formatters: {
12705
12759
  readonly block: {
12706
12760
  exclude: [] | undefined;
12707
- format: (args: import("viem/zksync").ZkSyncRpcBlock) => {
12761
+ format: (args: import("viem/zksync").ZkSyncRpcBlock, action?: string | undefined) => {
12708
12762
  baseFeePerGas: bigint | null;
12709
12763
  blobGasUsed: bigint;
12710
12764
  difficulty: bigint;
@@ -12739,7 +12793,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12739
12793
  };
12740
12794
  readonly transaction: {
12741
12795
  exclude: [] | undefined;
12742
- format: (args: import("viem/zksync").ZkSyncRpcTransaction) => ({
12796
+ format: (args: import("viem/zksync").ZkSyncRpcTransaction, action?: string | undefined) => ({
12743
12797
  r: import("viem").Hex;
12744
12798
  s: import("viem").Hex;
12745
12799
  v: bigint;
@@ -12925,7 +12979,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12925
12979
  };
12926
12980
  readonly transactionReceipt: {
12927
12981
  exclude: [] | undefined;
12928
- format: (args: import("viem/zksync").ZkSyncRpcTransactionReceipt) => {
12982
+ format: (args: import("viem/zksync").ZkSyncRpcTransactionReceipt, action?: string | undefined) => {
12929
12983
  contractAddress: import("abitype").Address | null | undefined;
12930
12984
  type: import("viem/zksync").ZkSyncTransactionType;
12931
12985
  status: "success" | "reverted";
@@ -12951,7 +13005,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12951
13005
  };
12952
13006
  readonly transactionRequest: {
12953
13007
  exclude: ("paymaster" | "gasPerPubdata" | "factoryDeps" | "paymasterInput" | "customSignature")[] | undefined;
12954
- format: (args: import("viem/zksync").ZkSyncTransactionRequest) => ({
13008
+ format: (args: import("viem/zksync").ZkSyncTransactionRequest, action?: string | undefined) => ({
12955
13009
  data?: `0x${string}` | undefined;
12956
13010
  from?: `0x${string}` | undefined;
12957
13011
  gas?: `0x${string}` | undefined;
@@ -12963,10 +13017,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12963
13017
  maxFeePerBlobGas?: undefined | undefined;
12964
13018
  maxFeePerGas?: undefined | undefined;
12965
13019
  maxPriorityFeePerGas?: undefined | undefined;
12966
- accessList?: undefined;
12967
13020
  blobs?: undefined;
12968
13021
  blobVersionedHashes?: undefined;
12969
13022
  kzg?: undefined;
13023
+ accessList?: undefined;
12970
13024
  sidecars?: undefined;
12971
13025
  authorizationList?: undefined;
12972
13026
  eip712Meta?: undefined | undefined;
@@ -13017,14 +13071,33 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
13017
13071
  nonce?: `0x${string}` | undefined;
13018
13072
  to: `0x${string}` | null;
13019
13073
  gasPrice?: undefined | undefined;
13074
+ maxFeePerBlobGas?: `0x${string}` | undefined;
13020
13075
  maxFeePerGas?: `0x${string}` | undefined;
13021
13076
  maxPriorityFeePerGas?: `0x${string}` | undefined;
13022
- maxFeePerBlobGas: `0x${string}`;
13023
13077
  accessList?: import("viem").AccessList | undefined;
13078
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
13079
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
13080
+ blobVersionedHashes: readonly import("viem").Hex[];
13081
+ kzg?: undefined;
13082
+ authorizationList?: undefined;
13083
+ eip712Meta?: undefined | undefined;
13084
+ } | {
13085
+ type?: "0x3" | undefined;
13086
+ data?: `0x${string}` | undefined;
13087
+ value?: `0x${string}` | undefined;
13088
+ gas?: `0x${string}` | undefined;
13089
+ from?: `0x${string}` | undefined;
13090
+ nonce?: `0x${string}` | undefined;
13091
+ to: `0x${string}` | null;
13092
+ gasPrice?: undefined | undefined;
13093
+ maxFeePerBlobGas?: `0x${string}` | undefined;
13094
+ maxFeePerGas?: `0x${string}` | undefined;
13095
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
13096
+ accessList?: import("viem").AccessList | undefined;
13097
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
13024
13098
  blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
13025
13099
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
13026
13100
  kzg?: import("viem").Kzg | undefined;
13027
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
13028
13101
  authorizationList?: undefined;
13029
13102
  eip712Meta?: undefined | undefined;
13030
13103
  } | {
@@ -13342,7 +13415,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
13342
13415
  readonly apiUrl: "https://api.lineascan.build/api";
13343
13416
  };
13344
13417
  };
13345
- blockTime?: number | undefined | undefined | undefined;
13418
+ blockTime: 2000;
13346
13419
  ensTlds: readonly [".linea.eth"];
13347
13420
  id: 59144;
13348
13421
  nativeCurrency: {
@@ -13968,7 +14041,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
13968
14041
  formatters: {
13969
14042
  readonly block: {
13970
14043
  exclude: [] | undefined;
13971
- format: (args: import("viem/chains").OpStackRpcBlock) => {
14044
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
13972
14045
  baseFeePerGas: bigint | null;
13973
14046
  blobGasUsed: bigint;
13974
14047
  difficulty: bigint;
@@ -14001,7 +14074,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14001
14074
  };
14002
14075
  readonly transaction: {
14003
14076
  exclude: [] | undefined;
14004
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
14077
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
14005
14078
  blockHash: `0x${string}` | null;
14006
14079
  blockNumber: bigint | null;
14007
14080
  from: import("abitype").Address;
@@ -14170,7 +14243,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14170
14243
  };
14171
14244
  readonly transactionReceipt: {
14172
14245
  exclude: [] | undefined;
14173
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
14246
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
14174
14247
  blobGasPrice?: bigint | undefined;
14175
14248
  blobGasUsed?: bigint | undefined;
14176
14249
  blockHash: import("viem").Hash;
@@ -14367,7 +14440,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14367
14440
  formatters: {
14368
14441
  readonly block: {
14369
14442
  exclude: [] | undefined;
14370
- format: (args: import("viem/chains").OpStackRpcBlock) => {
14443
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
14371
14444
  baseFeePerGas: bigint | null;
14372
14445
  blobGasUsed: bigint;
14373
14446
  difficulty: bigint;
@@ -14400,7 +14473,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14400
14473
  };
14401
14474
  readonly transaction: {
14402
14475
  exclude: [] | undefined;
14403
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
14476
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
14404
14477
  blockHash: `0x${string}` | null;
14405
14478
  blockNumber: bigint | null;
14406
14479
  from: import("abitype").Address;
@@ -14569,7 +14642,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14569
14642
  };
14570
14643
  readonly transactionReceipt: {
14571
14644
  exclude: [] | undefined;
14572
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
14645
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
14573
14646
  blobGasPrice?: bigint | undefined;
14574
14647
  blobGasUsed?: bigint | undefined;
14575
14648
  blockHash: import("viem").Hash;
@@ -14744,7 +14817,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14744
14817
  readonly apiUrl: "https://api.gnosisscan.io/api";
14745
14818
  };
14746
14819
  };
14747
- blockTime?: number | undefined | undefined | undefined;
14820
+ blockTime: 5000;
14748
14821
  ensTlds?: readonly string[] | undefined;
14749
14822
  id: 100;
14750
14823
  name: "Gnosis";
@@ -14912,7 +14985,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14912
14985
  formatters: {
14913
14986
  readonly block: {
14914
14987
  exclude: [] | undefined;
14915
- format: (args: import("viem/chains").OpStackRpcBlock) => {
14988
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
14916
14989
  baseFeePerGas: bigint | null;
14917
14990
  blobGasUsed: bigint;
14918
14991
  difficulty: bigint;
@@ -14945,7 +15018,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14945
15018
  };
14946
15019
  readonly transaction: {
14947
15020
  exclude: [] | undefined;
14948
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
15021
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
14949
15022
  blockHash: `0x${string}` | null;
14950
15023
  blockNumber: bigint | null;
14951
15024
  from: import("abitype").Address;
@@ -15114,7 +15187,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15114
15187
  };
15115
15188
  readonly transactionReceipt: {
15116
15189
  exclude: [] | undefined;
15117
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
15190
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
15118
15191
  blobGasPrice?: bigint | undefined;
15119
15192
  blobGasUsed?: bigint | undefined;
15120
15193
  blockHash: import("viem").Hash;
@@ -15549,7 +15622,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15549
15622
  fees: import("viem").ChainFees<{
15550
15623
  readonly block: {
15551
15624
  exclude: [] | undefined;
15552
- format: (args: import("viem/chains").CeloRpcBlock) => {
15625
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
15553
15626
  baseFeePerGas: bigint | null;
15554
15627
  blobGasUsed: bigint;
15555
15628
  difficulty: bigint;
@@ -15582,7 +15655,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15582
15655
  };
15583
15656
  readonly transaction: {
15584
15657
  exclude: [] | undefined;
15585
- format: (args: import("viem/chains").CeloRpcTransaction) => ({
15658
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
15586
15659
  r: import("viem").Hex;
15587
15660
  s: import("viem").Hex;
15588
15661
  v: bigint;
@@ -15823,8 +15896,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15823
15896
  mint?: bigint | undefined | undefined;
15824
15897
  sourceHash: import("viem").Hex;
15825
15898
  type: "deposit";
15826
- accessList?: undefined;
15827
15899
  blobVersionedHashes?: undefined;
15900
+ accessList?: undefined;
15828
15901
  authorizationList?: undefined;
15829
15902
  chainId?: undefined;
15830
15903
  feeCurrency?: undefined;
@@ -15835,7 +15908,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15835
15908
  };
15836
15909
  readonly transactionRequest: {
15837
15910
  exclude: [] | undefined;
15838
- format: (args: import("viem/chains").CeloTransactionRequest) => ({
15911
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
15839
15912
  data?: `0x${string}` | undefined;
15840
15913
  from?: `0x${string}` | undefined;
15841
15914
  gas?: `0x${string}` | undefined;
@@ -15847,10 +15920,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15847
15920
  maxFeePerBlobGas?: undefined | undefined;
15848
15921
  maxFeePerGas?: undefined | undefined;
15849
15922
  maxPriorityFeePerGas?: undefined | undefined;
15850
- accessList?: undefined;
15851
15923
  blobs?: undefined;
15852
15924
  blobVersionedHashes?: undefined;
15853
15925
  kzg?: undefined;
15926
+ accessList?: undefined;
15854
15927
  sidecars?: undefined;
15855
15928
  authorizationList?: undefined;
15856
15929
  feeCurrency?: `0x${string}` | undefined;
@@ -15901,14 +15974,33 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15901
15974
  nonce?: `0x${string}` | undefined;
15902
15975
  to: `0x${string}` | null;
15903
15976
  gasPrice?: undefined | undefined;
15977
+ maxFeePerBlobGas?: `0x${string}` | undefined;
15978
+ maxFeePerGas?: `0x${string}` | undefined;
15979
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
15980
+ accessList?: import("viem").AccessList | undefined;
15981
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
15982
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
15983
+ blobVersionedHashes: readonly import("viem").Hex[];
15984
+ kzg?: undefined;
15985
+ authorizationList?: undefined;
15986
+ feeCurrency?: `0x${string}` | undefined;
15987
+ } | {
15988
+ type?: "0x3" | undefined;
15989
+ data?: `0x${string}` | undefined;
15990
+ value?: `0x${string}` | undefined;
15991
+ gas?: `0x${string}` | undefined;
15992
+ from?: `0x${string}` | undefined;
15993
+ nonce?: `0x${string}` | undefined;
15994
+ to: `0x${string}` | null;
15995
+ gasPrice?: undefined | undefined;
15996
+ maxFeePerBlobGas?: `0x${string}` | undefined;
15904
15997
  maxFeePerGas?: `0x${string}` | undefined;
15905
15998
  maxPriorityFeePerGas?: `0x${string}` | undefined;
15906
- maxFeePerBlobGas: `0x${string}`;
15907
15999
  accessList?: import("viem").AccessList | undefined;
16000
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
15908
16001
  blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
15909
16002
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
15910
16003
  kzg?: import("viem").Kzg | undefined;
15911
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
15912
16004
  authorizationList?: undefined;
15913
16005
  feeCurrency?: `0x${string}` | undefined;
15914
16006
  } | {
@@ -15956,7 +16048,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15956
16048
  formatters: {
15957
16049
  readonly block: {
15958
16050
  exclude: [] | undefined;
15959
- format: (args: import("viem/chains").CeloRpcBlock) => {
16051
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
15960
16052
  baseFeePerGas: bigint | null;
15961
16053
  blobGasUsed: bigint;
15962
16054
  difficulty: bigint;
@@ -15989,7 +16081,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15989
16081
  };
15990
16082
  readonly transaction: {
15991
16083
  exclude: [] | undefined;
15992
- format: (args: import("viem/chains").CeloRpcTransaction) => ({
16084
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
15993
16085
  r: import("viem").Hex;
15994
16086
  s: import("viem").Hex;
15995
16087
  v: bigint;
@@ -16230,8 +16322,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
16230
16322
  mint?: bigint | undefined | undefined;
16231
16323
  sourceHash: import("viem").Hex;
16232
16324
  type: "deposit";
16233
- accessList?: undefined;
16234
16325
  blobVersionedHashes?: undefined;
16326
+ accessList?: undefined;
16235
16327
  authorizationList?: undefined;
16236
16328
  chainId?: undefined;
16237
16329
  feeCurrency?: undefined;
@@ -16242,7 +16334,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
16242
16334
  };
16243
16335
  readonly transactionRequest: {
16244
16336
  exclude: [] | undefined;
16245
- format: (args: import("viem/chains").CeloTransactionRequest) => ({
16337
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
16246
16338
  data?: `0x${string}` | undefined;
16247
16339
  from?: `0x${string}` | undefined;
16248
16340
  gas?: `0x${string}` | undefined;
@@ -16254,10 +16346,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
16254
16346
  maxFeePerBlobGas?: undefined | undefined;
16255
16347
  maxFeePerGas?: undefined | undefined;
16256
16348
  maxPriorityFeePerGas?: undefined | undefined;
16257
- accessList?: undefined;
16258
16349
  blobs?: undefined;
16259
16350
  blobVersionedHashes?: undefined;
16260
16351
  kzg?: undefined;
16352
+ accessList?: undefined;
16261
16353
  sidecars?: undefined;
16262
16354
  authorizationList?: undefined;
16263
16355
  feeCurrency?: `0x${string}` | undefined;
@@ -16308,14 +16400,33 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
16308
16400
  nonce?: `0x${string}` | undefined;
16309
16401
  to: `0x${string}` | null;
16310
16402
  gasPrice?: undefined | undefined;
16403
+ maxFeePerBlobGas?: `0x${string}` | undefined;
16311
16404
  maxFeePerGas?: `0x${string}` | undefined;
16312
16405
  maxPriorityFeePerGas?: `0x${string}` | undefined;
16313
- maxFeePerBlobGas: `0x${string}`;
16314
16406
  accessList?: import("viem").AccessList | undefined;
16407
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
16408
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
16409
+ blobVersionedHashes: readonly import("viem").Hex[];
16410
+ kzg?: undefined;
16411
+ authorizationList?: undefined;
16412
+ feeCurrency?: `0x${string}` | undefined;
16413
+ } | {
16414
+ type?: "0x3" | undefined;
16415
+ data?: `0x${string}` | undefined;
16416
+ value?: `0x${string}` | undefined;
16417
+ gas?: `0x${string}` | undefined;
16418
+ from?: `0x${string}` | undefined;
16419
+ nonce?: `0x${string}` | undefined;
16420
+ to: `0x${string}` | null;
16421
+ gasPrice?: undefined | undefined;
16422
+ maxFeePerBlobGas?: `0x${string}` | undefined;
16423
+ maxFeePerGas?: `0x${string}` | undefined;
16424
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
16425
+ accessList?: import("viem").AccessList | undefined;
16426
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
16315
16427
  blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
16316
16428
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
16317
16429
  kzg?: import("viem").Kzg | undefined;
16318
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
16319
16430
  authorizationList?: undefined;
16320
16431
  feeCurrency?: `0x${string}` | undefined;
16321
16432
  } | {
@@ -17257,7 +17368,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
17257
17368
  formatters: {
17258
17369
  readonly block: {
17259
17370
  exclude: [] | undefined;
17260
- format: (args: import("viem/chains").OpStackRpcBlock) => {
17371
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
17261
17372
  baseFeePerGas: bigint | null;
17262
17373
  blobGasUsed: bigint;
17263
17374
  difficulty: bigint;
@@ -17290,7 +17401,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
17290
17401
  };
17291
17402
  readonly transaction: {
17292
17403
  exclude: [] | undefined;
17293
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
17404
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
17294
17405
  blockHash: `0x${string}` | null;
17295
17406
  blockNumber: bigint | null;
17296
17407
  from: import("abitype").Address;
@@ -17459,7 +17570,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
17459
17570
  };
17460
17571
  readonly transactionReceipt: {
17461
17572
  exclude: [] | undefined;
17462
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
17573
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
17463
17574
  blobGasPrice?: bigint | undefined;
17464
17575
  blobGasUsed?: bigint | undefined;
17465
17576
  blockHash: import("viem").Hash;
@@ -18235,7 +18346,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
18235
18346
  formatters: {
18236
18347
  readonly block: {
18237
18348
  exclude: [] | undefined;
18238
- format: (args: import("viem/chains").OpStackRpcBlock) => {
18349
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
18239
18350
  baseFeePerGas: bigint | null;
18240
18351
  blobGasUsed: bigint;
18241
18352
  difficulty: bigint;
@@ -18268,7 +18379,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
18268
18379
  };
18269
18380
  readonly transaction: {
18270
18381
  exclude: [] | undefined;
18271
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
18382
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
18272
18383
  blockHash: `0x${string}` | null;
18273
18384
  blockNumber: bigint | null;
18274
18385
  from: import("abitype").Address;
@@ -18437,7 +18548,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
18437
18548
  };
18438
18549
  readonly transactionReceipt: {
18439
18550
  exclude: [] | undefined;
18440
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
18551
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
18441
18552
  blobGasPrice?: bigint | undefined;
18442
18553
  blobGasUsed?: bigint | undefined;
18443
18554
  blockHash: import("viem").Hash;
@@ -18654,9 +18765,6 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
18654
18765
  multicall3: {
18655
18766
  address: "0xcA11bde05977b3631167028862bE2a173976CA11";
18656
18767
  };
18657
- ensRegistry?: ChainContract | undefined;
18658
- ensUniversalResolver?: ChainContract | undefined;
18659
- erc6492Verifier?: ChainContract | undefined;
18660
18768
  };
18661
18769
  blockExplorers: {
18662
18770
  readonly default: {
@@ -18664,7 +18772,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
18664
18772
  readonly url: "https://plasmascan.to";
18665
18773
  };
18666
18774
  };
18667
- blockTime?: number | undefined | undefined | undefined;
18775
+ blockTime: 1000;
18668
18776
  ensTlds?: readonly string[] | undefined;
18669
18777
  id: 9745;
18670
18778
  nativeCurrency: {