viem 2.55.18 → 2.55.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/_cjs/chains/definitions/morphTachyon.js +25 -0
  3. package/_cjs/chains/definitions/morphTachyon.js.map +1 -0
  4. package/_cjs/chains/definitions/morphTachyonTestnet.js +26 -0
  5. package/_cjs/chains/definitions/morphTachyonTestnet.js.map +1 -0
  6. package/_cjs/chains/definitions/ynxTestnet.js +26 -0
  7. package/_cjs/chains/definitions/ynxTestnet.js.map +1 -0
  8. package/_cjs/chains/index.js +13 -7
  9. package/_cjs/chains/index.js.map +1 -1
  10. package/_cjs/errors/version.js +1 -1
  11. package/_cjs/tempo/Abis.js +102 -1
  12. package/_cjs/tempo/Abis.js.map +1 -1
  13. package/_cjs/tempo/Account.js +188 -16
  14. package/_cjs/tempo/Account.js.map +1 -1
  15. package/_cjs/tempo/Addresses.js +2 -1
  16. package/_cjs/tempo/Addresses.js.map +1 -1
  17. package/_cjs/tempo/Decorator.js +8 -0
  18. package/_cjs/tempo/Decorator.js.map +1 -1
  19. package/_cjs/tempo/Formatters.js +1 -1
  20. package/_cjs/tempo/Formatters.js.map +1 -1
  21. package/_cjs/tempo/Selectors.js +7 -1
  22. package/_cjs/tempo/Selectors.js.map +1 -1
  23. package/_cjs/tempo/Transaction.js +31 -10
  24. package/_cjs/tempo/Transaction.js.map +1 -1
  25. package/_cjs/tempo/actions/accessKey.js +49 -8
  26. package/_cjs/tempo/actions/accessKey.js.map +1 -1
  27. package/_cjs/tempo/actions/index.js +2 -1
  28. package/_cjs/tempo/actions/index.js.map +1 -1
  29. package/_cjs/tempo/actions/multisig.js +95 -0
  30. package/_cjs/tempo/actions/multisig.js.map +1 -0
  31. package/_cjs/tempo/chainConfig.js +58 -29
  32. package/_cjs/tempo/chainConfig.js.map +1 -1
  33. package/_cjs/tempo/internal/multisig.js +56 -0
  34. package/_cjs/tempo/internal/multisig.js.map +1 -0
  35. package/_esm/chains/definitions/morphTachyon.js +22 -0
  36. package/_esm/chains/definitions/morphTachyon.js.map +1 -0
  37. package/_esm/chains/definitions/morphTachyonTestnet.js +23 -0
  38. package/_esm/chains/definitions/morphTachyonTestnet.js.map +1 -0
  39. package/_esm/chains/definitions/ynxTestnet.js +23 -0
  40. package/_esm/chains/definitions/ynxTestnet.js.map +1 -0
  41. package/_esm/chains/index.js +3 -0
  42. package/_esm/chains/index.js.map +1 -1
  43. package/_esm/errors/version.js +1 -1
  44. package/_esm/tempo/Abis.js +101 -0
  45. package/_esm/tempo/Abis.js.map +1 -1
  46. package/_esm/tempo/Account.js +196 -66
  47. package/_esm/tempo/Account.js.map +1 -1
  48. package/_esm/tempo/Addresses.js +1 -0
  49. package/_esm/tempo/Addresses.js.map +1 -1
  50. package/_esm/tempo/Decorator.js +8 -0
  51. package/_esm/tempo/Decorator.js.map +1 -1
  52. package/_esm/tempo/Formatters.js +3 -6
  53. package/_esm/tempo/Formatters.js.map +1 -1
  54. package/_esm/tempo/Selectors.js +6 -0
  55. package/_esm/tempo/Selectors.js.map +1 -1
  56. package/_esm/tempo/Transaction.js +31 -10
  57. package/_esm/tempo/Transaction.js.map +1 -1
  58. package/_esm/tempo/actions/accessKey.js +65 -23
  59. package/_esm/tempo/actions/accessKey.js.map +1 -1
  60. package/_esm/tempo/actions/index.js +1 -0
  61. package/_esm/tempo/actions/index.js.map +1 -1
  62. package/_esm/tempo/actions/multisig.js +245 -0
  63. package/_esm/tempo/actions/multisig.js.map +1 -0
  64. package/_esm/tempo/chainConfig.js +65 -35
  65. package/_esm/tempo/chainConfig.js.map +1 -1
  66. package/_esm/tempo/internal/multisig.js +56 -0
  67. package/_esm/tempo/internal/multisig.js.map +1 -0
  68. package/_types/chains/definitions/morphTachyon.d.ts +51 -0
  69. package/_types/chains/definitions/morphTachyon.d.ts.map +1 -0
  70. package/_types/chains/definitions/morphTachyonTestnet.d.ts +51 -0
  71. package/_types/chains/definitions/morphTachyonTestnet.d.ts.map +1 -0
  72. package/_types/chains/definitions/tempo.d.ts +30 -2
  73. package/_types/chains/definitions/tempo.d.ts.map +1 -1
  74. package/_types/chains/definitions/tempoDevnet.d.ts +30 -2
  75. package/_types/chains/definitions/tempoDevnet.d.ts.map +1 -1
  76. package/_types/chains/definitions/tempoLocalnet.d.ts +30 -2
  77. package/_types/chains/definitions/tempoLocalnet.d.ts.map +1 -1
  78. package/_types/chains/definitions/tempoModerato.d.ts +30 -2
  79. package/_types/chains/definitions/tempoModerato.d.ts.map +1 -1
  80. package/_types/chains/definitions/ynxTestnet.d.ts +51 -0
  81. package/_types/chains/definitions/ynxTestnet.d.ts.map +1 -0
  82. package/_types/chains/index.d.ts +3 -0
  83. package/_types/chains/index.d.ts.map +1 -1
  84. package/_types/errors/version.d.ts +1 -1
  85. package/_types/tempo/Abis.d.ts +321 -0
  86. package/_types/tempo/Abis.d.ts.map +1 -1
  87. package/_types/tempo/Account.d.ts +42 -26
  88. package/_types/tempo/Account.d.ts.map +1 -1
  89. package/_types/tempo/Addresses.d.ts +1 -0
  90. package/_types/tempo/Addresses.d.ts.map +1 -1
  91. package/_types/tempo/Decorator.d.ts +32 -0
  92. package/_types/tempo/Decorator.d.ts.map +1 -1
  93. package/_types/tempo/Formatters.d.ts.map +1 -1
  94. package/_types/tempo/Selectors.d.ts +6 -0
  95. package/_types/tempo/Selectors.d.ts.map +1 -1
  96. package/_types/tempo/Transaction.d.ts +17 -2
  97. package/_types/tempo/Transaction.d.ts.map +1 -1
  98. package/_types/tempo/actions/accessKey.d.ts +35 -17
  99. package/_types/tempo/actions/accessKey.d.ts.map +1 -1
  100. package/_types/tempo/actions/index.d.ts +1 -0
  101. package/_types/tempo/actions/index.d.ts.map +1 -1
  102. package/_types/tempo/actions/multisig.d.ts +472 -0
  103. package/_types/tempo/actions/multisig.d.ts.map +1 -0
  104. package/_types/tempo/chainConfig.d.ts +15 -1
  105. package/_types/tempo/chainConfig.d.ts.map +1 -1
  106. package/_types/tempo/internal/multisig.d.ts +13 -0
  107. package/_types/tempo/internal/multisig.d.ts.map +1 -0
  108. package/_types/tempo/zones/zone.d.ts +90 -6
  109. package/_types/tempo/zones/zone.d.ts.map +1 -1
  110. package/chains/definitions/morphTachyon.ts +22 -0
  111. package/chains/definitions/morphTachyonTestnet.ts +23 -0
  112. package/chains/definitions/ynxTestnet.ts +23 -0
  113. package/chains/index.ts +3 -0
  114. package/errors/version.ts +1 -1
  115. package/package.json +2 -2
  116. package/tempo/Abis.ts +102 -0
  117. package/tempo/Account.ts +329 -51
  118. package/tempo/Addresses.ts +1 -0
  119. package/tempo/Decorator.ts +50 -0
  120. package/tempo/Formatters.ts +4 -5
  121. package/tempo/Selectors.ts +7 -0
  122. package/tempo/Transaction.ts +52 -12
  123. package/tempo/actions/accessKey.ts +128 -32
  124. package/tempo/actions/index.ts +1 -0
  125. package/tempo/actions/multisig.ts +356 -0
  126. package/tempo/chainConfig.ts +82 -35
  127. package/tempo/internal/multisig.ts +72 -0
@@ -317,7 +317,9 @@ export declare const zone: (id: number) => {
317
317
  validBefore?: undefined;
318
318
  multisig?: undefined;
319
319
  multisigInit?: undefined;
320
+ multisigOwnerStates?: undefined;
320
321
  multisigSignatureCount?: undefined;
322
+ multisigVersion?: undefined;
321
323
  } | {
322
324
  data?: `0x${string}` | undefined;
323
325
  from?: `0x${string}` | undefined;
@@ -347,7 +349,9 @@ export declare const zone: (id: number) => {
347
349
  validBefore?: undefined;
348
350
  multisig?: undefined;
349
351
  multisigInit?: undefined;
352
+ multisigOwnerStates?: undefined;
350
353
  multisigSignatureCount?: undefined;
354
+ multisigVersion?: undefined;
351
355
  } | {
352
356
  data?: `0x${string}` | undefined;
353
357
  from?: `0x${string}` | undefined;
@@ -377,7 +381,9 @@ export declare const zone: (id: number) => {
377
381
  validBefore?: undefined;
378
382
  multisig?: undefined;
379
383
  multisigInit?: undefined;
384
+ multisigOwnerStates?: undefined;
380
385
  multisigSignatureCount?: undefined;
386
+ multisigVersion?: undefined;
381
387
  } | {
382
388
  type?: "0x3" | undefined;
383
389
  data?: `0x${string}` | undefined;
@@ -407,7 +413,9 @@ export declare const zone: (id: number) => {
407
413
  validBefore?: undefined;
408
414
  multisig?: undefined;
409
415
  multisigInit?: undefined;
416
+ multisigOwnerStates?: undefined;
410
417
  multisigSignatureCount?: undefined;
418
+ multisigVersion?: undefined;
411
419
  } | {
412
420
  type?: "0x3" | undefined;
413
421
  data?: `0x${string}` | undefined;
@@ -437,7 +445,9 @@ export declare const zone: (id: number) => {
437
445
  validBefore?: undefined;
438
446
  multisig?: undefined;
439
447
  multisigInit?: undefined;
448
+ multisigOwnerStates?: undefined;
440
449
  multisigSignatureCount?: undefined;
450
+ multisigVersion?: undefined;
441
451
  } | {
442
452
  type?: "0x4" | undefined;
443
453
  gasPrice?: undefined | undefined;
@@ -467,7 +477,9 @@ export declare const zone: (id: number) => {
467
477
  validBefore?: undefined;
468
478
  multisig?: undefined;
469
479
  multisigInit?: undefined;
480
+ multisigOwnerStates?: undefined;
470
481
  multisigSignatureCount?: undefined;
482
+ multisigVersion?: undefined;
471
483
  } | {
472
484
  data?: `0x${string}` | undefined;
473
485
  from?: `0x${string}` | undefined;
@@ -488,7 +500,7 @@ export declare const zone: (id: number) => {
488
500
  feePayer?: true | import("../../index.js").Account | undefined;
489
501
  feeToken?: bigint | import("ox/tempo/TempoAddress").Address | undefined;
490
502
  keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
491
- multisig?: {
503
+ multisig?: `0x${string}` | {
492
504
  salt?: `0x${string}` | undefined;
493
505
  threshold: `0x${string}`;
494
506
  owners: readonly import("ox/tempo/MultisigConfig").Owner<`0x${string}`>[];
@@ -501,7 +513,9 @@ export declare const zone: (id: number) => {
501
513
  weight: number;
502
514
  }[];
503
515
  } | undefined | undefined;
516
+ multisigOwnerStates?: readonly import("../Transaction.js").MultisigOwnerState[] | undefined;
504
517
  multisigSignatureCount?: number | undefined | undefined;
518
+ multisigVersion?: bigint | undefined | undefined;
505
519
  nonceKey?: `0x${string}` | "expiring" | undefined;
506
520
  signatures?: readonly `0x${string}`[] | undefined;
507
521
  validBefore?: `0x${string}` | undefined;
@@ -821,7 +835,9 @@ export declare const zone: (id: number) => {
821
835
  validBefore?: undefined;
822
836
  multisig?: undefined;
823
837
  multisigInit?: undefined;
838
+ multisigOwnerStates?: undefined;
824
839
  multisigSignatureCount?: undefined;
840
+ multisigVersion?: undefined;
825
841
  } | {
826
842
  data?: `0x${string}` | undefined;
827
843
  from?: `0x${string}` | undefined;
@@ -851,7 +867,9 @@ export declare const zone: (id: number) => {
851
867
  validBefore?: undefined;
852
868
  multisig?: undefined;
853
869
  multisigInit?: undefined;
870
+ multisigOwnerStates?: undefined;
854
871
  multisigSignatureCount?: undefined;
872
+ multisigVersion?: undefined;
855
873
  } | {
856
874
  data?: `0x${string}` | undefined;
857
875
  from?: `0x${string}` | undefined;
@@ -881,7 +899,9 @@ export declare const zone: (id: number) => {
881
899
  validBefore?: undefined;
882
900
  multisig?: undefined;
883
901
  multisigInit?: undefined;
902
+ multisigOwnerStates?: undefined;
884
903
  multisigSignatureCount?: undefined;
904
+ multisigVersion?: undefined;
885
905
  } | {
886
906
  type?: "0x3" | undefined;
887
907
  data?: `0x${string}` | undefined;
@@ -911,7 +931,9 @@ export declare const zone: (id: number) => {
911
931
  validBefore?: undefined;
912
932
  multisig?: undefined;
913
933
  multisigInit?: undefined;
934
+ multisigOwnerStates?: undefined;
914
935
  multisigSignatureCount?: undefined;
936
+ multisigVersion?: undefined;
915
937
  } | {
916
938
  type?: "0x3" | undefined;
917
939
  data?: `0x${string}` | undefined;
@@ -941,7 +963,9 @@ export declare const zone: (id: number) => {
941
963
  validBefore?: undefined;
942
964
  multisig?: undefined;
943
965
  multisigInit?: undefined;
966
+ multisigOwnerStates?: undefined;
944
967
  multisigSignatureCount?: undefined;
968
+ multisigVersion?: undefined;
945
969
  } | {
946
970
  type?: "0x4" | undefined;
947
971
  gasPrice?: undefined | undefined;
@@ -971,7 +995,9 @@ export declare const zone: (id: number) => {
971
995
  validBefore?: undefined;
972
996
  multisig?: undefined;
973
997
  multisigInit?: undefined;
998
+ multisigOwnerStates?: undefined;
974
999
  multisigSignatureCount?: undefined;
1000
+ multisigVersion?: undefined;
975
1001
  } | {
976
1002
  data?: `0x${string}` | undefined;
977
1003
  from?: `0x${string}` | undefined;
@@ -992,7 +1018,7 @@ export declare const zone: (id: number) => {
992
1018
  feePayer?: true | import("../../index.js").Account | undefined;
993
1019
  feeToken?: bigint | import("ox/tempo/TempoAddress").Address | undefined;
994
1020
  keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
995
- multisig?: {
1021
+ multisig?: `0x${string}` | {
996
1022
  salt?: `0x${string}` | undefined;
997
1023
  threshold: `0x${string}`;
998
1024
  owners: readonly import("ox/tempo/MultisigConfig").Owner<`0x${string}`>[];
@@ -1005,7 +1031,9 @@ export declare const zone: (id: number) => {
1005
1031
  weight: number;
1006
1032
  }[];
1007
1033
  } | undefined | undefined;
1034
+ multisigOwnerStates?: readonly import("../Transaction.js").MultisigOwnerState[] | undefined;
1008
1035
  multisigSignatureCount?: number | undefined | undefined;
1036
+ multisigVersion?: bigint | undefined | undefined;
1009
1037
  nonceKey?: `0x${string}` | "expiring" | undefined;
1010
1038
  signatures?: readonly `0x${string}`[] | undefined;
1011
1039
  validBefore?: `0x${string}` | undefined;
@@ -1341,7 +1369,9 @@ export declare const zoneModerato: (id: number) => {
1341
1369
  validBefore?: undefined;
1342
1370
  multisig?: undefined;
1343
1371
  multisigInit?: undefined;
1372
+ multisigOwnerStates?: undefined;
1344
1373
  multisigSignatureCount?: undefined;
1374
+ multisigVersion?: undefined;
1345
1375
  } | {
1346
1376
  data?: `0x${string}` | undefined;
1347
1377
  from?: `0x${string}` | undefined;
@@ -1371,7 +1401,9 @@ export declare const zoneModerato: (id: number) => {
1371
1401
  validBefore?: undefined;
1372
1402
  multisig?: undefined;
1373
1403
  multisigInit?: undefined;
1404
+ multisigOwnerStates?: undefined;
1374
1405
  multisigSignatureCount?: undefined;
1406
+ multisigVersion?: undefined;
1375
1407
  } | {
1376
1408
  data?: `0x${string}` | undefined;
1377
1409
  from?: `0x${string}` | undefined;
@@ -1401,7 +1433,9 @@ export declare const zoneModerato: (id: number) => {
1401
1433
  validBefore?: undefined;
1402
1434
  multisig?: undefined;
1403
1435
  multisigInit?: undefined;
1436
+ multisigOwnerStates?: undefined;
1404
1437
  multisigSignatureCount?: undefined;
1438
+ multisigVersion?: undefined;
1405
1439
  } | {
1406
1440
  type?: "0x3" | undefined;
1407
1441
  data?: `0x${string}` | undefined;
@@ -1431,7 +1465,9 @@ export declare const zoneModerato: (id: number) => {
1431
1465
  validBefore?: undefined;
1432
1466
  multisig?: undefined;
1433
1467
  multisigInit?: undefined;
1468
+ multisigOwnerStates?: undefined;
1434
1469
  multisigSignatureCount?: undefined;
1470
+ multisigVersion?: undefined;
1435
1471
  } | {
1436
1472
  type?: "0x3" | undefined;
1437
1473
  data?: `0x${string}` | undefined;
@@ -1461,7 +1497,9 @@ export declare const zoneModerato: (id: number) => {
1461
1497
  validBefore?: undefined;
1462
1498
  multisig?: undefined;
1463
1499
  multisigInit?: undefined;
1500
+ multisigOwnerStates?: undefined;
1464
1501
  multisigSignatureCount?: undefined;
1502
+ multisigVersion?: undefined;
1465
1503
  } | {
1466
1504
  type?: "0x4" | undefined;
1467
1505
  gasPrice?: undefined | undefined;
@@ -1491,7 +1529,9 @@ export declare const zoneModerato: (id: number) => {
1491
1529
  validBefore?: undefined;
1492
1530
  multisig?: undefined;
1493
1531
  multisigInit?: undefined;
1532
+ multisigOwnerStates?: undefined;
1494
1533
  multisigSignatureCount?: undefined;
1534
+ multisigVersion?: undefined;
1495
1535
  } | {
1496
1536
  data?: `0x${string}` | undefined;
1497
1537
  from?: `0x${string}` | undefined;
@@ -1512,7 +1552,7 @@ export declare const zoneModerato: (id: number) => {
1512
1552
  feePayer?: true | import("../../index.js").Account | undefined;
1513
1553
  feeToken?: bigint | import("ox/tempo/TempoAddress").Address | undefined;
1514
1554
  keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
1515
- multisig?: {
1555
+ multisig?: `0x${string}` | {
1516
1556
  salt?: `0x${string}` | undefined;
1517
1557
  threshold: `0x${string}`;
1518
1558
  owners: readonly import("ox/tempo/MultisigConfig").Owner<`0x${string}`>[];
@@ -1525,7 +1565,9 @@ export declare const zoneModerato: (id: number) => {
1525
1565
  weight: number;
1526
1566
  }[];
1527
1567
  } | undefined | undefined;
1568
+ multisigOwnerStates?: readonly import("../Transaction.js").MultisigOwnerState[] | undefined;
1528
1569
  multisigSignatureCount?: number | undefined | undefined;
1570
+ multisigVersion?: bigint | undefined | undefined;
1529
1571
  nonceKey?: `0x${string}` | "expiring" | undefined;
1530
1572
  signatures?: readonly `0x${string}`[] | undefined;
1531
1573
  validBefore?: `0x${string}` | undefined;
@@ -1845,7 +1887,9 @@ export declare const zoneModerato: (id: number) => {
1845
1887
  validBefore?: undefined;
1846
1888
  multisig?: undefined;
1847
1889
  multisigInit?: undefined;
1890
+ multisigOwnerStates?: undefined;
1848
1891
  multisigSignatureCount?: undefined;
1892
+ multisigVersion?: undefined;
1849
1893
  } | {
1850
1894
  data?: `0x${string}` | undefined;
1851
1895
  from?: `0x${string}` | undefined;
@@ -1875,7 +1919,9 @@ export declare const zoneModerato: (id: number) => {
1875
1919
  validBefore?: undefined;
1876
1920
  multisig?: undefined;
1877
1921
  multisigInit?: undefined;
1922
+ multisigOwnerStates?: undefined;
1878
1923
  multisigSignatureCount?: undefined;
1924
+ multisigVersion?: undefined;
1879
1925
  } | {
1880
1926
  data?: `0x${string}` | undefined;
1881
1927
  from?: `0x${string}` | undefined;
@@ -1905,7 +1951,9 @@ export declare const zoneModerato: (id: number) => {
1905
1951
  validBefore?: undefined;
1906
1952
  multisig?: undefined;
1907
1953
  multisigInit?: undefined;
1954
+ multisigOwnerStates?: undefined;
1908
1955
  multisigSignatureCount?: undefined;
1956
+ multisigVersion?: undefined;
1909
1957
  } | {
1910
1958
  type?: "0x3" | undefined;
1911
1959
  data?: `0x${string}` | undefined;
@@ -1935,7 +1983,9 @@ export declare const zoneModerato: (id: number) => {
1935
1983
  validBefore?: undefined;
1936
1984
  multisig?: undefined;
1937
1985
  multisigInit?: undefined;
1986
+ multisigOwnerStates?: undefined;
1938
1987
  multisigSignatureCount?: undefined;
1988
+ multisigVersion?: undefined;
1939
1989
  } | {
1940
1990
  type?: "0x3" | undefined;
1941
1991
  data?: `0x${string}` | undefined;
@@ -1965,7 +2015,9 @@ export declare const zoneModerato: (id: number) => {
1965
2015
  validBefore?: undefined;
1966
2016
  multisig?: undefined;
1967
2017
  multisigInit?: undefined;
2018
+ multisigOwnerStates?: undefined;
1968
2019
  multisigSignatureCount?: undefined;
2020
+ multisigVersion?: undefined;
1969
2021
  } | {
1970
2022
  type?: "0x4" | undefined;
1971
2023
  gasPrice?: undefined | undefined;
@@ -1995,7 +2047,9 @@ export declare const zoneModerato: (id: number) => {
1995
2047
  validBefore?: undefined;
1996
2048
  multisig?: undefined;
1997
2049
  multisigInit?: undefined;
2050
+ multisigOwnerStates?: undefined;
1998
2051
  multisigSignatureCount?: undefined;
2052
+ multisigVersion?: undefined;
1999
2053
  } | {
2000
2054
  data?: `0x${string}` | undefined;
2001
2055
  from?: `0x${string}` | undefined;
@@ -2016,7 +2070,7 @@ export declare const zoneModerato: (id: number) => {
2016
2070
  feePayer?: true | import("../../index.js").Account | undefined;
2017
2071
  feeToken?: bigint | import("ox/tempo/TempoAddress").Address | undefined;
2018
2072
  keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
2019
- multisig?: {
2073
+ multisig?: `0x${string}` | {
2020
2074
  salt?: `0x${string}` | undefined;
2021
2075
  threshold: `0x${string}`;
2022
2076
  owners: readonly import("ox/tempo/MultisigConfig").Owner<`0x${string}`>[];
@@ -2029,7 +2083,9 @@ export declare const zoneModerato: (id: number) => {
2029
2083
  weight: number;
2030
2084
  }[];
2031
2085
  } | undefined | undefined;
2086
+ multisigOwnerStates?: readonly import("../Transaction.js").MultisigOwnerState[] | undefined;
2032
2087
  multisigSignatureCount?: number | undefined | undefined;
2088
+ multisigVersion?: bigint | undefined | undefined;
2033
2089
  nonceKey?: `0x${string}` | "expiring" | undefined;
2034
2090
  signatures?: readonly `0x${string}`[] | undefined;
2035
2091
  validBefore?: `0x${string}` | undefined;
@@ -2366,7 +2422,9 @@ export declare function from(options: from.Options): (id: number) => {
2366
2422
  validBefore?: undefined;
2367
2423
  multisig?: undefined;
2368
2424
  multisigInit?: undefined;
2425
+ multisigOwnerStates?: undefined;
2369
2426
  multisigSignatureCount?: undefined;
2427
+ multisigVersion?: undefined;
2370
2428
  } | {
2371
2429
  data?: `0x${string}` | undefined;
2372
2430
  from?: `0x${string}` | undefined;
@@ -2396,7 +2454,9 @@ export declare function from(options: from.Options): (id: number) => {
2396
2454
  validBefore?: undefined;
2397
2455
  multisig?: undefined;
2398
2456
  multisigInit?: undefined;
2457
+ multisigOwnerStates?: undefined;
2399
2458
  multisigSignatureCount?: undefined;
2459
+ multisigVersion?: undefined;
2400
2460
  } | {
2401
2461
  data?: `0x${string}` | undefined;
2402
2462
  from?: `0x${string}` | undefined;
@@ -2426,7 +2486,9 @@ export declare function from(options: from.Options): (id: number) => {
2426
2486
  validBefore?: undefined;
2427
2487
  multisig?: undefined;
2428
2488
  multisigInit?: undefined;
2489
+ multisigOwnerStates?: undefined;
2429
2490
  multisigSignatureCount?: undefined;
2491
+ multisigVersion?: undefined;
2430
2492
  } | {
2431
2493
  type?: "0x3" | undefined;
2432
2494
  data?: `0x${string}` | undefined;
@@ -2456,7 +2518,9 @@ export declare function from(options: from.Options): (id: number) => {
2456
2518
  validBefore?: undefined;
2457
2519
  multisig?: undefined;
2458
2520
  multisigInit?: undefined;
2521
+ multisigOwnerStates?: undefined;
2459
2522
  multisigSignatureCount?: undefined;
2523
+ multisigVersion?: undefined;
2460
2524
  } | {
2461
2525
  type?: "0x3" | undefined;
2462
2526
  data?: `0x${string}` | undefined;
@@ -2486,7 +2550,9 @@ export declare function from(options: from.Options): (id: number) => {
2486
2550
  validBefore?: undefined;
2487
2551
  multisig?: undefined;
2488
2552
  multisigInit?: undefined;
2553
+ multisigOwnerStates?: undefined;
2489
2554
  multisigSignatureCount?: undefined;
2555
+ multisigVersion?: undefined;
2490
2556
  } | {
2491
2557
  type?: "0x4" | undefined;
2492
2558
  gasPrice?: undefined | undefined;
@@ -2516,7 +2582,9 @@ export declare function from(options: from.Options): (id: number) => {
2516
2582
  validBefore?: undefined;
2517
2583
  multisig?: undefined;
2518
2584
  multisigInit?: undefined;
2585
+ multisigOwnerStates?: undefined;
2519
2586
  multisigSignatureCount?: undefined;
2587
+ multisigVersion?: undefined;
2520
2588
  } | {
2521
2589
  data?: `0x${string}` | undefined;
2522
2590
  from?: `0x${string}` | undefined;
@@ -2537,7 +2605,7 @@ export declare function from(options: from.Options): (id: number) => {
2537
2605
  feePayer?: true | import("../../index.js").Account | undefined;
2538
2606
  feeToken?: bigint | import("ox/tempo/TempoAddress").Address | undefined;
2539
2607
  keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
2540
- multisig?: {
2608
+ multisig?: `0x${string}` | {
2541
2609
  salt?: `0x${string}` | undefined;
2542
2610
  threshold: `0x${string}`;
2543
2611
  owners: readonly import("ox/tempo/MultisigConfig").Owner<`0x${string}`>[];
@@ -2550,7 +2618,9 @@ export declare function from(options: from.Options): (id: number) => {
2550
2618
  weight: number;
2551
2619
  }[];
2552
2620
  } | undefined | undefined;
2621
+ multisigOwnerStates?: readonly import("../Transaction.js").MultisigOwnerState[] | undefined;
2553
2622
  multisigSignatureCount?: number | undefined | undefined;
2623
+ multisigVersion?: bigint | undefined | undefined;
2554
2624
  nonceKey?: `0x${string}` | "expiring" | undefined;
2555
2625
  signatures?: readonly `0x${string}`[] | undefined;
2556
2626
  validBefore?: `0x${string}` | undefined;
@@ -2870,7 +2940,9 @@ export declare function from(options: from.Options): (id: number) => {
2870
2940
  validBefore?: undefined;
2871
2941
  multisig?: undefined;
2872
2942
  multisigInit?: undefined;
2943
+ multisigOwnerStates?: undefined;
2873
2944
  multisigSignatureCount?: undefined;
2945
+ multisigVersion?: undefined;
2874
2946
  } | {
2875
2947
  data?: `0x${string}` | undefined;
2876
2948
  from?: `0x${string}` | undefined;
@@ -2900,7 +2972,9 @@ export declare function from(options: from.Options): (id: number) => {
2900
2972
  validBefore?: undefined;
2901
2973
  multisig?: undefined;
2902
2974
  multisigInit?: undefined;
2975
+ multisigOwnerStates?: undefined;
2903
2976
  multisigSignatureCount?: undefined;
2977
+ multisigVersion?: undefined;
2904
2978
  } | {
2905
2979
  data?: `0x${string}` | undefined;
2906
2980
  from?: `0x${string}` | undefined;
@@ -2930,7 +3004,9 @@ export declare function from(options: from.Options): (id: number) => {
2930
3004
  validBefore?: undefined;
2931
3005
  multisig?: undefined;
2932
3006
  multisigInit?: undefined;
3007
+ multisigOwnerStates?: undefined;
2933
3008
  multisigSignatureCount?: undefined;
3009
+ multisigVersion?: undefined;
2934
3010
  } | {
2935
3011
  type?: "0x3" | undefined;
2936
3012
  data?: `0x${string}` | undefined;
@@ -2960,7 +3036,9 @@ export declare function from(options: from.Options): (id: number) => {
2960
3036
  validBefore?: undefined;
2961
3037
  multisig?: undefined;
2962
3038
  multisigInit?: undefined;
3039
+ multisigOwnerStates?: undefined;
2963
3040
  multisigSignatureCount?: undefined;
3041
+ multisigVersion?: undefined;
2964
3042
  } | {
2965
3043
  type?: "0x3" | undefined;
2966
3044
  data?: `0x${string}` | undefined;
@@ -2990,7 +3068,9 @@ export declare function from(options: from.Options): (id: number) => {
2990
3068
  validBefore?: undefined;
2991
3069
  multisig?: undefined;
2992
3070
  multisigInit?: undefined;
3071
+ multisigOwnerStates?: undefined;
2993
3072
  multisigSignatureCount?: undefined;
3073
+ multisigVersion?: undefined;
2994
3074
  } | {
2995
3075
  type?: "0x4" | undefined;
2996
3076
  gasPrice?: undefined | undefined;
@@ -3020,7 +3100,9 @@ export declare function from(options: from.Options): (id: number) => {
3020
3100
  validBefore?: undefined;
3021
3101
  multisig?: undefined;
3022
3102
  multisigInit?: undefined;
3103
+ multisigOwnerStates?: undefined;
3023
3104
  multisigSignatureCount?: undefined;
3105
+ multisigVersion?: undefined;
3024
3106
  } | {
3025
3107
  data?: `0x${string}` | undefined;
3026
3108
  from?: `0x${string}` | undefined;
@@ -3041,7 +3123,7 @@ export declare function from(options: from.Options): (id: number) => {
3041
3123
  feePayer?: true | import("../../index.js").Account | undefined;
3042
3124
  feeToken?: bigint | import("ox/tempo/TempoAddress").Address | undefined;
3043
3125
  keyAuthorization?: import("ox/tempo/KeyAuthorization").Signed<`0x${string}`, `0x${string}`, `0x${string}`> | undefined;
3044
- multisig?: {
3126
+ multisig?: `0x${string}` | {
3045
3127
  salt?: `0x${string}` | undefined;
3046
3128
  threshold: `0x${string}`;
3047
3129
  owners: readonly import("ox/tempo/MultisigConfig").Owner<`0x${string}`>[];
@@ -3054,7 +3136,9 @@ export declare function from(options: from.Options): (id: number) => {
3054
3136
  weight: number;
3055
3137
  }[];
3056
3138
  } | undefined | undefined;
3139
+ multisigOwnerStates?: readonly import("../Transaction.js").MultisigOwnerState[] | undefined;
3057
3140
  multisigSignatureCount?: number | undefined | undefined;
3141
+ multisigVersion?: bigint | undefined | undefined;
3058
3142
  nonceKey?: `0x${string}` | "expiring" | undefined;
3059
3143
  signatures?: readonly `0x${string}`[] | undefined;
3060
3144
  validBefore?: `0x${string}` | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"zone.d.ts","sourceRoot":"","sources":["../../../tempo/zones/zone.ts"],"names":[],"mappings":"AAOA,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,MAAM,EACf,MAAM,EAAE,MAAM,GACb,KAAK,MAAM,EAAE,CASf;AAED,KAAK,aAAa,GAAG;IACnB,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,OAAO,EAAE,KAAK,MAAM,EAAE,CAAA;KAAE,GAAG,SAAS,CAAC,CAAA;IACjE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,OAAO,EAAE,KAAK,MAAM,EAAE,CAAA;KAAE,GAAG,SAAS,CAAC,CAAA;CAC/D,CAAA;AAqCD,eAAO,MAAM,IAAI,OAYH,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CATlB,CAAA;AAEF,eAAO,MAAM,YAAY,OAOX,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAJlB,CAAA;AAEF,8DAA8D;AAC9D,wBAAgB,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,IAChC,IAAI,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8BnB;AAED,OAAO,WAAW,IAAI,CAAC;IACrB,KAAK,OAAO,GAAG;QACb,uEAAuE;QACvE,OAAO,EAAE,MAAM,CAAA;QACf,0FAA0F;QAC1F,QAAQ,EAAE,MAAM,CAAA;KACjB,CAAA;CACF"}
1
+ {"version":3,"file":"zone.d.ts","sourceRoot":"","sources":["../../../tempo/zones/zone.ts"],"names":[],"mappings":"AAOA,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,MAAM,EACf,MAAM,EAAE,MAAM,GACb,KAAK,MAAM,EAAE,CASf;AAED,KAAK,aAAa,GAAG;IACnB,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,OAAO,EAAE,KAAK,MAAM,EAAE,CAAA;KAAE,GAAG,SAAS,CAAC,CAAA;IACjE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,OAAO,EAAE,KAAK,MAAM,EAAE,CAAA;KAAE,GAAG,SAAS,CAAC,CAAA;CAC/D,CAAA;AAqCD,eAAO,MAAM,IAAI,OAYH,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CATlB,CAAA;AAEF,eAAO,MAAM,YAAY,OAOX,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAJlB,CAAA;AAEF,8DAA8D;AAC9D,wBAAgB,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,IAChC,IAAI,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8BnB;AAED,OAAO,WAAW,IAAI,CAAC;IACrB,KAAK,OAAO,GAAG;QACb,uEAAuE;QACvE,OAAO,EAAE,MAAM,CAAA;QACf,0FAA0F;QAC1F,QAAQ,EAAE,MAAM,CAAA;KACjB,CAAA;CACF"}
@@ -0,0 +1,22 @@
1
+ import { defineChain } from '../../utils/chain/defineChain.js'
2
+
3
+ export const morphTachyon = /*#__PURE__*/ defineChain({
4
+ id: 2184,
5
+ name: 'Morph Tachyon',
6
+ nativeCurrency: {
7
+ name: 'BGB',
8
+ symbol: 'BGB',
9
+ decimals: 18,
10
+ },
11
+ rpcUrls: {
12
+ default: {
13
+ http: ['https://api.popdex.xyz/api/v1/web3/rpc'],
14
+ },
15
+ },
16
+ blockExplorers: {
17
+ default: {
18
+ name: 'Morph Tachyon Explorer',
19
+ url: 'https://app.popdex.xyz/explorer',
20
+ },
21
+ },
22
+ })
@@ -0,0 +1,23 @@
1
+ import { defineChain } from '../../utils/chain/defineChain.js'
2
+
3
+ export const morphTachyonTestnet = /*#__PURE__*/ defineChain({
4
+ id: 34952,
5
+ name: 'Morph Tachyon Testnet',
6
+ nativeCurrency: {
7
+ name: 'BGB',
8
+ symbol: 'BGB',
9
+ decimals: 18,
10
+ },
11
+ rpcUrls: {
12
+ default: {
13
+ http: ['https://testnet-api.popdex.xyz/api/v1/web3/rpc'],
14
+ },
15
+ },
16
+ blockExplorers: {
17
+ default: {
18
+ name: 'Morph Tachyon Testnet Explorer',
19
+ url: 'https://testnet-app.popdex.xyz/explorer',
20
+ },
21
+ },
22
+ testnet: true,
23
+ })
@@ -0,0 +1,23 @@
1
+ import { defineChain } from '../../utils/chain/defineChain.js'
2
+
3
+ export const ynxTestnet = /*#__PURE__*/ defineChain({
4
+ id: 6_423,
5
+ name: 'YNX Testnet',
6
+ nativeCurrency: {
7
+ decimals: 18,
8
+ name: 'YNXT',
9
+ symbol: 'YNXT',
10
+ },
11
+ rpcUrls: {
12
+ default: {
13
+ http: ['https://evm.ynxweb4.com'],
14
+ },
15
+ },
16
+ blockExplorers: {
17
+ default: {
18
+ name: 'YNX Explorer',
19
+ url: 'https://explorer.ynxweb4.com',
20
+ },
21
+ },
22
+ testnet: true,
23
+ })
package/chains/index.ts CHANGED
@@ -435,6 +435,8 @@ export { moonriver } from './definitions/moonriver.js'
435
435
  export { morph } from './definitions/morph.js'
436
436
  export { morphHolesky } from './definitions/morphHolesky.js'
437
437
  export { morphSepolia } from './definitions/morphSepolia.js'
438
+ export { morphTachyon } from './definitions/morphTachyon.js'
439
+ export { morphTachyonTestnet } from './definitions/morphTachyonTestnet.js'
438
440
  export { nahmii } from './definitions/nahmii.js'
439
441
  export { nautilus } from './definitions/nautilus.js'
440
442
  export { near } from './definitions/near.js'
@@ -731,6 +733,7 @@ export { xrplevm } from './definitions/xrplevm.js'
731
733
  export { xrplevmDevnet } from './definitions/xrplevmDevnet.js'
732
734
  export { xrplevmTestnet } from './definitions/xrplevmTestnet.js'
733
735
  export { xrSepolia } from './definitions/xrSepolia.js'
736
+ export { ynxTestnet } from './definitions/ynxTestnet.js'
734
737
  export { yooldoVerse } from './definitions/yooldoVerse.js'
735
738
  export { yooldoVerseTestnet } from './definitions/yooldoVerseTestnet.js'
736
739
  export { zenchainTestnet } from './definitions/zenchainTestnet.js'
package/errors/version.ts CHANGED
@@ -1 +1 @@
1
- export const version = '2.55.18'
1
+ export const version = '2.55.19'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "viem",
3
3
  "description": "TypeScript Interface for Ethereum",
4
- "version": "2.55.18",
4
+ "version": "2.55.19",
5
5
  "main": "./_cjs/index.js",
6
6
  "module": "./_esm/index.js",
7
7
  "types": "./_types/index.d.ts",
@@ -234,7 +234,7 @@
234
234
  "@scure/bip39": "1.6.0",
235
235
  "abitype": "1.2.3",
236
236
  "isows": "1.0.7",
237
- "ox": "0.14.33",
237
+ "ox": "0.14.34",
238
238
  "ws": "8.21.0"
239
239
  },
240
240
  "license": "MIT",