@lodestar/beacon-node 1.34.0-dev.d5a4e7a09c → 1.34.0-dev.eb034b5727

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 (243) hide show
  1. package/lib/api/impl/beacon/blocks/index.js +136 -30
  2. package/lib/api/impl/beacon/blocks/index.js.map +1 -1
  3. package/lib/api/impl/debug/index.d.ts +1 -1
  4. package/lib/api/impl/debug/index.js +24 -1
  5. package/lib/api/impl/debug/index.js.map +1 -1
  6. package/lib/api/impl/validator/index.js +11 -5
  7. package/lib/api/impl/validator/index.js.map +1 -1
  8. package/lib/chain/archiveStore/archiveStore.d.ts +1 -1
  9. package/lib/chain/archiveStore/archiveStore.js +2 -2
  10. package/lib/chain/archiveStore/interface.d.ts +1 -1
  11. package/lib/chain/archiveStore/utils/archiveBlocks.d.ts +1 -1
  12. package/lib/chain/archiveStore/utils/archiveBlocks.js +91 -23
  13. package/lib/chain/archiveStore/utils/archiveBlocks.js.map +1 -1
  14. package/lib/chain/beaconProposerCache.d.ts +1 -0
  15. package/lib/chain/beaconProposerCache.js +3 -0
  16. package/lib/chain/beaconProposerCache.js.map +1 -1
  17. package/lib/chain/blocks/importBlock.js +3 -2
  18. package/lib/chain/blocks/importBlock.js.map +1 -1
  19. package/lib/chain/blocks/types.d.ts +66 -23
  20. package/lib/chain/blocks/types.js +39 -5
  21. package/lib/chain/blocks/types.js.map +1 -1
  22. package/lib/chain/blocks/verifyBlocksDataAvailability.js +21 -10
  23. package/lib/chain/blocks/verifyBlocksDataAvailability.js.map +1 -1
  24. package/lib/chain/blocks/writeBlockInputToDb.js +89 -15
  25. package/lib/chain/blocks/writeBlockInputToDb.js.map +1 -1
  26. package/lib/chain/chain.d.ts +17 -28
  27. package/lib/chain/chain.js +71 -6
  28. package/lib/chain/chain.js.map +1 -1
  29. package/lib/chain/emitter.d.ts +18 -2
  30. package/lib/chain/emitter.js +13 -0
  31. package/lib/chain/emitter.js.map +1 -1
  32. package/lib/chain/errors/dataColumnSidecarError.d.ts +69 -0
  33. package/lib/chain/errors/dataColumnSidecarError.js +21 -0
  34. package/lib/chain/errors/dataColumnSidecarError.js.map +1 -0
  35. package/lib/chain/errors/index.d.ts +1 -0
  36. package/lib/chain/errors/index.js +1 -0
  37. package/lib/chain/errors/index.js.map +1 -1
  38. package/lib/chain/interface.d.ts +10 -4
  39. package/lib/chain/interface.js.map +1 -1
  40. package/lib/chain/options.d.ts +4 -1
  41. package/lib/chain/options.js +1 -0
  42. package/lib/chain/options.js.map +1 -1
  43. package/lib/chain/prepareNextSlot.js +2 -1
  44. package/lib/chain/prepareNextSlot.js.map +1 -1
  45. package/lib/chain/produceBlock/produceBlockBody.d.ts +4 -2
  46. package/lib/chain/produceBlock/produceBlockBody.js +9 -4
  47. package/lib/chain/produceBlock/produceBlockBody.js.map +1 -1
  48. package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.d.ts +3 -2
  49. package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.js +28 -2
  50. package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.js.map +1 -1
  51. package/lib/chain/seenCache/seenGossipBlockInput.d.ts +64 -18
  52. package/lib/chain/seenCache/seenGossipBlockInput.js +321 -53
  53. package/lib/chain/seenCache/seenGossipBlockInput.js.map +1 -1
  54. package/lib/chain/validation/dataColumnSidecar.d.ts +28 -0
  55. package/lib/chain/validation/dataColumnSidecar.js +248 -0
  56. package/lib/chain/validation/dataColumnSidecar.js.map +1 -0
  57. package/lib/db/beacon.d.ts +3 -1
  58. package/lib/db/beacon.js +3 -1
  59. package/lib/db/beacon.js.map +1 -1
  60. package/lib/db/buckets.d.ts +3 -1
  61. package/lib/db/buckets.js +2 -0
  62. package/lib/db/buckets.js.map +1 -1
  63. package/lib/db/interface.d.ts +3 -1
  64. package/lib/db/repositories/dataColumnSidecars.d.ts +47 -0
  65. package/lib/db/repositories/dataColumnSidecars.js +40 -0
  66. package/lib/db/repositories/dataColumnSidecars.js.map +1 -0
  67. package/lib/db/repositories/dataColumnSidecarsArchive.d.ts +15 -0
  68. package/lib/db/repositories/dataColumnSidecarsArchive.js +23 -0
  69. package/lib/db/repositories/dataColumnSidecarsArchive.js.map +1 -0
  70. package/lib/db/repositories/index.d.ts +2 -0
  71. package/lib/db/repositories/index.js +2 -0
  72. package/lib/db/repositories/index.js.map +1 -1
  73. package/lib/execution/builder/http.d.ts +18 -2
  74. package/lib/execution/builder/http.js +27 -8
  75. package/lib/execution/builder/http.js.map +1 -1
  76. package/lib/execution/builder/interface.d.ts +3 -2
  77. package/lib/execution/engine/http.d.ts +6 -3
  78. package/lib/execution/engine/http.js +56 -42
  79. package/lib/execution/engine/http.js.map +1 -1
  80. package/lib/execution/engine/interface.d.ts +4 -2
  81. package/lib/execution/engine/interface.js +1 -1
  82. package/lib/execution/engine/interface.js.map +1 -1
  83. package/lib/execution/engine/mock.d.ts +1 -0
  84. package/lib/execution/engine/mock.js +5 -0
  85. package/lib/execution/engine/mock.js.map +1 -1
  86. package/lib/execution/engine/types.d.ts +10 -0
  87. package/lib/execution/engine/types.js +6 -0
  88. package/lib/execution/engine/types.js.map +1 -1
  89. package/lib/metrics/metrics/beacon.d.ts +14 -0
  90. package/lib/metrics/metrics/beacon.js +57 -0
  91. package/lib/metrics/metrics/beacon.js.map +1 -1
  92. package/lib/metrics/metrics/lodestar.d.ts +24 -1
  93. package/lib/metrics/metrics/lodestar.js +45 -0
  94. package/lib/metrics/metrics/lodestar.js.map +1 -1
  95. package/lib/network/core/metrics.d.ts +10 -3
  96. package/lib/network/core/metrics.js +22 -4
  97. package/lib/network/core/metrics.js.map +1 -1
  98. package/lib/network/core/networkCore.d.ts +15 -4
  99. package/lib/network/core/networkCore.js +73 -23
  100. package/lib/network/core/networkCore.js.map +1 -1
  101. package/lib/network/core/networkCoreWorker.js +2 -0
  102. package/lib/network/core/networkCoreWorker.js.map +1 -1
  103. package/lib/network/core/networkCoreWorkerHandler.d.ts +5 -3
  104. package/lib/network/core/networkCoreWorkerHandler.js +6 -1
  105. package/lib/network/core/networkCoreWorkerHandler.js.map +1 -1
  106. package/lib/network/core/types.d.ts +7 -4
  107. package/lib/network/events.d.ts +4 -2
  108. package/lib/network/events.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/interface.d.ts +8 -1
  113. package/lib/network/gossip/interface.js +1 -0
  114. package/lib/network/gossip/interface.js.map +1 -1
  115. package/lib/network/gossip/scoringParameters.d.ts +6 -2
  116. package/lib/network/gossip/scoringParameters.js.map +1 -1
  117. package/lib/network/gossip/topic.d.ts +1077 -1056
  118. package/lib/network/gossip/topic.js +29 -1
  119. package/lib/network/gossip/topic.js.map +1 -1
  120. package/lib/network/interface.d.ts +9 -1
  121. package/lib/network/metadata.d.ts +9 -5
  122. package/lib/network/metadata.js +26 -5
  123. package/lib/network/metadata.js.map +1 -1
  124. package/lib/network/network.d.ts +12 -2
  125. package/lib/network/network.js +73 -11
  126. package/lib/network/network.js.map +1 -1
  127. package/lib/network/networkConfig.d.ts +12 -0
  128. package/lib/network/networkConfig.js +2 -0
  129. package/lib/network/networkConfig.js.map +1 -0
  130. package/lib/network/options.d.ts +1 -0
  131. package/lib/network/options.js +5 -0
  132. package/lib/network/options.js.map +1 -1
  133. package/lib/network/peers/discover.d.ts +8 -3
  134. package/lib/network/peers/discover.js +99 -14
  135. package/lib/network/peers/discover.js.map +1 -1
  136. package/lib/network/peers/peerManager.d.ts +10 -4
  137. package/lib/network/peers/peerManager.js +105 -19
  138. package/lib/network/peers/peerManager.js.map +1 -1
  139. package/lib/network/peers/peersData.d.ts +17 -3
  140. package/lib/network/peers/peersData.js.map +1 -1
  141. package/lib/network/peers/score/interface.d.ts +1 -1
  142. package/lib/network/peers/score/score.d.ts +2 -2
  143. package/lib/network/peers/score/score.js +4 -1
  144. package/lib/network/peers/score/score.js.map +1 -1
  145. package/lib/network/peers/score/store.d.ts +3 -1
  146. package/lib/network/peers/score/store.js +6 -2
  147. package/lib/network/peers/score/store.js.map +1 -1
  148. package/lib/network/peers/utils/assertPeerRelevance.d.ts +7 -3
  149. package/lib/network/peers/utils/assertPeerRelevance.js +10 -1
  150. package/lib/network/peers/utils/assertPeerRelevance.js.map +1 -1
  151. package/lib/network/peers/utils/prioritizePeers.d.ts +18 -7
  152. package/lib/network/peers/utils/prioritizePeers.js +43 -7
  153. package/lib/network/peers/utils/prioritizePeers.js.map +1 -1
  154. package/lib/network/processor/extractSlotRootFns.js +8 -1
  155. package/lib/network/processor/extractSlotRootFns.js.map +1 -1
  156. package/lib/network/processor/gossipHandlers.js +156 -10
  157. package/lib/network/processor/gossipHandlers.js.map +1 -1
  158. package/lib/network/processor/gossipQueues/index.js +5 -0
  159. package/lib/network/processor/gossipQueues/index.js.map +1 -1
  160. package/lib/network/processor/index.js +1 -0
  161. package/lib/network/processor/index.js.map +1 -1
  162. package/lib/network/reqresp/ReqRespBeaconNode.d.ts +2 -2
  163. package/lib/network/reqresp/ReqRespBeaconNode.js +36 -14
  164. package/lib/network/reqresp/ReqRespBeaconNode.js.map +1 -1
  165. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.d.ts +24 -4
  166. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.js +259 -20
  167. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.js.map +1 -1
  168. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.d.ts +32 -6
  169. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.js +283 -28
  170. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.js.map +1 -1
  171. package/lib/network/reqresp/handlers/beaconBlocksByRange.d.ts +1 -1
  172. package/lib/network/reqresp/handlers/beaconBlocksByRange.js.map +1 -1
  173. package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.d.ts +8 -0
  174. package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.js +92 -0
  175. package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.js.map +1 -0
  176. package/lib/network/reqresp/handlers/dataColumnSidecarsByRoot.d.ts +6 -0
  177. package/lib/network/reqresp/handlers/dataColumnSidecarsByRoot.js +50 -0
  178. package/lib/network/reqresp/handlers/dataColumnSidecarsByRoot.js.map +1 -0
  179. package/lib/network/reqresp/handlers/index.js +10 -0
  180. package/lib/network/reqresp/handlers/index.js.map +1 -1
  181. package/lib/network/reqresp/protocols.d.ts +4 -0
  182. package/lib/network/reqresp/protocols.js +20 -0
  183. package/lib/network/reqresp/protocols.js.map +1 -1
  184. package/lib/network/reqresp/rateLimit.js +11 -1
  185. package/lib/network/reqresp/rateLimit.js.map +1 -1
  186. package/lib/network/reqresp/score.js +3 -0
  187. package/lib/network/reqresp/score.js.map +1 -1
  188. package/lib/network/reqresp/types.d.ts +11 -4
  189. package/lib/network/reqresp/types.js +12 -3
  190. package/lib/network/reqresp/types.js.map +1 -1
  191. package/lib/network/statusCache.d.ts +5 -5
  192. package/lib/network/statusCache.js.map +1 -1
  193. package/lib/network/subnets/interface.d.ts +3 -0
  194. package/lib/network/subnets/interface.js +14 -1
  195. package/lib/network/subnets/interface.js.map +1 -1
  196. package/lib/network/subnets/syncnetsService.js +4 -5
  197. package/lib/network/subnets/syncnetsService.js.map +1 -1
  198. package/lib/node/nodejs.js +1 -0
  199. package/lib/node/nodejs.js.map +1 -1
  200. package/lib/sync/constants.d.ts +18 -3
  201. package/lib/sync/constants.js +21 -3
  202. package/lib/sync/constants.js.map +1 -1
  203. package/lib/sync/interface.d.ts +2 -2
  204. package/lib/sync/interface.js +1 -1
  205. package/lib/sync/interface.js.map +1 -1
  206. package/lib/sync/range/batch.d.ts +17 -2
  207. package/lib/sync/range/batch.js +39 -7
  208. package/lib/sync/range/batch.js.map +1 -1
  209. package/lib/sync/range/chain.d.ts +15 -1
  210. package/lib/sync/range/chain.js +124 -33
  211. package/lib/sync/range/chain.js.map +1 -1
  212. package/lib/sync/range/range.d.ts +3 -2
  213. package/lib/sync/range/range.js +9 -3
  214. package/lib/sync/range/range.js.map +1 -1
  215. package/lib/sync/range/utils/chainTarget.d.ts +5 -1
  216. package/lib/sync/range/utils/chainTarget.js +26 -1
  217. package/lib/sync/range/utils/chainTarget.js.map +1 -1
  218. package/lib/sync/range/utils/peerBalancer.d.ts +19 -5
  219. package/lib/sync/range/utils/peerBalancer.js +104 -10
  220. package/lib/sync/range/utils/peerBalancer.js.map +1 -1
  221. package/lib/sync/sync.js +1 -1
  222. package/lib/sync/sync.js.map +1 -1
  223. package/lib/sync/unknownBlock.d.ts +8 -1
  224. package/lib/sync/unknownBlock.js +223 -67
  225. package/lib/sync/unknownBlock.js.map +1 -1
  226. package/lib/sync/utils/remoteSyncType.d.ts +4 -4
  227. package/lib/sync/utils/remoteSyncType.js.map +1 -1
  228. package/lib/util/blobs.d.ts +23 -1
  229. package/lib/util/blobs.js +156 -1
  230. package/lib/util/blobs.js.map +1 -1
  231. package/lib/util/dataColumns.d.ts +135 -0
  232. package/lib/util/dataColumns.js +353 -0
  233. package/lib/util/dataColumns.js.map +1 -0
  234. package/lib/util/metadata.d.ts +5 -0
  235. package/lib/util/metadata.js +10 -0
  236. package/lib/util/metadata.js.map +1 -1
  237. package/lib/util/sszBytes.d.ts +1 -0
  238. package/lib/util/sszBytes.js +17 -0
  239. package/lib/util/sszBytes.js.map +1 -1
  240. package/package.json +16 -16
  241. package/lib/network/reqresp/handlers/status.d.ts +0 -4
  242. package/lib/network/reqresp/handlers/status.js +0 -11
  243. package/lib/network/reqresp/handlers/status.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;
@@ -161,742 +162,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
161
162
  toExecutionAddress: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
162
163
  }>;
163
164
  signature: import("@chainsafe/ssz").ByteVectorType;
164
- }> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
165
- attestation1: import("@chainsafe/ssz").ContainerType<{
166
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
167
- data: import("@chainsafe/ssz").ContainerType<{
168
- slot: import("@chainsafe/ssz").UintBigintType;
169
- index: import("@chainsafe/ssz").UintBigintType;
170
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
171
- source: import("@chainsafe/ssz").ContainerType<{
172
- epoch: import("@chainsafe/ssz").UintBigintType;
173
- root: import("@chainsafe/ssz").ByteVectorType;
174
- }>;
175
- target: import("@chainsafe/ssz").ContainerType<{
176
- epoch: import("@chainsafe/ssz").UintBigintType;
177
- root: import("@chainsafe/ssz").ByteVectorType;
178
- }>;
179
- }>;
180
- signature: import("@chainsafe/ssz").ByteVectorType;
181
- }>;
182
- attestation2: import("@chainsafe/ssz").ContainerType<{
183
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
184
- data: import("@chainsafe/ssz").ContainerType<{
185
- slot: import("@chainsafe/ssz").UintBigintType;
186
- index: import("@chainsafe/ssz").UintBigintType;
187
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
188
- source: import("@chainsafe/ssz").ContainerType<{
189
- epoch: import("@chainsafe/ssz").UintBigintType;
190
- root: import("@chainsafe/ssz").ByteVectorType;
191
- }>;
192
- target: import("@chainsafe/ssz").ContainerType<{
193
- epoch: import("@chainsafe/ssz").UintBigintType;
194
- root: import("@chainsafe/ssz").ByteVectorType;
195
- }>;
196
- }>;
197
- signature: import("@chainsafe/ssz").ByteVectorType;
198
- }>;
199
- }> | import("@chainsafe/ssz").ValueOfFields<{
200
- attestation1: import("@chainsafe/ssz").ContainerType<{
201
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
202
- data: import("@chainsafe/ssz").ContainerType<{
203
- slot: import("@chainsafe/ssz").UintBigintType;
204
- index: import("@chainsafe/ssz").UintBigintType;
205
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
206
- source: import("@chainsafe/ssz").ContainerType<{
207
- epoch: import("@chainsafe/ssz").UintBigintType;
208
- root: import("@chainsafe/ssz").ByteVectorType;
209
- }>;
210
- target: import("@chainsafe/ssz").ContainerType<{
211
- epoch: import("@chainsafe/ssz").UintBigintType;
212
- root: import("@chainsafe/ssz").ByteVectorType;
213
- }>;
214
- }>;
215
- signature: import("@chainsafe/ssz").ByteVectorType;
216
- }>;
217
- attestation2: import("@chainsafe/ssz").ContainerType<{
218
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
219
- data: import("@chainsafe/ssz").ContainerType<{
220
- slot: import("@chainsafe/ssz").UintBigintType;
221
- index: import("@chainsafe/ssz").UintBigintType;
222
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
223
- source: import("@chainsafe/ssz").ContainerType<{
224
- epoch: import("@chainsafe/ssz").UintBigintType;
225
- root: import("@chainsafe/ssz").ByteVectorType;
226
- }>;
227
- target: import("@chainsafe/ssz").ContainerType<{
228
- epoch: import("@chainsafe/ssz").UintBigintType;
229
- root: import("@chainsafe/ssz").ByteVectorType;
230
- }>;
231
- }>;
232
- signature: import("@chainsafe/ssz").ByteVectorType;
233
- }>;
234
- }> | import("@chainsafe/ssz").ValueOfFields<{
235
- attestation1: import("@chainsafe/ssz").ContainerType<{
236
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
237
- data: import("@chainsafe/ssz").ContainerType<{
238
- slot: import("@chainsafe/ssz").UintBigintType;
239
- index: import("@chainsafe/ssz").UintBigintType;
240
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
241
- source: import("@chainsafe/ssz").ContainerType<{
242
- epoch: import("@chainsafe/ssz").UintBigintType;
243
- root: import("@chainsafe/ssz").ByteVectorType;
244
- }>;
245
- target: import("@chainsafe/ssz").ContainerType<{
246
- epoch: import("@chainsafe/ssz").UintBigintType;
247
- root: import("@chainsafe/ssz").ByteVectorType;
248
- }>;
249
- }>;
250
- signature: import("@chainsafe/ssz").ByteVectorType;
251
- }>;
252
- attestation2: import("@chainsafe/ssz").ContainerType<{
253
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
254
- data: import("@chainsafe/ssz").ContainerType<{
255
- slot: import("@chainsafe/ssz").UintBigintType;
256
- index: import("@chainsafe/ssz").UintBigintType;
257
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
258
- source: import("@chainsafe/ssz").ContainerType<{
259
- epoch: import("@chainsafe/ssz").UintBigintType;
260
- root: import("@chainsafe/ssz").ByteVectorType;
261
- }>;
262
- target: import("@chainsafe/ssz").ContainerType<{
263
- epoch: import("@chainsafe/ssz").UintBigintType;
264
- root: import("@chainsafe/ssz").ByteVectorType;
265
- }>;
266
- }>;
267
- signature: import("@chainsafe/ssz").ByteVectorType;
268
- }>;
269
- }> | import("@chainsafe/ssz").ValueOfFields<{
270
- attestation1: import("@chainsafe/ssz").ContainerType<{
271
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
272
- data: import("@chainsafe/ssz").ContainerType<{
273
- slot: import("@chainsafe/ssz").UintBigintType;
274
- index: import("@chainsafe/ssz").UintBigintType;
275
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
276
- source: import("@chainsafe/ssz").ContainerType<{
277
- epoch: import("@chainsafe/ssz").UintBigintType;
278
- root: import("@chainsafe/ssz").ByteVectorType;
279
- }>;
280
- target: import("@chainsafe/ssz").ContainerType<{
281
- epoch: import("@chainsafe/ssz").UintBigintType;
282
- root: import("@chainsafe/ssz").ByteVectorType;
283
- }>;
284
- }>;
285
- signature: import("@chainsafe/ssz").ByteVectorType;
286
- }>;
287
- attestation2: import("@chainsafe/ssz").ContainerType<{
288
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
289
- data: import("@chainsafe/ssz").ContainerType<{
290
- slot: import("@chainsafe/ssz").UintBigintType;
291
- index: import("@chainsafe/ssz").UintBigintType;
292
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
293
- source: import("@chainsafe/ssz").ContainerType<{
294
- epoch: import("@chainsafe/ssz").UintBigintType;
295
- root: import("@chainsafe/ssz").ByteVectorType;
296
- }>;
297
- target: import("@chainsafe/ssz").ContainerType<{
298
- epoch: import("@chainsafe/ssz").UintBigintType;
299
- root: import("@chainsafe/ssz").ByteVectorType;
300
- }>;
301
- }>;
302
- signature: import("@chainsafe/ssz").ByteVectorType;
303
- }>;
304
- }> | import("@chainsafe/ssz").ValueOfFields<{
305
- attestation1: import("@chainsafe/ssz").ContainerType<{
306
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
307
- data: import("@chainsafe/ssz").ContainerType<{
308
- slot: import("@chainsafe/ssz").UintBigintType;
309
- index: import("@chainsafe/ssz").UintBigintType;
310
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
311
- source: import("@chainsafe/ssz").ContainerType<{
312
- epoch: import("@chainsafe/ssz").UintBigintType;
313
- root: import("@chainsafe/ssz").ByteVectorType;
314
- }>;
315
- target: import("@chainsafe/ssz").ContainerType<{
316
- epoch: import("@chainsafe/ssz").UintBigintType;
317
- root: import("@chainsafe/ssz").ByteVectorType;
318
- }>;
319
- }>;
320
- signature: import("@chainsafe/ssz").ByteVectorType;
321
- }>;
322
- attestation2: import("@chainsafe/ssz").ContainerType<{
323
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
324
- data: import("@chainsafe/ssz").ContainerType<{
325
- slot: import("@chainsafe/ssz").UintBigintType;
326
- index: import("@chainsafe/ssz").UintBigintType;
327
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
328
- source: import("@chainsafe/ssz").ContainerType<{
329
- epoch: import("@chainsafe/ssz").UintBigintType;
330
- root: import("@chainsafe/ssz").ByteVectorType;
331
- }>;
332
- target: import("@chainsafe/ssz").ContainerType<{
333
- epoch: import("@chainsafe/ssz").UintBigintType;
334
- root: import("@chainsafe/ssz").ByteVectorType;
335
- }>;
336
- }>;
337
- signature: import("@chainsafe/ssz").ByteVectorType;
338
- }>;
339
- }> | import("@chainsafe/ssz").ValueOfFields<{
340
- attestation1: import("@chainsafe/ssz").ContainerType<{
341
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
342
- data: import("@chainsafe/ssz").ContainerType<{
343
- slot: import("@chainsafe/ssz").UintBigintType;
344
- index: import("@chainsafe/ssz").UintBigintType;
345
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
346
- source: import("@chainsafe/ssz").ContainerType<{
347
- epoch: import("@chainsafe/ssz").UintBigintType;
348
- root: import("@chainsafe/ssz").ByteVectorType;
349
- }>;
350
- target: import("@chainsafe/ssz").ContainerType<{
351
- epoch: import("@chainsafe/ssz").UintBigintType;
352
- root: import("@chainsafe/ssz").ByteVectorType;
353
- }>;
354
- }>;
355
- signature: import("@chainsafe/ssz").ByteVectorType;
356
- }>;
357
- attestation2: import("@chainsafe/ssz").ContainerType<{
358
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
359
- data: import("@chainsafe/ssz").ContainerType<{
360
- slot: import("@chainsafe/ssz").UintBigintType;
361
- index: import("@chainsafe/ssz").UintBigintType;
362
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
363
- source: import("@chainsafe/ssz").ContainerType<{
364
- epoch: import("@chainsafe/ssz").UintBigintType;
365
- root: import("@chainsafe/ssz").ByteVectorType;
366
- }>;
367
- target: import("@chainsafe/ssz").ContainerType<{
368
- epoch: import("@chainsafe/ssz").UintBigintType;
369
- root: import("@chainsafe/ssz").ByteVectorType;
370
- }>;
371
- }>;
372
- signature: import("@chainsafe/ssz").ByteVectorType;
373
- }>;
374
- }> | import("@chainsafe/ssz").ValueOfFields<{
375
- attestation1: import("@chainsafe/ssz").ContainerType<{
376
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
377
- data: import("@chainsafe/ssz").ContainerType<{
378
- slot: import("@chainsafe/ssz").UintBigintType;
379
- index: import("@chainsafe/ssz").UintBigintType;
380
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
381
- source: import("@chainsafe/ssz").ContainerType<{
382
- epoch: import("@chainsafe/ssz").UintBigintType;
383
- root: import("@chainsafe/ssz").ByteVectorType;
384
- }>;
385
- target: import("@chainsafe/ssz").ContainerType<{
386
- epoch: import("@chainsafe/ssz").UintBigintType;
387
- root: import("@chainsafe/ssz").ByteVectorType;
388
- }>;
389
- }>;
390
- signature: import("@chainsafe/ssz").ByteVectorType;
391
- }>;
392
- attestation2: import("@chainsafe/ssz").ContainerType<{
393
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
394
- data: import("@chainsafe/ssz").ContainerType<{
395
- slot: import("@chainsafe/ssz").UintBigintType;
396
- index: import("@chainsafe/ssz").UintBigintType;
397
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
398
- source: import("@chainsafe/ssz").ContainerType<{
399
- epoch: import("@chainsafe/ssz").UintBigintType;
400
- root: import("@chainsafe/ssz").ByteVectorType;
401
- }>;
402
- target: import("@chainsafe/ssz").ContainerType<{
403
- epoch: import("@chainsafe/ssz").UintBigintType;
404
- root: import("@chainsafe/ssz").ByteVectorType;
405
- }>;
406
- }>;
407
- signature: import("@chainsafe/ssz").ByteVectorType;
408
- }>;
409
- }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
410
- attestation1: import("@chainsafe/ssz").ContainerType<{
411
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
412
- data: import("@chainsafe/ssz").ContainerType<{
413
- slot: import("@chainsafe/ssz").UintBigintType;
414
- index: import("@chainsafe/ssz").UintBigintType;
415
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
416
- source: import("@chainsafe/ssz").ContainerType<{
417
- epoch: import("@chainsafe/ssz").UintBigintType;
418
- root: import("@chainsafe/ssz").ByteVectorType;
419
- }>;
420
- target: import("@chainsafe/ssz").ContainerType<{
421
- epoch: import("@chainsafe/ssz").UintBigintType;
422
- root: import("@chainsafe/ssz").ByteVectorType;
423
- }>;
424
- }>;
425
- signature: import("@chainsafe/ssz").ByteVectorType;
426
- }>;
427
- attestation2: import("@chainsafe/ssz").ContainerType<{
428
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
429
- data: import("@chainsafe/ssz").ContainerType<{
430
- slot: import("@chainsafe/ssz").UintBigintType;
431
- index: import("@chainsafe/ssz").UintBigintType;
432
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
433
- source: import("@chainsafe/ssz").ContainerType<{
434
- epoch: import("@chainsafe/ssz").UintBigintType;
435
- root: import("@chainsafe/ssz").ByteVectorType;
436
- }>;
437
- target: import("@chainsafe/ssz").ContainerType<{
438
- epoch: import("@chainsafe/ssz").UintBigintType;
439
- root: import("@chainsafe/ssz").ByteVectorType;
440
- }>;
441
- }>;
442
- signature: import("@chainsafe/ssz").ByteVectorType;
443
- }>;
444
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
445
- attestation1: import("@chainsafe/ssz").ContainerType<{
446
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
447
- data: import("@chainsafe/ssz").ContainerType<{
448
- slot: import("@chainsafe/ssz").UintBigintType;
449
- index: import("@chainsafe/ssz").UintBigintType;
450
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
451
- source: import("@chainsafe/ssz").ContainerType<{
452
- epoch: import("@chainsafe/ssz").UintBigintType;
453
- root: import("@chainsafe/ssz").ByteVectorType;
454
- }>;
455
- target: import("@chainsafe/ssz").ContainerType<{
456
- epoch: import("@chainsafe/ssz").UintBigintType;
457
- root: import("@chainsafe/ssz").ByteVectorType;
458
- }>;
459
- }>;
460
- signature: import("@chainsafe/ssz").ByteVectorType;
461
- }>;
462
- attestation2: import("@chainsafe/ssz").ContainerType<{
463
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
464
- data: import("@chainsafe/ssz").ContainerType<{
465
- slot: import("@chainsafe/ssz").UintBigintType;
466
- index: import("@chainsafe/ssz").UintBigintType;
467
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
468
- source: import("@chainsafe/ssz").ContainerType<{
469
- epoch: import("@chainsafe/ssz").UintBigintType;
470
- root: import("@chainsafe/ssz").ByteVectorType;
471
- }>;
472
- target: import("@chainsafe/ssz").ContainerType<{
473
- epoch: import("@chainsafe/ssz").UintBigintType;
474
- root: import("@chainsafe/ssz").ByteVectorType;
475
- }>;
476
- }>;
477
- signature: import("@chainsafe/ssz").ByteVectorType;
478
- }>;
479
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
480
- attestation1: import("@chainsafe/ssz").ContainerType<{
481
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
482
- data: import("@chainsafe/ssz").ContainerType<{
483
- slot: import("@chainsafe/ssz").UintBigintType;
484
- index: import("@chainsafe/ssz").UintBigintType;
485
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
486
- source: import("@chainsafe/ssz").ContainerType<{
487
- epoch: import("@chainsafe/ssz").UintBigintType;
488
- root: import("@chainsafe/ssz").ByteVectorType;
489
- }>;
490
- target: import("@chainsafe/ssz").ContainerType<{
491
- epoch: import("@chainsafe/ssz").UintBigintType;
492
- root: import("@chainsafe/ssz").ByteVectorType;
493
- }>;
494
- }>;
495
- signature: import("@chainsafe/ssz").ByteVectorType;
496
- }>;
497
- attestation2: import("@chainsafe/ssz").ContainerType<{
498
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
499
- data: import("@chainsafe/ssz").ContainerType<{
500
- slot: import("@chainsafe/ssz").UintBigintType;
501
- index: import("@chainsafe/ssz").UintBigintType;
502
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
503
- source: import("@chainsafe/ssz").ContainerType<{
504
- epoch: import("@chainsafe/ssz").UintBigintType;
505
- root: import("@chainsafe/ssz").ByteVectorType;
506
- }>;
507
- target: import("@chainsafe/ssz").ContainerType<{
508
- epoch: import("@chainsafe/ssz").UintBigintType;
509
- root: import("@chainsafe/ssz").ByteVectorType;
510
- }>;
511
- }>;
512
- signature: import("@chainsafe/ssz").ByteVectorType;
513
- }>;
514
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
515
- attestation1: import("@chainsafe/ssz").ContainerType<{
516
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
517
- data: import("@chainsafe/ssz").ContainerType<{
518
- slot: import("@chainsafe/ssz").UintBigintType;
519
- index: import("@chainsafe/ssz").UintBigintType;
520
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
521
- source: import("@chainsafe/ssz").ContainerType<{
522
- epoch: import("@chainsafe/ssz").UintBigintType;
523
- root: import("@chainsafe/ssz").ByteVectorType;
524
- }>;
525
- target: import("@chainsafe/ssz").ContainerType<{
526
- epoch: import("@chainsafe/ssz").UintBigintType;
527
- root: import("@chainsafe/ssz").ByteVectorType;
528
- }>;
529
- }>;
530
- signature: import("@chainsafe/ssz").ByteVectorType;
531
- }>;
532
- attestation2: import("@chainsafe/ssz").ContainerType<{
533
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
534
- data: import("@chainsafe/ssz").ContainerType<{
535
- slot: import("@chainsafe/ssz").UintBigintType;
536
- index: import("@chainsafe/ssz").UintBigintType;
537
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
538
- source: import("@chainsafe/ssz").ContainerType<{
539
- epoch: import("@chainsafe/ssz").UintBigintType;
540
- root: import("@chainsafe/ssz").ByteVectorType;
541
- }>;
542
- target: import("@chainsafe/ssz").ContainerType<{
543
- epoch: import("@chainsafe/ssz").UintBigintType;
544
- root: import("@chainsafe/ssz").ByteVectorType;
545
- }>;
546
- }>;
547
- signature: import("@chainsafe/ssz").ByteVectorType;
548
- }>;
549
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
550
- attestation1: import("@chainsafe/ssz").ContainerType<{
551
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
552
- data: import("@chainsafe/ssz").ContainerType<{
553
- slot: import("@chainsafe/ssz").UintBigintType;
554
- index: import("@chainsafe/ssz").UintBigintType;
555
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
556
- source: import("@chainsafe/ssz").ContainerType<{
557
- epoch: import("@chainsafe/ssz").UintBigintType;
558
- root: import("@chainsafe/ssz").ByteVectorType;
559
- }>;
560
- target: import("@chainsafe/ssz").ContainerType<{
561
- epoch: import("@chainsafe/ssz").UintBigintType;
562
- root: import("@chainsafe/ssz").ByteVectorType;
563
- }>;
564
- }>;
565
- signature: import("@chainsafe/ssz").ByteVectorType;
566
- }>;
567
- attestation2: import("@chainsafe/ssz").ContainerType<{
568
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
569
- data: import("@chainsafe/ssz").ContainerType<{
570
- slot: import("@chainsafe/ssz").UintBigintType;
571
- index: import("@chainsafe/ssz").UintBigintType;
572
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
573
- source: import("@chainsafe/ssz").ContainerType<{
574
- epoch: import("@chainsafe/ssz").UintBigintType;
575
- root: import("@chainsafe/ssz").ByteVectorType;
576
- }>;
577
- target: import("@chainsafe/ssz").ContainerType<{
578
- epoch: import("@chainsafe/ssz").UintBigintType;
579
- root: import("@chainsafe/ssz").ByteVectorType;
580
- }>;
581
- }>;
582
- signature: import("@chainsafe/ssz").ByteVectorType;
583
- }>;
584
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
585
- attestation1: import("@chainsafe/ssz").ContainerType<{
586
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
587
- data: import("@chainsafe/ssz").ContainerType<{
588
- slot: import("@chainsafe/ssz").UintBigintType;
589
- index: import("@chainsafe/ssz").UintBigintType;
590
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
591
- source: import("@chainsafe/ssz").ContainerType<{
592
- epoch: import("@chainsafe/ssz").UintBigintType;
593
- root: import("@chainsafe/ssz").ByteVectorType;
594
- }>;
595
- target: import("@chainsafe/ssz").ContainerType<{
596
- epoch: import("@chainsafe/ssz").UintBigintType;
597
- root: import("@chainsafe/ssz").ByteVectorType;
598
- }>;
599
- }>;
600
- signature: import("@chainsafe/ssz").ByteVectorType;
601
- }>;
602
- attestation2: import("@chainsafe/ssz").ContainerType<{
603
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
604
- data: import("@chainsafe/ssz").ContainerType<{
605
- slot: import("@chainsafe/ssz").UintBigintType;
606
- index: import("@chainsafe/ssz").UintBigintType;
607
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
608
- source: import("@chainsafe/ssz").ContainerType<{
609
- epoch: import("@chainsafe/ssz").UintBigintType;
610
- root: import("@chainsafe/ssz").ByteVectorType;
611
- }>;
612
- target: import("@chainsafe/ssz").ContainerType<{
613
- epoch: import("@chainsafe/ssz").UintBigintType;
614
- root: import("@chainsafe/ssz").ByteVectorType;
615
- }>;
616
- }>;
617
- signature: import("@chainsafe/ssz").ByteVectorType;
618
- }>;
619
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
620
- attestation1: import("@chainsafe/ssz").ContainerType<{
621
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
622
- data: import("@chainsafe/ssz").ContainerType<{
623
- slot: import("@chainsafe/ssz").UintBigintType;
624
- index: import("@chainsafe/ssz").UintBigintType;
625
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
626
- source: import("@chainsafe/ssz").ContainerType<{
627
- epoch: import("@chainsafe/ssz").UintBigintType;
628
- root: import("@chainsafe/ssz").ByteVectorType;
629
- }>;
630
- target: import("@chainsafe/ssz").ContainerType<{
631
- epoch: import("@chainsafe/ssz").UintBigintType;
632
- root: import("@chainsafe/ssz").ByteVectorType;
633
- }>;
634
- }>;
635
- signature: import("@chainsafe/ssz").ByteVectorType;
636
- }>;
637
- attestation2: import("@chainsafe/ssz").ContainerType<{
638
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
639
- data: import("@chainsafe/ssz").ContainerType<{
640
- slot: import("@chainsafe/ssz").UintBigintType;
641
- index: import("@chainsafe/ssz").UintBigintType;
642
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
643
- source: import("@chainsafe/ssz").ContainerType<{
644
- epoch: import("@chainsafe/ssz").UintBigintType;
645
- root: import("@chainsafe/ssz").ByteVectorType;
646
- }>;
647
- target: import("@chainsafe/ssz").ContainerType<{
648
- epoch: import("@chainsafe/ssz").UintBigintType;
649
- root: import("@chainsafe/ssz").ByteVectorType;
650
- }>;
651
- }>;
652
- signature: import("@chainsafe/ssz").ByteVectorType;
653
- }>;
654
- }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
655
- attestation1: import("@chainsafe/ssz").ContainerType<{
656
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
657
- data: import("@chainsafe/ssz").ContainerType<{
658
- slot: import("@chainsafe/ssz").UintBigintType;
659
- index: import("@chainsafe/ssz").UintBigintType;
660
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
661
- source: import("@chainsafe/ssz").ContainerType<{
662
- epoch: import("@chainsafe/ssz").UintBigintType;
663
- root: import("@chainsafe/ssz").ByteVectorType;
664
- }>;
665
- target: import("@chainsafe/ssz").ContainerType<{
666
- epoch: import("@chainsafe/ssz").UintBigintType;
667
- root: import("@chainsafe/ssz").ByteVectorType;
668
- }>;
669
- }>;
670
- signature: import("@chainsafe/ssz").ByteVectorType;
671
- }>;
672
- attestation2: import("@chainsafe/ssz").ContainerType<{
673
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
674
- data: import("@chainsafe/ssz").ContainerType<{
675
- slot: import("@chainsafe/ssz").UintBigintType;
676
- index: import("@chainsafe/ssz").UintBigintType;
677
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
678
- source: import("@chainsafe/ssz").ContainerType<{
679
- epoch: import("@chainsafe/ssz").UintBigintType;
680
- root: import("@chainsafe/ssz").ByteVectorType;
681
- }>;
682
- target: import("@chainsafe/ssz").ContainerType<{
683
- epoch: import("@chainsafe/ssz").UintBigintType;
684
- root: import("@chainsafe/ssz").ByteVectorType;
685
- }>;
686
- }>;
687
- signature: import("@chainsafe/ssz").ByteVectorType;
688
- }>;
689
- }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
690
- attestation1: import("@chainsafe/ssz").ContainerType<{
691
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
692
- data: import("@chainsafe/ssz").ContainerType<{
693
- slot: import("@chainsafe/ssz").UintBigintType;
694
- index: import("@chainsafe/ssz").UintBigintType;
695
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
696
- source: import("@chainsafe/ssz").ContainerType<{
697
- epoch: import("@chainsafe/ssz").UintBigintType;
698
- root: import("@chainsafe/ssz").ByteVectorType;
699
- }>;
700
- target: import("@chainsafe/ssz").ContainerType<{
701
- epoch: import("@chainsafe/ssz").UintBigintType;
702
- root: import("@chainsafe/ssz").ByteVectorType;
703
- }>;
704
- }>;
705
- signature: import("@chainsafe/ssz").ByteVectorType;
706
- }>;
707
- attestation2: import("@chainsafe/ssz").ContainerType<{
708
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
709
- data: import("@chainsafe/ssz").ContainerType<{
710
- slot: import("@chainsafe/ssz").UintBigintType;
711
- index: import("@chainsafe/ssz").UintBigintType;
712
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
713
- source: import("@chainsafe/ssz").ContainerType<{
714
- epoch: import("@chainsafe/ssz").UintBigintType;
715
- root: import("@chainsafe/ssz").ByteVectorType;
716
- }>;
717
- target: import("@chainsafe/ssz").ContainerType<{
718
- epoch: import("@chainsafe/ssz").UintBigintType;
719
- root: import("@chainsafe/ssz").ByteVectorType;
720
- }>;
721
- }>;
722
- signature: import("@chainsafe/ssz").ByteVectorType;
723
- }>;
724
- }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
725
- attestation1: import("@chainsafe/ssz").ContainerType<{
726
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
727
- data: import("@chainsafe/ssz").ContainerType<{
728
- slot: import("@chainsafe/ssz").UintBigintType;
729
- index: import("@chainsafe/ssz").UintBigintType;
730
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
731
- source: import("@chainsafe/ssz").ContainerType<{
732
- epoch: import("@chainsafe/ssz").UintBigintType;
733
- root: import("@chainsafe/ssz").ByteVectorType;
734
- }>;
735
- target: import("@chainsafe/ssz").ContainerType<{
736
- epoch: import("@chainsafe/ssz").UintBigintType;
737
- root: import("@chainsafe/ssz").ByteVectorType;
738
- }>;
739
- }>;
740
- signature: import("@chainsafe/ssz").ByteVectorType;
741
- }>;
742
- attestation2: import("@chainsafe/ssz").ContainerType<{
743
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
744
- data: import("@chainsafe/ssz").ContainerType<{
745
- slot: import("@chainsafe/ssz").UintBigintType;
746
- index: import("@chainsafe/ssz").UintBigintType;
747
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
748
- source: import("@chainsafe/ssz").ContainerType<{
749
- epoch: import("@chainsafe/ssz").UintBigintType;
750
- root: import("@chainsafe/ssz").ByteVectorType;
751
- }>;
752
- target: import("@chainsafe/ssz").ContainerType<{
753
- epoch: import("@chainsafe/ssz").UintBigintType;
754
- root: import("@chainsafe/ssz").ByteVectorType;
755
- }>;
756
- }>;
757
- signature: import("@chainsafe/ssz").ByteVectorType;
758
- }>;
759
- }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
760
- attestation1: import("@chainsafe/ssz").ContainerType<{
761
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
762
- data: import("@chainsafe/ssz").ContainerType<{
763
- slot: import("@chainsafe/ssz").UintBigintType;
764
- index: import("@chainsafe/ssz").UintBigintType;
765
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
766
- source: import("@chainsafe/ssz").ContainerType<{
767
- epoch: import("@chainsafe/ssz").UintBigintType;
768
- root: import("@chainsafe/ssz").ByteVectorType;
769
- }>;
770
- target: import("@chainsafe/ssz").ContainerType<{
771
- epoch: import("@chainsafe/ssz").UintBigintType;
772
- root: import("@chainsafe/ssz").ByteVectorType;
773
- }>;
774
- }>;
775
- signature: import("@chainsafe/ssz").ByteVectorType;
776
- }>;
777
- attestation2: import("@chainsafe/ssz").ContainerType<{
778
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
779
- data: import("@chainsafe/ssz").ContainerType<{
780
- slot: import("@chainsafe/ssz").UintBigintType;
781
- index: import("@chainsafe/ssz").UintBigintType;
782
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
783
- source: import("@chainsafe/ssz").ContainerType<{
784
- epoch: import("@chainsafe/ssz").UintBigintType;
785
- root: import("@chainsafe/ssz").ByteVectorType;
786
- }>;
787
- target: import("@chainsafe/ssz").ContainerType<{
788
- epoch: import("@chainsafe/ssz").UintBigintType;
789
- root: import("@chainsafe/ssz").ByteVectorType;
790
- }>;
791
- }>;
792
- signature: import("@chainsafe/ssz").ByteVectorType;
793
- }>;
794
- }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
795
- attestation1: import("@chainsafe/ssz").ContainerType<{
796
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
797
- data: import("@chainsafe/ssz").ContainerType<{
798
- slot: import("@chainsafe/ssz").UintBigintType;
799
- index: import("@chainsafe/ssz").UintBigintType;
800
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
801
- source: import("@chainsafe/ssz").ContainerType<{
802
- epoch: import("@chainsafe/ssz").UintBigintType;
803
- root: import("@chainsafe/ssz").ByteVectorType;
804
- }>;
805
- target: import("@chainsafe/ssz").ContainerType<{
806
- epoch: import("@chainsafe/ssz").UintBigintType;
807
- root: import("@chainsafe/ssz").ByteVectorType;
808
- }>;
809
- }>;
810
- signature: import("@chainsafe/ssz").ByteVectorType;
811
- }>;
812
- attestation2: import("@chainsafe/ssz").ContainerType<{
813
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
814
- data: import("@chainsafe/ssz").ContainerType<{
815
- slot: import("@chainsafe/ssz").UintBigintType;
816
- index: import("@chainsafe/ssz").UintBigintType;
817
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
818
- source: import("@chainsafe/ssz").ContainerType<{
819
- epoch: import("@chainsafe/ssz").UintBigintType;
820
- root: import("@chainsafe/ssz").ByteVectorType;
821
- }>;
822
- target: import("@chainsafe/ssz").ContainerType<{
823
- epoch: import("@chainsafe/ssz").UintBigintType;
824
- root: import("@chainsafe/ssz").ByteVectorType;
825
- }>;
826
- }>;
827
- signature: import("@chainsafe/ssz").ByteVectorType;
828
- }>;
829
- }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
830
- attestation1: import("@chainsafe/ssz").ContainerType<{
831
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
832
- data: import("@chainsafe/ssz").ContainerType<{
833
- slot: import("@chainsafe/ssz").UintBigintType;
834
- index: import("@chainsafe/ssz").UintBigintType;
835
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
836
- source: import("@chainsafe/ssz").ContainerType<{
837
- epoch: import("@chainsafe/ssz").UintBigintType;
838
- root: import("@chainsafe/ssz").ByteVectorType;
839
- }>;
840
- target: import("@chainsafe/ssz").ContainerType<{
841
- epoch: import("@chainsafe/ssz").UintBigintType;
842
- root: import("@chainsafe/ssz").ByteVectorType;
843
- }>;
844
- }>;
845
- signature: import("@chainsafe/ssz").ByteVectorType;
846
- }>;
847
- attestation2: import("@chainsafe/ssz").ContainerType<{
848
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
849
- data: import("@chainsafe/ssz").ContainerType<{
850
- slot: import("@chainsafe/ssz").UintBigintType;
851
- index: import("@chainsafe/ssz").UintBigintType;
852
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
853
- source: import("@chainsafe/ssz").ContainerType<{
854
- epoch: import("@chainsafe/ssz").UintBigintType;
855
- root: import("@chainsafe/ssz").ByteVectorType;
856
- }>;
857
- target: import("@chainsafe/ssz").ContainerType<{
858
- epoch: import("@chainsafe/ssz").UintBigintType;
859
- root: import("@chainsafe/ssz").ByteVectorType;
860
- }>;
861
- }>;
862
- signature: import("@chainsafe/ssz").ByteVectorType;
863
- }>;
864
- }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
865
- attestation1: import("@chainsafe/ssz").ContainerType<{
866
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
867
- data: import("@chainsafe/ssz").ContainerType<{
868
- slot: import("@chainsafe/ssz").UintBigintType;
869
- index: import("@chainsafe/ssz").UintBigintType;
870
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
871
- source: import("@chainsafe/ssz").ContainerType<{
872
- epoch: import("@chainsafe/ssz").UintBigintType;
873
- root: import("@chainsafe/ssz").ByteVectorType;
874
- }>;
875
- target: import("@chainsafe/ssz").ContainerType<{
876
- epoch: import("@chainsafe/ssz").UintBigintType;
877
- root: import("@chainsafe/ssz").ByteVectorType;
878
- }>;
879
- }>;
880
- signature: import("@chainsafe/ssz").ByteVectorType;
881
- }>;
882
- attestation2: import("@chainsafe/ssz").ContainerType<{
883
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
884
- data: import("@chainsafe/ssz").ContainerType<{
885
- slot: import("@chainsafe/ssz").UintBigintType;
886
- index: import("@chainsafe/ssz").UintBigintType;
887
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
888
- source: import("@chainsafe/ssz").ContainerType<{
889
- epoch: import("@chainsafe/ssz").UintBigintType;
890
- root: import("@chainsafe/ssz").ByteVectorType;
891
- }>;
892
- target: import("@chainsafe/ssz").ContainerType<{
893
- epoch: import("@chainsafe/ssz").UintBigintType;
894
- root: import("@chainsafe/ssz").ByteVectorType;
895
- }>;
896
- }>;
897
- signature: import("@chainsafe/ssz").ByteVectorType;
898
- }>;
899
- }>> | import("@chainsafe/ssz").ContainerType<{
165
+ }> | import("@chainsafe/ssz").ContainerType<{
900
166
  message: import("@chainsafe/ssz").ContainerType<{
901
167
  body: import("@chainsafe/ssz").ContainerType<{
902
168
  executionPayload: import("@chainsafe/ssz").ContainerType<{
@@ -1057,6 +323,22 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1057
323
  signature: import("@chainsafe/ssz").ByteVectorType;
1058
324
  }>;
1059
325
  kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
326
+ }> | import("@chainsafe/ssz").ContainerType<{
327
+ index: import("@chainsafe/ssz").UintNumberType;
328
+ column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
329
+ kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
330
+ kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
331
+ signedBlockHeader: import("@chainsafe/ssz").ContainerType<{
332
+ message: import("@chainsafe/ssz").ContainerType<{
333
+ slot: import("@chainsafe/ssz").UintNumberType;
334
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
335
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
336
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
337
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
338
+ }>;
339
+ signature: import("@chainsafe/ssz").ByteVectorType;
340
+ }>;
341
+ kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
1060
342
  }> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
1061
343
  message: import("@chainsafe/ssz").ContainerType<{
1062
344
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -1149,7 +431,101 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1149
431
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1150
432
  }>;
1151
433
  signature: import("@chainsafe/ssz").ByteVectorType;
1152
- }> | import("@chainsafe/ssz").ValueOfFields<{
434
+ }> | import("@chainsafe/ssz").ValueOfFields<{
435
+ message: import("@chainsafe/ssz").ContainerType<{
436
+ aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
437
+ aggregate: import("@chainsafe/ssz").ContainerType<{
438
+ aggregationBits: import("@chainsafe/ssz").BitListType;
439
+ data: import("@chainsafe/ssz").ContainerType<{
440
+ slot: import("@chainsafe/ssz").UintNumberType;
441
+ index: import("@chainsafe/ssz").UintNumberType;
442
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
443
+ source: import("@chainsafe/ssz").ContainerType<{
444
+ epoch: import("@chainsafe/ssz").UintNumberType;
445
+ root: import("@chainsafe/ssz").ByteVectorType;
446
+ }>;
447
+ target: import("@chainsafe/ssz").ContainerType<{
448
+ epoch: import("@chainsafe/ssz").UintNumberType;
449
+ root: import("@chainsafe/ssz").ByteVectorType;
450
+ }>;
451
+ }>;
452
+ signature: import("@chainsafe/ssz").ByteVectorType;
453
+ }>;
454
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
455
+ }>;
456
+ signature: import("@chainsafe/ssz").ByteVectorType;
457
+ }> | import("@chainsafe/ssz").ValueOfFields<{
458
+ message: import("@chainsafe/ssz").ContainerType<{
459
+ aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
460
+ aggregate: import("@chainsafe/ssz").ContainerType<{
461
+ aggregationBits: import("@chainsafe/ssz").BitListType;
462
+ data: import("@chainsafe/ssz").ContainerType<{
463
+ slot: import("@chainsafe/ssz").UintNumberType;
464
+ index: import("@chainsafe/ssz").UintNumberType;
465
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
466
+ source: import("@chainsafe/ssz").ContainerType<{
467
+ epoch: import("@chainsafe/ssz").UintNumberType;
468
+ root: import("@chainsafe/ssz").ByteVectorType;
469
+ }>;
470
+ target: import("@chainsafe/ssz").ContainerType<{
471
+ epoch: import("@chainsafe/ssz").UintNumberType;
472
+ root: import("@chainsafe/ssz").ByteVectorType;
473
+ }>;
474
+ }>;
475
+ signature: import("@chainsafe/ssz").ByteVectorType;
476
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
477
+ }>;
478
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
479
+ }>;
480
+ signature: import("@chainsafe/ssz").ByteVectorType;
481
+ }> | import("@chainsafe/ssz").ValueOfFields<{
482
+ message: import("@chainsafe/ssz").ContainerType<{
483
+ aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
484
+ aggregate: import("@chainsafe/ssz").ContainerType<{
485
+ aggregationBits: import("@chainsafe/ssz").BitListType;
486
+ data: import("@chainsafe/ssz").ContainerType<{
487
+ slot: import("@chainsafe/ssz").UintNumberType;
488
+ index: import("@chainsafe/ssz").UintNumberType;
489
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
490
+ source: import("@chainsafe/ssz").ContainerType<{
491
+ epoch: import("@chainsafe/ssz").UintNumberType;
492
+ root: import("@chainsafe/ssz").ByteVectorType;
493
+ }>;
494
+ target: import("@chainsafe/ssz").ContainerType<{
495
+ epoch: import("@chainsafe/ssz").UintNumberType;
496
+ root: import("@chainsafe/ssz").ByteVectorType;
497
+ }>;
498
+ }>;
499
+ signature: import("@chainsafe/ssz").ByteVectorType;
500
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
501
+ }>;
502
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
503
+ }>;
504
+ signature: import("@chainsafe/ssz").ByteVectorType;
505
+ }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
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
+ }>;
525
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
526
+ }>;
527
+ signature: import("@chainsafe/ssz").ByteVectorType;
528
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1153
529
  message: import("@chainsafe/ssz").ContainerType<{
1154
530
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1155
531
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1172,7 +548,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1172
548
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1173
549
  }>;
1174
550
  signature: import("@chainsafe/ssz").ByteVectorType;
1175
- }> | import("@chainsafe/ssz").ValueOfFields<{
551
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1176
552
  message: import("@chainsafe/ssz").ContainerType<{
1177
553
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1178
554
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1191,12 +567,11 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1191
567
  }>;
1192
568
  }>;
1193
569
  signature: import("@chainsafe/ssz").ByteVectorType;
1194
- committeeBits: import("@chainsafe/ssz").BitVectorType;
1195
570
  }>;
1196
571
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1197
572
  }>;
1198
573
  signature: import("@chainsafe/ssz").ByteVectorType;
1199
- }> | import("@chainsafe/ssz").ValueOfFields<{
574
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1200
575
  message: import("@chainsafe/ssz").ContainerType<{
1201
576
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1202
577
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1215,12 +590,11 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1215
590
  }>;
1216
591
  }>;
1217
592
  signature: import("@chainsafe/ssz").ByteVectorType;
1218
- committeeBits: import("@chainsafe/ssz").BitVectorType;
1219
593
  }>;
1220
594
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1221
595
  }>;
1222
596
  signature: import("@chainsafe/ssz").ByteVectorType;
1223
- }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
597
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1224
598
  message: import("@chainsafe/ssz").ContainerType<{
1225
599
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1226
600
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1262,6 +636,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1262
636
  }>;
1263
637
  }>;
1264
638
  signature: import("@chainsafe/ssz").ByteVectorType;
639
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
1265
640
  }>;
1266
641
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1267
642
  }>;
@@ -1285,11 +660,12 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1285
660
  }>;
1286
661
  }>;
1287
662
  signature: import("@chainsafe/ssz").ByteVectorType;
663
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
1288
664
  }>;
1289
665
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1290
666
  }>;
1291
667
  signature: import("@chainsafe/ssz").ByteVectorType;
1292
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
668
+ }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1293
669
  message: import("@chainsafe/ssz").ContainerType<{
1294
670
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1295
671
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1312,7 +688,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1312
688
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1313
689
  }>;
1314
690
  signature: import("@chainsafe/ssz").ByteVectorType;
1315
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
691
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1316
692
  message: import("@chainsafe/ssz").ContainerType<{
1317
693
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1318
694
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1335,7 +711,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1335
711
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1336
712
  }>;
1337
713
  signature: import("@chainsafe/ssz").ByteVectorType;
1338
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
714
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1339
715
  message: import("@chainsafe/ssz").ContainerType<{
1340
716
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1341
717
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1354,12 +730,11 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1354
730
  }>;
1355
731
  }>;
1356
732
  signature: import("@chainsafe/ssz").ByteVectorType;
1357
- committeeBits: import("@chainsafe/ssz").BitVectorType;
1358
733
  }>;
1359
734
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1360
735
  }>;
1361
736
  signature: import("@chainsafe/ssz").ByteVectorType;
1362
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
737
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1363
738
  message: import("@chainsafe/ssz").ContainerType<{
1364
739
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1365
740
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1378,12 +753,11 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1378
753
  }>;
1379
754
  }>;
1380
755
  signature: import("@chainsafe/ssz").ByteVectorType;
1381
- committeeBits: import("@chainsafe/ssz").BitVectorType;
1382
756
  }>;
1383
757
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1384
758
  }>;
1385
759
  signature: import("@chainsafe/ssz").ByteVectorType;
1386
- }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
760
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1387
761
  message: import("@chainsafe/ssz").ContainerType<{
1388
762
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1389
763
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1425,6 +799,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1425
799
  }>;
1426
800
  }>;
1427
801
  signature: import("@chainsafe/ssz").ByteVectorType;
802
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
1428
803
  }>;
1429
804
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1430
805
  }>;
@@ -1448,105 +823,288 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1448
823
  }>;
1449
824
  }>;
1450
825
  signature: import("@chainsafe/ssz").ByteVectorType;
826
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
827
+ }>;
828
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
829
+ }>;
830
+ signature: import("@chainsafe/ssz").ByteVectorType;
831
+ }>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
832
+ aggregationBits: import("@chainsafe/ssz").BitListType;
833
+ data: import("@chainsafe/ssz").ContainerType<{
834
+ slot: import("@chainsafe/ssz").UintNumberType;
835
+ index: import("@chainsafe/ssz").UintNumberType;
836
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
837
+ source: import("@chainsafe/ssz").ContainerType<{
838
+ epoch: import("@chainsafe/ssz").UintNumberType;
839
+ root: import("@chainsafe/ssz").ByteVectorType;
840
+ }>;
841
+ target: import("@chainsafe/ssz").ContainerType<{
842
+ epoch: import("@chainsafe/ssz").UintNumberType;
843
+ root: import("@chainsafe/ssz").ByteVectorType;
844
+ }>;
845
+ }>;
846
+ signature: import("@chainsafe/ssz").ByteVectorType;
847
+ }> | import("@chainsafe/ssz").ValueOfFields<{
848
+ aggregationBits: import("@chainsafe/ssz").BitListType;
849
+ data: import("@chainsafe/ssz").ContainerType<{
850
+ slot: import("@chainsafe/ssz").UintNumberType;
851
+ index: import("@chainsafe/ssz").UintNumberType;
852
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
853
+ source: import("@chainsafe/ssz").ContainerType<{
854
+ epoch: import("@chainsafe/ssz").UintNumberType;
855
+ root: import("@chainsafe/ssz").ByteVectorType;
856
+ }>;
857
+ target: import("@chainsafe/ssz").ContainerType<{
858
+ epoch: import("@chainsafe/ssz").UintNumberType;
859
+ root: import("@chainsafe/ssz").ByteVectorType;
860
+ }>;
861
+ }>;
862
+ signature: import("@chainsafe/ssz").ByteVectorType;
863
+ }> | import("@chainsafe/ssz").ValueOfFields<{
864
+ aggregationBits: import("@chainsafe/ssz").BitListType;
865
+ data: import("@chainsafe/ssz").ContainerType<{
866
+ slot: import("@chainsafe/ssz").UintNumberType;
867
+ index: import("@chainsafe/ssz").UintNumberType;
868
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
869
+ source: import("@chainsafe/ssz").ContainerType<{
870
+ epoch: import("@chainsafe/ssz").UintNumberType;
871
+ root: import("@chainsafe/ssz").ByteVectorType;
872
+ }>;
873
+ target: import("@chainsafe/ssz").ContainerType<{
874
+ epoch: import("@chainsafe/ssz").UintNumberType;
875
+ root: import("@chainsafe/ssz").ByteVectorType;
876
+ }>;
877
+ }>;
878
+ signature: import("@chainsafe/ssz").ByteVectorType;
879
+ }> | import("@chainsafe/ssz").ValueOfFields<{
880
+ aggregationBits: import("@chainsafe/ssz").BitListType;
881
+ data: import("@chainsafe/ssz").ContainerType<{
882
+ slot: import("@chainsafe/ssz").UintNumberType;
883
+ index: import("@chainsafe/ssz").UintNumberType;
884
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
885
+ source: import("@chainsafe/ssz").ContainerType<{
886
+ epoch: import("@chainsafe/ssz").UintNumberType;
887
+ root: import("@chainsafe/ssz").ByteVectorType;
888
+ }>;
889
+ target: import("@chainsafe/ssz").ContainerType<{
890
+ epoch: import("@chainsafe/ssz").UintNumberType;
891
+ root: import("@chainsafe/ssz").ByteVectorType;
892
+ }>;
893
+ }>;
894
+ signature: import("@chainsafe/ssz").ByteVectorType;
895
+ }> | import("@chainsafe/ssz").ValueOfFields<{
896
+ aggregationBits: import("@chainsafe/ssz").BitListType;
897
+ data: import("@chainsafe/ssz").ContainerType<{
898
+ slot: import("@chainsafe/ssz").UintNumberType;
899
+ index: import("@chainsafe/ssz").UintNumberType;
900
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
901
+ source: import("@chainsafe/ssz").ContainerType<{
902
+ epoch: import("@chainsafe/ssz").UintNumberType;
903
+ root: import("@chainsafe/ssz").ByteVectorType;
904
+ }>;
905
+ target: import("@chainsafe/ssz").ContainerType<{
906
+ epoch: import("@chainsafe/ssz").UintNumberType;
907
+ root: import("@chainsafe/ssz").ByteVectorType;
908
+ }>;
909
+ }>;
910
+ signature: import("@chainsafe/ssz").ByteVectorType;
911
+ }> | import("@chainsafe/ssz").ValueOfFields<{
912
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
913
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
914
+ data: import("@chainsafe/ssz").ContainerType<{
915
+ slot: import("@chainsafe/ssz").UintNumberType;
916
+ index: import("@chainsafe/ssz").UintNumberType;
917
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
918
+ source: import("@chainsafe/ssz").ContainerType<{
919
+ epoch: import("@chainsafe/ssz").UintNumberType;
920
+ root: import("@chainsafe/ssz").ByteVectorType;
921
+ }>;
922
+ target: import("@chainsafe/ssz").ContainerType<{
923
+ epoch: import("@chainsafe/ssz").UintNumberType;
924
+ root: import("@chainsafe/ssz").ByteVectorType;
925
+ }>;
926
+ }>;
927
+ signature: import("@chainsafe/ssz").ByteVectorType;
928
+ }> | import("@chainsafe/ssz").ValueOfFields<{
929
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
930
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
931
+ data: import("@chainsafe/ssz").ContainerType<{
932
+ slot: import("@chainsafe/ssz").UintNumberType;
933
+ index: import("@chainsafe/ssz").UintNumberType;
934
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
935
+ source: import("@chainsafe/ssz").ContainerType<{
936
+ epoch: import("@chainsafe/ssz").UintNumberType;
937
+ root: import("@chainsafe/ssz").ByteVectorType;
938
+ }>;
939
+ target: import("@chainsafe/ssz").ContainerType<{
940
+ epoch: import("@chainsafe/ssz").UintNumberType;
941
+ root: import("@chainsafe/ssz").ByteVectorType;
942
+ }>;
943
+ }>;
944
+ signature: import("@chainsafe/ssz").ByteVectorType;
945
+ }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
946
+ aggregationBits: import("@chainsafe/ssz").BitListType;
947
+ data: import("@chainsafe/ssz").ContainerType<{
948
+ slot: import("@chainsafe/ssz").UintNumberType;
949
+ index: import("@chainsafe/ssz").UintNumberType;
950
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
951
+ source: import("@chainsafe/ssz").ContainerType<{
952
+ epoch: import("@chainsafe/ssz").UintNumberType;
953
+ root: import("@chainsafe/ssz").ByteVectorType;
954
+ }>;
955
+ target: import("@chainsafe/ssz").ContainerType<{
956
+ epoch: import("@chainsafe/ssz").UintNumberType;
957
+ root: import("@chainsafe/ssz").ByteVectorType;
958
+ }>;
959
+ }>;
960
+ signature: import("@chainsafe/ssz").ByteVectorType;
961
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
962
+ aggregationBits: import("@chainsafe/ssz").BitListType;
963
+ data: import("@chainsafe/ssz").ContainerType<{
964
+ slot: import("@chainsafe/ssz").UintNumberType;
965
+ index: import("@chainsafe/ssz").UintNumberType;
966
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
967
+ source: import("@chainsafe/ssz").ContainerType<{
968
+ epoch: import("@chainsafe/ssz").UintNumberType;
969
+ root: import("@chainsafe/ssz").ByteVectorType;
970
+ }>;
971
+ target: import("@chainsafe/ssz").ContainerType<{
972
+ epoch: import("@chainsafe/ssz").UintNumberType;
973
+ root: import("@chainsafe/ssz").ByteVectorType;
974
+ }>;
975
+ }>;
976
+ signature: import("@chainsafe/ssz").ByteVectorType;
977
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
978
+ aggregationBits: import("@chainsafe/ssz").BitListType;
979
+ data: import("@chainsafe/ssz").ContainerType<{
980
+ slot: import("@chainsafe/ssz").UintNumberType;
981
+ index: import("@chainsafe/ssz").UintNumberType;
982
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
983
+ source: import("@chainsafe/ssz").ContainerType<{
984
+ epoch: import("@chainsafe/ssz").UintNumberType;
985
+ root: import("@chainsafe/ssz").ByteVectorType;
986
+ }>;
987
+ target: import("@chainsafe/ssz").ContainerType<{
988
+ epoch: import("@chainsafe/ssz").UintNumberType;
989
+ root: import("@chainsafe/ssz").ByteVectorType;
990
+ }>;
991
+ }>;
992
+ signature: import("@chainsafe/ssz").ByteVectorType;
993
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
994
+ aggregationBits: import("@chainsafe/ssz").BitListType;
995
+ data: import("@chainsafe/ssz").ContainerType<{
996
+ slot: import("@chainsafe/ssz").UintNumberType;
997
+ index: import("@chainsafe/ssz").UintNumberType;
998
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
999
+ source: import("@chainsafe/ssz").ContainerType<{
1000
+ epoch: import("@chainsafe/ssz").UintNumberType;
1001
+ root: import("@chainsafe/ssz").ByteVectorType;
1002
+ }>;
1003
+ target: import("@chainsafe/ssz").ContainerType<{
1004
+ epoch: import("@chainsafe/ssz").UintNumberType;
1005
+ root: import("@chainsafe/ssz").ByteVectorType;
1006
+ }>;
1007
+ }>;
1008
+ signature: import("@chainsafe/ssz").ByteVectorType;
1009
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1010
+ aggregationBits: import("@chainsafe/ssz").BitListType;
1011
+ data: import("@chainsafe/ssz").ContainerType<{
1012
+ slot: import("@chainsafe/ssz").UintNumberType;
1013
+ index: import("@chainsafe/ssz").UintNumberType;
1014
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1015
+ source: import("@chainsafe/ssz").ContainerType<{
1016
+ epoch: import("@chainsafe/ssz").UintNumberType;
1017
+ root: import("@chainsafe/ssz").ByteVectorType;
1018
+ }>;
1019
+ target: import("@chainsafe/ssz").ContainerType<{
1020
+ epoch: import("@chainsafe/ssz").UintNumberType;
1021
+ root: import("@chainsafe/ssz").ByteVectorType;
1022
+ }>;
1023
+ }>;
1024
+ signature: import("@chainsafe/ssz").ByteVectorType;
1025
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1026
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1027
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1028
+ data: import("@chainsafe/ssz").ContainerType<{
1029
+ slot: import("@chainsafe/ssz").UintNumberType;
1030
+ index: import("@chainsafe/ssz").UintNumberType;
1031
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1032
+ source: import("@chainsafe/ssz").ContainerType<{
1033
+ epoch: import("@chainsafe/ssz").UintNumberType;
1034
+ root: import("@chainsafe/ssz").ByteVectorType;
1035
+ }>;
1036
+ target: import("@chainsafe/ssz").ContainerType<{
1037
+ epoch: import("@chainsafe/ssz").UintNumberType;
1038
+ root: import("@chainsafe/ssz").ByteVectorType;
1039
+ }>;
1040
+ }>;
1041
+ signature: import("@chainsafe/ssz").ByteVectorType;
1042
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1043
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1044
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1045
+ data: import("@chainsafe/ssz").ContainerType<{
1046
+ slot: import("@chainsafe/ssz").UintNumberType;
1047
+ index: import("@chainsafe/ssz").UintNumberType;
1048
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1049
+ source: import("@chainsafe/ssz").ContainerType<{
1050
+ epoch: import("@chainsafe/ssz").UintNumberType;
1051
+ root: import("@chainsafe/ssz").ByteVectorType;
1052
+ }>;
1053
+ target: import("@chainsafe/ssz").ContainerType<{
1054
+ epoch: import("@chainsafe/ssz").UintNumberType;
1055
+ root: import("@chainsafe/ssz").ByteVectorType;
1451
1056
  }>;
1452
- selectionProof: import("@chainsafe/ssz").ByteVectorType;
1453
1057
  }>;
1454
1058
  signature: import("@chainsafe/ssz").ByteVectorType;
1455
- }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1456
- message: import("@chainsafe/ssz").ContainerType<{
1457
- aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1458
- aggregate: import("@chainsafe/ssz").ContainerType<{
1459
- aggregationBits: import("@chainsafe/ssz").BitListType;
1460
- data: import("@chainsafe/ssz").ContainerType<{
1461
- slot: import("@chainsafe/ssz").UintNumberType;
1462
- index: import("@chainsafe/ssz").UintNumberType;
1463
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1464
- source: import("@chainsafe/ssz").ContainerType<{
1465
- epoch: import("@chainsafe/ssz").UintNumberType;
1466
- root: import("@chainsafe/ssz").ByteVectorType;
1467
- }>;
1468
- target: import("@chainsafe/ssz").ContainerType<{
1469
- epoch: import("@chainsafe/ssz").UintNumberType;
1470
- root: import("@chainsafe/ssz").ByteVectorType;
1471
- }>;
1472
- }>;
1473
- signature: import("@chainsafe/ssz").ByteVectorType;
1059
+ }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1060
+ aggregationBits: import("@chainsafe/ssz").BitListType;
1061
+ data: import("@chainsafe/ssz").ContainerType<{
1062
+ slot: import("@chainsafe/ssz").UintNumberType;
1063
+ index: import("@chainsafe/ssz").UintNumberType;
1064
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1065
+ source: import("@chainsafe/ssz").ContainerType<{
1066
+ epoch: import("@chainsafe/ssz").UintNumberType;
1067
+ root: import("@chainsafe/ssz").ByteVectorType;
1474
1068
  }>;
1475
- selectionProof: import("@chainsafe/ssz").ByteVectorType;
1476
- }>;
1477
- signature: import("@chainsafe/ssz").ByteVectorType;
1478
- }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1479
- message: import("@chainsafe/ssz").ContainerType<{
1480
- aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1481
- aggregate: import("@chainsafe/ssz").ContainerType<{
1482
- aggregationBits: import("@chainsafe/ssz").BitListType;
1483
- data: import("@chainsafe/ssz").ContainerType<{
1484
- slot: import("@chainsafe/ssz").UintNumberType;
1485
- index: import("@chainsafe/ssz").UintNumberType;
1486
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1487
- source: import("@chainsafe/ssz").ContainerType<{
1488
- epoch: import("@chainsafe/ssz").UintNumberType;
1489
- root: import("@chainsafe/ssz").ByteVectorType;
1490
- }>;
1491
- target: import("@chainsafe/ssz").ContainerType<{
1492
- epoch: import("@chainsafe/ssz").UintNumberType;
1493
- root: import("@chainsafe/ssz").ByteVectorType;
1494
- }>;
1495
- }>;
1496
- signature: import("@chainsafe/ssz").ByteVectorType;
1069
+ target: import("@chainsafe/ssz").ContainerType<{
1070
+ epoch: import("@chainsafe/ssz").UintNumberType;
1071
+ root: import("@chainsafe/ssz").ByteVectorType;
1497
1072
  }>;
1498
- selectionProof: import("@chainsafe/ssz").ByteVectorType;
1499
1073
  }>;
1500
1074
  signature: import("@chainsafe/ssz").ByteVectorType;
1501
1075
  }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1502
- message: import("@chainsafe/ssz").ContainerType<{
1503
- aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1504
- aggregate: import("@chainsafe/ssz").ContainerType<{
1505
- aggregationBits: import("@chainsafe/ssz").BitListType;
1506
- data: import("@chainsafe/ssz").ContainerType<{
1507
- slot: import("@chainsafe/ssz").UintNumberType;
1508
- index: import("@chainsafe/ssz").UintNumberType;
1509
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1510
- source: import("@chainsafe/ssz").ContainerType<{
1511
- epoch: import("@chainsafe/ssz").UintNumberType;
1512
- root: import("@chainsafe/ssz").ByteVectorType;
1513
- }>;
1514
- target: import("@chainsafe/ssz").ContainerType<{
1515
- epoch: import("@chainsafe/ssz").UintNumberType;
1516
- root: import("@chainsafe/ssz").ByteVectorType;
1517
- }>;
1518
- }>;
1519
- signature: import("@chainsafe/ssz").ByteVectorType;
1520
- committeeBits: import("@chainsafe/ssz").BitVectorType;
1076
+ aggregationBits: import("@chainsafe/ssz").BitListType;
1077
+ data: import("@chainsafe/ssz").ContainerType<{
1078
+ slot: import("@chainsafe/ssz").UintNumberType;
1079
+ index: import("@chainsafe/ssz").UintNumberType;
1080
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1081
+ source: import("@chainsafe/ssz").ContainerType<{
1082
+ epoch: import("@chainsafe/ssz").UintNumberType;
1083
+ root: import("@chainsafe/ssz").ByteVectorType;
1084
+ }>;
1085
+ target: import("@chainsafe/ssz").ContainerType<{
1086
+ epoch: import("@chainsafe/ssz").UintNumberType;
1087
+ root: import("@chainsafe/ssz").ByteVectorType;
1521
1088
  }>;
1522
- selectionProof: import("@chainsafe/ssz").ByteVectorType;
1523
1089
  }>;
1524
1090
  signature: import("@chainsafe/ssz").ByteVectorType;
1525
1091
  }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1526
- message: import("@chainsafe/ssz").ContainerType<{
1527
- aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1528
- aggregate: import("@chainsafe/ssz").ContainerType<{
1529
- aggregationBits: import("@chainsafe/ssz").BitListType;
1530
- data: import("@chainsafe/ssz").ContainerType<{
1531
- slot: import("@chainsafe/ssz").UintNumberType;
1532
- index: import("@chainsafe/ssz").UintNumberType;
1533
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1534
- source: import("@chainsafe/ssz").ContainerType<{
1535
- epoch: import("@chainsafe/ssz").UintNumberType;
1536
- root: import("@chainsafe/ssz").ByteVectorType;
1537
- }>;
1538
- target: import("@chainsafe/ssz").ContainerType<{
1539
- epoch: import("@chainsafe/ssz").UintNumberType;
1540
- root: import("@chainsafe/ssz").ByteVectorType;
1541
- }>;
1542
- }>;
1543
- signature: import("@chainsafe/ssz").ByteVectorType;
1544
- committeeBits: import("@chainsafe/ssz").BitVectorType;
1092
+ aggregationBits: import("@chainsafe/ssz").BitListType;
1093
+ data: import("@chainsafe/ssz").ContainerType<{
1094
+ slot: import("@chainsafe/ssz").UintNumberType;
1095
+ index: import("@chainsafe/ssz").UintNumberType;
1096
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1097
+ source: import("@chainsafe/ssz").ContainerType<{
1098
+ epoch: import("@chainsafe/ssz").UintNumberType;
1099
+ root: import("@chainsafe/ssz").ByteVectorType;
1100
+ }>;
1101
+ target: import("@chainsafe/ssz").ContainerType<{
1102
+ epoch: import("@chainsafe/ssz").UintNumberType;
1103
+ root: import("@chainsafe/ssz").ByteVectorType;
1545
1104
  }>;
1546
- selectionProof: import("@chainsafe/ssz").ByteVectorType;
1547
1105
  }>;
1548
1106
  signature: import("@chainsafe/ssz").ByteVectorType;
1549
- }>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
1107
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1550
1108
  aggregationBits: import("@chainsafe/ssz").BitListType;
1551
1109
  data: import("@chainsafe/ssz").ContainerType<{
1552
1110
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -1562,7 +1120,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1562
1120
  }>;
1563
1121
  }>;
1564
1122
  signature: import("@chainsafe/ssz").ByteVectorType;
1565
- }> | import("@chainsafe/ssz").ValueOfFields<{
1123
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1566
1124
  aggregationBits: import("@chainsafe/ssz").BitListType;
1567
1125
  data: import("@chainsafe/ssz").ContainerType<{
1568
1126
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -1578,8 +1136,9 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1578
1136
  }>;
1579
1137
  }>;
1580
1138
  signature: import("@chainsafe/ssz").ByteVectorType;
1581
- }> | import("@chainsafe/ssz").ValueOfFields<{
1582
- aggregationBits: import("@chainsafe/ssz").BitListType;
1139
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1140
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1141
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1583
1142
  data: import("@chainsafe/ssz").ContainerType<{
1584
1143
  slot: import("@chainsafe/ssz").UintNumberType;
1585
1144
  index: import("@chainsafe/ssz").UintNumberType;
@@ -1594,8 +1153,9 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1594
1153
  }>;
1595
1154
  }>;
1596
1155
  signature: import("@chainsafe/ssz").ByteVectorType;
1597
- }> | import("@chainsafe/ssz").ValueOfFields<{
1598
- aggregationBits: import("@chainsafe/ssz").BitListType;
1156
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1157
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1158
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1599
1159
  data: import("@chainsafe/ssz").ContainerType<{
1600
1160
  slot: import("@chainsafe/ssz").UintNumberType;
1601
1161
  index: import("@chainsafe/ssz").UintNumberType;
@@ -1604,290 +1164,747 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1604
1164
  epoch: import("@chainsafe/ssz").UintNumberType;
1605
1165
  root: import("@chainsafe/ssz").ByteVectorType;
1606
1166
  }>;
1607
- target: import("@chainsafe/ssz").ContainerType<{
1608
- epoch: import("@chainsafe/ssz").UintNumberType;
1609
- root: import("@chainsafe/ssz").ByteVectorType;
1167
+ target: import("@chainsafe/ssz").ContainerType<{
1168
+ epoch: import("@chainsafe/ssz").UintNumberType;
1169
+ root: import("@chainsafe/ssz").ByteVectorType;
1170
+ }>;
1171
+ }>;
1172
+ signature: import("@chainsafe/ssz").ByteVectorType;
1173
+ }>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
1174
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1175
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1176
+ data: import("@chainsafe/ssz").ContainerType<{
1177
+ slot: import("@chainsafe/ssz").UintBigintType;
1178
+ index: import("@chainsafe/ssz").UintBigintType;
1179
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1180
+ source: import("@chainsafe/ssz").ContainerType<{
1181
+ epoch: import("@chainsafe/ssz").UintBigintType;
1182
+ root: import("@chainsafe/ssz").ByteVectorType;
1183
+ }>;
1184
+ target: import("@chainsafe/ssz").ContainerType<{
1185
+ epoch: import("@chainsafe/ssz").UintBigintType;
1186
+ root: import("@chainsafe/ssz").ByteVectorType;
1187
+ }>;
1188
+ }>;
1189
+ signature: import("@chainsafe/ssz").ByteVectorType;
1190
+ }>;
1191
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1192
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1193
+ data: import("@chainsafe/ssz").ContainerType<{
1194
+ slot: import("@chainsafe/ssz").UintBigintType;
1195
+ index: import("@chainsafe/ssz").UintBigintType;
1196
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1197
+ source: import("@chainsafe/ssz").ContainerType<{
1198
+ epoch: import("@chainsafe/ssz").UintBigintType;
1199
+ root: import("@chainsafe/ssz").ByteVectorType;
1200
+ }>;
1201
+ target: import("@chainsafe/ssz").ContainerType<{
1202
+ epoch: import("@chainsafe/ssz").UintBigintType;
1203
+ root: import("@chainsafe/ssz").ByteVectorType;
1204
+ }>;
1205
+ }>;
1206
+ signature: import("@chainsafe/ssz").ByteVectorType;
1207
+ }>;
1208
+ }> | import("@chainsafe/ssz").ValueOfFields<{
1209
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1210
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1211
+ data: import("@chainsafe/ssz").ContainerType<{
1212
+ slot: import("@chainsafe/ssz").UintBigintType;
1213
+ index: import("@chainsafe/ssz").UintBigintType;
1214
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1215
+ source: import("@chainsafe/ssz").ContainerType<{
1216
+ epoch: import("@chainsafe/ssz").UintBigintType;
1217
+ root: import("@chainsafe/ssz").ByteVectorType;
1218
+ }>;
1219
+ target: import("@chainsafe/ssz").ContainerType<{
1220
+ epoch: import("@chainsafe/ssz").UintBigintType;
1221
+ root: import("@chainsafe/ssz").ByteVectorType;
1222
+ }>;
1223
+ }>;
1224
+ signature: import("@chainsafe/ssz").ByteVectorType;
1225
+ }>;
1226
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1227
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1228
+ data: import("@chainsafe/ssz").ContainerType<{
1229
+ slot: import("@chainsafe/ssz").UintBigintType;
1230
+ index: import("@chainsafe/ssz").UintBigintType;
1231
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1232
+ source: import("@chainsafe/ssz").ContainerType<{
1233
+ epoch: import("@chainsafe/ssz").UintBigintType;
1234
+ root: import("@chainsafe/ssz").ByteVectorType;
1235
+ }>;
1236
+ target: import("@chainsafe/ssz").ContainerType<{
1237
+ epoch: import("@chainsafe/ssz").UintBigintType;
1238
+ root: import("@chainsafe/ssz").ByteVectorType;
1239
+ }>;
1240
+ }>;
1241
+ signature: import("@chainsafe/ssz").ByteVectorType;
1242
+ }>;
1243
+ }> | import("@chainsafe/ssz").ValueOfFields<{
1244
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1245
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1246
+ data: import("@chainsafe/ssz").ContainerType<{
1247
+ slot: import("@chainsafe/ssz").UintBigintType;
1248
+ index: import("@chainsafe/ssz").UintBigintType;
1249
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1250
+ source: import("@chainsafe/ssz").ContainerType<{
1251
+ epoch: import("@chainsafe/ssz").UintBigintType;
1252
+ root: import("@chainsafe/ssz").ByteVectorType;
1253
+ }>;
1254
+ target: import("@chainsafe/ssz").ContainerType<{
1255
+ epoch: import("@chainsafe/ssz").UintBigintType;
1256
+ root: import("@chainsafe/ssz").ByteVectorType;
1257
+ }>;
1258
+ }>;
1259
+ signature: import("@chainsafe/ssz").ByteVectorType;
1260
+ }>;
1261
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1262
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1263
+ data: import("@chainsafe/ssz").ContainerType<{
1264
+ slot: import("@chainsafe/ssz").UintBigintType;
1265
+ index: import("@chainsafe/ssz").UintBigintType;
1266
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1267
+ source: import("@chainsafe/ssz").ContainerType<{
1268
+ epoch: import("@chainsafe/ssz").UintBigintType;
1269
+ root: import("@chainsafe/ssz").ByteVectorType;
1270
+ }>;
1271
+ target: import("@chainsafe/ssz").ContainerType<{
1272
+ epoch: import("@chainsafe/ssz").UintBigintType;
1273
+ root: import("@chainsafe/ssz").ByteVectorType;
1274
+ }>;
1275
+ }>;
1276
+ signature: import("@chainsafe/ssz").ByteVectorType;
1277
+ }>;
1278
+ }> | import("@chainsafe/ssz").ValueOfFields<{
1279
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1280
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1281
+ data: import("@chainsafe/ssz").ContainerType<{
1282
+ slot: import("@chainsafe/ssz").UintBigintType;
1283
+ index: import("@chainsafe/ssz").UintBigintType;
1284
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1285
+ source: import("@chainsafe/ssz").ContainerType<{
1286
+ epoch: import("@chainsafe/ssz").UintBigintType;
1287
+ root: import("@chainsafe/ssz").ByteVectorType;
1288
+ }>;
1289
+ target: import("@chainsafe/ssz").ContainerType<{
1290
+ epoch: import("@chainsafe/ssz").UintBigintType;
1291
+ root: import("@chainsafe/ssz").ByteVectorType;
1292
+ }>;
1293
+ }>;
1294
+ signature: import("@chainsafe/ssz").ByteVectorType;
1295
+ }>;
1296
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1297
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1298
+ data: import("@chainsafe/ssz").ContainerType<{
1299
+ slot: import("@chainsafe/ssz").UintBigintType;
1300
+ index: import("@chainsafe/ssz").UintBigintType;
1301
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1302
+ source: import("@chainsafe/ssz").ContainerType<{
1303
+ epoch: import("@chainsafe/ssz").UintBigintType;
1304
+ root: import("@chainsafe/ssz").ByteVectorType;
1305
+ }>;
1306
+ target: import("@chainsafe/ssz").ContainerType<{
1307
+ epoch: import("@chainsafe/ssz").UintBigintType;
1308
+ root: import("@chainsafe/ssz").ByteVectorType;
1309
+ }>;
1610
1310
  }>;
1311
+ signature: import("@chainsafe/ssz").ByteVectorType;
1611
1312
  }>;
1612
- signature: import("@chainsafe/ssz").ByteVectorType;
1613
1313
  }> | import("@chainsafe/ssz").ValueOfFields<{
1614
- aggregationBits: import("@chainsafe/ssz").BitListType;
1615
- data: import("@chainsafe/ssz").ContainerType<{
1616
- slot: import("@chainsafe/ssz").UintNumberType;
1617
- index: import("@chainsafe/ssz").UintNumberType;
1618
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1619
- source: import("@chainsafe/ssz").ContainerType<{
1620
- epoch: import("@chainsafe/ssz").UintNumberType;
1621
- root: import("@chainsafe/ssz").ByteVectorType;
1314
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1315
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1316
+ data: import("@chainsafe/ssz").ContainerType<{
1317
+ slot: import("@chainsafe/ssz").UintBigintType;
1318
+ index: import("@chainsafe/ssz").UintBigintType;
1319
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1320
+ source: import("@chainsafe/ssz").ContainerType<{
1321
+ epoch: import("@chainsafe/ssz").UintBigintType;
1322
+ root: import("@chainsafe/ssz").ByteVectorType;
1323
+ }>;
1324
+ target: import("@chainsafe/ssz").ContainerType<{
1325
+ epoch: import("@chainsafe/ssz").UintBigintType;
1326
+ root: import("@chainsafe/ssz").ByteVectorType;
1327
+ }>;
1622
1328
  }>;
1623
- target: import("@chainsafe/ssz").ContainerType<{
1624
- epoch: import("@chainsafe/ssz").UintNumberType;
1625
- root: import("@chainsafe/ssz").ByteVectorType;
1329
+ signature: import("@chainsafe/ssz").ByteVectorType;
1330
+ }>;
1331
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1332
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1333
+ data: import("@chainsafe/ssz").ContainerType<{
1334
+ slot: import("@chainsafe/ssz").UintBigintType;
1335
+ index: import("@chainsafe/ssz").UintBigintType;
1336
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1337
+ source: import("@chainsafe/ssz").ContainerType<{
1338
+ epoch: import("@chainsafe/ssz").UintBigintType;
1339
+ root: import("@chainsafe/ssz").ByteVectorType;
1340
+ }>;
1341
+ target: import("@chainsafe/ssz").ContainerType<{
1342
+ epoch: import("@chainsafe/ssz").UintBigintType;
1343
+ root: import("@chainsafe/ssz").ByteVectorType;
1344
+ }>;
1626
1345
  }>;
1346
+ signature: import("@chainsafe/ssz").ByteVectorType;
1627
1347
  }>;
1628
- signature: import("@chainsafe/ssz").ByteVectorType;
1629
1348
  }> | import("@chainsafe/ssz").ValueOfFields<{
1630
- committeeIndex: import("@chainsafe/ssz").UintNumberType;
1631
- attesterIndex: import("@chainsafe/ssz").UintNumberType;
1632
- data: import("@chainsafe/ssz").ContainerType<{
1633
- slot: import("@chainsafe/ssz").UintNumberType;
1634
- index: import("@chainsafe/ssz").UintNumberType;
1635
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1636
- source: import("@chainsafe/ssz").ContainerType<{
1637
- epoch: import("@chainsafe/ssz").UintNumberType;
1638
- root: import("@chainsafe/ssz").ByteVectorType;
1349
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1350
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1351
+ data: import("@chainsafe/ssz").ContainerType<{
1352
+ slot: import("@chainsafe/ssz").UintBigintType;
1353
+ index: import("@chainsafe/ssz").UintBigintType;
1354
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1355
+ source: import("@chainsafe/ssz").ContainerType<{
1356
+ epoch: import("@chainsafe/ssz").UintBigintType;
1357
+ root: import("@chainsafe/ssz").ByteVectorType;
1358
+ }>;
1359
+ target: import("@chainsafe/ssz").ContainerType<{
1360
+ epoch: import("@chainsafe/ssz").UintBigintType;
1361
+ root: import("@chainsafe/ssz").ByteVectorType;
1362
+ }>;
1639
1363
  }>;
1640
- target: import("@chainsafe/ssz").ContainerType<{
1641
- epoch: import("@chainsafe/ssz").UintNumberType;
1642
- root: import("@chainsafe/ssz").ByteVectorType;
1364
+ signature: import("@chainsafe/ssz").ByteVectorType;
1365
+ }>;
1366
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1367
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1368
+ data: import("@chainsafe/ssz").ContainerType<{
1369
+ slot: import("@chainsafe/ssz").UintBigintType;
1370
+ index: import("@chainsafe/ssz").UintBigintType;
1371
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1372
+ source: import("@chainsafe/ssz").ContainerType<{
1373
+ epoch: import("@chainsafe/ssz").UintBigintType;
1374
+ root: import("@chainsafe/ssz").ByteVectorType;
1375
+ }>;
1376
+ target: import("@chainsafe/ssz").ContainerType<{
1377
+ epoch: import("@chainsafe/ssz").UintBigintType;
1378
+ root: import("@chainsafe/ssz").ByteVectorType;
1379
+ }>;
1643
1380
  }>;
1381
+ signature: import("@chainsafe/ssz").ByteVectorType;
1644
1382
  }>;
1645
- signature: import("@chainsafe/ssz").ByteVectorType;
1646
1383
  }> | import("@chainsafe/ssz").ValueOfFields<{
1647
- committeeIndex: import("@chainsafe/ssz").UintNumberType;
1648
- attesterIndex: import("@chainsafe/ssz").UintNumberType;
1649
- data: import("@chainsafe/ssz").ContainerType<{
1650
- slot: import("@chainsafe/ssz").UintNumberType;
1651
- index: import("@chainsafe/ssz").UintNumberType;
1652
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1653
- source: import("@chainsafe/ssz").ContainerType<{
1654
- epoch: import("@chainsafe/ssz").UintNumberType;
1655
- root: import("@chainsafe/ssz").ByteVectorType;
1384
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1385
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1386
+ data: import("@chainsafe/ssz").ContainerType<{
1387
+ slot: import("@chainsafe/ssz").UintBigintType;
1388
+ index: import("@chainsafe/ssz").UintBigintType;
1389
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1390
+ source: import("@chainsafe/ssz").ContainerType<{
1391
+ epoch: import("@chainsafe/ssz").UintBigintType;
1392
+ root: import("@chainsafe/ssz").ByteVectorType;
1393
+ }>;
1394
+ target: import("@chainsafe/ssz").ContainerType<{
1395
+ epoch: import("@chainsafe/ssz").UintBigintType;
1396
+ root: import("@chainsafe/ssz").ByteVectorType;
1397
+ }>;
1656
1398
  }>;
1657
- target: import("@chainsafe/ssz").ContainerType<{
1658
- epoch: import("@chainsafe/ssz").UintNumberType;
1659
- root: import("@chainsafe/ssz").ByteVectorType;
1399
+ signature: import("@chainsafe/ssz").ByteVectorType;
1400
+ }>;
1401
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1402
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1403
+ data: import("@chainsafe/ssz").ContainerType<{
1404
+ slot: import("@chainsafe/ssz").UintBigintType;
1405
+ index: import("@chainsafe/ssz").UintBigintType;
1406
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1407
+ source: import("@chainsafe/ssz").ContainerType<{
1408
+ epoch: import("@chainsafe/ssz").UintBigintType;
1409
+ root: import("@chainsafe/ssz").ByteVectorType;
1410
+ }>;
1411
+ target: import("@chainsafe/ssz").ContainerType<{
1412
+ epoch: import("@chainsafe/ssz").UintBigintType;
1413
+ root: import("@chainsafe/ssz").ByteVectorType;
1414
+ }>;
1660
1415
  }>;
1416
+ signature: import("@chainsafe/ssz").ByteVectorType;
1661
1417
  }>;
1662
- signature: import("@chainsafe/ssz").ByteVectorType;
1663
1418
  }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1664
- aggregationBits: import("@chainsafe/ssz").BitListType;
1665
- data: import("@chainsafe/ssz").ContainerType<{
1666
- slot: import("@chainsafe/ssz").UintNumberType;
1667
- index: import("@chainsafe/ssz").UintNumberType;
1668
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1669
- source: import("@chainsafe/ssz").ContainerType<{
1670
- epoch: import("@chainsafe/ssz").UintNumberType;
1671
- root: import("@chainsafe/ssz").ByteVectorType;
1419
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1420
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1421
+ data: import("@chainsafe/ssz").ContainerType<{
1422
+ slot: import("@chainsafe/ssz").UintBigintType;
1423
+ index: import("@chainsafe/ssz").UintBigintType;
1424
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1425
+ source: import("@chainsafe/ssz").ContainerType<{
1426
+ epoch: import("@chainsafe/ssz").UintBigintType;
1427
+ root: import("@chainsafe/ssz").ByteVectorType;
1428
+ }>;
1429
+ target: import("@chainsafe/ssz").ContainerType<{
1430
+ epoch: import("@chainsafe/ssz").UintBigintType;
1431
+ root: import("@chainsafe/ssz").ByteVectorType;
1432
+ }>;
1672
1433
  }>;
1673
- target: import("@chainsafe/ssz").ContainerType<{
1674
- epoch: import("@chainsafe/ssz").UintNumberType;
1675
- root: import("@chainsafe/ssz").ByteVectorType;
1434
+ signature: import("@chainsafe/ssz").ByteVectorType;
1435
+ }>;
1436
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1437
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1438
+ data: import("@chainsafe/ssz").ContainerType<{
1439
+ slot: import("@chainsafe/ssz").UintBigintType;
1440
+ index: import("@chainsafe/ssz").UintBigintType;
1441
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1442
+ source: import("@chainsafe/ssz").ContainerType<{
1443
+ epoch: import("@chainsafe/ssz").UintBigintType;
1444
+ root: import("@chainsafe/ssz").ByteVectorType;
1445
+ }>;
1446
+ target: import("@chainsafe/ssz").ContainerType<{
1447
+ epoch: import("@chainsafe/ssz").UintBigintType;
1448
+ root: import("@chainsafe/ssz").ByteVectorType;
1449
+ }>;
1676
1450
  }>;
1451
+ signature: import("@chainsafe/ssz").ByteVectorType;
1677
1452
  }>;
1678
- signature: import("@chainsafe/ssz").ByteVectorType;
1679
1453
  }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1680
- aggregationBits: import("@chainsafe/ssz").BitListType;
1681
- data: import("@chainsafe/ssz").ContainerType<{
1682
- slot: import("@chainsafe/ssz").UintNumberType;
1683
- index: import("@chainsafe/ssz").UintNumberType;
1684
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1685
- source: import("@chainsafe/ssz").ContainerType<{
1686
- epoch: import("@chainsafe/ssz").UintNumberType;
1687
- root: import("@chainsafe/ssz").ByteVectorType;
1454
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1455
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1456
+ data: import("@chainsafe/ssz").ContainerType<{
1457
+ slot: import("@chainsafe/ssz").UintBigintType;
1458
+ index: import("@chainsafe/ssz").UintBigintType;
1459
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1460
+ source: import("@chainsafe/ssz").ContainerType<{
1461
+ epoch: import("@chainsafe/ssz").UintBigintType;
1462
+ root: import("@chainsafe/ssz").ByteVectorType;
1463
+ }>;
1464
+ target: import("@chainsafe/ssz").ContainerType<{
1465
+ epoch: import("@chainsafe/ssz").UintBigintType;
1466
+ root: import("@chainsafe/ssz").ByteVectorType;
1467
+ }>;
1688
1468
  }>;
1689
- target: import("@chainsafe/ssz").ContainerType<{
1690
- epoch: import("@chainsafe/ssz").UintNumberType;
1691
- root: import("@chainsafe/ssz").ByteVectorType;
1469
+ signature: import("@chainsafe/ssz").ByteVectorType;
1470
+ }>;
1471
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1472
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1473
+ data: import("@chainsafe/ssz").ContainerType<{
1474
+ slot: import("@chainsafe/ssz").UintBigintType;
1475
+ index: import("@chainsafe/ssz").UintBigintType;
1476
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1477
+ source: import("@chainsafe/ssz").ContainerType<{
1478
+ epoch: import("@chainsafe/ssz").UintBigintType;
1479
+ root: import("@chainsafe/ssz").ByteVectorType;
1480
+ }>;
1481
+ target: import("@chainsafe/ssz").ContainerType<{
1482
+ epoch: import("@chainsafe/ssz").UintBigintType;
1483
+ root: import("@chainsafe/ssz").ByteVectorType;
1484
+ }>;
1692
1485
  }>;
1486
+ signature: import("@chainsafe/ssz").ByteVectorType;
1693
1487
  }>;
1694
- signature: import("@chainsafe/ssz").ByteVectorType;
1695
1488
  }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1696
- aggregationBits: import("@chainsafe/ssz").BitListType;
1697
- data: import("@chainsafe/ssz").ContainerType<{
1698
- slot: import("@chainsafe/ssz").UintNumberType;
1699
- index: import("@chainsafe/ssz").UintNumberType;
1700
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1701
- source: import("@chainsafe/ssz").ContainerType<{
1702
- epoch: import("@chainsafe/ssz").UintNumberType;
1703
- root: import("@chainsafe/ssz").ByteVectorType;
1489
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1490
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1491
+ data: import("@chainsafe/ssz").ContainerType<{
1492
+ slot: import("@chainsafe/ssz").UintBigintType;
1493
+ index: import("@chainsafe/ssz").UintBigintType;
1494
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1495
+ source: import("@chainsafe/ssz").ContainerType<{
1496
+ epoch: import("@chainsafe/ssz").UintBigintType;
1497
+ root: import("@chainsafe/ssz").ByteVectorType;
1498
+ }>;
1499
+ target: import("@chainsafe/ssz").ContainerType<{
1500
+ epoch: import("@chainsafe/ssz").UintBigintType;
1501
+ root: import("@chainsafe/ssz").ByteVectorType;
1502
+ }>;
1704
1503
  }>;
1705
- target: import("@chainsafe/ssz").ContainerType<{
1706
- epoch: import("@chainsafe/ssz").UintNumberType;
1707
- root: import("@chainsafe/ssz").ByteVectorType;
1504
+ signature: import("@chainsafe/ssz").ByteVectorType;
1505
+ }>;
1506
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1507
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1508
+ data: import("@chainsafe/ssz").ContainerType<{
1509
+ slot: import("@chainsafe/ssz").UintBigintType;
1510
+ index: import("@chainsafe/ssz").UintBigintType;
1511
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1512
+ source: import("@chainsafe/ssz").ContainerType<{
1513
+ epoch: import("@chainsafe/ssz").UintBigintType;
1514
+ root: import("@chainsafe/ssz").ByteVectorType;
1515
+ }>;
1516
+ target: import("@chainsafe/ssz").ContainerType<{
1517
+ epoch: import("@chainsafe/ssz").UintBigintType;
1518
+ root: import("@chainsafe/ssz").ByteVectorType;
1519
+ }>;
1708
1520
  }>;
1521
+ signature: import("@chainsafe/ssz").ByteVectorType;
1709
1522
  }>;
1710
- signature: import("@chainsafe/ssz").ByteVectorType;
1711
1523
  }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1712
- aggregationBits: import("@chainsafe/ssz").BitListType;
1713
- data: import("@chainsafe/ssz").ContainerType<{
1714
- slot: import("@chainsafe/ssz").UintNumberType;
1715
- index: import("@chainsafe/ssz").UintNumberType;
1716
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1717
- source: import("@chainsafe/ssz").ContainerType<{
1718
- epoch: import("@chainsafe/ssz").UintNumberType;
1719
- root: import("@chainsafe/ssz").ByteVectorType;
1524
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1525
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1526
+ data: import("@chainsafe/ssz").ContainerType<{
1527
+ slot: import("@chainsafe/ssz").UintBigintType;
1528
+ index: import("@chainsafe/ssz").UintBigintType;
1529
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1530
+ source: import("@chainsafe/ssz").ContainerType<{
1531
+ epoch: import("@chainsafe/ssz").UintBigintType;
1532
+ root: import("@chainsafe/ssz").ByteVectorType;
1533
+ }>;
1534
+ target: import("@chainsafe/ssz").ContainerType<{
1535
+ epoch: import("@chainsafe/ssz").UintBigintType;
1536
+ root: import("@chainsafe/ssz").ByteVectorType;
1537
+ }>;
1720
1538
  }>;
1721
- target: import("@chainsafe/ssz").ContainerType<{
1722
- epoch: import("@chainsafe/ssz").UintNumberType;
1723
- root: import("@chainsafe/ssz").ByteVectorType;
1539
+ signature: import("@chainsafe/ssz").ByteVectorType;
1540
+ }>;
1541
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1542
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1543
+ data: import("@chainsafe/ssz").ContainerType<{
1544
+ slot: import("@chainsafe/ssz").UintBigintType;
1545
+ index: import("@chainsafe/ssz").UintBigintType;
1546
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1547
+ source: import("@chainsafe/ssz").ContainerType<{
1548
+ epoch: import("@chainsafe/ssz").UintBigintType;
1549
+ root: import("@chainsafe/ssz").ByteVectorType;
1550
+ }>;
1551
+ target: import("@chainsafe/ssz").ContainerType<{
1552
+ epoch: import("@chainsafe/ssz").UintBigintType;
1553
+ root: import("@chainsafe/ssz").ByteVectorType;
1554
+ }>;
1724
1555
  }>;
1556
+ signature: import("@chainsafe/ssz").ByteVectorType;
1725
1557
  }>;
1726
- signature: import("@chainsafe/ssz").ByteVectorType;
1727
1558
  }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1728
- aggregationBits: import("@chainsafe/ssz").BitListType;
1729
- data: import("@chainsafe/ssz").ContainerType<{
1730
- slot: import("@chainsafe/ssz").UintNumberType;
1731
- index: import("@chainsafe/ssz").UintNumberType;
1732
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1733
- source: import("@chainsafe/ssz").ContainerType<{
1734
- epoch: import("@chainsafe/ssz").UintNumberType;
1735
- root: import("@chainsafe/ssz").ByteVectorType;
1559
+ attestation1: 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
+ }>;
1736
1573
  }>;
1737
- target: import("@chainsafe/ssz").ContainerType<{
1738
- epoch: import("@chainsafe/ssz").UintNumberType;
1739
- root: import("@chainsafe/ssz").ByteVectorType;
1574
+ signature: import("@chainsafe/ssz").ByteVectorType;
1575
+ }>;
1576
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1577
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1578
+ data: import("@chainsafe/ssz").ContainerType<{
1579
+ slot: import("@chainsafe/ssz").UintBigintType;
1580
+ index: import("@chainsafe/ssz").UintBigintType;
1581
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1582
+ source: import("@chainsafe/ssz").ContainerType<{
1583
+ epoch: import("@chainsafe/ssz").UintBigintType;
1584
+ root: import("@chainsafe/ssz").ByteVectorType;
1585
+ }>;
1586
+ target: import("@chainsafe/ssz").ContainerType<{
1587
+ epoch: import("@chainsafe/ssz").UintBigintType;
1588
+ root: import("@chainsafe/ssz").ByteVectorType;
1589
+ }>;
1740
1590
  }>;
1591
+ signature: import("@chainsafe/ssz").ByteVectorType;
1741
1592
  }>;
1742
- signature: import("@chainsafe/ssz").ByteVectorType;
1743
1593
  }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1744
- committeeIndex: import("@chainsafe/ssz").UintNumberType;
1745
- attesterIndex: import("@chainsafe/ssz").UintNumberType;
1746
- data: import("@chainsafe/ssz").ContainerType<{
1747
- slot: import("@chainsafe/ssz").UintNumberType;
1748
- index: import("@chainsafe/ssz").UintNumberType;
1749
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1750
- source: import("@chainsafe/ssz").ContainerType<{
1751
- epoch: import("@chainsafe/ssz").UintNumberType;
1752
- root: import("@chainsafe/ssz").ByteVectorType;
1594
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1595
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1596
+ data: import("@chainsafe/ssz").ContainerType<{
1597
+ slot: import("@chainsafe/ssz").UintBigintType;
1598
+ index: import("@chainsafe/ssz").UintBigintType;
1599
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1600
+ source: import("@chainsafe/ssz").ContainerType<{
1601
+ epoch: import("@chainsafe/ssz").UintBigintType;
1602
+ root: import("@chainsafe/ssz").ByteVectorType;
1603
+ }>;
1604
+ target: import("@chainsafe/ssz").ContainerType<{
1605
+ epoch: import("@chainsafe/ssz").UintBigintType;
1606
+ root: import("@chainsafe/ssz").ByteVectorType;
1607
+ }>;
1753
1608
  }>;
1754
- target: import("@chainsafe/ssz").ContainerType<{
1755
- epoch: import("@chainsafe/ssz").UintNumberType;
1756
- root: import("@chainsafe/ssz").ByteVectorType;
1609
+ signature: import("@chainsafe/ssz").ByteVectorType;
1610
+ }>;
1611
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1612
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1613
+ data: import("@chainsafe/ssz").ContainerType<{
1614
+ slot: import("@chainsafe/ssz").UintBigintType;
1615
+ index: import("@chainsafe/ssz").UintBigintType;
1616
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1617
+ source: import("@chainsafe/ssz").ContainerType<{
1618
+ epoch: import("@chainsafe/ssz").UintBigintType;
1619
+ root: import("@chainsafe/ssz").ByteVectorType;
1620
+ }>;
1621
+ target: import("@chainsafe/ssz").ContainerType<{
1622
+ epoch: import("@chainsafe/ssz").UintBigintType;
1623
+ root: import("@chainsafe/ssz").ByteVectorType;
1624
+ }>;
1757
1625
  }>;
1626
+ signature: import("@chainsafe/ssz").ByteVectorType;
1758
1627
  }>;
1759
- signature: import("@chainsafe/ssz").ByteVectorType;
1760
1628
  }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1761
- committeeIndex: import("@chainsafe/ssz").UintNumberType;
1762
- attesterIndex: import("@chainsafe/ssz").UintNumberType;
1763
- data: import("@chainsafe/ssz").ContainerType<{
1764
- slot: import("@chainsafe/ssz").UintNumberType;
1765
- index: import("@chainsafe/ssz").UintNumberType;
1766
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1767
- source: import("@chainsafe/ssz").ContainerType<{
1768
- epoch: import("@chainsafe/ssz").UintNumberType;
1769
- root: import("@chainsafe/ssz").ByteVectorType;
1629
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1630
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1631
+ data: import("@chainsafe/ssz").ContainerType<{
1632
+ slot: import("@chainsafe/ssz").UintBigintType;
1633
+ index: import("@chainsafe/ssz").UintBigintType;
1634
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1635
+ source: import("@chainsafe/ssz").ContainerType<{
1636
+ epoch: import("@chainsafe/ssz").UintBigintType;
1637
+ root: import("@chainsafe/ssz").ByteVectorType;
1638
+ }>;
1639
+ target: import("@chainsafe/ssz").ContainerType<{
1640
+ epoch: import("@chainsafe/ssz").UintBigintType;
1641
+ root: import("@chainsafe/ssz").ByteVectorType;
1642
+ }>;
1770
1643
  }>;
1771
- target: import("@chainsafe/ssz").ContainerType<{
1772
- epoch: import("@chainsafe/ssz").UintNumberType;
1773
- root: import("@chainsafe/ssz").ByteVectorType;
1644
+ signature: import("@chainsafe/ssz").ByteVectorType;
1645
+ }>;
1646
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1647
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1648
+ data: import("@chainsafe/ssz").ContainerType<{
1649
+ slot: import("@chainsafe/ssz").UintBigintType;
1650
+ index: import("@chainsafe/ssz").UintBigintType;
1651
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1652
+ source: import("@chainsafe/ssz").ContainerType<{
1653
+ epoch: import("@chainsafe/ssz").UintBigintType;
1654
+ root: import("@chainsafe/ssz").ByteVectorType;
1655
+ }>;
1656
+ target: import("@chainsafe/ssz").ContainerType<{
1657
+ epoch: import("@chainsafe/ssz").UintBigintType;
1658
+ root: import("@chainsafe/ssz").ByteVectorType;
1659
+ }>;
1774
1660
  }>;
1661
+ signature: import("@chainsafe/ssz").ByteVectorType;
1775
1662
  }>;
1776
- signature: import("@chainsafe/ssz").ByteVectorType;
1777
1663
  }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1778
- aggregationBits: import("@chainsafe/ssz").BitListType;
1779
- data: import("@chainsafe/ssz").ContainerType<{
1780
- slot: import("@chainsafe/ssz").UintNumberType;
1781
- index: import("@chainsafe/ssz").UintNumberType;
1782
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1783
- source: import("@chainsafe/ssz").ContainerType<{
1784
- epoch: import("@chainsafe/ssz").UintNumberType;
1785
- root: import("@chainsafe/ssz").ByteVectorType;
1664
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1665
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1666
+ data: import("@chainsafe/ssz").ContainerType<{
1667
+ slot: import("@chainsafe/ssz").UintBigintType;
1668
+ index: import("@chainsafe/ssz").UintBigintType;
1669
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1670
+ source: import("@chainsafe/ssz").ContainerType<{
1671
+ epoch: import("@chainsafe/ssz").UintBigintType;
1672
+ root: import("@chainsafe/ssz").ByteVectorType;
1673
+ }>;
1674
+ target: import("@chainsafe/ssz").ContainerType<{
1675
+ epoch: import("@chainsafe/ssz").UintBigintType;
1676
+ root: import("@chainsafe/ssz").ByteVectorType;
1677
+ }>;
1786
1678
  }>;
1787
- target: import("@chainsafe/ssz").ContainerType<{
1788
- epoch: import("@chainsafe/ssz").UintNumberType;
1789
- root: import("@chainsafe/ssz").ByteVectorType;
1679
+ signature: import("@chainsafe/ssz").ByteVectorType;
1680
+ }>;
1681
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1682
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1683
+ data: import("@chainsafe/ssz").ContainerType<{
1684
+ slot: import("@chainsafe/ssz").UintBigintType;
1685
+ index: import("@chainsafe/ssz").UintBigintType;
1686
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1687
+ source: import("@chainsafe/ssz").ContainerType<{
1688
+ epoch: import("@chainsafe/ssz").UintBigintType;
1689
+ root: import("@chainsafe/ssz").ByteVectorType;
1690
+ }>;
1691
+ target: import("@chainsafe/ssz").ContainerType<{
1692
+ epoch: import("@chainsafe/ssz").UintBigintType;
1693
+ root: import("@chainsafe/ssz").ByteVectorType;
1694
+ }>;
1695
+ }>;
1696
+ signature: import("@chainsafe/ssz").ByteVectorType;
1697
+ }>;
1698
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1699
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1700
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1701
+ data: import("@chainsafe/ssz").ContainerType<{
1702
+ slot: import("@chainsafe/ssz").UintBigintType;
1703
+ index: import("@chainsafe/ssz").UintBigintType;
1704
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1705
+ source: import("@chainsafe/ssz").ContainerType<{
1706
+ epoch: import("@chainsafe/ssz").UintBigintType;
1707
+ root: import("@chainsafe/ssz").ByteVectorType;
1708
+ }>;
1709
+ target: import("@chainsafe/ssz").ContainerType<{
1710
+ epoch: import("@chainsafe/ssz").UintBigintType;
1711
+ root: import("@chainsafe/ssz").ByteVectorType;
1712
+ }>;
1790
1713
  }>;
1714
+ signature: import("@chainsafe/ssz").ByteVectorType;
1791
1715
  }>;
1792
- signature: import("@chainsafe/ssz").ByteVectorType;
1793
- }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1794
- aggregationBits: import("@chainsafe/ssz").BitListType;
1795
- data: import("@chainsafe/ssz").ContainerType<{
1796
- slot: import("@chainsafe/ssz").UintNumberType;
1797
- index: import("@chainsafe/ssz").UintNumberType;
1798
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1799
- source: import("@chainsafe/ssz").ContainerType<{
1800
- epoch: import("@chainsafe/ssz").UintNumberType;
1801
- root: import("@chainsafe/ssz").ByteVectorType;
1802
- }>;
1803
- target: import("@chainsafe/ssz").ContainerType<{
1804
- epoch: import("@chainsafe/ssz").UintNumberType;
1805
- root: import("@chainsafe/ssz").ByteVectorType;
1716
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1717
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1718
+ data: import("@chainsafe/ssz").ContainerType<{
1719
+ slot: import("@chainsafe/ssz").UintBigintType;
1720
+ index: import("@chainsafe/ssz").UintBigintType;
1721
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1722
+ source: import("@chainsafe/ssz").ContainerType<{
1723
+ epoch: import("@chainsafe/ssz").UintBigintType;
1724
+ root: import("@chainsafe/ssz").ByteVectorType;
1725
+ }>;
1726
+ target: import("@chainsafe/ssz").ContainerType<{
1727
+ epoch: import("@chainsafe/ssz").UintBigintType;
1728
+ root: import("@chainsafe/ssz").ByteVectorType;
1729
+ }>;
1806
1730
  }>;
1731
+ signature: import("@chainsafe/ssz").ByteVectorType;
1807
1732
  }>;
1808
- signature: import("@chainsafe/ssz").ByteVectorType;
1809
1733
  }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1810
- aggregationBits: import("@chainsafe/ssz").BitListType;
1811
- data: import("@chainsafe/ssz").ContainerType<{
1812
- slot: import("@chainsafe/ssz").UintNumberType;
1813
- index: import("@chainsafe/ssz").UintNumberType;
1814
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1815
- source: import("@chainsafe/ssz").ContainerType<{
1816
- epoch: import("@chainsafe/ssz").UintNumberType;
1817
- root: import("@chainsafe/ssz").ByteVectorType;
1734
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1735
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1736
+ data: import("@chainsafe/ssz").ContainerType<{
1737
+ slot: import("@chainsafe/ssz").UintBigintType;
1738
+ index: import("@chainsafe/ssz").UintBigintType;
1739
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1740
+ source: import("@chainsafe/ssz").ContainerType<{
1741
+ epoch: import("@chainsafe/ssz").UintBigintType;
1742
+ root: import("@chainsafe/ssz").ByteVectorType;
1743
+ }>;
1744
+ target: import("@chainsafe/ssz").ContainerType<{
1745
+ epoch: import("@chainsafe/ssz").UintBigintType;
1746
+ root: import("@chainsafe/ssz").ByteVectorType;
1747
+ }>;
1818
1748
  }>;
1819
- target: import("@chainsafe/ssz").ContainerType<{
1820
- epoch: import("@chainsafe/ssz").UintNumberType;
1821
- root: import("@chainsafe/ssz").ByteVectorType;
1749
+ signature: import("@chainsafe/ssz").ByteVectorType;
1750
+ }>;
1751
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1752
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1753
+ data: import("@chainsafe/ssz").ContainerType<{
1754
+ slot: import("@chainsafe/ssz").UintBigintType;
1755
+ index: import("@chainsafe/ssz").UintBigintType;
1756
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1757
+ source: import("@chainsafe/ssz").ContainerType<{
1758
+ epoch: import("@chainsafe/ssz").UintBigintType;
1759
+ root: import("@chainsafe/ssz").ByteVectorType;
1760
+ }>;
1761
+ target: import("@chainsafe/ssz").ContainerType<{
1762
+ epoch: import("@chainsafe/ssz").UintBigintType;
1763
+ root: import("@chainsafe/ssz").ByteVectorType;
1764
+ }>;
1822
1765
  }>;
1766
+ signature: import("@chainsafe/ssz").ByteVectorType;
1823
1767
  }>;
1824
- signature: import("@chainsafe/ssz").ByteVectorType;
1825
1768
  }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1826
- aggregationBits: import("@chainsafe/ssz").BitListType;
1827
- data: import("@chainsafe/ssz").ContainerType<{
1828
- slot: import("@chainsafe/ssz").UintNumberType;
1829
- index: import("@chainsafe/ssz").UintNumberType;
1830
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1831
- source: import("@chainsafe/ssz").ContainerType<{
1832
- epoch: import("@chainsafe/ssz").UintNumberType;
1833
- root: import("@chainsafe/ssz").ByteVectorType;
1769
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1770
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1771
+ data: import("@chainsafe/ssz").ContainerType<{
1772
+ slot: import("@chainsafe/ssz").UintBigintType;
1773
+ index: import("@chainsafe/ssz").UintBigintType;
1774
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1775
+ source: import("@chainsafe/ssz").ContainerType<{
1776
+ epoch: import("@chainsafe/ssz").UintBigintType;
1777
+ root: import("@chainsafe/ssz").ByteVectorType;
1778
+ }>;
1779
+ target: import("@chainsafe/ssz").ContainerType<{
1780
+ epoch: import("@chainsafe/ssz").UintBigintType;
1781
+ root: import("@chainsafe/ssz").ByteVectorType;
1782
+ }>;
1834
1783
  }>;
1835
- target: import("@chainsafe/ssz").ContainerType<{
1836
- epoch: import("@chainsafe/ssz").UintNumberType;
1837
- root: import("@chainsafe/ssz").ByteVectorType;
1784
+ signature: import("@chainsafe/ssz").ByteVectorType;
1785
+ }>;
1786
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1787
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1788
+ data: import("@chainsafe/ssz").ContainerType<{
1789
+ slot: import("@chainsafe/ssz").UintBigintType;
1790
+ index: import("@chainsafe/ssz").UintBigintType;
1791
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1792
+ source: import("@chainsafe/ssz").ContainerType<{
1793
+ epoch: import("@chainsafe/ssz").UintBigintType;
1794
+ root: import("@chainsafe/ssz").ByteVectorType;
1795
+ }>;
1796
+ target: import("@chainsafe/ssz").ContainerType<{
1797
+ epoch: import("@chainsafe/ssz").UintBigintType;
1798
+ root: import("@chainsafe/ssz").ByteVectorType;
1799
+ }>;
1838
1800
  }>;
1801
+ signature: import("@chainsafe/ssz").ByteVectorType;
1839
1802
  }>;
1840
- signature: import("@chainsafe/ssz").ByteVectorType;
1841
1803
  }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1842
- aggregationBits: import("@chainsafe/ssz").BitListType;
1843
- data: import("@chainsafe/ssz").ContainerType<{
1844
- slot: import("@chainsafe/ssz").UintNumberType;
1845
- index: import("@chainsafe/ssz").UintNumberType;
1846
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1847
- source: import("@chainsafe/ssz").ContainerType<{
1848
- epoch: import("@chainsafe/ssz").UintNumberType;
1849
- root: import("@chainsafe/ssz").ByteVectorType;
1804
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1805
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1806
+ data: import("@chainsafe/ssz").ContainerType<{
1807
+ slot: import("@chainsafe/ssz").UintBigintType;
1808
+ index: import("@chainsafe/ssz").UintBigintType;
1809
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1810
+ source: import("@chainsafe/ssz").ContainerType<{
1811
+ epoch: import("@chainsafe/ssz").UintBigintType;
1812
+ root: import("@chainsafe/ssz").ByteVectorType;
1813
+ }>;
1814
+ target: import("@chainsafe/ssz").ContainerType<{
1815
+ epoch: import("@chainsafe/ssz").UintBigintType;
1816
+ root: import("@chainsafe/ssz").ByteVectorType;
1817
+ }>;
1850
1818
  }>;
1851
- target: import("@chainsafe/ssz").ContainerType<{
1852
- epoch: import("@chainsafe/ssz").UintNumberType;
1853
- root: import("@chainsafe/ssz").ByteVectorType;
1819
+ signature: import("@chainsafe/ssz").ByteVectorType;
1820
+ }>;
1821
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1822
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1823
+ data: import("@chainsafe/ssz").ContainerType<{
1824
+ slot: import("@chainsafe/ssz").UintBigintType;
1825
+ index: import("@chainsafe/ssz").UintBigintType;
1826
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1827
+ source: import("@chainsafe/ssz").ContainerType<{
1828
+ epoch: import("@chainsafe/ssz").UintBigintType;
1829
+ root: import("@chainsafe/ssz").ByteVectorType;
1830
+ }>;
1831
+ target: import("@chainsafe/ssz").ContainerType<{
1832
+ epoch: import("@chainsafe/ssz").UintBigintType;
1833
+ root: import("@chainsafe/ssz").ByteVectorType;
1834
+ }>;
1854
1835
  }>;
1836
+ signature: import("@chainsafe/ssz").ByteVectorType;
1855
1837
  }>;
1856
- signature: import("@chainsafe/ssz").ByteVectorType;
1857
1838
  }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1858
- committeeIndex: import("@chainsafe/ssz").UintNumberType;
1859
- attesterIndex: import("@chainsafe/ssz").UintNumberType;
1860
- data: import("@chainsafe/ssz").ContainerType<{
1861
- slot: import("@chainsafe/ssz").UintNumberType;
1862
- index: import("@chainsafe/ssz").UintNumberType;
1863
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1864
- source: import("@chainsafe/ssz").ContainerType<{
1865
- epoch: import("@chainsafe/ssz").UintNumberType;
1866
- root: import("@chainsafe/ssz").ByteVectorType;
1839
+ attestation1: 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
+ }>;
1867
1853
  }>;
1868
- target: import("@chainsafe/ssz").ContainerType<{
1869
- epoch: import("@chainsafe/ssz").UintNumberType;
1870
- root: import("@chainsafe/ssz").ByteVectorType;
1854
+ signature: import("@chainsafe/ssz").ByteVectorType;
1855
+ }>;
1856
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1857
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1858
+ data: import("@chainsafe/ssz").ContainerType<{
1859
+ slot: import("@chainsafe/ssz").UintBigintType;
1860
+ index: import("@chainsafe/ssz").UintBigintType;
1861
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1862
+ source: import("@chainsafe/ssz").ContainerType<{
1863
+ epoch: import("@chainsafe/ssz").UintBigintType;
1864
+ root: import("@chainsafe/ssz").ByteVectorType;
1865
+ }>;
1866
+ target: import("@chainsafe/ssz").ContainerType<{
1867
+ epoch: import("@chainsafe/ssz").UintBigintType;
1868
+ root: import("@chainsafe/ssz").ByteVectorType;
1869
+ }>;
1871
1870
  }>;
1871
+ signature: import("@chainsafe/ssz").ByteVectorType;
1872
1872
  }>;
1873
- signature: import("@chainsafe/ssz").ByteVectorType;
1874
1873
  }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1875
- committeeIndex: import("@chainsafe/ssz").UintNumberType;
1876
- attesterIndex: import("@chainsafe/ssz").UintNumberType;
1877
- data: import("@chainsafe/ssz").ContainerType<{
1878
- slot: import("@chainsafe/ssz").UintNumberType;
1879
- index: import("@chainsafe/ssz").UintNumberType;
1880
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1881
- source: import("@chainsafe/ssz").ContainerType<{
1882
- epoch: import("@chainsafe/ssz").UintNumberType;
1883
- root: import("@chainsafe/ssz").ByteVectorType;
1874
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1875
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1876
+ data: import("@chainsafe/ssz").ContainerType<{
1877
+ slot: import("@chainsafe/ssz").UintBigintType;
1878
+ index: import("@chainsafe/ssz").UintBigintType;
1879
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1880
+ source: import("@chainsafe/ssz").ContainerType<{
1881
+ epoch: import("@chainsafe/ssz").UintBigintType;
1882
+ root: import("@chainsafe/ssz").ByteVectorType;
1883
+ }>;
1884
+ target: import("@chainsafe/ssz").ContainerType<{
1885
+ epoch: import("@chainsafe/ssz").UintBigintType;
1886
+ root: import("@chainsafe/ssz").ByteVectorType;
1887
+ }>;
1884
1888
  }>;
1885
- target: import("@chainsafe/ssz").ContainerType<{
1886
- epoch: import("@chainsafe/ssz").UintNumberType;
1887
- root: import("@chainsafe/ssz").ByteVectorType;
1889
+ signature: import("@chainsafe/ssz").ByteVectorType;
1890
+ }>;
1891
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1892
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1893
+ data: import("@chainsafe/ssz").ContainerType<{
1894
+ slot: import("@chainsafe/ssz").UintBigintType;
1895
+ index: import("@chainsafe/ssz").UintBigintType;
1896
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1897
+ source: import("@chainsafe/ssz").ContainerType<{
1898
+ epoch: import("@chainsafe/ssz").UintBigintType;
1899
+ root: import("@chainsafe/ssz").ByteVectorType;
1900
+ }>;
1901
+ target: import("@chainsafe/ssz").ContainerType<{
1902
+ epoch: import("@chainsafe/ssz").UintBigintType;
1903
+ root: import("@chainsafe/ssz").ByteVectorType;
1904
+ }>;
1888
1905
  }>;
1906
+ signature: import("@chainsafe/ssz").ByteVectorType;
1889
1907
  }>;
1890
- signature: import("@chainsafe/ssz").ByteVectorType;
1891
1908
  }>> | import("@chainsafe/ssz").ContainerType<{
1892
1909
  message: import("@chainsafe/ssz").ContainerType<{
1893
1910
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -3354,9 +3371,13 @@ export declare function parseGossipTopic(forkDigestContext: ForkDigestContext, t
3354
3371
  /**
3355
3372
  * De-duplicate logic to pick fork topics between subscribeCoreTopicsAtFork and unsubscribeCoreTopicsAtFork
3356
3373
  */
3357
- export declare function getCoreTopicsAtFork(config: ChainConfig, fork: ForkName, opts: {
3374
+ export declare function getCoreTopicsAtFork(networkConfig: NetworkConfig, fork: ForkName, opts: {
3358
3375
  subscribeAllSubnets?: boolean;
3359
3376
  disableLightClientServer?: boolean;
3360
3377
  }): GossipTopicTypeMap[keyof GossipTopicTypeMap][];
3378
+ /**
3379
+ * Pick data column subnets to subscribe to post-fulu.
3380
+ */
3381
+ export declare function getDataColumnSidecarTopics(networkConfig: NetworkConfig): GossipTopicTypeMap[keyof GossipTopicTypeMap][];
3361
3382
  export declare const gossipTopicIgnoreDuplicatePublishError: Record<GossipType, boolean>;
3362
3383
  //# sourceMappingURL=topic.d.ts.map