@lodestar/beacon-node 1.34.0-dev.b85c316da3 → 1.34.0-dev.bb10d2b5ea

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 (197) hide show
  1. package/lib/api/impl/beacon/blocks/index.js +77 -42
  2. package/lib/api/impl/beacon/blocks/index.js.map +1 -1
  3. package/lib/api/impl/beacon/pool/index.js +5 -5
  4. package/lib/api/impl/beacon/pool/index.js.map +1 -1
  5. package/lib/api/impl/beacon/state/index.js +24 -17
  6. package/lib/api/impl/beacon/state/index.js.map +1 -1
  7. package/lib/api/impl/debug/index.js +4 -4
  8. package/lib/api/impl/debug/index.js.map +1 -1
  9. package/lib/api/impl/events/index.js +1 -1
  10. package/lib/api/impl/events/index.js.map +1 -1
  11. package/lib/api/impl/validator/index.js +66 -49
  12. package/lib/api/impl/validator/index.js.map +1 -1
  13. package/lib/api/impl/validator/utils.d.ts +3 -3
  14. package/lib/api/impl/validator/utils.js +2 -2
  15. package/lib/api/impl/validator/utils.js.map +1 -1
  16. package/lib/chain/archiveStore/utils/archiveBlocks.js +26 -24
  17. package/lib/chain/archiveStore/utils/archiveBlocks.js.map +1 -1
  18. package/lib/chain/blocks/utils/blowfishBanner.js +1 -0
  19. package/lib/chain/blocks/utils/blowfishBanner.js.map +1 -1
  20. package/lib/chain/blocks/utils/giraffeBanner.js +1 -0
  21. package/lib/chain/blocks/utils/giraffeBanner.js.map +1 -1
  22. package/lib/chain/blocks/utils/zebraBanner.d.ts +2 -0
  23. package/lib/chain/blocks/utils/zebraBanner.js +46 -0
  24. package/lib/chain/blocks/utils/zebraBanner.js.map +1 -0
  25. package/lib/chain/blocks/verifyBlock.js +18 -5
  26. package/lib/chain/blocks/verifyBlock.js.map +1 -1
  27. package/lib/chain/blocks/writeBlockInputToDb.js +8 -35
  28. package/lib/chain/blocks/writeBlockInputToDb.js.map +1 -1
  29. package/lib/chain/bls/multithread/index.js +2 -2
  30. package/lib/chain/bls/multithread/index.js.map +1 -1
  31. package/lib/chain/chain.d.ts +8 -80
  32. package/lib/chain/chain.js +52 -84
  33. package/lib/chain/chain.js.map +1 -1
  34. package/lib/chain/forkChoice/index.d.ts +2 -1
  35. package/lib/chain/forkChoice/index.js +2 -2
  36. package/lib/chain/forkChoice/index.js.map +1 -1
  37. package/lib/chain/interface.d.ts +3 -10
  38. package/lib/chain/interface.js.map +1 -1
  39. package/lib/chain/opPools/aggregatedAttestationPool.js +13 -3
  40. package/lib/chain/opPools/aggregatedAttestationPool.js.map +1 -1
  41. package/lib/chain/opPools/attestationPool.d.ts +1 -1
  42. package/lib/chain/opPools/attestationPool.js +7 -7
  43. package/lib/chain/prepareNextSlot.js +4 -2
  44. package/lib/chain/prepareNextSlot.js.map +1 -1
  45. package/lib/chain/produceBlock/produceBlockBody.d.ts +30 -18
  46. package/lib/chain/produceBlock/produceBlockBody.js +27 -32
  47. package/lib/chain/produceBlock/produceBlockBody.js.map +1 -1
  48. package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.d.ts +6 -4
  49. package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.js +22 -21
  50. package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.js.map +1 -1
  51. package/lib/chain/rewards/syncCommitteeRewards.js +4 -4
  52. package/lib/chain/rewards/syncCommitteeRewards.js.map +1 -1
  53. package/lib/chain/validation/aggregateAndProof.d.ts +1 -1
  54. package/lib/chain/validation/aggregateAndProof.js +8 -8
  55. package/lib/chain/validation/aggregateAndProof.js.map +1 -1
  56. package/lib/chain/validation/attestation.d.ts +3 -3
  57. package/lib/chain/validation/attestation.js +10 -10
  58. package/lib/chain/validation/attestation.js.map +1 -1
  59. package/lib/chain/validation/dataColumnSidecar.d.ts +2 -1
  60. package/lib/chain/validation/dataColumnSidecar.js +17 -8
  61. package/lib/chain/validation/dataColumnSidecar.js.map +1 -1
  62. package/lib/chain/validation/syncCommitteeContributionAndProof.js +2 -2
  63. package/lib/chain/validation/syncCommitteeContributionAndProof.js.map +1 -1
  64. package/lib/db/beacon.d.ts +3 -3
  65. package/lib/db/beacon.js +3 -3
  66. package/lib/db/beacon.js.map +1 -1
  67. package/lib/db/interface.d.ts +3 -3
  68. package/lib/db/repositories/dataColumnSidecar.d.ts +26 -0
  69. package/lib/db/repositories/dataColumnSidecar.js +39 -0
  70. package/lib/db/repositories/dataColumnSidecar.js.map +1 -0
  71. package/lib/db/repositories/dataColumnSidecarArchive.d.ts +24 -0
  72. package/lib/db/repositories/dataColumnSidecarArchive.js +39 -0
  73. package/lib/db/repositories/dataColumnSidecarArchive.js.map +1 -0
  74. package/lib/db/repositories/index.d.ts +2 -2
  75. package/lib/db/repositories/index.js +2 -2
  76. package/lib/db/repositories/index.js.map +1 -1
  77. package/lib/db/repositories/stateArchive.js +1 -1
  78. package/lib/db/repositories/stateArchive.js.map +1 -1
  79. package/lib/execution/builder/http.d.ts +20 -4
  80. package/lib/execution/builder/http.js +30 -11
  81. package/lib/execution/builder/http.js.map +1 -1
  82. package/lib/execution/builder/interface.d.ts +5 -4
  83. package/lib/execution/engine/http.d.ts +4 -3
  84. package/lib/execution/engine/http.js +34 -54
  85. package/lib/execution/engine/http.js.map +1 -1
  86. package/lib/execution/engine/interface.d.ts +2 -11
  87. package/lib/execution/engine/mock.d.ts +4 -1
  88. package/lib/execution/engine/mock.js +54 -16
  89. package/lib/execution/engine/mock.js.map +1 -1
  90. package/lib/execution/engine/types.d.ts +5 -5
  91. package/lib/execution/engine/types.js +2 -2
  92. package/lib/execution/engine/types.js.map +1 -1
  93. package/lib/execution/engine/utils.js +1 -1
  94. package/lib/execution/engine/utils.js.map +1 -1
  95. package/lib/metrics/metrics/beacon.d.ts +2 -28
  96. package/lib/metrics/metrics/beacon.js +9 -75
  97. package/lib/metrics/metrics/beacon.js.map +1 -1
  98. package/lib/metrics/metrics/lodestar.d.ts +8 -0
  99. package/lib/metrics/metrics/lodestar.js +24 -0
  100. package/lib/metrics/metrics/lodestar.js.map +1 -1
  101. package/lib/metrics/metrics.d.ts +2 -1
  102. package/lib/metrics/metrics.js +3 -0
  103. package/lib/metrics/metrics.js.map +1 -1
  104. package/lib/network/core/networkCore.d.ts +5 -0
  105. package/lib/network/core/networkCore.js +44 -15
  106. package/lib/network/core/networkCore.js.map +1 -1
  107. package/lib/network/core/networkCoreWorkerHandler.js +1 -1
  108. package/lib/network/core/networkCoreWorkerHandler.js.map +1 -1
  109. package/lib/network/gossip/gossipsub.d.ts +2 -2
  110. package/lib/network/gossip/gossipsub.js +8 -6
  111. package/lib/network/gossip/gossipsub.js.map +1 -1
  112. package/lib/network/gossip/scoringParameters.d.ts +6 -2
  113. package/lib/network/gossip/scoringParameters.js.map +1 -1
  114. package/lib/network/gossip/topic.d.ts +627 -94
  115. package/lib/network/gossip/topic.js +15 -6
  116. package/lib/network/gossip/topic.js.map +1 -1
  117. package/lib/network/interface.d.ts +3 -3
  118. package/lib/network/network.d.ts +3 -3
  119. package/lib/network/network.js +6 -1
  120. package/lib/network/network.js.map +1 -1
  121. package/lib/network/options.js +2 -2
  122. package/lib/network/peers/discover.js +1 -1
  123. package/lib/network/peers/discover.js.map +1 -1
  124. package/lib/network/peers/peerManager.js +24 -12
  125. package/lib/network/peers/peerManager.js.map +1 -1
  126. package/lib/network/peers/utils/prioritizePeers.d.ts +2 -1
  127. package/lib/network/peers/utils/prioritizePeers.js +5 -5
  128. package/lib/network/peers/utils/prioritizePeers.js.map +1 -1
  129. package/lib/network/processor/gossipHandlers.js +44 -35
  130. package/lib/network/processor/gossipHandlers.js.map +1 -1
  131. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.d.ts +6 -3
  132. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.js +53 -23
  133. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.js.map +1 -1
  134. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.d.ts +7 -2
  135. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.js +7 -7
  136. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.js.map +1 -1
  137. package/lib/network/reqresp/handlers/beaconBlocksByRange.js +3 -3
  138. package/lib/network/reqresp/handlers/beaconBlocksByRange.js.map +1 -1
  139. package/lib/network/reqresp/handlers/beaconBlocksByRoot.d.ts +2 -2
  140. package/lib/network/reqresp/handlers/beaconBlocksByRoot.js.map +1 -1
  141. package/lib/network/reqresp/handlers/blobSidecarsByRange.d.ts +2 -2
  142. package/lib/network/reqresp/handlers/blobSidecarsByRange.js +2 -3
  143. package/lib/network/reqresp/handlers/blobSidecarsByRange.js.map +1 -1
  144. package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.d.ts +3 -3
  145. package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.js +67 -46
  146. package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.js.map +1 -1
  147. package/lib/network/reqresp/handlers/dataColumnSidecarsByRoot.d.ts +2 -2
  148. package/lib/network/reqresp/handlers/dataColumnSidecarsByRoot.js +48 -34
  149. package/lib/network/reqresp/handlers/dataColumnSidecarsByRoot.js.map +1 -1
  150. package/lib/network/reqresp/handlers/index.js +4 -3
  151. package/lib/network/reqresp/handlers/index.js.map +1 -1
  152. package/lib/network/reqresp/rateLimit.js +11 -5
  153. package/lib/network/reqresp/rateLimit.js.map +1 -1
  154. package/lib/network/reqresp/types.d.ts +3 -3
  155. package/lib/network/reqresp/types.js +3 -3
  156. package/lib/network/reqresp/types.js.map +1 -1
  157. package/lib/network/reqresp/utils/dataColumnResponseValidation.d.ts +16 -0
  158. package/lib/network/reqresp/utils/dataColumnResponseValidation.js +59 -0
  159. package/lib/network/reqresp/utils/dataColumnResponseValidation.js.map +1 -0
  160. package/lib/network/subnets/interface.js +2 -2
  161. package/lib/network/subnets/interface.js.map +1 -1
  162. package/lib/sync/backfill/backfill.js +1 -1
  163. package/lib/sync/backfill/backfill.js.map +1 -1
  164. package/lib/sync/range/chain.d.ts +1 -1
  165. package/lib/sync/range/chain.js +2 -2
  166. package/lib/sync/range/chain.js.map +1 -1
  167. package/lib/sync/range/range.js +2 -2
  168. package/lib/sync/range/range.js.map +1 -1
  169. package/lib/sync/range/utils/peerBalancer.d.ts +3 -1
  170. package/lib/sync/range/utils/peerBalancer.js +20 -1
  171. package/lib/sync/range/utils/peerBalancer.js.map +1 -1
  172. package/lib/sync/unknownBlock.d.ts +46 -4
  173. package/lib/sync/unknownBlock.js +306 -203
  174. package/lib/sync/unknownBlock.js.map +1 -1
  175. package/lib/util/blobs.d.ts +3 -13
  176. package/lib/util/blobs.js +9 -47
  177. package/lib/util/blobs.js.map +1 -1
  178. package/lib/util/dataColumns.d.ts +7 -5
  179. package/lib/util/dataColumns.js +37 -28
  180. package/lib/util/dataColumns.js.map +1 -1
  181. package/lib/util/queue/fnQueue.js +1 -1
  182. package/lib/util/queue/fnQueue.js.map +1 -1
  183. package/lib/util/queue/itemQueue.js +1 -1
  184. package/lib/util/queue/itemQueue.js.map +1 -1
  185. package/lib/util/sszBytes.d.ts +2 -0
  186. package/lib/util/sszBytes.js +23 -0
  187. package/lib/util/sszBytes.js.map +1 -1
  188. package/lib/util/types.d.ts +7 -0
  189. package/lib/util/types.js +3 -0
  190. package/lib/util/types.js.map +1 -1
  191. package/package.json +19 -20
  192. package/lib/db/repositories/dataColumnSidecars.d.ts +0 -47
  193. package/lib/db/repositories/dataColumnSidecars.js +0 -40
  194. package/lib/db/repositories/dataColumnSidecars.js.map +0 -1
  195. package/lib/db/repositories/dataColumnSidecarsArchive.d.ts +0 -15
  196. package/lib/db/repositories/dataColumnSidecarsArchive.js +0 -23
  197. package/lib/db/repositories/dataColumnSidecarsArchive.js.map +0 -1
@@ -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;
@@ -20,12 +21,61 @@ export declare class GossipTopicCache implements IGossipTopicCache {
20
21
  */
21
22
  export declare function stringifyGossipTopic(forkDigestContext: ForkDigestContext, topic: GossipTopic): string;
22
23
  export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe/ssz").ContainerType<{
24
+ index: import("@chainsafe/ssz").UintNumberType;
25
+ column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
26
+ kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
27
+ kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
28
+ signedBlockHeader: import("@chainsafe/ssz").ContainerType<{
29
+ message: import("@chainsafe/ssz").ContainerType<{
30
+ slot: import("@chainsafe/ssz").UintNumberType;
31
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
32
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
33
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
34
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
35
+ }>;
36
+ signature: import("@chainsafe/ssz").ByteVectorType;
37
+ }>;
38
+ kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
39
+ }> | import("@chainsafe/ssz").ContainerType<{
23
40
  message: import("@chainsafe/ssz").ContainerType<{
24
- slot: import("@chainsafe/ssz").UintNumberType;
25
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
26
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
27
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
28
41
  body: import("@chainsafe/ssz").ContainerType<{
42
+ executionPayload: import("@chainsafe/ssz").ContainerType<{
43
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
44
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
45
+ withdrawals: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
46
+ index: import("@chainsafe/ssz").UintNumberType;
47
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
48
+ address: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
49
+ amount: import("@chainsafe/ssz").UintBigintType;
50
+ }>>;
51
+ transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
52
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
53
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
54
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
55
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
56
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
57
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
58
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
59
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
60
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
61
+ timestamp: import("@chainsafe/ssz").UintNumberType;
62
+ extraData: import("@chainsafe/ssz").ByteListType;
63
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
64
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
65
+ }>;
66
+ blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
67
+ message: import("@chainsafe/ssz").ContainerType<{
68
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
69
+ fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
70
+ toExecutionAddress: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
71
+ }>;
72
+ signature: import("@chainsafe/ssz").ByteVectorType;
73
+ }>>;
74
+ blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
75
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
76
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
77
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
78
+ }>;
29
79
  randaoReveal: import("@chainsafe/ssz").ByteVectorType;
30
80
  eth1Data: import("@chainsafe/ssz").ContainerType<{
31
81
  depositRoot: import("@chainsafe/ssz").ByteVectorType;
@@ -125,82 +175,19 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
125
175
  signature: import("@chainsafe/ssz").ByteVectorType;
126
176
  }>>;
127
177
  }>;
128
- }>;
129
- signature: import("@chainsafe/ssz").ByteVectorType;
130
- }> | import("@chainsafe/ssz").ContainerType<{
131
- signedHeader1: import("@chainsafe/ssz").ContainerType<{
132
- message: import("@chainsafe/ssz").ContainerType<{
133
- slot: import("@chainsafe/ssz").UintBigintType;
134
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
135
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
136
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
137
- bodyRoot: import("@chainsafe/ssz").ByteVectorType;
138
- }>;
139
- signature: import("@chainsafe/ssz").ByteVectorType;
140
- }>;
141
- signedHeader2: import("@chainsafe/ssz").ContainerType<{
142
- message: import("@chainsafe/ssz").ContainerType<{
143
- slot: import("@chainsafe/ssz").UintBigintType;
144
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
145
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
146
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
147
- bodyRoot: import("@chainsafe/ssz").ByteVectorType;
148
- }>;
149
- signature: import("@chainsafe/ssz").ByteVectorType;
150
- }>;
151
- }> | import("@chainsafe/ssz").ContainerType<{
152
- message: import("@chainsafe/ssz").ContainerType<{
153
- epoch: import("@chainsafe/ssz").UintNumberType;
154
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
155
- }>;
156
- signature: import("@chainsafe/ssz").ByteVectorType;
157
- }> | import("@chainsafe/ssz").ContainerType<{
158
- message: import("@chainsafe/ssz").ContainerType<{
159
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
160
- fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
161
- toExecutionAddress: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
178
+ slot: import("@chainsafe/ssz").UintNumberType;
179
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
180
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
181
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
162
182
  }>;
163
183
  signature: import("@chainsafe/ssz").ByteVectorType;
164
184
  }> | import("@chainsafe/ssz").ContainerType<{
165
185
  message: import("@chainsafe/ssz").ContainerType<{
186
+ slot: import("@chainsafe/ssz").UintNumberType;
187
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
188
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
189
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
166
190
  body: import("@chainsafe/ssz").ContainerType<{
167
- executionPayload: import("@chainsafe/ssz").ContainerType<{
168
- blobGasUsed: import("@chainsafe/ssz").UintBigintType;
169
- excessBlobGas: import("@chainsafe/ssz").UintBigintType;
170
- withdrawals: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
171
- index: import("@chainsafe/ssz").UintNumberType;
172
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
173
- address: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
174
- amount: import("@chainsafe/ssz").UintBigintType;
175
- }>>;
176
- transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
177
- parentHash: import("@chainsafe/ssz").ByteVectorType;
178
- feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
179
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
180
- receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
181
- logsBloom: import("@chainsafe/ssz").ByteVectorType;
182
- prevRandao: import("@chainsafe/ssz").ByteVectorType;
183
- blockNumber: import("@chainsafe/ssz").UintNumberType;
184
- gasLimit: import("@chainsafe/ssz").UintNumberType;
185
- gasUsed: import("@chainsafe/ssz").UintNumberType;
186
- timestamp: import("@chainsafe/ssz").UintNumberType;
187
- extraData: import("@chainsafe/ssz").ByteListType;
188
- baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
189
- blockHash: import("@chainsafe/ssz").ByteVectorType;
190
- }>;
191
- blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
192
- message: import("@chainsafe/ssz").ContainerType<{
193
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
194
- fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
195
- toExecutionAddress: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
196
- }>;
197
- signature: import("@chainsafe/ssz").ByteVectorType;
198
- }>>;
199
- blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
200
- syncAggregate: import("@chainsafe/ssz").ContainerType<{
201
- syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
202
- syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
203
- }>;
204
191
  randaoReveal: import("@chainsafe/ssz").ByteVectorType;
205
192
  eth1Data: import("@chainsafe/ssz").ContainerType<{
206
193
  depositRoot: import("@chainsafe/ssz").ByteVectorType;
@@ -300,20 +287,12 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
300
287
  signature: import("@chainsafe/ssz").ByteVectorType;
301
288
  }>>;
302
289
  }>;
303
- slot: import("@chainsafe/ssz").UintNumberType;
304
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
305
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
306
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
307
290
  }>;
308
291
  signature: import("@chainsafe/ssz").ByteVectorType;
309
292
  }> | import("@chainsafe/ssz").ContainerType<{
310
- index: import("@chainsafe/ssz").UintNumberType;
311
- blob: import("@chainsafe/ssz").ByteVectorType;
312
- kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
313
- kzgProof: import("@chainsafe/ssz").ByteVectorType;
314
- signedBlockHeader: import("@chainsafe/ssz").ContainerType<{
293
+ signedHeader1: import("@chainsafe/ssz").ContainerType<{
315
294
  message: import("@chainsafe/ssz").ContainerType<{
316
- slot: import("@chainsafe/ssz").UintNumberType;
295
+ slot: import("@chainsafe/ssz").UintBigintType;
317
296
  proposerIndex: import("@chainsafe/ssz").UintNumberType;
318
297
  parentRoot: import("@chainsafe/ssz").ByteVectorType;
319
298
  stateRoot: import("@chainsafe/ssz").ByteVectorType;
@@ -321,12 +300,34 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
321
300
  }>;
322
301
  signature: import("@chainsafe/ssz").ByteVectorType;
323
302
  }>;
324
- kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
303
+ signedHeader2: import("@chainsafe/ssz").ContainerType<{
304
+ message: import("@chainsafe/ssz").ContainerType<{
305
+ slot: import("@chainsafe/ssz").UintBigintType;
306
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
307
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
308
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
309
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
310
+ }>;
311
+ signature: import("@chainsafe/ssz").ByteVectorType;
312
+ }>;
313
+ }> | import("@chainsafe/ssz").ContainerType<{
314
+ message: import("@chainsafe/ssz").ContainerType<{
315
+ epoch: import("@chainsafe/ssz").UintNumberType;
316
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
317
+ }>;
318
+ signature: import("@chainsafe/ssz").ByteVectorType;
319
+ }> | import("@chainsafe/ssz").ContainerType<{
320
+ message: import("@chainsafe/ssz").ContainerType<{
321
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
322
+ fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
323
+ toExecutionAddress: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
324
+ }>;
325
+ signature: import("@chainsafe/ssz").ByteVectorType;
325
326
  }> | import("@chainsafe/ssz").ContainerType<{
326
327
  index: import("@chainsafe/ssz").UintNumberType;
327
- column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
328
- kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
329
- kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
328
+ blob: import("@chainsafe/ssz").ByteVectorType;
329
+ kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
330
+ kzgProof: import("@chainsafe/ssz").ByteVectorType;
330
331
  signedBlockHeader: import("@chainsafe/ssz").ContainerType<{
331
332
  message: import("@chainsafe/ssz").ContainerType<{
332
333
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -337,7 +338,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
337
338
  }>;
338
339
  signature: import("@chainsafe/ssz").ByteVectorType;
339
340
  }>;
340
- kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
341
+ kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
341
342
  }> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
342
343
  message: import("@chainsafe/ssz").ContainerType<{
343
344
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -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;
@@ -2083,14 +2312,64 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
2083
2312
  baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
2084
2313
  blockHash: import("@chainsafe/ssz").ByteVectorType;
2085
2314
  }>;
2086
- executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
2315
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
2316
+ }>;
2317
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
2318
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
2319
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2320
+ }>;
2321
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
2322
+ }> | import("@chainsafe/ssz").ValueOfFields<{
2323
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
2324
+ beacon: import("@chainsafe/ssz").ContainerType<{
2325
+ slot: import("@chainsafe/ssz").UintNumberType;
2326
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
2327
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
2328
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2329
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
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>;
2351
+ }>;
2352
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
2353
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
2354
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2355
+ }>;
2356
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
2357
+ }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2358
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
2359
+ beacon: import("@chainsafe/ssz").ContainerType<{
2360
+ slot: import("@chainsafe/ssz").UintNumberType;
2361
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
2362
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
2363
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2364
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2365
+ }>;
2087
2366
  }>;
2088
2367
  syncAggregate: import("@chainsafe/ssz").ContainerType<{
2089
2368
  syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
2090
2369
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2091
2370
  }>;
2092
2371
  signatureSlot: import("@chainsafe/ssz").UintNumberType;
2093
- }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2372
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2094
2373
  attestedHeader: import("@chainsafe/ssz").ContainerType<{
2095
2374
  beacon: import("@chainsafe/ssz").ContainerType<{
2096
2375
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -2114,6 +2393,24 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
2114
2393
  stateRoot: import("@chainsafe/ssz").ByteVectorType;
2115
2394
  bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2116
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>;
2117
2414
  }>;
2118
2415
  syncAggregate: import("@chainsafe/ssz").ContainerType<{
2119
2416
  syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
@@ -2130,6 +2427,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
2130
2427
  bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2131
2428
  }>;
2132
2429
  execution: import("@chainsafe/ssz").ContainerType<{
2430
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
2431
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
2133
2432
  withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2134
2433
  transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2135
2434
  parentHash: 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