@gfxlabs/oku-chains 1.4.6 → 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;
2384
+ maxFeePerGas?: `0x${string}` | undefined;
2385
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
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;
2383
2403
  maxFeePerGas?: `0x${string}` | undefined;
2384
2404
  maxPriorityFeePerGas?: `0x${string}` | undefined;
2385
- maxFeePerBlobGas: `0x${string}`;
2386
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;
2793
2813
  maxFeePerGas?: `0x${string}` | undefined;
2794
2814
  maxPriorityFeePerGas?: `0x${string}` | undefined;
2795
- maxFeePerBlobGas: `0x${string}`;
2796
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;
2832
+ maxFeePerGas?: `0x${string}` | undefined;
2833
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
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
  } | {
@@ -2989,6 +3027,7 @@ declare const etherlink: Readonly<{
2989
3027
  tenderly: string;
2990
3028
  };
2991
3029
  markets: {
3030
+ kyberswap: string;
2992
3031
  threeroute: true;
2993
3032
  };
2994
3033
  bridges: {
@@ -3395,7 +3434,7 @@ declare const gnosis: Readonly<{
3395
3434
  readonly apiUrl: "https://api.gnosisscan.io/api";
3396
3435
  };
3397
3436
  };
3398
- blockTime?: number | undefined | undefined | undefined;
3437
+ blockTime: 5000;
3399
3438
  ensTlds?: readonly string[] | undefined;
3400
3439
  id: 100;
3401
3440
  name: "Gnosis";
@@ -4074,7 +4113,7 @@ declare const linea: Readonly<{
4074
4113
  readonly apiUrl: "https://api.lineascan.build/api";
4075
4114
  };
4076
4115
  };
4077
- blockTime?: number | undefined | undefined | undefined;
4116
+ blockTime: 2000;
4078
4117
  ensTlds: readonly [
4079
4118
  ".linea.eth"
4080
4119
  ];
@@ -4253,7 +4292,7 @@ declare const lisk: Readonly<{
4253
4292
  readonly block: {
4254
4293
  exclude: [
4255
4294
  ] | undefined;
4256
- format: (args: import("viem/chains").OpStackRpcBlock) => {
4295
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
4257
4296
  baseFeePerGas: bigint | null;
4258
4297
  blobGasUsed: bigint;
4259
4298
  difficulty: bigint;
@@ -4287,7 +4326,7 @@ declare const lisk: Readonly<{
4287
4326
  readonly transaction: {
4288
4327
  exclude: [
4289
4328
  ] | undefined;
4290
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
4329
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
4291
4330
  blockHash: `0x${string}` | null;
4292
4331
  blockNumber: bigint | null;
4293
4332
  from: import("abitype").Address;
@@ -4457,7 +4496,7 @@ declare const lisk: Readonly<{
4457
4496
  readonly transactionReceipt: {
4458
4497
  exclude: [
4459
4498
  ] | undefined;
4460
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
4499
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
4461
4500
  blobGasPrice?: bigint | undefined;
4462
4501
  blobGasUsed?: bigint | undefined;
4463
4502
  blockHash: import("viem").Hash;
@@ -5228,7 +5267,7 @@ declare const metal: Readonly<{
5228
5267
  readonly block: {
5229
5268
  exclude: [
5230
5269
  ] | undefined;
5231
- format: (args: import("viem/chains").OpStackRpcBlock) => {
5270
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
5232
5271
  baseFeePerGas: bigint | null;
5233
5272
  blobGasUsed: bigint;
5234
5273
  difficulty: bigint;
@@ -5262,7 +5301,7 @@ declare const metal: Readonly<{
5262
5301
  readonly transaction: {
5263
5302
  exclude: [
5264
5303
  ] | undefined;
5265
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
5304
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
5266
5305
  blockHash: `0x${string}` | null;
5267
5306
  blockNumber: bigint | null;
5268
5307
  from: import("abitype").Address;
@@ -5432,7 +5471,7 @@ declare const metal: Readonly<{
5432
5471
  readonly transactionReceipt: {
5433
5472
  exclude: [
5434
5473
  ] | undefined;
5435
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
5474
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
5436
5475
  blobGasPrice?: bigint | undefined;
5437
5476
  blobGasUsed?: bigint | undefined;
5438
5477
  blockHash: import("viem").Hash;
@@ -5958,7 +5997,7 @@ declare const optimism: Readonly<{
5958
5997
  readonly block: {
5959
5998
  exclude: [
5960
5999
  ] | undefined;
5961
- format: (args: import("viem/chains").OpStackRpcBlock) => {
6000
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
5962
6001
  baseFeePerGas: bigint | null;
5963
6002
  blobGasUsed: bigint;
5964
6003
  difficulty: bigint;
@@ -5992,7 +6031,7 @@ declare const optimism: Readonly<{
5992
6031
  readonly transaction: {
5993
6032
  exclude: [
5994
6033
  ] | undefined;
5995
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
6034
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
5996
6035
  blockHash: `0x${string}` | null;
5997
6036
  blockNumber: bigint | null;
5998
6037
  from: import("abitype").Address;
@@ -6162,7 +6201,7 @@ declare const optimism: Readonly<{
6162
6201
  readonly transactionReceipt: {
6163
6202
  exclude: [
6164
6203
  ] | undefined;
6165
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
6204
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
6166
6205
  blobGasPrice?: bigint | undefined;
6167
6206
  blobGasUsed?: bigint | undefined;
6168
6207
  blockHash: import("viem").Hash;
@@ -6276,9 +6315,6 @@ declare const plasma: Readonly<{
6276
6315
  multicall3: {
6277
6316
  address: "0xcA11bde05977b3631167028862bE2a173976CA11";
6278
6317
  };
6279
- ensRegistry?: import("viem").ChainContract | undefined;
6280
- ensUniversalResolver?: import("viem").ChainContract | undefined;
6281
- erc6492Verifier?: import("viem").ChainContract | undefined;
6282
6318
  };
6283
6319
  blockExplorers: {
6284
6320
  readonly default: {
@@ -6286,7 +6322,7 @@ declare const plasma: Readonly<{
6286
6322
  readonly url: "https://plasmascan.to";
6287
6323
  };
6288
6324
  };
6289
- blockTime?: number | undefined | undefined | undefined;
6325
+ blockTime: 1000;
6290
6326
  ensTlds?: readonly string[] | undefined;
6291
6327
  id: 9745;
6292
6328
  nativeCurrency: {
@@ -6475,7 +6511,7 @@ declare const polygon: Readonly<{
6475
6511
  readonly apiUrl: "https://api.polygonscan.com/api";
6476
6512
  };
6477
6513
  };
6478
- blockTime?: number | undefined | undefined | undefined;
6514
+ blockTime: 2000;
6479
6515
  ensTlds?: readonly string[] | undefined;
6480
6516
  id: 137;
6481
6517
  name: "Polygon";
@@ -7009,7 +7045,7 @@ declare const scroll: Readonly<{
7009
7045
  readonly apiUrl: "https://api.scrollscan.com/api";
7010
7046
  };
7011
7047
  };
7012
- blockTime?: number | undefined | undefined | undefined;
7048
+ blockTime: 3000;
7013
7049
  ensTlds?: readonly string[] | undefined;
7014
7050
  id: 534352;
7015
7051
  name: "Scroll";
@@ -7909,7 +7945,7 @@ declare const unichain: Readonly<{
7909
7945
  readonly block: {
7910
7946
  exclude: [
7911
7947
  ] | undefined;
7912
- format: (args: import("viem/chains").OpStackRpcBlock) => {
7948
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
7913
7949
  baseFeePerGas: bigint | null;
7914
7950
  blobGasUsed: bigint;
7915
7951
  difficulty: bigint;
@@ -7943,7 +7979,7 @@ declare const unichain: Readonly<{
7943
7979
  readonly transaction: {
7944
7980
  exclude: [
7945
7981
  ] | undefined;
7946
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
7982
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
7947
7983
  blockHash: `0x${string}` | null;
7948
7984
  blockNumber: bigint | null;
7949
7985
  from: import("abitype").Address;
@@ -8113,7 +8149,7 @@ declare const unichain: Readonly<{
8113
8149
  readonly transactionReceipt: {
8114
8150
  exclude: [
8115
8151
  ] | undefined;
8116
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
8152
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
8117
8153
  blobGasPrice?: bigint | undefined;
8118
8154
  blobGasUsed?: bigint | undefined;
8119
8155
  blockHash: import("viem").Hash;
@@ -8315,7 +8351,7 @@ declare const worldchain: Readonly<{
8315
8351
  readonly block: {
8316
8352
  exclude: [
8317
8353
  ] | undefined;
8318
- format: (args: import("viem/chains").OpStackRpcBlock) => {
8354
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
8319
8355
  baseFeePerGas: bigint | null;
8320
8356
  blobGasUsed: bigint;
8321
8357
  difficulty: bigint;
@@ -8349,7 +8385,7 @@ declare const worldchain: Readonly<{
8349
8385
  readonly transaction: {
8350
8386
  exclude: [
8351
8387
  ] | undefined;
8352
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
8388
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
8353
8389
  blockHash: `0x${string}` | null;
8354
8390
  blockNumber: bigint | null;
8355
8391
  from: import("viem").Address;
@@ -8519,7 +8555,7 @@ declare const worldchain: Readonly<{
8519
8555
  readonly transactionReceipt: {
8520
8556
  exclude: [
8521
8557
  ] | undefined;
8522
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
8558
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
8523
8559
  blobGasPrice?: bigint | undefined;
8524
8560
  blobGasUsed?: bigint | undefined;
8525
8561
  blockHash: import("viem").Hash;
@@ -8619,10 +8655,10 @@ declare const xdc: Readonly<{
8619
8655
  address: "0x951857744785e80e2de051c32ee7b25f9c458c42";
8620
8656
  } | {
8621
8657
  symbol: string;
8622
- address: "0x2a8e898b6242355c290e1f4fc966b8788729a4d4";
8658
+ address: "0xfa2958cb79b0491cc627c1557f441ef849ca8eb1";
8623
8659
  } | {
8624
8660
  symbol: string;
8625
- address: "0xfa2958cb79b0491cc627c1557f441ef849ca8eb1";
8661
+ address: "0x2a8e898b6242355c290e1f4fc966b8788729a4d4";
8626
8662
  })[];
8627
8663
  stables: ("0xfa2958cb79b0491cc627c1557f441ef849ca8eb1" | "0x2a8e898b6242355c290e1f4fc966b8788729a4d4" | "0xd4b5f10d61916bd6e0860144a91ac658de8a1437")[];
8628
8664
  watchlist: ("0x1e5aec37f6df6653c3342df75edd92beb3fb9846" | "0x9149b4e074f101ca0514b1d30fc78f181e21d409")[];
@@ -9067,7 +9103,7 @@ declare const zkSync: Readonly<{
9067
9103
  readonly block: {
9068
9104
  exclude: [
9069
9105
  ] | undefined;
9070
- format: (args: import("viem/chains").ZkSyncRpcBlock) => {
9106
+ format: (args: import("viem/chains").ZkSyncRpcBlock, action?: string | undefined) => {
9071
9107
  baseFeePerGas: bigint | null;
9072
9108
  blobGasUsed: bigint;
9073
9109
  difficulty: bigint;
@@ -9103,7 +9139,7 @@ declare const zkSync: Readonly<{
9103
9139
  readonly transaction: {
9104
9140
  exclude: [
9105
9141
  ] | undefined;
9106
- format: (args: import("viem/chains").ZkSyncRpcTransaction) => ({
9142
+ format: (args: import("viem/chains").ZkSyncRpcTransaction, action?: string | undefined) => ({
9107
9143
  r: import("viem").Hex;
9108
9144
  s: import("viem").Hex;
9109
9145
  v: bigint;
@@ -9290,7 +9326,7 @@ declare const zkSync: Readonly<{
9290
9326
  readonly transactionReceipt: {
9291
9327
  exclude: [
9292
9328
  ] | undefined;
9293
- format: (args: import("viem/chains").ZkSyncRpcTransactionReceipt) => {
9329
+ format: (args: import("viem/chains").ZkSyncRpcTransactionReceipt, action?: string | undefined) => {
9294
9330
  contractAddress: import("abitype").Address | null | undefined;
9295
9331
  type: import("viem/chains").ZkSyncTransactionType;
9296
9332
  status: "success" | "reverted";
@@ -9316,7 +9352,7 @@ declare const zkSync: Readonly<{
9316
9352
  };
9317
9353
  readonly transactionRequest: {
9318
9354
  exclude: ("paymaster" | "gasPerPubdata" | "factoryDeps" | "paymasterInput" | "customSignature")[] | undefined;
9319
- format: (args: import("viem/chains").ZkSyncTransactionRequest) => ({
9355
+ format: (args: import("viem/chains").ZkSyncTransactionRequest, action?: string | undefined) => ({
9320
9356
  data?: `0x${string}` | undefined;
9321
9357
  from?: `0x${string}` | undefined;
9322
9358
  gas?: `0x${string}` | undefined;
@@ -9328,10 +9364,10 @@ declare const zkSync: Readonly<{
9328
9364
  maxFeePerBlobGas?: undefined | undefined;
9329
9365
  maxFeePerGas?: undefined | undefined;
9330
9366
  maxPriorityFeePerGas?: undefined | undefined;
9331
- accessList?: undefined;
9332
9367
  blobs?: undefined;
9333
9368
  blobVersionedHashes?: undefined;
9334
9369
  kzg?: undefined;
9370
+ accessList?: undefined;
9335
9371
  sidecars?: undefined;
9336
9372
  authorizationList?: undefined;
9337
9373
  eip712Meta?: undefined | undefined;
@@ -9382,14 +9418,33 @@ declare const zkSync: Readonly<{
9382
9418
  nonce?: `0x${string}` | undefined;
9383
9419
  to: `0x${string}` | null;
9384
9420
  gasPrice?: undefined | undefined;
9421
+ maxFeePerBlobGas?: `0x${string}` | undefined;
9422
+ maxFeePerGas?: `0x${string}` | undefined;
9423
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
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;
9385
9441
  maxFeePerGas?: `0x${string}` | undefined;
9386
9442
  maxPriorityFeePerGas?: `0x${string}` | undefined;
9387
- maxFeePerBlobGas: `0x${string}`;
9388
9443
  accessList?: import("viem").AccessList | undefined;
9444
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
9389
9445
  blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
9390
9446
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
9391
9447
  kzg?: import("viem").Kzg | undefined;
9392
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
9393
9448
  authorizationList?: undefined;
9394
9449
  eip712Meta?: undefined | undefined;
9395
9450
  } | {
@@ -10055,7 +10110,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
10055
10110
  formatters: {
10056
10111
  readonly block: {
10057
10112
  exclude: [] | undefined;
10058
- format: (args: import("viem/chains").OpStackRpcBlock) => {
10113
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
10059
10114
  baseFeePerGas: bigint | null;
10060
10115
  blobGasUsed: bigint;
10061
10116
  difficulty: bigint;
@@ -10088,7 +10143,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
10088
10143
  };
10089
10144
  readonly transaction: {
10090
10145
  exclude: [] | undefined;
10091
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
10146
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
10092
10147
  blockHash: `0x${string}` | null;
10093
10148
  blockNumber: bigint | null;
10094
10149
  from: import("abitype").Address;
@@ -10257,7 +10312,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
10257
10312
  };
10258
10313
  readonly transactionReceipt: {
10259
10314
  exclude: [] | undefined;
10260
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
10315
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
10261
10316
  blobGasPrice?: bigint | undefined;
10262
10317
  blobGasUsed?: bigint | undefined;
10263
10318
  blockHash: import("viem").Hash;
@@ -10585,7 +10640,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
10585
10640
  formatters: {
10586
10641
  readonly block: {
10587
10642
  exclude: [] | undefined;
10588
- format: (args: import("viem/chains").OpStackRpcBlock) => {
10643
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
10589
10644
  baseFeePerGas: bigint | null;
10590
10645
  blobGasUsed: bigint;
10591
10646
  difficulty: bigint;
@@ -10618,7 +10673,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
10618
10673
  };
10619
10674
  readonly transaction: {
10620
10675
  exclude: [] | undefined;
10621
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
10676
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
10622
10677
  blockHash: `0x${string}` | null;
10623
10678
  blockNumber: bigint | null;
10624
10679
  from: import("abitype").Address;
@@ -10787,7 +10842,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
10787
10842
  };
10788
10843
  readonly transactionReceipt: {
10789
10844
  exclude: [] | undefined;
10790
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
10845
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
10791
10846
  blobGasPrice?: bigint | undefined;
10792
10847
  blobGasUsed?: bigint | undefined;
10793
10848
  blockHash: import("viem").Hash;
@@ -11700,7 +11755,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
11700
11755
  formatters: {
11701
11756
  readonly block: {
11702
11757
  exclude: [] | undefined;
11703
- format: (args: import("viem/chains").OpStackRpcBlock) => {
11758
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
11704
11759
  baseFeePerGas: bigint | null;
11705
11760
  blobGasUsed: bigint;
11706
11761
  difficulty: bigint;
@@ -11733,7 +11788,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
11733
11788
  };
11734
11789
  readonly transaction: {
11735
11790
  exclude: [] | undefined;
11736
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
11791
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
11737
11792
  blockHash: `0x${string}` | null;
11738
11793
  blockNumber: bigint | null;
11739
11794
  from: import("abitype").Address;
@@ -11902,7 +11957,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
11902
11957
  };
11903
11958
  readonly transactionReceipt: {
11904
11959
  exclude: [] | undefined;
11905
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
11960
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
11906
11961
  blobGasPrice?: bigint | undefined;
11907
11962
  blobGasUsed?: bigint | undefined;
11908
11963
  blockHash: import("viem").Hash;
@@ -12097,7 +12152,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12097
12152
  readonly apiUrl: "https://api.polygonscan.com/api";
12098
12153
  };
12099
12154
  };
12100
- blockTime?: number | undefined | undefined | undefined;
12155
+ blockTime: 2000;
12101
12156
  ensTlds?: readonly string[] | undefined;
12102
12157
  id: 137;
12103
12158
  name: "Polygon";
@@ -12401,7 +12456,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12401
12456
  readonly apiUrl: "https://api.scrollscan.com/api";
12402
12457
  };
12403
12458
  };
12404
- blockTime?: number | undefined | undefined | undefined;
12459
+ blockTime: 3000;
12405
12460
  ensTlds?: readonly string[] | undefined;
12406
12461
  id: 534352;
12407
12462
  name: "Scroll";
@@ -12703,7 +12758,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12703
12758
  formatters: {
12704
12759
  readonly block: {
12705
12760
  exclude: [] | undefined;
12706
- format: (args: import("viem/zksync").ZkSyncRpcBlock) => {
12761
+ format: (args: import("viem/zksync").ZkSyncRpcBlock, action?: string | undefined) => {
12707
12762
  baseFeePerGas: bigint | null;
12708
12763
  blobGasUsed: bigint;
12709
12764
  difficulty: bigint;
@@ -12738,7 +12793,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12738
12793
  };
12739
12794
  readonly transaction: {
12740
12795
  exclude: [] | undefined;
12741
- format: (args: import("viem/zksync").ZkSyncRpcTransaction) => ({
12796
+ format: (args: import("viem/zksync").ZkSyncRpcTransaction, action?: string | undefined) => ({
12742
12797
  r: import("viem").Hex;
12743
12798
  s: import("viem").Hex;
12744
12799
  v: bigint;
@@ -12924,7 +12979,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12924
12979
  };
12925
12980
  readonly transactionReceipt: {
12926
12981
  exclude: [] | undefined;
12927
- format: (args: import("viem/zksync").ZkSyncRpcTransactionReceipt) => {
12982
+ format: (args: import("viem/zksync").ZkSyncRpcTransactionReceipt, action?: string | undefined) => {
12928
12983
  contractAddress: import("abitype").Address | null | undefined;
12929
12984
  type: import("viem/zksync").ZkSyncTransactionType;
12930
12985
  status: "success" | "reverted";
@@ -12950,7 +13005,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12950
13005
  };
12951
13006
  readonly transactionRequest: {
12952
13007
  exclude: ("paymaster" | "gasPerPubdata" | "factoryDeps" | "paymasterInput" | "customSignature")[] | undefined;
12953
- format: (args: import("viem/zksync").ZkSyncTransactionRequest) => ({
13008
+ format: (args: import("viem/zksync").ZkSyncTransactionRequest, action?: string | undefined) => ({
12954
13009
  data?: `0x${string}` | undefined;
12955
13010
  from?: `0x${string}` | undefined;
12956
13011
  gas?: `0x${string}` | undefined;
@@ -12962,10 +13017,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
12962
13017
  maxFeePerBlobGas?: undefined | undefined;
12963
13018
  maxFeePerGas?: undefined | undefined;
12964
13019
  maxPriorityFeePerGas?: undefined | undefined;
12965
- accessList?: undefined;
12966
13020
  blobs?: undefined;
12967
13021
  blobVersionedHashes?: undefined;
12968
13022
  kzg?: undefined;
13023
+ accessList?: undefined;
12969
13024
  sidecars?: undefined;
12970
13025
  authorizationList?: undefined;
12971
13026
  eip712Meta?: undefined | undefined;
@@ -13016,14 +13071,33 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
13016
13071
  nonce?: `0x${string}` | undefined;
13017
13072
  to: `0x${string}` | null;
13018
13073
  gasPrice?: undefined | undefined;
13074
+ maxFeePerBlobGas?: `0x${string}` | undefined;
13075
+ maxFeePerGas?: `0x${string}` | undefined;
13076
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
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;
13019
13094
  maxFeePerGas?: `0x${string}` | undefined;
13020
13095
  maxPriorityFeePerGas?: `0x${string}` | undefined;
13021
- maxFeePerBlobGas: `0x${string}`;
13022
13096
  accessList?: import("viem").AccessList | undefined;
13097
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
13023
13098
  blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
13024
13099
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
13025
13100
  kzg?: import("viem").Kzg | undefined;
13026
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
13027
13101
  authorizationList?: undefined;
13028
13102
  eip712Meta?: undefined | undefined;
13029
13103
  } | {
@@ -13341,7 +13415,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
13341
13415
  readonly apiUrl: "https://api.lineascan.build/api";
13342
13416
  };
13343
13417
  };
13344
- blockTime?: number | undefined | undefined | undefined;
13418
+ blockTime: 2000;
13345
13419
  ensTlds: readonly [".linea.eth"];
13346
13420
  id: 59144;
13347
13421
  nativeCurrency: {
@@ -13967,7 +14041,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
13967
14041
  formatters: {
13968
14042
  readonly block: {
13969
14043
  exclude: [] | undefined;
13970
- format: (args: import("viem/chains").OpStackRpcBlock) => {
14044
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
13971
14045
  baseFeePerGas: bigint | null;
13972
14046
  blobGasUsed: bigint;
13973
14047
  difficulty: bigint;
@@ -14000,7 +14074,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14000
14074
  };
14001
14075
  readonly transaction: {
14002
14076
  exclude: [] | undefined;
14003
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
14077
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
14004
14078
  blockHash: `0x${string}` | null;
14005
14079
  blockNumber: bigint | null;
14006
14080
  from: import("abitype").Address;
@@ -14169,7 +14243,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14169
14243
  };
14170
14244
  readonly transactionReceipt: {
14171
14245
  exclude: [] | undefined;
14172
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
14246
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
14173
14247
  blobGasPrice?: bigint | undefined;
14174
14248
  blobGasUsed?: bigint | undefined;
14175
14249
  blockHash: import("viem").Hash;
@@ -14366,7 +14440,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14366
14440
  formatters: {
14367
14441
  readonly block: {
14368
14442
  exclude: [] | undefined;
14369
- format: (args: import("viem/chains").OpStackRpcBlock) => {
14443
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
14370
14444
  baseFeePerGas: bigint | null;
14371
14445
  blobGasUsed: bigint;
14372
14446
  difficulty: bigint;
@@ -14399,7 +14473,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14399
14473
  };
14400
14474
  readonly transaction: {
14401
14475
  exclude: [] | undefined;
14402
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
14476
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
14403
14477
  blockHash: `0x${string}` | null;
14404
14478
  blockNumber: bigint | null;
14405
14479
  from: import("abitype").Address;
@@ -14568,7 +14642,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14568
14642
  };
14569
14643
  readonly transactionReceipt: {
14570
14644
  exclude: [] | undefined;
14571
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
14645
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
14572
14646
  blobGasPrice?: bigint | undefined;
14573
14647
  blobGasUsed?: bigint | undefined;
14574
14648
  blockHash: import("viem").Hash;
@@ -14743,7 +14817,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14743
14817
  readonly apiUrl: "https://api.gnosisscan.io/api";
14744
14818
  };
14745
14819
  };
14746
- blockTime?: number | undefined | undefined | undefined;
14820
+ blockTime: 5000;
14747
14821
  ensTlds?: readonly string[] | undefined;
14748
14822
  id: 100;
14749
14823
  name: "Gnosis";
@@ -14911,7 +14985,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14911
14985
  formatters: {
14912
14986
  readonly block: {
14913
14987
  exclude: [] | undefined;
14914
- format: (args: import("viem/chains").OpStackRpcBlock) => {
14988
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
14915
14989
  baseFeePerGas: bigint | null;
14916
14990
  blobGasUsed: bigint;
14917
14991
  difficulty: bigint;
@@ -14944,7 +15018,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
14944
15018
  };
14945
15019
  readonly transaction: {
14946
15020
  exclude: [] | undefined;
14947
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
15021
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
14948
15022
  blockHash: `0x${string}` | null;
14949
15023
  blockNumber: bigint | null;
14950
15024
  from: import("abitype").Address;
@@ -15113,7 +15187,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15113
15187
  };
15114
15188
  readonly transactionReceipt: {
15115
15189
  exclude: [] | undefined;
15116
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
15190
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
15117
15191
  blobGasPrice?: bigint | undefined;
15118
15192
  blobGasUsed?: bigint | undefined;
15119
15193
  blockHash: import("viem").Hash;
@@ -15548,7 +15622,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15548
15622
  fees: import("viem").ChainFees<{
15549
15623
  readonly block: {
15550
15624
  exclude: [] | undefined;
15551
- format: (args: import("viem/chains").CeloRpcBlock) => {
15625
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
15552
15626
  baseFeePerGas: bigint | null;
15553
15627
  blobGasUsed: bigint;
15554
15628
  difficulty: bigint;
@@ -15581,7 +15655,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15581
15655
  };
15582
15656
  readonly transaction: {
15583
15657
  exclude: [] | undefined;
15584
- format: (args: import("viem/chains").CeloRpcTransaction) => ({
15658
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
15585
15659
  r: import("viem").Hex;
15586
15660
  s: import("viem").Hex;
15587
15661
  v: bigint;
@@ -15822,8 +15896,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15822
15896
  mint?: bigint | undefined | undefined;
15823
15897
  sourceHash: import("viem").Hex;
15824
15898
  type: "deposit";
15825
- accessList?: undefined;
15826
15899
  blobVersionedHashes?: undefined;
15900
+ accessList?: undefined;
15827
15901
  authorizationList?: undefined;
15828
15902
  chainId?: undefined;
15829
15903
  feeCurrency?: undefined;
@@ -15834,7 +15908,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15834
15908
  };
15835
15909
  readonly transactionRequest: {
15836
15910
  exclude: [] | undefined;
15837
- format: (args: import("viem/chains").CeloTransactionRequest) => ({
15911
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
15838
15912
  data?: `0x${string}` | undefined;
15839
15913
  from?: `0x${string}` | undefined;
15840
15914
  gas?: `0x${string}` | undefined;
@@ -15846,10 +15920,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15846
15920
  maxFeePerBlobGas?: undefined | undefined;
15847
15921
  maxFeePerGas?: undefined | undefined;
15848
15922
  maxPriorityFeePerGas?: undefined | undefined;
15849
- accessList?: undefined;
15850
15923
  blobs?: undefined;
15851
15924
  blobVersionedHashes?: undefined;
15852
15925
  kzg?: undefined;
15926
+ accessList?: undefined;
15853
15927
  sidecars?: undefined;
15854
15928
  authorizationList?: undefined;
15855
15929
  feeCurrency?: `0x${string}` | undefined;
@@ -15900,14 +15974,33 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15900
15974
  nonce?: `0x${string}` | undefined;
15901
15975
  to: `0x${string}` | null;
15902
15976
  gasPrice?: undefined | undefined;
15977
+ maxFeePerBlobGas?: `0x${string}` | undefined;
15903
15978
  maxFeePerGas?: `0x${string}` | undefined;
15904
15979
  maxPriorityFeePerGas?: `0x${string}` | undefined;
15905
- maxFeePerBlobGas: `0x${string}`;
15906
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;
15997
+ maxFeePerGas?: `0x${string}` | undefined;
15998
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
15999
+ accessList?: import("viem").AccessList | undefined;
16000
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
15907
16001
  blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
15908
16002
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
15909
16003
  kzg?: import("viem").Kzg | undefined;
15910
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
15911
16004
  authorizationList?: undefined;
15912
16005
  feeCurrency?: `0x${string}` | undefined;
15913
16006
  } | {
@@ -15955,7 +16048,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15955
16048
  formatters: {
15956
16049
  readonly block: {
15957
16050
  exclude: [] | undefined;
15958
- format: (args: import("viem/chains").CeloRpcBlock) => {
16051
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
15959
16052
  baseFeePerGas: bigint | null;
15960
16053
  blobGasUsed: bigint;
15961
16054
  difficulty: bigint;
@@ -15988,7 +16081,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
15988
16081
  };
15989
16082
  readonly transaction: {
15990
16083
  exclude: [] | undefined;
15991
- format: (args: import("viem/chains").CeloRpcTransaction) => ({
16084
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
15992
16085
  r: import("viem").Hex;
15993
16086
  s: import("viem").Hex;
15994
16087
  v: bigint;
@@ -16229,8 +16322,8 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
16229
16322
  mint?: bigint | undefined | undefined;
16230
16323
  sourceHash: import("viem").Hex;
16231
16324
  type: "deposit";
16232
- accessList?: undefined;
16233
16325
  blobVersionedHashes?: undefined;
16326
+ accessList?: undefined;
16234
16327
  authorizationList?: undefined;
16235
16328
  chainId?: undefined;
16236
16329
  feeCurrency?: undefined;
@@ -16241,7 +16334,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
16241
16334
  };
16242
16335
  readonly transactionRequest: {
16243
16336
  exclude: [] | undefined;
16244
- format: (args: import("viem/chains").CeloTransactionRequest) => ({
16337
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
16245
16338
  data?: `0x${string}` | undefined;
16246
16339
  from?: `0x${string}` | undefined;
16247
16340
  gas?: `0x${string}` | undefined;
@@ -16253,10 +16346,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
16253
16346
  maxFeePerBlobGas?: undefined | undefined;
16254
16347
  maxFeePerGas?: undefined | undefined;
16255
16348
  maxPriorityFeePerGas?: undefined | undefined;
16256
- accessList?: undefined;
16257
16349
  blobs?: undefined;
16258
16350
  blobVersionedHashes?: undefined;
16259
16351
  kzg?: undefined;
16352
+ accessList?: undefined;
16260
16353
  sidecars?: undefined;
16261
16354
  authorizationList?: undefined;
16262
16355
  feeCurrency?: `0x${string}` | undefined;
@@ -16307,14 +16400,33 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
16307
16400
  nonce?: `0x${string}` | undefined;
16308
16401
  to: `0x${string}` | null;
16309
16402
  gasPrice?: undefined | undefined;
16403
+ maxFeePerBlobGas?: `0x${string}` | undefined;
16310
16404
  maxFeePerGas?: `0x${string}` | undefined;
16311
16405
  maxPriorityFeePerGas?: `0x${string}` | undefined;
16312
- maxFeePerBlobGas: `0x${string}`;
16313
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;
16314
16427
  blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
16315
16428
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
16316
16429
  kzg?: import("viem").Kzg | undefined;
16317
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
16318
16430
  authorizationList?: undefined;
16319
16431
  feeCurrency?: `0x${string}` | undefined;
16320
16432
  } | {
@@ -17256,7 +17368,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
17256
17368
  formatters: {
17257
17369
  readonly block: {
17258
17370
  exclude: [] | undefined;
17259
- format: (args: import("viem/chains").OpStackRpcBlock) => {
17371
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
17260
17372
  baseFeePerGas: bigint | null;
17261
17373
  blobGasUsed: bigint;
17262
17374
  difficulty: bigint;
@@ -17289,7 +17401,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
17289
17401
  };
17290
17402
  readonly transaction: {
17291
17403
  exclude: [] | undefined;
17292
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
17404
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
17293
17405
  blockHash: `0x${string}` | null;
17294
17406
  blockNumber: bigint | null;
17295
17407
  from: import("abitype").Address;
@@ -17458,7 +17570,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
17458
17570
  };
17459
17571
  readonly transactionReceipt: {
17460
17572
  exclude: [] | undefined;
17461
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
17573
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
17462
17574
  blobGasPrice?: bigint | undefined;
17463
17575
  blobGasUsed?: bigint | undefined;
17464
17576
  blockHash: import("viem").Hash;
@@ -17557,10 +17669,10 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
17557
17669
  address: "0x951857744785e80e2de051c32ee7b25f9c458c42";
17558
17670
  } | {
17559
17671
  symbol: string;
17560
- address: "0x2a8e898b6242355c290e1f4fc966b8788729a4d4";
17672
+ address: "0xfa2958cb79b0491cc627c1557f441ef849ca8eb1";
17561
17673
  } | {
17562
17674
  symbol: string;
17563
- address: "0xfa2958cb79b0491cc627c1557f441ef849ca8eb1";
17675
+ address: "0x2a8e898b6242355c290e1f4fc966b8788729a4d4";
17564
17676
  })[];
17565
17677
  stables: ("0xfa2958cb79b0491cc627c1557f441ef849ca8eb1" | "0x2a8e898b6242355c290e1f4fc966b8788729a4d4" | "0xd4b5f10d61916bd6e0860144a91ac658de8a1437")[];
17566
17678
  watchlist: ("0x1e5aec37f6df6653c3342df75edd92beb3fb9846" | "0x9149b4e074f101ca0514b1d30fc78f181e21d409")[];
@@ -17941,6 +18053,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
17941
18053
  tenderly: string;
17942
18054
  };
17943
18055
  markets: {
18056
+ kyberswap: string;
17944
18057
  threeroute: true;
17945
18058
  };
17946
18059
  bridges: {
@@ -18233,7 +18346,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
18233
18346
  formatters: {
18234
18347
  readonly block: {
18235
18348
  exclude: [] | undefined;
18236
- format: (args: import("viem/chains").OpStackRpcBlock) => {
18349
+ format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
18237
18350
  baseFeePerGas: bigint | null;
18238
18351
  blobGasUsed: bigint;
18239
18352
  difficulty: bigint;
@@ -18266,7 +18379,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
18266
18379
  };
18267
18380
  readonly transaction: {
18268
18381
  exclude: [] | undefined;
18269
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
18382
+ format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
18270
18383
  blockHash: `0x${string}` | null;
18271
18384
  blockNumber: bigint | null;
18272
18385
  from: import("abitype").Address;
@@ -18435,7 +18548,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
18435
18548
  };
18436
18549
  readonly transactionReceipt: {
18437
18550
  exclude: [] | undefined;
18438
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
18551
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
18439
18552
  blobGasPrice?: bigint | undefined;
18440
18553
  blobGasUsed?: bigint | undefined;
18441
18554
  blockHash: import("viem").Hash;
@@ -18652,9 +18765,6 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
18652
18765
  multicall3: {
18653
18766
  address: "0xcA11bde05977b3631167028862bE2a173976CA11";
18654
18767
  };
18655
- ensRegistry?: ChainContract | undefined;
18656
- ensUniversalResolver?: ChainContract | undefined;
18657
- erc6492Verifier?: ChainContract | undefined;
18658
18768
  };
18659
18769
  blockExplorers: {
18660
18770
  readonly default: {
@@ -18662,7 +18772,7 @@ declare const MAINNET_CHAINS: readonly [Readonly<{
18662
18772
  readonly url: "https://plasmascan.to";
18663
18773
  };
18664
18774
  };
18665
- blockTime?: number | undefined | undefined | undefined;
18775
+ blockTime: 1000;
18666
18776
  ensTlds?: readonly string[] | undefined;
18667
18777
  id: 9745;
18668
18778
  nativeCurrency: {