@lodestar/beacon-node 1.33.0 → 1.34.0-dev.25bf0b65b8

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 (232) hide show
  1. package/lib/api/impl/beacon/blocks/index.js +113 -29
  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 +6 -0
  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 +70 -5
  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/produceBlock/produceBlockBody.d.ts +4 -2
  44. package/lib/chain/produceBlock/produceBlockBody.js +7 -2
  45. package/lib/chain/produceBlock/produceBlockBody.js.map +1 -1
  46. package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.d.ts +3 -2
  47. package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.js +25 -2
  48. package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.js.map +1 -1
  49. package/lib/chain/seenCache/seenGossipBlockInput.d.ts +64 -18
  50. package/lib/chain/seenCache/seenGossipBlockInput.js +321 -53
  51. package/lib/chain/seenCache/seenGossipBlockInput.js.map +1 -1
  52. package/lib/chain/validation/dataColumnSidecar.d.ts +28 -0
  53. package/lib/chain/validation/dataColumnSidecar.js +248 -0
  54. package/lib/chain/validation/dataColumnSidecar.js.map +1 -0
  55. package/lib/db/beacon.d.ts +3 -1
  56. package/lib/db/beacon.js +3 -1
  57. package/lib/db/beacon.js.map +1 -1
  58. package/lib/db/buckets.d.ts +3 -1
  59. package/lib/db/buckets.js +2 -0
  60. package/lib/db/buckets.js.map +1 -1
  61. package/lib/db/interface.d.ts +3 -1
  62. package/lib/db/repositories/dataColumnSidecars.d.ts +47 -0
  63. package/lib/db/repositories/dataColumnSidecars.js +40 -0
  64. package/lib/db/repositories/dataColumnSidecars.js.map +1 -0
  65. package/lib/db/repositories/dataColumnSidecarsArchive.d.ts +15 -0
  66. package/lib/db/repositories/dataColumnSidecarsArchive.js +23 -0
  67. package/lib/db/repositories/dataColumnSidecarsArchive.js.map +1 -0
  68. package/lib/db/repositories/index.d.ts +2 -0
  69. package/lib/db/repositories/index.js +2 -0
  70. package/lib/db/repositories/index.js.map +1 -1
  71. package/lib/execution/engine/http.d.ts +6 -3
  72. package/lib/execution/engine/http.js +56 -42
  73. package/lib/execution/engine/http.js.map +1 -1
  74. package/lib/execution/engine/interface.d.ts +4 -2
  75. package/lib/execution/engine/interface.js +1 -1
  76. package/lib/execution/engine/interface.js.map +1 -1
  77. package/lib/execution/engine/mock.d.ts +1 -0
  78. package/lib/execution/engine/mock.js +5 -0
  79. package/lib/execution/engine/mock.js.map +1 -1
  80. package/lib/execution/engine/types.d.ts +10 -0
  81. package/lib/execution/engine/types.js +6 -0
  82. package/lib/execution/engine/types.js.map +1 -1
  83. package/lib/metrics/metrics/beacon.d.ts +14 -0
  84. package/lib/metrics/metrics/beacon.js +57 -0
  85. package/lib/metrics/metrics/beacon.js.map +1 -1
  86. package/lib/metrics/metrics/lodestar.d.ts +23 -1
  87. package/lib/metrics/metrics/lodestar.js +39 -0
  88. package/lib/metrics/metrics/lodestar.js.map +1 -1
  89. package/lib/network/core/metrics.d.ts +10 -3
  90. package/lib/network/core/metrics.js +22 -4
  91. package/lib/network/core/metrics.js.map +1 -1
  92. package/lib/network/core/networkCore.d.ts +10 -4
  93. package/lib/network/core/networkCore.js +31 -11
  94. package/lib/network/core/networkCore.js.map +1 -1
  95. package/lib/network/core/networkCoreWorker.js +2 -0
  96. package/lib/network/core/networkCoreWorker.js.map +1 -1
  97. package/lib/network/core/networkCoreWorkerHandler.d.ts +5 -3
  98. package/lib/network/core/networkCoreWorkerHandler.js +6 -1
  99. package/lib/network/core/networkCoreWorkerHandler.js.map +1 -1
  100. package/lib/network/core/types.d.ts +7 -4
  101. package/lib/network/events.d.ts +4 -2
  102. package/lib/network/events.js.map +1 -1
  103. package/lib/network/gossip/interface.d.ts +8 -1
  104. package/lib/network/gossip/interface.js +1 -0
  105. package/lib/network/gossip/interface.js.map +1 -1
  106. package/lib/network/gossip/topic.d.ts +1047 -1031
  107. package/lib/network/gossip/topic.js +20 -1
  108. package/lib/network/gossip/topic.js.map +1 -1
  109. package/lib/network/interface.d.ts +9 -1
  110. package/lib/network/metadata.d.ts +9 -5
  111. package/lib/network/metadata.js +26 -5
  112. package/lib/network/metadata.js.map +1 -1
  113. package/lib/network/network.d.ts +12 -2
  114. package/lib/network/network.js +68 -11
  115. package/lib/network/network.js.map +1 -1
  116. package/lib/network/networkConfig.d.ts +12 -0
  117. package/lib/network/networkConfig.js +2 -0
  118. package/lib/network/networkConfig.js.map +1 -0
  119. package/lib/network/options.d.ts +1 -0
  120. package/lib/network/options.js +5 -0
  121. package/lib/network/options.js.map +1 -1
  122. package/lib/network/peers/discover.d.ts +8 -3
  123. package/lib/network/peers/discover.js +99 -14
  124. package/lib/network/peers/discover.js.map +1 -1
  125. package/lib/network/peers/peerManager.d.ts +10 -4
  126. package/lib/network/peers/peerManager.js +90 -13
  127. package/lib/network/peers/peerManager.js.map +1 -1
  128. package/lib/network/peers/peersData.d.ts +17 -3
  129. package/lib/network/peers/peersData.js.map +1 -1
  130. package/lib/network/peers/score/interface.d.ts +1 -1
  131. package/lib/network/peers/score/score.d.ts +2 -2
  132. package/lib/network/peers/score/score.js +4 -1
  133. package/lib/network/peers/score/score.js.map +1 -1
  134. package/lib/network/peers/score/store.d.ts +3 -1
  135. package/lib/network/peers/score/store.js +6 -2
  136. package/lib/network/peers/score/store.js.map +1 -1
  137. package/lib/network/peers/utils/assertPeerRelevance.d.ts +7 -3
  138. package/lib/network/peers/utils/assertPeerRelevance.js +10 -1
  139. package/lib/network/peers/utils/assertPeerRelevance.js.map +1 -1
  140. package/lib/network/peers/utils/prioritizePeers.d.ts +18 -7
  141. package/lib/network/peers/utils/prioritizePeers.js +43 -7
  142. package/lib/network/peers/utils/prioritizePeers.js.map +1 -1
  143. package/lib/network/processor/extractSlotRootFns.js +8 -1
  144. package/lib/network/processor/extractSlotRootFns.js.map +1 -1
  145. package/lib/network/processor/gossipHandlers.js +149 -9
  146. package/lib/network/processor/gossipHandlers.js.map +1 -1
  147. package/lib/network/processor/gossipQueues/index.js +5 -0
  148. package/lib/network/processor/gossipQueues/index.js.map +1 -1
  149. package/lib/network/processor/index.js +1 -0
  150. package/lib/network/processor/index.js.map +1 -1
  151. package/lib/network/reqresp/ReqRespBeaconNode.d.ts +2 -2
  152. package/lib/network/reqresp/ReqRespBeaconNode.js +36 -14
  153. package/lib/network/reqresp/ReqRespBeaconNode.js.map +1 -1
  154. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.d.ts +21 -4
  155. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.js +225 -14
  156. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.js.map +1 -1
  157. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.d.ts +32 -6
  158. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.js +283 -28
  159. package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.js.map +1 -1
  160. package/lib/network/reqresp/handlers/beaconBlocksByRange.d.ts +1 -1
  161. package/lib/network/reqresp/handlers/beaconBlocksByRange.js.map +1 -1
  162. package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.d.ts +8 -0
  163. package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.js +92 -0
  164. package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.js.map +1 -0
  165. package/lib/network/reqresp/handlers/dataColumnSidecarsByRoot.d.ts +6 -0
  166. package/lib/network/reqresp/handlers/dataColumnSidecarsByRoot.js +50 -0
  167. package/lib/network/reqresp/handlers/dataColumnSidecarsByRoot.js.map +1 -0
  168. package/lib/network/reqresp/handlers/index.js +10 -0
  169. package/lib/network/reqresp/handlers/index.js.map +1 -1
  170. package/lib/network/reqresp/protocols.d.ts +4 -0
  171. package/lib/network/reqresp/protocols.js +20 -0
  172. package/lib/network/reqresp/protocols.js.map +1 -1
  173. package/lib/network/reqresp/rateLimit.js +11 -1
  174. package/lib/network/reqresp/rateLimit.js.map +1 -1
  175. package/lib/network/reqresp/score.js +3 -0
  176. package/lib/network/reqresp/score.js.map +1 -1
  177. package/lib/network/reqresp/types.d.ts +11 -4
  178. package/lib/network/reqresp/types.js +12 -3
  179. package/lib/network/reqresp/types.js.map +1 -1
  180. package/lib/network/statusCache.d.ts +5 -5
  181. package/lib/network/statusCache.js.map +1 -1
  182. package/lib/network/subnets/interface.d.ts +3 -0
  183. package/lib/network/subnets/interface.js +14 -1
  184. package/lib/network/subnets/interface.js.map +1 -1
  185. package/lib/network/subnets/syncnetsService.js +4 -5
  186. package/lib/network/subnets/syncnetsService.js.map +1 -1
  187. package/lib/node/nodejs.js +1 -0
  188. package/lib/node/nodejs.js.map +1 -1
  189. package/lib/sync/constants.d.ts +18 -3
  190. package/lib/sync/constants.js +21 -3
  191. package/lib/sync/constants.js.map +1 -1
  192. package/lib/sync/interface.d.ts +2 -2
  193. package/lib/sync/interface.js +1 -1
  194. package/lib/sync/interface.js.map +1 -1
  195. package/lib/sync/range/batch.d.ts +17 -2
  196. package/lib/sync/range/batch.js +39 -7
  197. package/lib/sync/range/batch.js.map +1 -1
  198. package/lib/sync/range/chain.d.ts +15 -1
  199. package/lib/sync/range/chain.js +124 -33
  200. package/lib/sync/range/chain.js.map +1 -1
  201. package/lib/sync/range/range.d.ts +3 -2
  202. package/lib/sync/range/range.js +9 -3
  203. package/lib/sync/range/range.js.map +1 -1
  204. package/lib/sync/range/utils/chainTarget.d.ts +5 -1
  205. package/lib/sync/range/utils/chainTarget.js +26 -1
  206. package/lib/sync/range/utils/chainTarget.js.map +1 -1
  207. package/lib/sync/range/utils/peerBalancer.d.ts +17 -5
  208. package/lib/sync/range/utils/peerBalancer.js +85 -10
  209. package/lib/sync/range/utils/peerBalancer.js.map +1 -1
  210. package/lib/sync/sync.js +1 -1
  211. package/lib/sync/sync.js.map +1 -1
  212. package/lib/sync/unknownBlock.d.ts +8 -1
  213. package/lib/sync/unknownBlock.js +226 -69
  214. package/lib/sync/unknownBlock.js.map +1 -1
  215. package/lib/sync/utils/remoteSyncType.d.ts +4 -4
  216. package/lib/sync/utils/remoteSyncType.js.map +1 -1
  217. package/lib/util/blobs.d.ts +23 -1
  218. package/lib/util/blobs.js +156 -1
  219. package/lib/util/blobs.js.map +1 -1
  220. package/lib/util/dataColumns.d.ts +135 -0
  221. package/lib/util/dataColumns.js +353 -0
  222. package/lib/util/dataColumns.js.map +1 -0
  223. package/lib/util/metadata.d.ts +5 -0
  224. package/lib/util/metadata.js +10 -0
  225. package/lib/util/metadata.js.map +1 -1
  226. package/lib/util/sszBytes.d.ts +1 -0
  227. package/lib/util/sszBytes.js +17 -0
  228. package/lib/util/sszBytes.js.map +1 -1
  229. package/package.json +14 -14
  230. package/lib/network/reqresp/handlers/status.d.ts +0 -4
  231. package/lib/network/reqresp/handlers/status.js +0 -11
  232. package/lib/network/reqresp/handlers/status.js.map +0 -1
@@ -161,742 +161,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
161
161
  toExecutionAddress: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
162
162
  }>;
163
163
  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<{
164
+ }> | import("@chainsafe/ssz").ContainerType<{
900
165
  message: import("@chainsafe/ssz").ContainerType<{
901
166
  body: import("@chainsafe/ssz").ContainerType<{
902
167
  executionPayload: import("@chainsafe/ssz").ContainerType<{
@@ -1057,6 +322,22 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1057
322
  signature: import("@chainsafe/ssz").ByteVectorType;
1058
323
  }>;
1059
324
  kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
325
+ }> | import("@chainsafe/ssz").ContainerType<{
326
+ index: import("@chainsafe/ssz").UintNumberType;
327
+ column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
328
+ kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
329
+ kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
330
+ signedBlockHeader: import("@chainsafe/ssz").ContainerType<{
331
+ message: import("@chainsafe/ssz").ContainerType<{
332
+ slot: import("@chainsafe/ssz").UintNumberType;
333
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
334
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
335
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
336
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
337
+ }>;
338
+ signature: import("@chainsafe/ssz").ByteVectorType;
339
+ }>;
340
+ kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
1060
341
  }> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
1061
342
  message: import("@chainsafe/ssz").ContainerType<{
1062
343
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -1172,7 +453,55 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1172
453
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1173
454
  }>;
1174
455
  signature: import("@chainsafe/ssz").ByteVectorType;
1175
- }> | import("@chainsafe/ssz").ValueOfFields<{
456
+ }> | import("@chainsafe/ssz").ValueOfFields<{
457
+ message: import("@chainsafe/ssz").ContainerType<{
458
+ aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
459
+ aggregate: import("@chainsafe/ssz").ContainerType<{
460
+ aggregationBits: import("@chainsafe/ssz").BitListType;
461
+ data: import("@chainsafe/ssz").ContainerType<{
462
+ slot: import("@chainsafe/ssz").UintNumberType;
463
+ index: import("@chainsafe/ssz").UintNumberType;
464
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
465
+ source: import("@chainsafe/ssz").ContainerType<{
466
+ epoch: import("@chainsafe/ssz").UintNumberType;
467
+ root: import("@chainsafe/ssz").ByteVectorType;
468
+ }>;
469
+ target: import("@chainsafe/ssz").ContainerType<{
470
+ epoch: import("@chainsafe/ssz").UintNumberType;
471
+ root: import("@chainsafe/ssz").ByteVectorType;
472
+ }>;
473
+ }>;
474
+ signature: import("@chainsafe/ssz").ByteVectorType;
475
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
476
+ }>;
477
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
478
+ }>;
479
+ signature: import("@chainsafe/ssz").ByteVectorType;
480
+ }> | import("@chainsafe/ssz").ValueOfFields<{
481
+ message: import("@chainsafe/ssz").ContainerType<{
482
+ aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
483
+ aggregate: import("@chainsafe/ssz").ContainerType<{
484
+ aggregationBits: import("@chainsafe/ssz").BitListType;
485
+ data: import("@chainsafe/ssz").ContainerType<{
486
+ slot: import("@chainsafe/ssz").UintNumberType;
487
+ index: import("@chainsafe/ssz").UintNumberType;
488
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
489
+ source: import("@chainsafe/ssz").ContainerType<{
490
+ epoch: import("@chainsafe/ssz").UintNumberType;
491
+ root: import("@chainsafe/ssz").ByteVectorType;
492
+ }>;
493
+ target: import("@chainsafe/ssz").ContainerType<{
494
+ epoch: import("@chainsafe/ssz").UintNumberType;
495
+ root: import("@chainsafe/ssz").ByteVectorType;
496
+ }>;
497
+ }>;
498
+ signature: import("@chainsafe/ssz").ByteVectorType;
499
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
500
+ }>;
501
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
502
+ }>;
503
+ signature: import("@chainsafe/ssz").ByteVectorType;
504
+ }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1176
505
  message: import("@chainsafe/ssz").ContainerType<{
1177
506
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1178
507
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1191,12 +520,11 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1191
520
  }>;
1192
521
  }>;
1193
522
  signature: import("@chainsafe/ssz").ByteVectorType;
1194
- committeeBits: import("@chainsafe/ssz").BitVectorType;
1195
523
  }>;
1196
524
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1197
525
  }>;
1198
526
  signature: import("@chainsafe/ssz").ByteVectorType;
1199
- }> | import("@chainsafe/ssz").ValueOfFields<{
527
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1200
528
  message: import("@chainsafe/ssz").ContainerType<{
1201
529
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1202
530
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1215,12 +543,11 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1215
543
  }>;
1216
544
  }>;
1217
545
  signature: import("@chainsafe/ssz").ByteVectorType;
1218
- committeeBits: import("@chainsafe/ssz").BitVectorType;
1219
546
  }>;
1220
547
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1221
548
  }>;
1222
549
  signature: import("@chainsafe/ssz").ByteVectorType;
1223
- }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
550
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1224
551
  message: import("@chainsafe/ssz").ContainerType<{
1225
552
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1226
553
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1308,6 +635,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1308
635
  }>;
1309
636
  }>;
1310
637
  signature: import("@chainsafe/ssz").ByteVectorType;
638
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
1311
639
  }>;
1312
640
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1313
641
  }>;
@@ -1331,11 +659,12 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1331
659
  }>;
1332
660
  }>;
1333
661
  signature: import("@chainsafe/ssz").ByteVectorType;
662
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
1334
663
  }>;
1335
664
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1336
665
  }>;
1337
666
  signature: import("@chainsafe/ssz").ByteVectorType;
1338
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
667
+ }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1339
668
  message: import("@chainsafe/ssz").ContainerType<{
1340
669
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1341
670
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1354,12 +683,11 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1354
683
  }>;
1355
684
  }>;
1356
685
  signature: import("@chainsafe/ssz").ByteVectorType;
1357
- committeeBits: import("@chainsafe/ssz").BitVectorType;
1358
686
  }>;
1359
687
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1360
688
  }>;
1361
689
  signature: import("@chainsafe/ssz").ByteVectorType;
1362
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
690
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1363
691
  message: import("@chainsafe/ssz").ContainerType<{
1364
692
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1365
693
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1378,12 +706,34 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1378
706
  }>;
1379
707
  }>;
1380
708
  signature: import("@chainsafe/ssz").ByteVectorType;
1381
- committeeBits: import("@chainsafe/ssz").BitVectorType;
1382
709
  }>;
1383
710
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1384
711
  }>;
1385
712
  signature: import("@chainsafe/ssz").ByteVectorType;
1386
- }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
713
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
714
+ message: import("@chainsafe/ssz").ContainerType<{
715
+ aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
716
+ aggregate: import("@chainsafe/ssz").ContainerType<{
717
+ aggregationBits: import("@chainsafe/ssz").BitListType;
718
+ data: import("@chainsafe/ssz").ContainerType<{
719
+ slot: import("@chainsafe/ssz").UintNumberType;
720
+ index: import("@chainsafe/ssz").UintNumberType;
721
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
722
+ source: import("@chainsafe/ssz").ContainerType<{
723
+ epoch: import("@chainsafe/ssz").UintNumberType;
724
+ root: import("@chainsafe/ssz").ByteVectorType;
725
+ }>;
726
+ target: import("@chainsafe/ssz").ContainerType<{
727
+ epoch: import("@chainsafe/ssz").UintNumberType;
728
+ root: import("@chainsafe/ssz").ByteVectorType;
729
+ }>;
730
+ }>;
731
+ signature: import("@chainsafe/ssz").ByteVectorType;
732
+ }>;
733
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
734
+ }>;
735
+ signature: import("@chainsafe/ssz").ByteVectorType;
736
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1387
737
  message: import("@chainsafe/ssz").ContainerType<{
1388
738
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1389
739
  aggregate: import("@chainsafe/ssz").ContainerType<{
@@ -1448,6 +798,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1448
798
  }>;
1449
799
  }>;
1450
800
  signature: import("@chainsafe/ssz").ByteVectorType;
801
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
1451
802
  }>;
1452
803
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1453
804
  }>;
@@ -1471,82 +822,272 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1471
822
  }>;
1472
823
  }>;
1473
824
  signature: import("@chainsafe/ssz").ByteVectorType;
825
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
826
+ }>;
827
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
828
+ }>;
829
+ signature: import("@chainsafe/ssz").ByteVectorType;
830
+ }>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
831
+ aggregationBits: import("@chainsafe/ssz").BitListType;
832
+ data: import("@chainsafe/ssz").ContainerType<{
833
+ slot: import("@chainsafe/ssz").UintNumberType;
834
+ index: import("@chainsafe/ssz").UintNumberType;
835
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
836
+ source: import("@chainsafe/ssz").ContainerType<{
837
+ epoch: import("@chainsafe/ssz").UintNumberType;
838
+ root: import("@chainsafe/ssz").ByteVectorType;
839
+ }>;
840
+ target: import("@chainsafe/ssz").ContainerType<{
841
+ epoch: import("@chainsafe/ssz").UintNumberType;
842
+ root: import("@chainsafe/ssz").ByteVectorType;
843
+ }>;
844
+ }>;
845
+ signature: import("@chainsafe/ssz").ByteVectorType;
846
+ }> | import("@chainsafe/ssz").ValueOfFields<{
847
+ aggregationBits: import("@chainsafe/ssz").BitListType;
848
+ data: import("@chainsafe/ssz").ContainerType<{
849
+ slot: import("@chainsafe/ssz").UintNumberType;
850
+ index: import("@chainsafe/ssz").UintNumberType;
851
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
852
+ source: import("@chainsafe/ssz").ContainerType<{
853
+ epoch: import("@chainsafe/ssz").UintNumberType;
854
+ root: import("@chainsafe/ssz").ByteVectorType;
855
+ }>;
856
+ target: import("@chainsafe/ssz").ContainerType<{
857
+ epoch: import("@chainsafe/ssz").UintNumberType;
858
+ root: import("@chainsafe/ssz").ByteVectorType;
859
+ }>;
860
+ }>;
861
+ signature: import("@chainsafe/ssz").ByteVectorType;
862
+ }> | import("@chainsafe/ssz").ValueOfFields<{
863
+ aggregationBits: import("@chainsafe/ssz").BitListType;
864
+ data: import("@chainsafe/ssz").ContainerType<{
865
+ slot: import("@chainsafe/ssz").UintNumberType;
866
+ index: import("@chainsafe/ssz").UintNumberType;
867
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
868
+ source: import("@chainsafe/ssz").ContainerType<{
869
+ epoch: import("@chainsafe/ssz").UintNumberType;
870
+ root: import("@chainsafe/ssz").ByteVectorType;
871
+ }>;
872
+ target: import("@chainsafe/ssz").ContainerType<{
873
+ epoch: import("@chainsafe/ssz").UintNumberType;
874
+ root: import("@chainsafe/ssz").ByteVectorType;
875
+ }>;
876
+ }>;
877
+ signature: import("@chainsafe/ssz").ByteVectorType;
878
+ }> | import("@chainsafe/ssz").ValueOfFields<{
879
+ aggregationBits: import("@chainsafe/ssz").BitListType;
880
+ data: import("@chainsafe/ssz").ContainerType<{
881
+ slot: import("@chainsafe/ssz").UintNumberType;
882
+ index: import("@chainsafe/ssz").UintNumberType;
883
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
884
+ source: import("@chainsafe/ssz").ContainerType<{
885
+ epoch: import("@chainsafe/ssz").UintNumberType;
886
+ root: import("@chainsafe/ssz").ByteVectorType;
887
+ }>;
888
+ target: import("@chainsafe/ssz").ContainerType<{
889
+ epoch: import("@chainsafe/ssz").UintNumberType;
890
+ root: import("@chainsafe/ssz").ByteVectorType;
891
+ }>;
892
+ }>;
893
+ signature: import("@chainsafe/ssz").ByteVectorType;
894
+ }> | import("@chainsafe/ssz").ValueOfFields<{
895
+ aggregationBits: import("@chainsafe/ssz").BitListType;
896
+ data: import("@chainsafe/ssz").ContainerType<{
897
+ slot: import("@chainsafe/ssz").UintNumberType;
898
+ index: import("@chainsafe/ssz").UintNumberType;
899
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
900
+ source: import("@chainsafe/ssz").ContainerType<{
901
+ epoch: import("@chainsafe/ssz").UintNumberType;
902
+ root: import("@chainsafe/ssz").ByteVectorType;
903
+ }>;
904
+ target: import("@chainsafe/ssz").ContainerType<{
905
+ epoch: import("@chainsafe/ssz").UintNumberType;
906
+ root: import("@chainsafe/ssz").ByteVectorType;
907
+ }>;
908
+ }>;
909
+ signature: import("@chainsafe/ssz").ByteVectorType;
910
+ }> | import("@chainsafe/ssz").ValueOfFields<{
911
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
912
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
913
+ data: import("@chainsafe/ssz").ContainerType<{
914
+ slot: import("@chainsafe/ssz").UintNumberType;
915
+ index: import("@chainsafe/ssz").UintNumberType;
916
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
917
+ source: import("@chainsafe/ssz").ContainerType<{
918
+ epoch: import("@chainsafe/ssz").UintNumberType;
919
+ root: import("@chainsafe/ssz").ByteVectorType;
920
+ }>;
921
+ target: import("@chainsafe/ssz").ContainerType<{
922
+ epoch: import("@chainsafe/ssz").UintNumberType;
923
+ root: import("@chainsafe/ssz").ByteVectorType;
924
+ }>;
925
+ }>;
926
+ signature: import("@chainsafe/ssz").ByteVectorType;
927
+ }> | import("@chainsafe/ssz").ValueOfFields<{
928
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
929
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
930
+ data: import("@chainsafe/ssz").ContainerType<{
931
+ slot: import("@chainsafe/ssz").UintNumberType;
932
+ index: import("@chainsafe/ssz").UintNumberType;
933
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
934
+ source: import("@chainsafe/ssz").ContainerType<{
935
+ epoch: import("@chainsafe/ssz").UintNumberType;
936
+ root: import("@chainsafe/ssz").ByteVectorType;
937
+ }>;
938
+ target: import("@chainsafe/ssz").ContainerType<{
939
+ epoch: import("@chainsafe/ssz").UintNumberType;
940
+ root: import("@chainsafe/ssz").ByteVectorType;
941
+ }>;
942
+ }>;
943
+ signature: import("@chainsafe/ssz").ByteVectorType;
944
+ }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
945
+ aggregationBits: import("@chainsafe/ssz").BitListType;
946
+ data: import("@chainsafe/ssz").ContainerType<{
947
+ slot: import("@chainsafe/ssz").UintNumberType;
948
+ index: import("@chainsafe/ssz").UintNumberType;
949
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
950
+ source: import("@chainsafe/ssz").ContainerType<{
951
+ epoch: import("@chainsafe/ssz").UintNumberType;
952
+ root: import("@chainsafe/ssz").ByteVectorType;
953
+ }>;
954
+ target: import("@chainsafe/ssz").ContainerType<{
955
+ epoch: import("@chainsafe/ssz").UintNumberType;
956
+ root: import("@chainsafe/ssz").ByteVectorType;
957
+ }>;
958
+ }>;
959
+ signature: import("@chainsafe/ssz").ByteVectorType;
960
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
961
+ aggregationBits: import("@chainsafe/ssz").BitListType;
962
+ data: import("@chainsafe/ssz").ContainerType<{
963
+ slot: import("@chainsafe/ssz").UintNumberType;
964
+ index: import("@chainsafe/ssz").UintNumberType;
965
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
966
+ source: import("@chainsafe/ssz").ContainerType<{
967
+ epoch: import("@chainsafe/ssz").UintNumberType;
968
+ root: import("@chainsafe/ssz").ByteVectorType;
969
+ }>;
970
+ target: import("@chainsafe/ssz").ContainerType<{
971
+ epoch: import("@chainsafe/ssz").UintNumberType;
972
+ root: import("@chainsafe/ssz").ByteVectorType;
973
+ }>;
974
+ }>;
975
+ signature: import("@chainsafe/ssz").ByteVectorType;
976
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
977
+ aggregationBits: import("@chainsafe/ssz").BitListType;
978
+ data: import("@chainsafe/ssz").ContainerType<{
979
+ slot: import("@chainsafe/ssz").UintNumberType;
980
+ index: import("@chainsafe/ssz").UintNumberType;
981
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
982
+ source: import("@chainsafe/ssz").ContainerType<{
983
+ epoch: import("@chainsafe/ssz").UintNumberType;
984
+ root: import("@chainsafe/ssz").ByteVectorType;
985
+ }>;
986
+ target: import("@chainsafe/ssz").ContainerType<{
987
+ epoch: import("@chainsafe/ssz").UintNumberType;
988
+ root: import("@chainsafe/ssz").ByteVectorType;
989
+ }>;
990
+ }>;
991
+ signature: import("@chainsafe/ssz").ByteVectorType;
992
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
993
+ aggregationBits: import("@chainsafe/ssz").BitListType;
994
+ data: import("@chainsafe/ssz").ContainerType<{
995
+ slot: import("@chainsafe/ssz").UintNumberType;
996
+ index: import("@chainsafe/ssz").UintNumberType;
997
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
998
+ source: import("@chainsafe/ssz").ContainerType<{
999
+ epoch: import("@chainsafe/ssz").UintNumberType;
1000
+ root: import("@chainsafe/ssz").ByteVectorType;
1001
+ }>;
1002
+ target: import("@chainsafe/ssz").ContainerType<{
1003
+ epoch: import("@chainsafe/ssz").UintNumberType;
1004
+ root: import("@chainsafe/ssz").ByteVectorType;
1005
+ }>;
1006
+ }>;
1007
+ signature: import("@chainsafe/ssz").ByteVectorType;
1008
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1009
+ aggregationBits: import("@chainsafe/ssz").BitListType;
1010
+ data: import("@chainsafe/ssz").ContainerType<{
1011
+ slot: import("@chainsafe/ssz").UintNumberType;
1012
+ index: import("@chainsafe/ssz").UintNumberType;
1013
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1014
+ source: import("@chainsafe/ssz").ContainerType<{
1015
+ epoch: import("@chainsafe/ssz").UintNumberType;
1016
+ root: import("@chainsafe/ssz").ByteVectorType;
1017
+ }>;
1018
+ target: import("@chainsafe/ssz").ContainerType<{
1019
+ epoch: import("@chainsafe/ssz").UintNumberType;
1020
+ root: import("@chainsafe/ssz").ByteVectorType;
1021
+ }>;
1022
+ }>;
1023
+ signature: import("@chainsafe/ssz").ByteVectorType;
1024
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1025
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1026
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1027
+ data: import("@chainsafe/ssz").ContainerType<{
1028
+ slot: import("@chainsafe/ssz").UintNumberType;
1029
+ index: import("@chainsafe/ssz").UintNumberType;
1030
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1031
+ source: import("@chainsafe/ssz").ContainerType<{
1032
+ epoch: import("@chainsafe/ssz").UintNumberType;
1033
+ root: import("@chainsafe/ssz").ByteVectorType;
1034
+ }>;
1035
+ target: import("@chainsafe/ssz").ContainerType<{
1036
+ epoch: import("@chainsafe/ssz").UintNumberType;
1037
+ root: import("@chainsafe/ssz").ByteVectorType;
1474
1038
  }>;
1475
- selectionProof: import("@chainsafe/ssz").ByteVectorType;
1476
1039
  }>;
1477
1040
  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;
1041
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1042
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1043
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1044
+ data: import("@chainsafe/ssz").ContainerType<{
1045
+ slot: import("@chainsafe/ssz").UintNumberType;
1046
+ index: import("@chainsafe/ssz").UintNumberType;
1047
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1048
+ source: import("@chainsafe/ssz").ContainerType<{
1049
+ epoch: import("@chainsafe/ssz").UintNumberType;
1050
+ root: import("@chainsafe/ssz").ByteVectorType;
1051
+ }>;
1052
+ target: import("@chainsafe/ssz").ContainerType<{
1053
+ epoch: import("@chainsafe/ssz").UintNumberType;
1054
+ root: import("@chainsafe/ssz").ByteVectorType;
1497
1055
  }>;
1498
- selectionProof: import("@chainsafe/ssz").ByteVectorType;
1499
1056
  }>;
1500
1057
  signature: import("@chainsafe/ssz").ByteVectorType;
1501
- }> | 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;
1058
+ }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1059
+ aggregationBits: import("@chainsafe/ssz").BitListType;
1060
+ data: import("@chainsafe/ssz").ContainerType<{
1061
+ slot: import("@chainsafe/ssz").UintNumberType;
1062
+ index: import("@chainsafe/ssz").UintNumberType;
1063
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1064
+ source: import("@chainsafe/ssz").ContainerType<{
1065
+ epoch: import("@chainsafe/ssz").UintNumberType;
1066
+ root: import("@chainsafe/ssz").ByteVectorType;
1067
+ }>;
1068
+ target: import("@chainsafe/ssz").ContainerType<{
1069
+ epoch: import("@chainsafe/ssz").UintNumberType;
1070
+ root: import("@chainsafe/ssz").ByteVectorType;
1521
1071
  }>;
1522
- selectionProof: import("@chainsafe/ssz").ByteVectorType;
1523
1072
  }>;
1524
1073
  signature: import("@chainsafe/ssz").ByteVectorType;
1525
1074
  }> | 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;
1075
+ aggregationBits: import("@chainsafe/ssz").BitListType;
1076
+ data: import("@chainsafe/ssz").ContainerType<{
1077
+ slot: import("@chainsafe/ssz").UintNumberType;
1078
+ index: import("@chainsafe/ssz").UintNumberType;
1079
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1080
+ source: import("@chainsafe/ssz").ContainerType<{
1081
+ epoch: import("@chainsafe/ssz").UintNumberType;
1082
+ root: import("@chainsafe/ssz").ByteVectorType;
1083
+ }>;
1084
+ target: import("@chainsafe/ssz").ContainerType<{
1085
+ epoch: import("@chainsafe/ssz").UintNumberType;
1086
+ root: import("@chainsafe/ssz").ByteVectorType;
1545
1087
  }>;
1546
- selectionProof: import("@chainsafe/ssz").ByteVectorType;
1547
1088
  }>;
1548
1089
  signature: import("@chainsafe/ssz").ByteVectorType;
1549
- }>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
1090
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1550
1091
  aggregationBits: import("@chainsafe/ssz").BitListType;
1551
1092
  data: import("@chainsafe/ssz").ContainerType<{
1552
1093
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -1562,7 +1103,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1562
1103
  }>;
1563
1104
  }>;
1564
1105
  signature: import("@chainsafe/ssz").ByteVectorType;
1565
- }> | import("@chainsafe/ssz").ValueOfFields<{
1106
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1566
1107
  aggregationBits: import("@chainsafe/ssz").BitListType;
1567
1108
  data: import("@chainsafe/ssz").ContainerType<{
1568
1109
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -1578,7 +1119,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1578
1119
  }>;
1579
1120
  }>;
1580
1121
  signature: import("@chainsafe/ssz").ByteVectorType;
1581
- }> | import("@chainsafe/ssz").ValueOfFields<{
1122
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1582
1123
  aggregationBits: import("@chainsafe/ssz").BitListType;
1583
1124
  data: import("@chainsafe/ssz").ContainerType<{
1584
1125
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -1594,8 +1135,26 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1594
1135
  }>;
1595
1136
  }>;
1596
1137
  signature: import("@chainsafe/ssz").ByteVectorType;
1597
- }> | import("@chainsafe/ssz").ValueOfFields<{
1598
- aggregationBits: import("@chainsafe/ssz").BitListType;
1138
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1139
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1140
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1141
+ data: import("@chainsafe/ssz").ContainerType<{
1142
+ slot: import("@chainsafe/ssz").UintNumberType;
1143
+ index: import("@chainsafe/ssz").UintNumberType;
1144
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1145
+ source: import("@chainsafe/ssz").ContainerType<{
1146
+ epoch: import("@chainsafe/ssz").UintNumberType;
1147
+ root: import("@chainsafe/ssz").ByteVectorType;
1148
+ }>;
1149
+ target: import("@chainsafe/ssz").ContainerType<{
1150
+ epoch: import("@chainsafe/ssz").UintNumberType;
1151
+ root: import("@chainsafe/ssz").ByteVectorType;
1152
+ }>;
1153
+ }>;
1154
+ signature: import("@chainsafe/ssz").ByteVectorType;
1155
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1156
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1157
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1599
1158
  data: import("@chainsafe/ssz").ContainerType<{
1600
1159
  slot: import("@chainsafe/ssz").UintNumberType;
1601
1160
  index: import("@chainsafe/ssz").UintNumberType;
@@ -1604,290 +1163,747 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1604
1163
  epoch: import("@chainsafe/ssz").UintNumberType;
1605
1164
  root: import("@chainsafe/ssz").ByteVectorType;
1606
1165
  }>;
1607
- target: import("@chainsafe/ssz").ContainerType<{
1608
- epoch: import("@chainsafe/ssz").UintNumberType;
1609
- root: import("@chainsafe/ssz").ByteVectorType;
1166
+ target: import("@chainsafe/ssz").ContainerType<{
1167
+ epoch: import("@chainsafe/ssz").UintNumberType;
1168
+ root: import("@chainsafe/ssz").ByteVectorType;
1169
+ }>;
1170
+ }>;
1171
+ signature: import("@chainsafe/ssz").ByteVectorType;
1172
+ }>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
1173
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1174
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1175
+ data: import("@chainsafe/ssz").ContainerType<{
1176
+ slot: import("@chainsafe/ssz").UintBigintType;
1177
+ index: import("@chainsafe/ssz").UintBigintType;
1178
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1179
+ source: import("@chainsafe/ssz").ContainerType<{
1180
+ epoch: import("@chainsafe/ssz").UintBigintType;
1181
+ root: import("@chainsafe/ssz").ByteVectorType;
1182
+ }>;
1183
+ target: import("@chainsafe/ssz").ContainerType<{
1184
+ epoch: import("@chainsafe/ssz").UintBigintType;
1185
+ root: import("@chainsafe/ssz").ByteVectorType;
1186
+ }>;
1187
+ }>;
1188
+ signature: import("@chainsafe/ssz").ByteVectorType;
1189
+ }>;
1190
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1191
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1192
+ data: import("@chainsafe/ssz").ContainerType<{
1193
+ slot: import("@chainsafe/ssz").UintBigintType;
1194
+ index: import("@chainsafe/ssz").UintBigintType;
1195
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1196
+ source: import("@chainsafe/ssz").ContainerType<{
1197
+ epoch: import("@chainsafe/ssz").UintBigintType;
1198
+ root: import("@chainsafe/ssz").ByteVectorType;
1199
+ }>;
1200
+ target: import("@chainsafe/ssz").ContainerType<{
1201
+ epoch: import("@chainsafe/ssz").UintBigintType;
1202
+ root: import("@chainsafe/ssz").ByteVectorType;
1203
+ }>;
1204
+ }>;
1205
+ signature: import("@chainsafe/ssz").ByteVectorType;
1206
+ }>;
1207
+ }> | import("@chainsafe/ssz").ValueOfFields<{
1208
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1209
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1210
+ data: import("@chainsafe/ssz").ContainerType<{
1211
+ slot: import("@chainsafe/ssz").UintBigintType;
1212
+ index: import("@chainsafe/ssz").UintBigintType;
1213
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1214
+ source: import("@chainsafe/ssz").ContainerType<{
1215
+ epoch: import("@chainsafe/ssz").UintBigintType;
1216
+ root: import("@chainsafe/ssz").ByteVectorType;
1217
+ }>;
1218
+ target: import("@chainsafe/ssz").ContainerType<{
1219
+ epoch: import("@chainsafe/ssz").UintBigintType;
1220
+ root: import("@chainsafe/ssz").ByteVectorType;
1221
+ }>;
1222
+ }>;
1223
+ signature: import("@chainsafe/ssz").ByteVectorType;
1224
+ }>;
1225
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1226
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1227
+ data: import("@chainsafe/ssz").ContainerType<{
1228
+ slot: import("@chainsafe/ssz").UintBigintType;
1229
+ index: import("@chainsafe/ssz").UintBigintType;
1230
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1231
+ source: import("@chainsafe/ssz").ContainerType<{
1232
+ epoch: import("@chainsafe/ssz").UintBigintType;
1233
+ root: import("@chainsafe/ssz").ByteVectorType;
1234
+ }>;
1235
+ target: import("@chainsafe/ssz").ContainerType<{
1236
+ epoch: import("@chainsafe/ssz").UintBigintType;
1237
+ root: import("@chainsafe/ssz").ByteVectorType;
1238
+ }>;
1239
+ }>;
1240
+ signature: import("@chainsafe/ssz").ByteVectorType;
1241
+ }>;
1242
+ }> | import("@chainsafe/ssz").ValueOfFields<{
1243
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1244
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1245
+ data: import("@chainsafe/ssz").ContainerType<{
1246
+ slot: import("@chainsafe/ssz").UintBigintType;
1247
+ index: import("@chainsafe/ssz").UintBigintType;
1248
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1249
+ source: import("@chainsafe/ssz").ContainerType<{
1250
+ epoch: import("@chainsafe/ssz").UintBigintType;
1251
+ root: import("@chainsafe/ssz").ByteVectorType;
1252
+ }>;
1253
+ target: import("@chainsafe/ssz").ContainerType<{
1254
+ epoch: import("@chainsafe/ssz").UintBigintType;
1255
+ root: import("@chainsafe/ssz").ByteVectorType;
1256
+ }>;
1257
+ }>;
1258
+ signature: import("@chainsafe/ssz").ByteVectorType;
1259
+ }>;
1260
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1261
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1262
+ data: import("@chainsafe/ssz").ContainerType<{
1263
+ slot: import("@chainsafe/ssz").UintBigintType;
1264
+ index: import("@chainsafe/ssz").UintBigintType;
1265
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1266
+ source: import("@chainsafe/ssz").ContainerType<{
1267
+ epoch: import("@chainsafe/ssz").UintBigintType;
1268
+ root: import("@chainsafe/ssz").ByteVectorType;
1269
+ }>;
1270
+ target: import("@chainsafe/ssz").ContainerType<{
1271
+ epoch: import("@chainsafe/ssz").UintBigintType;
1272
+ root: import("@chainsafe/ssz").ByteVectorType;
1273
+ }>;
1274
+ }>;
1275
+ signature: import("@chainsafe/ssz").ByteVectorType;
1276
+ }>;
1277
+ }> | import("@chainsafe/ssz").ValueOfFields<{
1278
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1279
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1280
+ data: import("@chainsafe/ssz").ContainerType<{
1281
+ slot: import("@chainsafe/ssz").UintBigintType;
1282
+ index: import("@chainsafe/ssz").UintBigintType;
1283
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1284
+ source: import("@chainsafe/ssz").ContainerType<{
1285
+ epoch: import("@chainsafe/ssz").UintBigintType;
1286
+ root: import("@chainsafe/ssz").ByteVectorType;
1287
+ }>;
1288
+ target: import("@chainsafe/ssz").ContainerType<{
1289
+ epoch: import("@chainsafe/ssz").UintBigintType;
1290
+ root: import("@chainsafe/ssz").ByteVectorType;
1291
+ }>;
1292
+ }>;
1293
+ signature: import("@chainsafe/ssz").ByteVectorType;
1294
+ }>;
1295
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1296
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1297
+ data: import("@chainsafe/ssz").ContainerType<{
1298
+ slot: import("@chainsafe/ssz").UintBigintType;
1299
+ index: import("@chainsafe/ssz").UintBigintType;
1300
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1301
+ source: import("@chainsafe/ssz").ContainerType<{
1302
+ epoch: import("@chainsafe/ssz").UintBigintType;
1303
+ root: import("@chainsafe/ssz").ByteVectorType;
1304
+ }>;
1305
+ target: import("@chainsafe/ssz").ContainerType<{
1306
+ epoch: import("@chainsafe/ssz").UintBigintType;
1307
+ root: import("@chainsafe/ssz").ByteVectorType;
1308
+ }>;
1610
1309
  }>;
1310
+ signature: import("@chainsafe/ssz").ByteVectorType;
1611
1311
  }>;
1612
- signature: import("@chainsafe/ssz").ByteVectorType;
1613
1312
  }> | 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;
1313
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1314
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1315
+ data: import("@chainsafe/ssz").ContainerType<{
1316
+ slot: import("@chainsafe/ssz").UintBigintType;
1317
+ index: import("@chainsafe/ssz").UintBigintType;
1318
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1319
+ source: import("@chainsafe/ssz").ContainerType<{
1320
+ epoch: import("@chainsafe/ssz").UintBigintType;
1321
+ root: import("@chainsafe/ssz").ByteVectorType;
1322
+ }>;
1323
+ target: import("@chainsafe/ssz").ContainerType<{
1324
+ epoch: import("@chainsafe/ssz").UintBigintType;
1325
+ root: import("@chainsafe/ssz").ByteVectorType;
1326
+ }>;
1622
1327
  }>;
1623
- target: import("@chainsafe/ssz").ContainerType<{
1624
- epoch: import("@chainsafe/ssz").UintNumberType;
1625
- root: import("@chainsafe/ssz").ByteVectorType;
1328
+ signature: import("@chainsafe/ssz").ByteVectorType;
1329
+ }>;
1330
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1331
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1332
+ data: import("@chainsafe/ssz").ContainerType<{
1333
+ slot: import("@chainsafe/ssz").UintBigintType;
1334
+ index: import("@chainsafe/ssz").UintBigintType;
1335
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1336
+ source: import("@chainsafe/ssz").ContainerType<{
1337
+ epoch: import("@chainsafe/ssz").UintBigintType;
1338
+ root: import("@chainsafe/ssz").ByteVectorType;
1339
+ }>;
1340
+ target: import("@chainsafe/ssz").ContainerType<{
1341
+ epoch: import("@chainsafe/ssz").UintBigintType;
1342
+ root: import("@chainsafe/ssz").ByteVectorType;
1343
+ }>;
1626
1344
  }>;
1345
+ signature: import("@chainsafe/ssz").ByteVectorType;
1627
1346
  }>;
1628
- signature: import("@chainsafe/ssz").ByteVectorType;
1629
1347
  }> | 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;
1348
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1349
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1350
+ data: import("@chainsafe/ssz").ContainerType<{
1351
+ slot: import("@chainsafe/ssz").UintBigintType;
1352
+ index: import("@chainsafe/ssz").UintBigintType;
1353
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1354
+ source: import("@chainsafe/ssz").ContainerType<{
1355
+ epoch: import("@chainsafe/ssz").UintBigintType;
1356
+ root: import("@chainsafe/ssz").ByteVectorType;
1357
+ }>;
1358
+ target: import("@chainsafe/ssz").ContainerType<{
1359
+ epoch: import("@chainsafe/ssz").UintBigintType;
1360
+ root: import("@chainsafe/ssz").ByteVectorType;
1361
+ }>;
1639
1362
  }>;
1640
- target: import("@chainsafe/ssz").ContainerType<{
1641
- epoch: import("@chainsafe/ssz").UintNumberType;
1642
- root: import("@chainsafe/ssz").ByteVectorType;
1363
+ signature: import("@chainsafe/ssz").ByteVectorType;
1364
+ }>;
1365
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1366
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1367
+ data: import("@chainsafe/ssz").ContainerType<{
1368
+ slot: import("@chainsafe/ssz").UintBigintType;
1369
+ index: import("@chainsafe/ssz").UintBigintType;
1370
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1371
+ source: import("@chainsafe/ssz").ContainerType<{
1372
+ epoch: import("@chainsafe/ssz").UintBigintType;
1373
+ root: import("@chainsafe/ssz").ByteVectorType;
1374
+ }>;
1375
+ target: import("@chainsafe/ssz").ContainerType<{
1376
+ epoch: import("@chainsafe/ssz").UintBigintType;
1377
+ root: import("@chainsafe/ssz").ByteVectorType;
1378
+ }>;
1643
1379
  }>;
1380
+ signature: import("@chainsafe/ssz").ByteVectorType;
1644
1381
  }>;
1645
- signature: import("@chainsafe/ssz").ByteVectorType;
1646
1382
  }> | 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;
1383
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1384
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1385
+ data: import("@chainsafe/ssz").ContainerType<{
1386
+ slot: import("@chainsafe/ssz").UintBigintType;
1387
+ index: import("@chainsafe/ssz").UintBigintType;
1388
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1389
+ source: import("@chainsafe/ssz").ContainerType<{
1390
+ epoch: import("@chainsafe/ssz").UintBigintType;
1391
+ root: import("@chainsafe/ssz").ByteVectorType;
1392
+ }>;
1393
+ target: import("@chainsafe/ssz").ContainerType<{
1394
+ epoch: import("@chainsafe/ssz").UintBigintType;
1395
+ root: import("@chainsafe/ssz").ByteVectorType;
1396
+ }>;
1656
1397
  }>;
1657
- target: import("@chainsafe/ssz").ContainerType<{
1658
- epoch: import("@chainsafe/ssz").UintNumberType;
1659
- root: import("@chainsafe/ssz").ByteVectorType;
1398
+ signature: import("@chainsafe/ssz").ByteVectorType;
1399
+ }>;
1400
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1401
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1402
+ data: import("@chainsafe/ssz").ContainerType<{
1403
+ slot: import("@chainsafe/ssz").UintBigintType;
1404
+ index: import("@chainsafe/ssz").UintBigintType;
1405
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1406
+ source: import("@chainsafe/ssz").ContainerType<{
1407
+ epoch: import("@chainsafe/ssz").UintBigintType;
1408
+ root: import("@chainsafe/ssz").ByteVectorType;
1409
+ }>;
1410
+ target: import("@chainsafe/ssz").ContainerType<{
1411
+ epoch: import("@chainsafe/ssz").UintBigintType;
1412
+ root: import("@chainsafe/ssz").ByteVectorType;
1413
+ }>;
1660
1414
  }>;
1415
+ signature: import("@chainsafe/ssz").ByteVectorType;
1661
1416
  }>;
1662
- signature: import("@chainsafe/ssz").ByteVectorType;
1663
1417
  }>, 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;
1418
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1419
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1420
+ data: import("@chainsafe/ssz").ContainerType<{
1421
+ slot: import("@chainsafe/ssz").UintBigintType;
1422
+ index: import("@chainsafe/ssz").UintBigintType;
1423
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1424
+ source: import("@chainsafe/ssz").ContainerType<{
1425
+ epoch: import("@chainsafe/ssz").UintBigintType;
1426
+ root: import("@chainsafe/ssz").ByteVectorType;
1427
+ }>;
1428
+ target: import("@chainsafe/ssz").ContainerType<{
1429
+ epoch: import("@chainsafe/ssz").UintBigintType;
1430
+ root: import("@chainsafe/ssz").ByteVectorType;
1431
+ }>;
1672
1432
  }>;
1673
- target: import("@chainsafe/ssz").ContainerType<{
1674
- epoch: import("@chainsafe/ssz").UintNumberType;
1675
- root: import("@chainsafe/ssz").ByteVectorType;
1433
+ signature: import("@chainsafe/ssz").ByteVectorType;
1434
+ }>;
1435
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1436
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1437
+ data: import("@chainsafe/ssz").ContainerType<{
1438
+ slot: import("@chainsafe/ssz").UintBigintType;
1439
+ index: import("@chainsafe/ssz").UintBigintType;
1440
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1441
+ source: import("@chainsafe/ssz").ContainerType<{
1442
+ epoch: import("@chainsafe/ssz").UintBigintType;
1443
+ root: import("@chainsafe/ssz").ByteVectorType;
1444
+ }>;
1445
+ target: import("@chainsafe/ssz").ContainerType<{
1446
+ epoch: import("@chainsafe/ssz").UintBigintType;
1447
+ root: import("@chainsafe/ssz").ByteVectorType;
1448
+ }>;
1676
1449
  }>;
1450
+ signature: import("@chainsafe/ssz").ByteVectorType;
1677
1451
  }>;
1678
- signature: import("@chainsafe/ssz").ByteVectorType;
1679
1452
  }> | 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;
1453
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1454
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1455
+ data: import("@chainsafe/ssz").ContainerType<{
1456
+ slot: import("@chainsafe/ssz").UintBigintType;
1457
+ index: import("@chainsafe/ssz").UintBigintType;
1458
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1459
+ source: import("@chainsafe/ssz").ContainerType<{
1460
+ epoch: import("@chainsafe/ssz").UintBigintType;
1461
+ root: import("@chainsafe/ssz").ByteVectorType;
1462
+ }>;
1463
+ target: import("@chainsafe/ssz").ContainerType<{
1464
+ epoch: import("@chainsafe/ssz").UintBigintType;
1465
+ root: import("@chainsafe/ssz").ByteVectorType;
1466
+ }>;
1688
1467
  }>;
1689
- target: import("@chainsafe/ssz").ContainerType<{
1690
- epoch: import("@chainsafe/ssz").UintNumberType;
1691
- root: import("@chainsafe/ssz").ByteVectorType;
1468
+ signature: import("@chainsafe/ssz").ByteVectorType;
1469
+ }>;
1470
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1471
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1472
+ data: import("@chainsafe/ssz").ContainerType<{
1473
+ slot: import("@chainsafe/ssz").UintBigintType;
1474
+ index: import("@chainsafe/ssz").UintBigintType;
1475
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1476
+ source: import("@chainsafe/ssz").ContainerType<{
1477
+ epoch: import("@chainsafe/ssz").UintBigintType;
1478
+ root: import("@chainsafe/ssz").ByteVectorType;
1479
+ }>;
1480
+ target: import("@chainsafe/ssz").ContainerType<{
1481
+ epoch: import("@chainsafe/ssz").UintBigintType;
1482
+ root: import("@chainsafe/ssz").ByteVectorType;
1483
+ }>;
1484
+ }>;
1485
+ signature: import("@chainsafe/ssz").ByteVectorType;
1486
+ }>;
1487
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1488
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1489
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1490
+ data: import("@chainsafe/ssz").ContainerType<{
1491
+ slot: import("@chainsafe/ssz").UintBigintType;
1492
+ index: import("@chainsafe/ssz").UintBigintType;
1493
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1494
+ source: import("@chainsafe/ssz").ContainerType<{
1495
+ epoch: import("@chainsafe/ssz").UintBigintType;
1496
+ root: import("@chainsafe/ssz").ByteVectorType;
1497
+ }>;
1498
+ target: import("@chainsafe/ssz").ContainerType<{
1499
+ epoch: import("@chainsafe/ssz").UintBigintType;
1500
+ root: import("@chainsafe/ssz").ByteVectorType;
1501
+ }>;
1692
1502
  }>;
1503
+ signature: import("@chainsafe/ssz").ByteVectorType;
1693
1504
  }>;
1694
- signature: import("@chainsafe/ssz").ByteVectorType;
1695
- }> | 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;
1704
- }>;
1705
- target: import("@chainsafe/ssz").ContainerType<{
1706
- epoch: import("@chainsafe/ssz").UintNumberType;
1707
- root: import("@chainsafe/ssz").ByteVectorType;
1505
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1506
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1507
+ data: import("@chainsafe/ssz").ContainerType<{
1508
+ slot: import("@chainsafe/ssz").UintBigintType;
1509
+ index: import("@chainsafe/ssz").UintBigintType;
1510
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1511
+ source: import("@chainsafe/ssz").ContainerType<{
1512
+ epoch: import("@chainsafe/ssz").UintBigintType;
1513
+ root: import("@chainsafe/ssz").ByteVectorType;
1514
+ }>;
1515
+ target: import("@chainsafe/ssz").ContainerType<{
1516
+ epoch: import("@chainsafe/ssz").UintBigintType;
1517
+ root: import("@chainsafe/ssz").ByteVectorType;
1518
+ }>;
1708
1519
  }>;
1520
+ signature: import("@chainsafe/ssz").ByteVectorType;
1709
1521
  }>;
1710
- signature: import("@chainsafe/ssz").ByteVectorType;
1711
1522
  }> | 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;
1523
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1524
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1525
+ data: import("@chainsafe/ssz").ContainerType<{
1526
+ slot: import("@chainsafe/ssz").UintBigintType;
1527
+ index: import("@chainsafe/ssz").UintBigintType;
1528
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1529
+ source: import("@chainsafe/ssz").ContainerType<{
1530
+ epoch: import("@chainsafe/ssz").UintBigintType;
1531
+ root: import("@chainsafe/ssz").ByteVectorType;
1532
+ }>;
1533
+ target: import("@chainsafe/ssz").ContainerType<{
1534
+ epoch: import("@chainsafe/ssz").UintBigintType;
1535
+ root: import("@chainsafe/ssz").ByteVectorType;
1536
+ }>;
1720
1537
  }>;
1721
- target: import("@chainsafe/ssz").ContainerType<{
1722
- epoch: import("@chainsafe/ssz").UintNumberType;
1723
- root: import("@chainsafe/ssz").ByteVectorType;
1538
+ signature: import("@chainsafe/ssz").ByteVectorType;
1539
+ }>;
1540
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1541
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1542
+ data: import("@chainsafe/ssz").ContainerType<{
1543
+ slot: import("@chainsafe/ssz").UintBigintType;
1544
+ index: import("@chainsafe/ssz").UintBigintType;
1545
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1546
+ source: import("@chainsafe/ssz").ContainerType<{
1547
+ epoch: import("@chainsafe/ssz").UintBigintType;
1548
+ root: import("@chainsafe/ssz").ByteVectorType;
1549
+ }>;
1550
+ target: import("@chainsafe/ssz").ContainerType<{
1551
+ epoch: import("@chainsafe/ssz").UintBigintType;
1552
+ root: import("@chainsafe/ssz").ByteVectorType;
1553
+ }>;
1724
1554
  }>;
1555
+ signature: import("@chainsafe/ssz").ByteVectorType;
1725
1556
  }>;
1726
- signature: import("@chainsafe/ssz").ByteVectorType;
1727
1557
  }> | 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;
1558
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1559
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1560
+ data: import("@chainsafe/ssz").ContainerType<{
1561
+ slot: import("@chainsafe/ssz").UintBigintType;
1562
+ index: import("@chainsafe/ssz").UintBigintType;
1563
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1564
+ source: import("@chainsafe/ssz").ContainerType<{
1565
+ epoch: import("@chainsafe/ssz").UintBigintType;
1566
+ root: import("@chainsafe/ssz").ByteVectorType;
1567
+ }>;
1568
+ target: import("@chainsafe/ssz").ContainerType<{
1569
+ epoch: import("@chainsafe/ssz").UintBigintType;
1570
+ root: import("@chainsafe/ssz").ByteVectorType;
1571
+ }>;
1736
1572
  }>;
1737
- target: import("@chainsafe/ssz").ContainerType<{
1738
- epoch: import("@chainsafe/ssz").UintNumberType;
1739
- root: import("@chainsafe/ssz").ByteVectorType;
1573
+ signature: import("@chainsafe/ssz").ByteVectorType;
1574
+ }>;
1575
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1576
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1577
+ data: import("@chainsafe/ssz").ContainerType<{
1578
+ slot: import("@chainsafe/ssz").UintBigintType;
1579
+ index: import("@chainsafe/ssz").UintBigintType;
1580
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1581
+ source: import("@chainsafe/ssz").ContainerType<{
1582
+ epoch: import("@chainsafe/ssz").UintBigintType;
1583
+ root: import("@chainsafe/ssz").ByteVectorType;
1584
+ }>;
1585
+ target: import("@chainsafe/ssz").ContainerType<{
1586
+ epoch: import("@chainsafe/ssz").UintBigintType;
1587
+ root: import("@chainsafe/ssz").ByteVectorType;
1588
+ }>;
1740
1589
  }>;
1590
+ signature: import("@chainsafe/ssz").ByteVectorType;
1741
1591
  }>;
1742
- signature: import("@chainsafe/ssz").ByteVectorType;
1743
1592
  }> | 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;
1593
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1594
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1595
+ data: import("@chainsafe/ssz").ContainerType<{
1596
+ slot: import("@chainsafe/ssz").UintBigintType;
1597
+ index: import("@chainsafe/ssz").UintBigintType;
1598
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1599
+ source: import("@chainsafe/ssz").ContainerType<{
1600
+ epoch: import("@chainsafe/ssz").UintBigintType;
1601
+ root: import("@chainsafe/ssz").ByteVectorType;
1602
+ }>;
1603
+ target: import("@chainsafe/ssz").ContainerType<{
1604
+ epoch: import("@chainsafe/ssz").UintBigintType;
1605
+ root: import("@chainsafe/ssz").ByteVectorType;
1606
+ }>;
1753
1607
  }>;
1754
- target: import("@chainsafe/ssz").ContainerType<{
1755
- epoch: import("@chainsafe/ssz").UintNumberType;
1756
- root: import("@chainsafe/ssz").ByteVectorType;
1608
+ signature: import("@chainsafe/ssz").ByteVectorType;
1609
+ }>;
1610
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1611
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1612
+ data: import("@chainsafe/ssz").ContainerType<{
1613
+ slot: import("@chainsafe/ssz").UintBigintType;
1614
+ index: import("@chainsafe/ssz").UintBigintType;
1615
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1616
+ source: import("@chainsafe/ssz").ContainerType<{
1617
+ epoch: import("@chainsafe/ssz").UintBigintType;
1618
+ root: import("@chainsafe/ssz").ByteVectorType;
1619
+ }>;
1620
+ target: import("@chainsafe/ssz").ContainerType<{
1621
+ epoch: import("@chainsafe/ssz").UintBigintType;
1622
+ root: import("@chainsafe/ssz").ByteVectorType;
1623
+ }>;
1757
1624
  }>;
1625
+ signature: import("@chainsafe/ssz").ByteVectorType;
1758
1626
  }>;
1759
- signature: import("@chainsafe/ssz").ByteVectorType;
1760
1627
  }> | 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;
1628
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1629
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1630
+ data: import("@chainsafe/ssz").ContainerType<{
1631
+ slot: import("@chainsafe/ssz").UintBigintType;
1632
+ index: import("@chainsafe/ssz").UintBigintType;
1633
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1634
+ source: import("@chainsafe/ssz").ContainerType<{
1635
+ epoch: import("@chainsafe/ssz").UintBigintType;
1636
+ root: import("@chainsafe/ssz").ByteVectorType;
1637
+ }>;
1638
+ target: import("@chainsafe/ssz").ContainerType<{
1639
+ epoch: import("@chainsafe/ssz").UintBigintType;
1640
+ root: import("@chainsafe/ssz").ByteVectorType;
1641
+ }>;
1770
1642
  }>;
1771
- target: import("@chainsafe/ssz").ContainerType<{
1772
- epoch: import("@chainsafe/ssz").UintNumberType;
1773
- root: import("@chainsafe/ssz").ByteVectorType;
1643
+ signature: import("@chainsafe/ssz").ByteVectorType;
1644
+ }>;
1645
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1646
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1647
+ data: import("@chainsafe/ssz").ContainerType<{
1648
+ slot: import("@chainsafe/ssz").UintBigintType;
1649
+ index: import("@chainsafe/ssz").UintBigintType;
1650
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1651
+ source: import("@chainsafe/ssz").ContainerType<{
1652
+ epoch: import("@chainsafe/ssz").UintBigintType;
1653
+ root: import("@chainsafe/ssz").ByteVectorType;
1654
+ }>;
1655
+ target: import("@chainsafe/ssz").ContainerType<{
1656
+ epoch: import("@chainsafe/ssz").UintBigintType;
1657
+ root: import("@chainsafe/ssz").ByteVectorType;
1658
+ }>;
1774
1659
  }>;
1660
+ signature: import("@chainsafe/ssz").ByteVectorType;
1775
1661
  }>;
1776
- signature: import("@chainsafe/ssz").ByteVectorType;
1777
1662
  }>, 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;
1663
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1664
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1665
+ data: import("@chainsafe/ssz").ContainerType<{
1666
+ slot: import("@chainsafe/ssz").UintBigintType;
1667
+ index: import("@chainsafe/ssz").UintBigintType;
1668
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1669
+ source: import("@chainsafe/ssz").ContainerType<{
1670
+ epoch: import("@chainsafe/ssz").UintBigintType;
1671
+ root: import("@chainsafe/ssz").ByteVectorType;
1672
+ }>;
1673
+ target: import("@chainsafe/ssz").ContainerType<{
1674
+ epoch: import("@chainsafe/ssz").UintBigintType;
1675
+ root: import("@chainsafe/ssz").ByteVectorType;
1676
+ }>;
1786
1677
  }>;
1787
- target: import("@chainsafe/ssz").ContainerType<{
1788
- epoch: import("@chainsafe/ssz").UintNumberType;
1789
- root: import("@chainsafe/ssz").ByteVectorType;
1678
+ signature: import("@chainsafe/ssz").ByteVectorType;
1679
+ }>;
1680
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1681
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1682
+ data: import("@chainsafe/ssz").ContainerType<{
1683
+ slot: import("@chainsafe/ssz").UintBigintType;
1684
+ index: import("@chainsafe/ssz").UintBigintType;
1685
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1686
+ source: import("@chainsafe/ssz").ContainerType<{
1687
+ epoch: import("@chainsafe/ssz").UintBigintType;
1688
+ root: import("@chainsafe/ssz").ByteVectorType;
1689
+ }>;
1690
+ target: import("@chainsafe/ssz").ContainerType<{
1691
+ epoch: import("@chainsafe/ssz").UintBigintType;
1692
+ root: import("@chainsafe/ssz").ByteVectorType;
1693
+ }>;
1694
+ }>;
1695
+ signature: import("@chainsafe/ssz").ByteVectorType;
1696
+ }>;
1697
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1698
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1699
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1700
+ data: import("@chainsafe/ssz").ContainerType<{
1701
+ slot: import("@chainsafe/ssz").UintBigintType;
1702
+ index: import("@chainsafe/ssz").UintBigintType;
1703
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1704
+ source: import("@chainsafe/ssz").ContainerType<{
1705
+ epoch: import("@chainsafe/ssz").UintBigintType;
1706
+ root: import("@chainsafe/ssz").ByteVectorType;
1707
+ }>;
1708
+ target: import("@chainsafe/ssz").ContainerType<{
1709
+ epoch: import("@chainsafe/ssz").UintBigintType;
1710
+ root: import("@chainsafe/ssz").ByteVectorType;
1711
+ }>;
1790
1712
  }>;
1713
+ signature: import("@chainsafe/ssz").ByteVectorType;
1791
1714
  }>;
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;
1715
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1716
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1717
+ data: import("@chainsafe/ssz").ContainerType<{
1718
+ slot: import("@chainsafe/ssz").UintBigintType;
1719
+ index: import("@chainsafe/ssz").UintBigintType;
1720
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1721
+ source: import("@chainsafe/ssz").ContainerType<{
1722
+ epoch: import("@chainsafe/ssz").UintBigintType;
1723
+ root: import("@chainsafe/ssz").ByteVectorType;
1724
+ }>;
1725
+ target: import("@chainsafe/ssz").ContainerType<{
1726
+ epoch: import("@chainsafe/ssz").UintBigintType;
1727
+ root: import("@chainsafe/ssz").ByteVectorType;
1728
+ }>;
1806
1729
  }>;
1730
+ signature: import("@chainsafe/ssz").ByteVectorType;
1807
1731
  }>;
1808
- signature: import("@chainsafe/ssz").ByteVectorType;
1809
1732
  }> | 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;
1733
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1734
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1735
+ data: import("@chainsafe/ssz").ContainerType<{
1736
+ slot: import("@chainsafe/ssz").UintBigintType;
1737
+ index: import("@chainsafe/ssz").UintBigintType;
1738
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1739
+ source: import("@chainsafe/ssz").ContainerType<{
1740
+ epoch: import("@chainsafe/ssz").UintBigintType;
1741
+ root: import("@chainsafe/ssz").ByteVectorType;
1742
+ }>;
1743
+ target: import("@chainsafe/ssz").ContainerType<{
1744
+ epoch: import("@chainsafe/ssz").UintBigintType;
1745
+ root: import("@chainsafe/ssz").ByteVectorType;
1746
+ }>;
1818
1747
  }>;
1819
- target: import("@chainsafe/ssz").ContainerType<{
1820
- epoch: import("@chainsafe/ssz").UintNumberType;
1821
- root: import("@chainsafe/ssz").ByteVectorType;
1748
+ signature: import("@chainsafe/ssz").ByteVectorType;
1749
+ }>;
1750
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1751
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1752
+ data: import("@chainsafe/ssz").ContainerType<{
1753
+ slot: import("@chainsafe/ssz").UintBigintType;
1754
+ index: import("@chainsafe/ssz").UintBigintType;
1755
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1756
+ source: import("@chainsafe/ssz").ContainerType<{
1757
+ epoch: import("@chainsafe/ssz").UintBigintType;
1758
+ root: import("@chainsafe/ssz").ByteVectorType;
1759
+ }>;
1760
+ target: import("@chainsafe/ssz").ContainerType<{
1761
+ epoch: import("@chainsafe/ssz").UintBigintType;
1762
+ root: import("@chainsafe/ssz").ByteVectorType;
1763
+ }>;
1822
1764
  }>;
1765
+ signature: import("@chainsafe/ssz").ByteVectorType;
1823
1766
  }>;
1824
- signature: import("@chainsafe/ssz").ByteVectorType;
1825
1767
  }> | 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;
1768
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1769
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1770
+ data: import("@chainsafe/ssz").ContainerType<{
1771
+ slot: import("@chainsafe/ssz").UintBigintType;
1772
+ index: import("@chainsafe/ssz").UintBigintType;
1773
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1774
+ source: import("@chainsafe/ssz").ContainerType<{
1775
+ epoch: import("@chainsafe/ssz").UintBigintType;
1776
+ root: import("@chainsafe/ssz").ByteVectorType;
1777
+ }>;
1778
+ target: import("@chainsafe/ssz").ContainerType<{
1779
+ epoch: import("@chainsafe/ssz").UintBigintType;
1780
+ root: import("@chainsafe/ssz").ByteVectorType;
1781
+ }>;
1834
1782
  }>;
1835
- target: import("@chainsafe/ssz").ContainerType<{
1836
- epoch: import("@chainsafe/ssz").UintNumberType;
1837
- root: import("@chainsafe/ssz").ByteVectorType;
1783
+ signature: import("@chainsafe/ssz").ByteVectorType;
1784
+ }>;
1785
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1786
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1787
+ data: import("@chainsafe/ssz").ContainerType<{
1788
+ slot: import("@chainsafe/ssz").UintBigintType;
1789
+ index: import("@chainsafe/ssz").UintBigintType;
1790
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1791
+ source: import("@chainsafe/ssz").ContainerType<{
1792
+ epoch: import("@chainsafe/ssz").UintBigintType;
1793
+ root: import("@chainsafe/ssz").ByteVectorType;
1794
+ }>;
1795
+ target: import("@chainsafe/ssz").ContainerType<{
1796
+ epoch: import("@chainsafe/ssz").UintBigintType;
1797
+ root: import("@chainsafe/ssz").ByteVectorType;
1798
+ }>;
1838
1799
  }>;
1800
+ signature: import("@chainsafe/ssz").ByteVectorType;
1839
1801
  }>;
1840
- signature: import("@chainsafe/ssz").ByteVectorType;
1841
1802
  }> | 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;
1803
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1804
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1805
+ data: import("@chainsafe/ssz").ContainerType<{
1806
+ slot: import("@chainsafe/ssz").UintBigintType;
1807
+ index: import("@chainsafe/ssz").UintBigintType;
1808
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1809
+ source: import("@chainsafe/ssz").ContainerType<{
1810
+ epoch: import("@chainsafe/ssz").UintBigintType;
1811
+ root: import("@chainsafe/ssz").ByteVectorType;
1812
+ }>;
1813
+ target: import("@chainsafe/ssz").ContainerType<{
1814
+ epoch: import("@chainsafe/ssz").UintBigintType;
1815
+ root: import("@chainsafe/ssz").ByteVectorType;
1816
+ }>;
1850
1817
  }>;
1851
- target: import("@chainsafe/ssz").ContainerType<{
1852
- epoch: import("@chainsafe/ssz").UintNumberType;
1853
- root: import("@chainsafe/ssz").ByteVectorType;
1818
+ signature: import("@chainsafe/ssz").ByteVectorType;
1819
+ }>;
1820
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1821
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1822
+ data: import("@chainsafe/ssz").ContainerType<{
1823
+ slot: import("@chainsafe/ssz").UintBigintType;
1824
+ index: import("@chainsafe/ssz").UintBigintType;
1825
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1826
+ source: import("@chainsafe/ssz").ContainerType<{
1827
+ epoch: import("@chainsafe/ssz").UintBigintType;
1828
+ root: import("@chainsafe/ssz").ByteVectorType;
1829
+ }>;
1830
+ target: import("@chainsafe/ssz").ContainerType<{
1831
+ epoch: import("@chainsafe/ssz").UintBigintType;
1832
+ root: import("@chainsafe/ssz").ByteVectorType;
1833
+ }>;
1854
1834
  }>;
1835
+ signature: import("@chainsafe/ssz").ByteVectorType;
1855
1836
  }>;
1856
- signature: import("@chainsafe/ssz").ByteVectorType;
1857
1837
  }> | 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;
1838
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1839
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1840
+ data: import("@chainsafe/ssz").ContainerType<{
1841
+ slot: import("@chainsafe/ssz").UintBigintType;
1842
+ index: import("@chainsafe/ssz").UintBigintType;
1843
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1844
+ source: import("@chainsafe/ssz").ContainerType<{
1845
+ epoch: import("@chainsafe/ssz").UintBigintType;
1846
+ root: import("@chainsafe/ssz").ByteVectorType;
1847
+ }>;
1848
+ target: import("@chainsafe/ssz").ContainerType<{
1849
+ epoch: import("@chainsafe/ssz").UintBigintType;
1850
+ root: import("@chainsafe/ssz").ByteVectorType;
1851
+ }>;
1867
1852
  }>;
1868
- target: import("@chainsafe/ssz").ContainerType<{
1869
- epoch: import("@chainsafe/ssz").UintNumberType;
1870
- root: import("@chainsafe/ssz").ByteVectorType;
1853
+ signature: import("@chainsafe/ssz").ByteVectorType;
1854
+ }>;
1855
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1856
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1857
+ data: import("@chainsafe/ssz").ContainerType<{
1858
+ slot: import("@chainsafe/ssz").UintBigintType;
1859
+ index: import("@chainsafe/ssz").UintBigintType;
1860
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1861
+ source: import("@chainsafe/ssz").ContainerType<{
1862
+ epoch: import("@chainsafe/ssz").UintBigintType;
1863
+ root: import("@chainsafe/ssz").ByteVectorType;
1864
+ }>;
1865
+ target: import("@chainsafe/ssz").ContainerType<{
1866
+ epoch: import("@chainsafe/ssz").UintBigintType;
1867
+ root: import("@chainsafe/ssz").ByteVectorType;
1868
+ }>;
1871
1869
  }>;
1870
+ signature: import("@chainsafe/ssz").ByteVectorType;
1872
1871
  }>;
1873
- signature: import("@chainsafe/ssz").ByteVectorType;
1874
1872
  }> | 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;
1873
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1874
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1875
+ data: import("@chainsafe/ssz").ContainerType<{
1876
+ slot: import("@chainsafe/ssz").UintBigintType;
1877
+ index: import("@chainsafe/ssz").UintBigintType;
1878
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1879
+ source: import("@chainsafe/ssz").ContainerType<{
1880
+ epoch: import("@chainsafe/ssz").UintBigintType;
1881
+ root: import("@chainsafe/ssz").ByteVectorType;
1882
+ }>;
1883
+ target: import("@chainsafe/ssz").ContainerType<{
1884
+ epoch: import("@chainsafe/ssz").UintBigintType;
1885
+ root: import("@chainsafe/ssz").ByteVectorType;
1886
+ }>;
1884
1887
  }>;
1885
- target: import("@chainsafe/ssz").ContainerType<{
1886
- epoch: import("@chainsafe/ssz").UintNumberType;
1887
- root: import("@chainsafe/ssz").ByteVectorType;
1888
+ signature: import("@chainsafe/ssz").ByteVectorType;
1889
+ }>;
1890
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1891
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1892
+ data: import("@chainsafe/ssz").ContainerType<{
1893
+ slot: import("@chainsafe/ssz").UintBigintType;
1894
+ index: import("@chainsafe/ssz").UintBigintType;
1895
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1896
+ source: import("@chainsafe/ssz").ContainerType<{
1897
+ epoch: import("@chainsafe/ssz").UintBigintType;
1898
+ root: import("@chainsafe/ssz").ByteVectorType;
1899
+ }>;
1900
+ target: import("@chainsafe/ssz").ContainerType<{
1901
+ epoch: import("@chainsafe/ssz").UintBigintType;
1902
+ root: import("@chainsafe/ssz").ByteVectorType;
1903
+ }>;
1888
1904
  }>;
1905
+ signature: import("@chainsafe/ssz").ByteVectorType;
1889
1906
  }>;
1890
- signature: import("@chainsafe/ssz").ByteVectorType;
1891
1907
  }>> | import("@chainsafe/ssz").ContainerType<{
1892
1908
  message: import("@chainsafe/ssz").ContainerType<{
1893
1909
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;