@lodestar/beacon-node 1.34.0-dev.d5be46d90d → 1.34.0-dev.e082a5188a

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 (90) hide show
  1. package/lib/api/impl/beacon/blocks/index.js +56 -33
  2. package/lib/api/impl/beacon/blocks/index.js.map +1 -1
  3. package/lib/api/impl/beacon/state/index.js +6 -12
  4. package/lib/api/impl/beacon/state/index.js.map +1 -1
  5. package/lib/api/impl/validator/index.js +35 -24
  6. package/lib/api/impl/validator/index.js.map +1 -1
  7. package/lib/chain/chain.d.ts +8 -80
  8. package/lib/chain/chain.js +26 -66
  9. package/lib/chain/chain.js.map +1 -1
  10. package/lib/chain/interface.d.ts +3 -10
  11. package/lib/chain/interface.js.map +1 -1
  12. package/lib/chain/prepareNextSlot.js +2 -1
  13. package/lib/chain/prepareNextSlot.js.map +1 -1
  14. package/lib/chain/produceBlock/produceBlockBody.d.ts +30 -18
  15. package/lib/chain/produceBlock/produceBlockBody.js +27 -32
  16. package/lib/chain/produceBlock/produceBlockBody.js.map +1 -1
  17. package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.d.ts +6 -4
  18. package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.js +22 -21
  19. package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.js.map +1 -1
  20. package/lib/chain/validation/dataColumnSidecar.d.ts +2 -1
  21. package/lib/chain/validation/dataColumnSidecar.js +4 -4
  22. package/lib/chain/validation/dataColumnSidecar.js.map +1 -1
  23. package/lib/execution/builder/http.d.ts +20 -4
  24. package/lib/execution/builder/http.js +30 -11
  25. package/lib/execution/builder/http.js.map +1 -1
  26. package/lib/execution/builder/interface.d.ts +5 -4
  27. package/lib/execution/engine/http.d.ts +4 -3
  28. package/lib/execution/engine/http.js +25 -50
  29. package/lib/execution/engine/http.js.map +1 -1
  30. package/lib/execution/engine/interface.d.ts +2 -11
  31. package/lib/execution/engine/types.d.ts +2 -2
  32. package/lib/execution/engine/types.js +2 -2
  33. package/lib/execution/engine/types.js.map +1 -1
  34. package/lib/metrics/metrics/beacon.d.ts +1 -5
  35. package/lib/metrics/metrics/beacon.js +4 -14
  36. package/lib/metrics/metrics/beacon.js.map +1 -1
  37. package/lib/metrics/metrics/lodestar.d.ts +1 -0
  38. package/lib/metrics/metrics/lodestar.js +6 -0
  39. package/lib/metrics/metrics/lodestar.js.map +1 -1
  40. package/lib/network/core/networkCore.d.ts +5 -0
  41. package/lib/network/core/networkCore.js +44 -14
  42. package/lib/network/core/networkCore.js.map +1 -1
  43. package/lib/network/gossip/gossipsub.d.ts +2 -2
  44. package/lib/network/gossip/gossipsub.js +8 -6
  45. package/lib/network/gossip/gossipsub.js.map +1 -1
  46. package/lib/network/gossip/scoringParameters.d.ts +6 -2
  47. package/lib/network/gossip/scoringParameters.js.map +1 -1
  48. package/lib/network/gossip/topic.d.ts +541 -8
  49. package/lib/network/gossip/topic.js +15 -6
  50. package/lib/network/gossip/topic.js.map +1 -1
  51. package/lib/network/network.js +6 -1
  52. package/lib/network/network.js.map +1 -1
  53. package/lib/network/peers/discover.js +1 -1
  54. package/lib/network/peers/discover.js.map +1 -1
  55. package/lib/network/peers/peerManager.js +20 -11
  56. package/lib/network/peers/peerManager.js.map +1 -1
  57. package/lib/network/peers/utils/prioritizePeers.d.ts +2 -1
  58. package/lib/network/peers/utils/prioritizePeers.js +5 -5
  59. package/lib/network/peers/utils/prioritizePeers.js.map +1 -1
  60. package/lib/network/processor/gossipHandlers.js +31 -22
  61. package/lib/network/processor/gossipHandlers.js.map +1 -1
  62. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.d.ts +6 -3
  63. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.js +45 -17
  64. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.js.map +1 -1
  65. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.js +3 -3
  66. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.js.map +1 -1
  67. package/lib/network/reqresp/rateLimit.js +3 -3
  68. package/lib/network/reqresp/rateLimit.js.map +1 -1
  69. package/lib/network/subnets/interface.js +2 -2
  70. package/lib/network/subnets/interface.js.map +1 -1
  71. package/lib/sync/constants.d.ts +1 -1
  72. package/lib/sync/constants.js +1 -1
  73. package/lib/sync/range/chain.d.ts +1 -1
  74. package/lib/sync/range/chain.js +2 -2
  75. package/lib/sync/range/chain.js.map +1 -1
  76. package/lib/sync/range/range.js +2 -2
  77. package/lib/sync/range/range.js.map +1 -1
  78. package/lib/sync/range/utils/peerBalancer.d.ts +3 -1
  79. package/lib/sync/range/utils/peerBalancer.js +20 -1
  80. package/lib/sync/range/utils/peerBalancer.js.map +1 -1
  81. package/lib/sync/unknownBlock.d.ts +2 -1
  82. package/lib/sync/unknownBlock.js +38 -14
  83. package/lib/sync/unknownBlock.js.map +1 -1
  84. package/lib/util/blobs.d.ts +3 -13
  85. package/lib/util/blobs.js +9 -47
  86. package/lib/util/blobs.js.map +1 -1
  87. package/lib/util/dataColumns.d.ts +7 -5
  88. package/lib/util/dataColumns.js +33 -28
  89. package/lib/util/dataColumns.js.map +1 -1
  90. package/package.json +16 -16
@@ -1,6 +1,7 @@
1
- import { ChainConfig, ForkDigestContext } from "@lodestar/config";
1
+ import { ForkDigestContext } from "@lodestar/config";
2
2
  import { ForkName } from "@lodestar/params";
3
3
  import { Attestation, SingleAttestation } from "@lodestar/types";
4
+ import { NetworkConfig } from "../networkConfig.js";
4
5
  import { GossipTopic, GossipTopicTypeMap, GossipType, SSZTypeOfGossipTopic } from "./interface.js";
5
6
  export interface IGossipTopicCache {
6
7
  getTopic(topicStr: string): GossipTopic;
@@ -501,6 +502,30 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
501
502
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
502
503
  }>;
503
504
  signature: import("@chainsafe/ssz").ByteVectorType;
505
+ }> | import("@chainsafe/ssz").ValueOfFields<{
506
+ message: import("@chainsafe/ssz").ContainerType<{
507
+ aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
508
+ aggregate: import("@chainsafe/ssz").ContainerType<{
509
+ aggregationBits: import("@chainsafe/ssz").BitListType;
510
+ data: import("@chainsafe/ssz").ContainerType<{
511
+ slot: import("@chainsafe/ssz").UintNumberType;
512
+ index: import("@chainsafe/ssz").UintNumberType;
513
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
514
+ source: import("@chainsafe/ssz").ContainerType<{
515
+ epoch: import("@chainsafe/ssz").UintNumberType;
516
+ root: import("@chainsafe/ssz").ByteVectorType;
517
+ }>;
518
+ target: import("@chainsafe/ssz").ContainerType<{
519
+ epoch: import("@chainsafe/ssz").UintNumberType;
520
+ root: import("@chainsafe/ssz").ByteVectorType;
521
+ }>;
522
+ }>;
523
+ signature: import("@chainsafe/ssz").ByteVectorType;
524
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
525
+ }>;
526
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
527
+ }>;
528
+ signature: import("@chainsafe/ssz").ByteVectorType;
504
529
  }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
505
530
  message: import("@chainsafe/ssz").ContainerType<{
506
531
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -664,6 +689,30 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
664
689
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
665
690
  }>;
666
691
  signature: import("@chainsafe/ssz").ByteVectorType;
692
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
693
+ message: import("@chainsafe/ssz").ContainerType<{
694
+ aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
695
+ aggregate: import("@chainsafe/ssz").ContainerType<{
696
+ aggregationBits: import("@chainsafe/ssz").BitListType;
697
+ data: import("@chainsafe/ssz").ContainerType<{
698
+ slot: import("@chainsafe/ssz").UintNumberType;
699
+ index: import("@chainsafe/ssz").UintNumberType;
700
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
701
+ source: import("@chainsafe/ssz").ContainerType<{
702
+ epoch: import("@chainsafe/ssz").UintNumberType;
703
+ root: import("@chainsafe/ssz").ByteVectorType;
704
+ }>;
705
+ target: import("@chainsafe/ssz").ContainerType<{
706
+ epoch: import("@chainsafe/ssz").UintNumberType;
707
+ root: import("@chainsafe/ssz").ByteVectorType;
708
+ }>;
709
+ }>;
710
+ signature: import("@chainsafe/ssz").ByteVectorType;
711
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
712
+ }>;
713
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
714
+ }>;
715
+ signature: import("@chainsafe/ssz").ByteVectorType;
667
716
  }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
668
717
  message: import("@chainsafe/ssz").ContainerType<{
669
718
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -827,6 +876,30 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
827
876
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
828
877
  }>;
829
878
  signature: import("@chainsafe/ssz").ByteVectorType;
879
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
880
+ message: import("@chainsafe/ssz").ContainerType<{
881
+ aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
882
+ aggregate: import("@chainsafe/ssz").ContainerType<{
883
+ aggregationBits: import("@chainsafe/ssz").BitListType;
884
+ data: import("@chainsafe/ssz").ContainerType<{
885
+ slot: import("@chainsafe/ssz").UintNumberType;
886
+ index: import("@chainsafe/ssz").UintNumberType;
887
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
888
+ source: import("@chainsafe/ssz").ContainerType<{
889
+ epoch: import("@chainsafe/ssz").UintNumberType;
890
+ root: import("@chainsafe/ssz").ByteVectorType;
891
+ }>;
892
+ target: import("@chainsafe/ssz").ContainerType<{
893
+ epoch: import("@chainsafe/ssz").UintNumberType;
894
+ root: import("@chainsafe/ssz").ByteVectorType;
895
+ }>;
896
+ }>;
897
+ signature: import("@chainsafe/ssz").ByteVectorType;
898
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
899
+ }>;
900
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
901
+ }>;
902
+ signature: import("@chainsafe/ssz").ByteVectorType;
830
903
  }>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
831
904
  aggregationBits: import("@chainsafe/ssz").BitListType;
832
905
  data: import("@chainsafe/ssz").ContainerType<{
@@ -941,6 +1014,23 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
941
1014
  }>;
942
1015
  }>;
943
1016
  signature: import("@chainsafe/ssz").ByteVectorType;
1017
+ }> | import("@chainsafe/ssz").ValueOfFields<{
1018
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1019
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1020
+ data: import("@chainsafe/ssz").ContainerType<{
1021
+ slot: import("@chainsafe/ssz").UintNumberType;
1022
+ index: import("@chainsafe/ssz").UintNumberType;
1023
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1024
+ source: import("@chainsafe/ssz").ContainerType<{
1025
+ epoch: import("@chainsafe/ssz").UintNumberType;
1026
+ root: import("@chainsafe/ssz").ByteVectorType;
1027
+ }>;
1028
+ target: import("@chainsafe/ssz").ContainerType<{
1029
+ epoch: import("@chainsafe/ssz").UintNumberType;
1030
+ root: import("@chainsafe/ssz").ByteVectorType;
1031
+ }>;
1032
+ }>;
1033
+ signature: import("@chainsafe/ssz").ByteVectorType;
944
1034
  }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
945
1035
  aggregationBits: import("@chainsafe/ssz").BitListType;
946
1036
  data: import("@chainsafe/ssz").ContainerType<{
@@ -1055,6 +1145,23 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1055
1145
  }>;
1056
1146
  }>;
1057
1147
  signature: import("@chainsafe/ssz").ByteVectorType;
1148
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1149
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1150
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1151
+ data: import("@chainsafe/ssz").ContainerType<{
1152
+ slot: import("@chainsafe/ssz").UintNumberType;
1153
+ index: import("@chainsafe/ssz").UintNumberType;
1154
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1155
+ source: import("@chainsafe/ssz").ContainerType<{
1156
+ epoch: import("@chainsafe/ssz").UintNumberType;
1157
+ root: import("@chainsafe/ssz").ByteVectorType;
1158
+ }>;
1159
+ target: import("@chainsafe/ssz").ContainerType<{
1160
+ epoch: import("@chainsafe/ssz").UintNumberType;
1161
+ root: import("@chainsafe/ssz").ByteVectorType;
1162
+ }>;
1163
+ }>;
1164
+ signature: import("@chainsafe/ssz").ByteVectorType;
1058
1165
  }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1059
1166
  aggregationBits: import("@chainsafe/ssz").BitListType;
1060
1167
  data: import("@chainsafe/ssz").ContainerType<{
@@ -1169,6 +1276,23 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1169
1276
  }>;
1170
1277
  }>;
1171
1278
  signature: import("@chainsafe/ssz").ByteVectorType;
1279
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1280
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1281
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1282
+ data: import("@chainsafe/ssz").ContainerType<{
1283
+ slot: import("@chainsafe/ssz").UintNumberType;
1284
+ index: import("@chainsafe/ssz").UintNumberType;
1285
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1286
+ source: import("@chainsafe/ssz").ContainerType<{
1287
+ epoch: import("@chainsafe/ssz").UintNumberType;
1288
+ root: import("@chainsafe/ssz").ByteVectorType;
1289
+ }>;
1290
+ target: import("@chainsafe/ssz").ContainerType<{
1291
+ epoch: import("@chainsafe/ssz").UintNumberType;
1292
+ root: import("@chainsafe/ssz").ByteVectorType;
1293
+ }>;
1294
+ }>;
1295
+ signature: import("@chainsafe/ssz").ByteVectorType;
1172
1296
  }>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
1173
1297
  attestation1: import("@chainsafe/ssz").ContainerType<{
1174
1298
  attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
@@ -1414,6 +1538,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1414
1538
  }>;
1415
1539
  signature: import("@chainsafe/ssz").ByteVectorType;
1416
1540
  }>;
1541
+ }> | import("@chainsafe/ssz").ValueOfFields<{
1542
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1543
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1544
+ data: import("@chainsafe/ssz").ContainerType<{
1545
+ slot: import("@chainsafe/ssz").UintBigintType;
1546
+ index: import("@chainsafe/ssz").UintBigintType;
1547
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1548
+ source: import("@chainsafe/ssz").ContainerType<{
1549
+ epoch: import("@chainsafe/ssz").UintBigintType;
1550
+ root: import("@chainsafe/ssz").ByteVectorType;
1551
+ }>;
1552
+ target: import("@chainsafe/ssz").ContainerType<{
1553
+ epoch: import("@chainsafe/ssz").UintBigintType;
1554
+ root: import("@chainsafe/ssz").ByteVectorType;
1555
+ }>;
1556
+ }>;
1557
+ signature: import("@chainsafe/ssz").ByteVectorType;
1558
+ }>;
1559
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1560
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1561
+ data: import("@chainsafe/ssz").ContainerType<{
1562
+ slot: import("@chainsafe/ssz").UintBigintType;
1563
+ index: import("@chainsafe/ssz").UintBigintType;
1564
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1565
+ source: import("@chainsafe/ssz").ContainerType<{
1566
+ epoch: import("@chainsafe/ssz").UintBigintType;
1567
+ root: import("@chainsafe/ssz").ByteVectorType;
1568
+ }>;
1569
+ target: import("@chainsafe/ssz").ContainerType<{
1570
+ epoch: import("@chainsafe/ssz").UintBigintType;
1571
+ root: import("@chainsafe/ssz").ByteVectorType;
1572
+ }>;
1573
+ }>;
1574
+ signature: import("@chainsafe/ssz").ByteVectorType;
1575
+ }>;
1417
1576
  }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1418
1577
  attestation1: import("@chainsafe/ssz").ContainerType<{
1419
1578
  attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
@@ -1659,6 +1818,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1659
1818
  }>;
1660
1819
  signature: import("@chainsafe/ssz").ByteVectorType;
1661
1820
  }>;
1821
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1822
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1823
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1824
+ data: import("@chainsafe/ssz").ContainerType<{
1825
+ slot: import("@chainsafe/ssz").UintBigintType;
1826
+ index: import("@chainsafe/ssz").UintBigintType;
1827
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1828
+ source: import("@chainsafe/ssz").ContainerType<{
1829
+ epoch: import("@chainsafe/ssz").UintBigintType;
1830
+ root: import("@chainsafe/ssz").ByteVectorType;
1831
+ }>;
1832
+ target: import("@chainsafe/ssz").ContainerType<{
1833
+ epoch: import("@chainsafe/ssz").UintBigintType;
1834
+ root: import("@chainsafe/ssz").ByteVectorType;
1835
+ }>;
1836
+ }>;
1837
+ signature: import("@chainsafe/ssz").ByteVectorType;
1838
+ }>;
1839
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1840
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1841
+ data: import("@chainsafe/ssz").ContainerType<{
1842
+ slot: import("@chainsafe/ssz").UintBigintType;
1843
+ index: import("@chainsafe/ssz").UintBigintType;
1844
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1845
+ source: import("@chainsafe/ssz").ContainerType<{
1846
+ epoch: import("@chainsafe/ssz").UintBigintType;
1847
+ root: import("@chainsafe/ssz").ByteVectorType;
1848
+ }>;
1849
+ target: import("@chainsafe/ssz").ContainerType<{
1850
+ epoch: import("@chainsafe/ssz").UintBigintType;
1851
+ root: import("@chainsafe/ssz").ByteVectorType;
1852
+ }>;
1853
+ }>;
1854
+ signature: import("@chainsafe/ssz").ByteVectorType;
1855
+ }>;
1662
1856
  }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1663
1857
  attestation1: import("@chainsafe/ssz").ContainerType<{
1664
1858
  attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
@@ -1904,6 +2098,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1904
2098
  }>;
1905
2099
  signature: import("@chainsafe/ssz").ByteVectorType;
1906
2100
  }>;
2101
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
2102
+ attestation1: import("@chainsafe/ssz").ContainerType<{
2103
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
2104
+ data: import("@chainsafe/ssz").ContainerType<{
2105
+ slot: import("@chainsafe/ssz").UintBigintType;
2106
+ index: import("@chainsafe/ssz").UintBigintType;
2107
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
2108
+ source: import("@chainsafe/ssz").ContainerType<{
2109
+ epoch: import("@chainsafe/ssz").UintBigintType;
2110
+ root: import("@chainsafe/ssz").ByteVectorType;
2111
+ }>;
2112
+ target: import("@chainsafe/ssz").ContainerType<{
2113
+ epoch: import("@chainsafe/ssz").UintBigintType;
2114
+ root: import("@chainsafe/ssz").ByteVectorType;
2115
+ }>;
2116
+ }>;
2117
+ signature: import("@chainsafe/ssz").ByteVectorType;
2118
+ }>;
2119
+ attestation2: import("@chainsafe/ssz").ContainerType<{
2120
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
2121
+ data: import("@chainsafe/ssz").ContainerType<{
2122
+ slot: import("@chainsafe/ssz").UintBigintType;
2123
+ index: import("@chainsafe/ssz").UintBigintType;
2124
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
2125
+ source: import("@chainsafe/ssz").ContainerType<{
2126
+ epoch: import("@chainsafe/ssz").UintBigintType;
2127
+ root: import("@chainsafe/ssz").ByteVectorType;
2128
+ }>;
2129
+ target: import("@chainsafe/ssz").ContainerType<{
2130
+ epoch: import("@chainsafe/ssz").UintBigintType;
2131
+ root: import("@chainsafe/ssz").ByteVectorType;
2132
+ }>;
2133
+ }>;
2134
+ signature: import("@chainsafe/ssz").ByteVectorType;
2135
+ }>;
1907
2136
  }>> | import("@chainsafe/ssz").ContainerType<{
1908
2137
  message: import("@chainsafe/ssz").ContainerType<{
1909
2138
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -2090,7 +2319,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
2090
2319
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2091
2320
  }>;
2092
2321
  signatureSlot: import("@chainsafe/ssz").UintNumberType;
2093
- }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2322
+ }> | import("@chainsafe/ssz").ValueOfFields<{
2094
2323
  attestedHeader: import("@chainsafe/ssz").ContainerType<{
2095
2324
  beacon: import("@chainsafe/ssz").ContainerType<{
2096
2325
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -2099,13 +2328,33 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
2099
2328
  stateRoot: import("@chainsafe/ssz").ByteVectorType;
2100
2329
  bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2101
2330
  }>;
2331
+ execution: import("@chainsafe/ssz").ContainerType<{
2332
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
2333
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
2334
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2335
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2336
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
2337
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
2338
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2339
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
2340
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
2341
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
2342
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
2343
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
2344
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
2345
+ timestamp: import("@chainsafe/ssz").UintNumberType;
2346
+ extraData: import("@chainsafe/ssz").ByteListType;
2347
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
2348
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
2349
+ }>;
2350
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
2102
2351
  }>;
2103
2352
  syncAggregate: import("@chainsafe/ssz").ContainerType<{
2104
2353
  syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
2105
2354
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2106
2355
  }>;
2107
2356
  signatureSlot: import("@chainsafe/ssz").UintNumberType;
2108
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2357
+ }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2109
2358
  attestedHeader: import("@chainsafe/ssz").ContainerType<{
2110
2359
  beacon: import("@chainsafe/ssz").ContainerType<{
2111
2360
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -2129,10 +2378,60 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
2129
2378
  stateRoot: import("@chainsafe/ssz").ByteVectorType;
2130
2379
  bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2131
2380
  }>;
2132
- execution: import("@chainsafe/ssz").ContainerType<{
2133
- withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2134
- transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2135
- parentHash: import("@chainsafe/ssz").ByteVectorType;
2381
+ }>;
2382
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
2383
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
2384
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2385
+ }>;
2386
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
2387
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2388
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
2389
+ beacon: import("@chainsafe/ssz").ContainerType<{
2390
+ slot: import("@chainsafe/ssz").UintNumberType;
2391
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
2392
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
2393
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2394
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2395
+ }>;
2396
+ execution: import("@chainsafe/ssz").ContainerType<{
2397
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2398
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2399
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
2400
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
2401
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2402
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
2403
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
2404
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
2405
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
2406
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
2407
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
2408
+ timestamp: import("@chainsafe/ssz").UintNumberType;
2409
+ extraData: import("@chainsafe/ssz").ByteListType;
2410
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
2411
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
2412
+ }>;
2413
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
2414
+ }>;
2415
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
2416
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
2417
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2418
+ }>;
2419
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
2420
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2421
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
2422
+ beacon: import("@chainsafe/ssz").ContainerType<{
2423
+ slot: import("@chainsafe/ssz").UintNumberType;
2424
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
2425
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
2426
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2427
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2428
+ }>;
2429
+ execution: import("@chainsafe/ssz").ContainerType<{
2430
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
2431
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
2432
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2433
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2434
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
2136
2435
  feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
2137
2436
  stateRoot: import("@chainsafe/ssz").ByteVectorType;
2138
2437
  receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
@@ -2426,6 +2725,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
2426
2725
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2427
2726
  }>;
2428
2727
  signatureSlot: import("@chainsafe/ssz").UintNumberType;
2728
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
2729
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
2730
+ beacon: import("@chainsafe/ssz").ContainerType<{
2731
+ slot: import("@chainsafe/ssz").UintNumberType;
2732
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
2733
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
2734
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2735
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2736
+ }>;
2737
+ execution: import("@chainsafe/ssz").ContainerType<{
2738
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
2739
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
2740
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2741
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2742
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
2743
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
2744
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2745
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
2746
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
2747
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
2748
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
2749
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
2750
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
2751
+ timestamp: import("@chainsafe/ssz").UintNumberType;
2752
+ extraData: import("@chainsafe/ssz").ByteListType;
2753
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
2754
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
2755
+ }>;
2756
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
2757
+ }>;
2758
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
2759
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
2760
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2761
+ }>;
2762
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
2429
2763
  }>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
2430
2764
  attestedHeader: import("@chainsafe/ssz").ContainerType<{
2431
2765
  beacon: import("@chainsafe/ssz").ContainerType<{
@@ -2732,6 +3066,71 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
2732
3066
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2733
3067
  }>;
2734
3068
  signatureSlot: import("@chainsafe/ssz").UintNumberType;
3069
+ }> | import("@chainsafe/ssz").ValueOfFields<{
3070
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
3071
+ beacon: import("@chainsafe/ssz").ContainerType<{
3072
+ slot: import("@chainsafe/ssz").UintNumberType;
3073
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
3074
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
3075
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3076
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
3077
+ }>;
3078
+ execution: import("@chainsafe/ssz").ContainerType<{
3079
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
3080
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
3081
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
3082
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
3083
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
3084
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
3085
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3086
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
3087
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
3088
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
3089
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
3090
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
3091
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
3092
+ timestamp: import("@chainsafe/ssz").UintNumberType;
3093
+ extraData: import("@chainsafe/ssz").ByteListType;
3094
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
3095
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
3096
+ }>;
3097
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
3098
+ }>;
3099
+ finalizedHeader: import("@chainsafe/ssz").ContainerType<{
3100
+ beacon: import("@chainsafe/ssz").ContainerType<{
3101
+ slot: import("@chainsafe/ssz").UintNumberType;
3102
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
3103
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
3104
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3105
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
3106
+ }>;
3107
+ execution: import("@chainsafe/ssz").ContainerType<{
3108
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
3109
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
3110
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
3111
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
3112
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
3113
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
3114
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3115
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
3116
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
3117
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
3118
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
3119
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
3120
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
3121
+ timestamp: import("@chainsafe/ssz").UintNumberType;
3122
+ extraData: import("@chainsafe/ssz").ByteListType;
3123
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
3124
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
3125
+ }>;
3126
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
3127
+ }>;
3128
+ finalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
3129
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
3130
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
3131
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
3132
+ }>;
3133
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
2735
3134
  }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2736
3135
  attestedHeader: import("@chainsafe/ssz").ContainerType<{
2737
3136
  beacon: import("@chainsafe/ssz").ContainerType<{
@@ -3038,6 +3437,71 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
3038
3437
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
3039
3438
  }>;
3040
3439
  signatureSlot: import("@chainsafe/ssz").UintNumberType;
3440
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
3441
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
3442
+ beacon: import("@chainsafe/ssz").ContainerType<{
3443
+ slot: import("@chainsafe/ssz").UintNumberType;
3444
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
3445
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
3446
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3447
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
3448
+ }>;
3449
+ execution: import("@chainsafe/ssz").ContainerType<{
3450
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
3451
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
3452
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
3453
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
3454
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
3455
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
3456
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3457
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
3458
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
3459
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
3460
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
3461
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
3462
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
3463
+ timestamp: import("@chainsafe/ssz").UintNumberType;
3464
+ extraData: import("@chainsafe/ssz").ByteListType;
3465
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
3466
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
3467
+ }>;
3468
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
3469
+ }>;
3470
+ finalizedHeader: import("@chainsafe/ssz").ContainerType<{
3471
+ beacon: import("@chainsafe/ssz").ContainerType<{
3472
+ slot: import("@chainsafe/ssz").UintNumberType;
3473
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
3474
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
3475
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3476
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
3477
+ }>;
3478
+ execution: import("@chainsafe/ssz").ContainerType<{
3479
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
3480
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
3481
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
3482
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
3483
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
3484
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
3485
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3486
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
3487
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
3488
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
3489
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
3490
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
3491
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
3492
+ timestamp: import("@chainsafe/ssz").UintNumberType;
3493
+ extraData: import("@chainsafe/ssz").ByteListType;
3494
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
3495
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
3496
+ }>;
3497
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
3498
+ }>;
3499
+ finalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
3500
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
3501
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
3502
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
3503
+ }>;
3504
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
3041
3505
  }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
3042
3506
  attestedHeader: import("@chainsafe/ssz").ContainerType<{
3043
3507
  beacon: import("@chainsafe/ssz").ContainerType<{
@@ -3344,6 +3808,71 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
3344
3808
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
3345
3809
  }>;
3346
3810
  signatureSlot: import("@chainsafe/ssz").UintNumberType;
3811
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
3812
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
3813
+ beacon: import("@chainsafe/ssz").ContainerType<{
3814
+ slot: import("@chainsafe/ssz").UintNumberType;
3815
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
3816
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
3817
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3818
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
3819
+ }>;
3820
+ execution: import("@chainsafe/ssz").ContainerType<{
3821
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
3822
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
3823
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
3824
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
3825
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
3826
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
3827
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3828
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
3829
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
3830
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
3831
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
3832
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
3833
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
3834
+ timestamp: import("@chainsafe/ssz").UintNumberType;
3835
+ extraData: import("@chainsafe/ssz").ByteListType;
3836
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
3837
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
3838
+ }>;
3839
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
3840
+ }>;
3841
+ finalizedHeader: import("@chainsafe/ssz").ContainerType<{
3842
+ beacon: import("@chainsafe/ssz").ContainerType<{
3843
+ slot: import("@chainsafe/ssz").UintNumberType;
3844
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
3845
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
3846
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3847
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
3848
+ }>;
3849
+ execution: import("@chainsafe/ssz").ContainerType<{
3850
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
3851
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
3852
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
3853
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
3854
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
3855
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
3856
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3857
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
3858
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
3859
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
3860
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
3861
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
3862
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
3863
+ timestamp: import("@chainsafe/ssz").UintNumberType;
3864
+ extraData: import("@chainsafe/ssz").ByteListType;
3865
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
3866
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
3867
+ }>;
3868
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
3869
+ }>;
3870
+ finalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
3871
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
3872
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
3873
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
3874
+ }>;
3875
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
3347
3876
  }>>;
3348
3877
  /**
3349
3878
  * Deserialize a gossip serialized data into an ssz object.
@@ -3370,9 +3899,13 @@ export declare function parseGossipTopic(forkDigestContext: ForkDigestContext, t
3370
3899
  /**
3371
3900
  * De-duplicate logic to pick fork topics between subscribeCoreTopicsAtFork and unsubscribeCoreTopicsAtFork
3372
3901
  */
3373
- export declare function getCoreTopicsAtFork(config: ChainConfig, fork: ForkName, opts: {
3902
+ export declare function getCoreTopicsAtFork(networkConfig: NetworkConfig, fork: ForkName, opts: {
3374
3903
  subscribeAllSubnets?: boolean;
3375
3904
  disableLightClientServer?: boolean;
3376
3905
  }): GossipTopicTypeMap[keyof GossipTopicTypeMap][];
3906
+ /**
3907
+ * Pick data column subnets to subscribe to post-fulu.
3908
+ */
3909
+ export declare function getDataColumnSidecarTopics(networkConfig: NetworkConfig): GossipTopicTypeMap[keyof GossipTopicTypeMap][];
3377
3910
  export declare const gossipTopicIgnoreDuplicatePublishError: Record<GossipType, boolean>;
3378
3911
  //# sourceMappingURL=topic.d.ts.map