@lodestar/beacon-node 1.43.0-dev.0bc48d3b54 → 1.43.0-dev.12d35509c0

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 (320) hide show
  1. package/lib/api/impl/beacon/blocks/index.d.ts.map +1 -1
  2. package/lib/api/impl/beacon/blocks/index.js +17 -9
  3. package/lib/api/impl/beacon/blocks/index.js.map +1 -1
  4. package/lib/api/impl/beacon/pool/index.d.ts.map +1 -1
  5. package/lib/api/impl/beacon/pool/index.js +45 -2
  6. package/lib/api/impl/beacon/pool/index.js.map +1 -1
  7. package/lib/api/impl/beacon/state/utils.d.ts +2 -2
  8. package/lib/api/impl/beacon/state/utils.d.ts.map +1 -1
  9. package/lib/api/impl/beacon/state/utils.js.map +1 -1
  10. package/lib/api/impl/debug/index.d.ts.map +1 -1
  11. package/lib/api/impl/debug/index.js +0 -1
  12. package/lib/api/impl/debug/index.js.map +1 -1
  13. package/lib/api/impl/lodestar/index.js +1 -1
  14. package/lib/api/impl/lodestar/index.js.map +1 -1
  15. package/lib/api/impl/validator/index.d.ts.map +1 -1
  16. package/lib/api/impl/validator/index.js +68 -6
  17. package/lib/api/impl/validator/index.js.map +1 -1
  18. package/lib/chain/archiveStore/archiveStore.d.ts.map +1 -1
  19. package/lib/chain/archiveStore/archiveStore.js.map +1 -1
  20. package/lib/chain/archiveStore/interface.d.ts +4 -4
  21. package/lib/chain/archiveStore/interface.d.ts.map +1 -1
  22. package/lib/chain/archiveStore/strategies/frequencyStateArchiveStrategy.d.ts +4 -4
  23. package/lib/chain/archiveStore/strategies/frequencyStateArchiveStrategy.d.ts.map +1 -1
  24. package/lib/chain/archiveStore/strategies/frequencyStateArchiveStrategy.js.map +1 -1
  25. package/lib/chain/archiveStore/utils/archiveBlocks.d.ts +2 -2
  26. package/lib/chain/archiveStore/utils/archiveBlocks.d.ts.map +1 -1
  27. package/lib/chain/archiveStore/utils/archiveBlocks.js +110 -58
  28. package/lib/chain/archiveStore/utils/archiveBlocks.js.map +1 -1
  29. package/lib/chain/blocks/blockInput/blockInput.d.ts +3 -0
  30. package/lib/chain/blocks/blockInput/blockInput.d.ts.map +1 -1
  31. package/lib/chain/blocks/blockInput/blockInput.js +4 -1
  32. package/lib/chain/blocks/blockInput/blockInput.js.map +1 -1
  33. package/lib/chain/blocks/importBlock.d.ts.map +1 -1
  34. package/lib/chain/blocks/importBlock.js +16 -28
  35. package/lib/chain/blocks/importBlock.js.map +1 -1
  36. package/lib/chain/blocks/importExecutionPayload.d.ts +28 -14
  37. package/lib/chain/blocks/importExecutionPayload.d.ts.map +1 -1
  38. package/lib/chain/blocks/importExecutionPayload.js +88 -90
  39. package/lib/chain/blocks/importExecutionPayload.js.map +1 -1
  40. package/lib/chain/blocks/index.d.ts +5 -3
  41. package/lib/chain/blocks/index.d.ts.map +1 -1
  42. package/lib/chain/blocks/index.js +59 -26
  43. package/lib/chain/blocks/index.js.map +1 -1
  44. package/lib/chain/blocks/payloadEnvelopeInput/payloadEnvelopeInput.d.ts +4 -0
  45. package/lib/chain/blocks/payloadEnvelopeInput/payloadEnvelopeInput.d.ts.map +1 -1
  46. package/lib/chain/blocks/payloadEnvelopeInput/payloadEnvelopeInput.js +9 -2
  47. package/lib/chain/blocks/payloadEnvelopeInput/payloadEnvelopeInput.js.map +1 -1
  48. package/lib/chain/blocks/payloadEnvelopeInput/types.d.ts +1 -0
  49. package/lib/chain/blocks/payloadEnvelopeInput/types.d.ts.map +1 -1
  50. package/lib/chain/blocks/payloadEnvelopeProcessor.js +2 -2
  51. package/lib/chain/blocks/payloadEnvelopeProcessor.js.map +1 -1
  52. package/lib/chain/blocks/types.d.ts +15 -20
  53. package/lib/chain/blocks/types.d.ts.map +1 -1
  54. package/lib/chain/blocks/utils/chainSegment.d.ts +23 -2
  55. package/lib/chain/blocks/utils/chainSegment.d.ts.map +1 -1
  56. package/lib/chain/blocks/utils/chainSegment.js +89 -12
  57. package/lib/chain/blocks/utils/chainSegment.js.map +1 -1
  58. package/lib/chain/blocks/verifyBlock.d.ts +5 -3
  59. package/lib/chain/blocks/verifyBlock.d.ts.map +1 -1
  60. package/lib/chain/blocks/verifyBlock.js +50 -7
  61. package/lib/chain/blocks/verifyBlock.js.map +1 -1
  62. package/lib/chain/blocks/verifyBlocksExecutionPayloads.d.ts +0 -4
  63. package/lib/chain/blocks/verifyBlocksExecutionPayloads.d.ts.map +1 -1
  64. package/lib/chain/blocks/verifyBlocksExecutionPayloads.js +5 -2
  65. package/lib/chain/blocks/verifyBlocksExecutionPayloads.js.map +1 -1
  66. package/lib/chain/blocks/verifyBlocksSanityChecks.d.ts +2 -1
  67. package/lib/chain/blocks/verifyBlocksSanityChecks.d.ts.map +1 -1
  68. package/lib/chain/blocks/verifyBlocksSanityChecks.js +25 -5
  69. package/lib/chain/blocks/verifyBlocksSanityChecks.js.map +1 -1
  70. package/lib/chain/blocks/verifyExecutionPayloadEnvelope.d.ts +24 -0
  71. package/lib/chain/blocks/verifyExecutionPayloadEnvelope.d.ts.map +1 -0
  72. package/lib/chain/blocks/verifyExecutionPayloadEnvelope.js +79 -0
  73. package/lib/chain/blocks/verifyExecutionPayloadEnvelope.js.map +1 -0
  74. package/lib/chain/blocks/verifyPayloadsDataAvailability.d.ts.map +1 -1
  75. package/lib/chain/blocks/verifyPayloadsDataAvailability.js +8 -3
  76. package/lib/chain/blocks/verifyPayloadsDataAvailability.js.map +1 -1
  77. package/lib/chain/blocks/writePayloadEnvelopeInputToDb.d.ts +1 -1
  78. package/lib/chain/blocks/writePayloadEnvelopeInputToDb.d.ts.map +1 -1
  79. package/lib/chain/blocks/writePayloadEnvelopeInputToDb.js +2 -11
  80. package/lib/chain/blocks/writePayloadEnvelopeInputToDb.js.map +1 -1
  81. package/lib/chain/chain.d.ts +8 -6
  82. package/lib/chain/chain.d.ts.map +1 -1
  83. package/lib/chain/chain.js +29 -13
  84. package/lib/chain/chain.js.map +1 -1
  85. package/lib/chain/emitter.d.ts +3 -14
  86. package/lib/chain/emitter.d.ts.map +1 -1
  87. package/lib/chain/emitter.js +0 -4
  88. package/lib/chain/emitter.js.map +1 -1
  89. package/lib/chain/errors/blockError.d.ts +8 -1
  90. package/lib/chain/errors/blockError.d.ts.map +1 -1
  91. package/lib/chain/errors/blockError.js +2 -0
  92. package/lib/chain/errors/blockError.js.map +1 -1
  93. package/lib/chain/errors/executionPayloadBid.d.ts +5 -0
  94. package/lib/chain/errors/executionPayloadBid.d.ts.map +1 -1
  95. package/lib/chain/errors/executionPayloadBid.js +1 -0
  96. package/lib/chain/errors/executionPayloadBid.js.map +1 -1
  97. package/lib/chain/errors/executionPayloadEnvelope.d.ts +5 -0
  98. package/lib/chain/errors/executionPayloadEnvelope.d.ts.map +1 -1
  99. package/lib/chain/errors/executionPayloadEnvelope.js +1 -0
  100. package/lib/chain/errors/executionPayloadEnvelope.js.map +1 -1
  101. package/lib/chain/errors/index.d.ts +1 -0
  102. package/lib/chain/errors/index.d.ts.map +1 -1
  103. package/lib/chain/errors/index.js +1 -0
  104. package/lib/chain/errors/index.js.map +1 -1
  105. package/lib/chain/errors/proposerPreferences.d.ts +40 -0
  106. package/lib/chain/errors/proposerPreferences.d.ts.map +1 -0
  107. package/lib/chain/errors/proposerPreferences.js +14 -0
  108. package/lib/chain/errors/proposerPreferences.js.map +1 -0
  109. package/lib/chain/forkChoice/index.d.ts.map +1 -1
  110. package/lib/chain/forkChoice/index.js +5 -17
  111. package/lib/chain/forkChoice/index.js.map +1 -1
  112. package/lib/chain/interface.d.ts +7 -5
  113. package/lib/chain/interface.d.ts.map +1 -1
  114. package/lib/chain/interface.js.map +1 -1
  115. package/lib/chain/opPools/payloadAttestationPool.d.ts +3 -2
  116. package/lib/chain/opPools/payloadAttestationPool.d.ts.map +1 -1
  117. package/lib/chain/opPools/payloadAttestationPool.js +26 -4
  118. package/lib/chain/opPools/payloadAttestationPool.js.map +1 -1
  119. package/lib/chain/prepareNextSlot.d.ts.map +1 -1
  120. package/lib/chain/prepareNextSlot.js +31 -13
  121. package/lib/chain/prepareNextSlot.js.map +1 -1
  122. package/lib/chain/produceBlock/produceBlockBody.d.ts +11 -1
  123. package/lib/chain/produceBlock/produceBlockBody.d.ts.map +1 -1
  124. package/lib/chain/produceBlock/produceBlockBody.js +49 -14
  125. package/lib/chain/produceBlock/produceBlockBody.js.map +1 -1
  126. package/lib/chain/regen/interface.d.ts +1 -0
  127. package/lib/chain/regen/interface.d.ts.map +1 -1
  128. package/lib/chain/regen/interface.js +1 -0
  129. package/lib/chain/regen/interface.js.map +1 -1
  130. package/lib/chain/regen/queued.d.ts.map +1 -1
  131. package/lib/chain/regen/queued.js +1 -4
  132. package/lib/chain/regen/queued.js.map +1 -1
  133. package/lib/chain/regen/regen.d.ts.map +1 -1
  134. package/lib/chain/regen/regen.js +1 -4
  135. package/lib/chain/regen/regen.js.map +1 -1
  136. package/lib/chain/seenCache/index.d.ts +1 -0
  137. package/lib/chain/seenCache/index.d.ts.map +1 -1
  138. package/lib/chain/seenCache/index.js +1 -0
  139. package/lib/chain/seenCache/index.js.map +1 -1
  140. package/lib/chain/seenCache/seenPayloadEnvelopeInput.d.ts +22 -6
  141. package/lib/chain/seenCache/seenPayloadEnvelopeInput.d.ts.map +1 -1
  142. package/lib/chain/seenCache/seenPayloadEnvelopeInput.js +53 -17
  143. package/lib/chain/seenCache/seenPayloadEnvelopeInput.js.map +1 -1
  144. package/lib/chain/seenCache/seenProposerPreferences.d.ts +16 -0
  145. package/lib/chain/seenCache/seenProposerPreferences.d.ts.map +1 -0
  146. package/lib/chain/seenCache/seenProposerPreferences.js +26 -0
  147. package/lib/chain/seenCache/seenProposerPreferences.js.map +1 -0
  148. package/lib/chain/validation/block.d.ts.map +1 -1
  149. package/lib/chain/validation/block.js +1 -0
  150. package/lib/chain/validation/block.js.map +1 -1
  151. package/lib/chain/validation/executionPayloadBid.d.ts.map +1 -1
  152. package/lib/chain/validation/executionPayloadBid.js +24 -9
  153. package/lib/chain/validation/executionPayloadBid.js.map +1 -1
  154. package/lib/chain/validation/executionPayloadEnvelope.d.ts.map +1 -1
  155. package/lib/chain/validation/executionPayloadEnvelope.js +19 -9
  156. package/lib/chain/validation/executionPayloadEnvelope.js.map +1 -1
  157. package/lib/chain/validation/proposerPreferences.d.ts +8 -0
  158. package/lib/chain/validation/proposerPreferences.d.ts.map +1 -0
  159. package/lib/chain/validation/proposerPreferences.js +91 -0
  160. package/lib/chain/validation/proposerPreferences.js.map +1 -0
  161. package/lib/db/repositories/executionPayloadEnvelopeArchive.js +1 -1
  162. package/lib/db/repositories/executionPayloadEnvelopeArchive.js.map +1 -1
  163. package/lib/execution/engine/mock.d.ts.map +1 -1
  164. package/lib/execution/engine/mock.js +3 -0
  165. package/lib/execution/engine/mock.js.map +1 -1
  166. package/lib/metrics/metrics/lodestar.d.ts +1 -0
  167. package/lib/metrics/metrics/lodestar.d.ts.map +1 -1
  168. package/lib/metrics/metrics/lodestar.js +4 -0
  169. package/lib/metrics/metrics/lodestar.js.map +1 -1
  170. package/lib/network/gossip/interface.d.ts +7 -1
  171. package/lib/network/gossip/interface.d.ts.map +1 -1
  172. package/lib/network/gossip/interface.js +1 -0
  173. package/lib/network/gossip/interface.js.map +1 -1
  174. package/lib/network/gossip/scoringParameters.d.ts.map +1 -1
  175. package/lib/network/gossip/scoringParameters.js +12 -1
  176. package/lib/network/gossip/scoringParameters.js.map +1 -1
  177. package/lib/network/gossip/topic.d.ts +30 -748
  178. package/lib/network/gossip/topic.d.ts.map +1 -1
  179. package/lib/network/gossip/topic.js +6 -0
  180. package/lib/network/gossip/topic.js.map +1 -1
  181. package/lib/network/interface.d.ts +1 -0
  182. package/lib/network/interface.d.ts.map +1 -1
  183. package/lib/network/network.d.ts +1 -0
  184. package/lib/network/network.d.ts.map +1 -1
  185. package/lib/network/network.js +6 -1
  186. package/lib/network/network.js.map +1 -1
  187. package/lib/network/processor/gossipHandlers.d.ts.map +1 -1
  188. package/lib/network/processor/gossipHandlers.js +41 -19
  189. package/lib/network/processor/gossipHandlers.js.map +1 -1
  190. package/lib/network/processor/gossipQueues/index.d.ts.map +1 -1
  191. package/lib/network/processor/gossipQueues/index.js +5 -0
  192. package/lib/network/processor/gossipQueues/index.js.map +1 -1
  193. package/lib/network/processor/index.d.ts.map +1 -1
  194. package/lib/network/processor/index.js +6 -5
  195. package/lib/network/processor/index.js.map +1 -1
  196. package/lib/network/reqresp/handlers/beaconBlocksByRange.d.ts.map +1 -1
  197. package/lib/network/reqresp/handlers/beaconBlocksByRange.js +14 -6
  198. package/lib/network/reqresp/handlers/beaconBlocksByRange.js.map +1 -1
  199. package/lib/network/reqresp/handlers/blobSidecarsByRange.d.ts.map +1 -1
  200. package/lib/network/reqresp/handlers/blobSidecarsByRange.js +11 -5
  201. package/lib/network/reqresp/handlers/blobSidecarsByRange.js.map +1 -1
  202. package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.d.ts.map +1 -1
  203. package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.js +17 -5
  204. package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.js.map +1 -1
  205. package/lib/network/reqresp/handlers/executionPayloadEnvelopesByRange.d.ts.map +1 -1
  206. package/lib/network/reqresp/handlers/executionPayloadEnvelopesByRange.js +7 -4
  207. package/lib/network/reqresp/handlers/executionPayloadEnvelopesByRange.js.map +1 -1
  208. package/lib/node/nodejs.js +2 -2
  209. package/lib/node/nodejs.js.map +1 -1
  210. package/lib/sync/constants.d.ts +3 -1
  211. package/lib/sync/constants.d.ts.map +1 -1
  212. package/lib/sync/constants.js +3 -4
  213. package/lib/sync/constants.js.map +1 -1
  214. package/lib/sync/range/batch.d.ts +28 -2
  215. package/lib/sync/range/batch.d.ts.map +1 -1
  216. package/lib/sync/range/batch.js +146 -44
  217. package/lib/sync/range/batch.js.map +1 -1
  218. package/lib/sync/range/chain.d.ts +12 -2
  219. package/lib/sync/range/chain.d.ts.map +1 -1
  220. package/lib/sync/range/chain.js +53 -9
  221. package/lib/sync/range/chain.js.map +1 -1
  222. package/lib/sync/range/range.d.ts.map +1 -1
  223. package/lib/sync/range/range.js +17 -6
  224. package/lib/sync/range/range.js.map +1 -1
  225. package/lib/sync/types.d.ts +34 -0
  226. package/lib/sync/types.d.ts.map +1 -1
  227. package/lib/sync/types.js +34 -0
  228. package/lib/sync/types.js.map +1 -1
  229. package/lib/sync/unknownBlock.d.ts +22 -1
  230. package/lib/sync/unknownBlock.d.ts.map +1 -1
  231. package/lib/sync/unknownBlock.js +604 -53
  232. package/lib/sync/unknownBlock.js.map +1 -1
  233. package/lib/sync/utils/downloadByRange.d.ts +46 -10
  234. package/lib/sync/utils/downloadByRange.d.ts.map +1 -1
  235. package/lib/sync/utils/downloadByRange.js +162 -24
  236. package/lib/sync/utils/downloadByRange.js.map +1 -1
  237. package/lib/sync/utils/downloadByRoot.d.ts.map +1 -1
  238. package/lib/sync/utils/downloadByRoot.js +16 -2
  239. package/lib/sync/utils/downloadByRoot.js.map +1 -1
  240. package/lib/sync/utils/pendingBlocksTree.d.ts +0 -1
  241. package/lib/sync/utils/pendingBlocksTree.d.ts.map +1 -1
  242. package/lib/sync/utils/pendingBlocksTree.js +0 -9
  243. package/lib/sync/utils/pendingBlocksTree.js.map +1 -1
  244. package/lib/util/sszBytes.d.ts.map +1 -1
  245. package/lib/util/sszBytes.js +20 -5
  246. package/lib/util/sszBytes.js.map +1 -1
  247. package/package.json +16 -15
  248. package/src/api/impl/beacon/blocks/index.ts +22 -9
  249. package/src/api/impl/beacon/pool/index.ts +83 -1
  250. package/src/api/impl/beacon/state/utils.ts +2 -2
  251. package/src/api/impl/debug/index.ts +0 -1
  252. package/src/api/impl/lodestar/index.ts +1 -1
  253. package/src/api/impl/validator/index.ts +82 -5
  254. package/src/chain/archiveStore/archiveStore.ts +5 -5
  255. package/src/chain/archiveStore/interface.ts +4 -4
  256. package/src/chain/archiveStore/strategies/frequencyStateArchiveStrategy.ts +4 -4
  257. package/src/chain/archiveStore/utils/archiveBlocks.ts +153 -94
  258. package/src/chain/blocks/blockInput/blockInput.ts +4 -1
  259. package/src/chain/blocks/importBlock.ts +16 -48
  260. package/src/chain/blocks/importExecutionPayload.ts +109 -105
  261. package/src/chain/blocks/index.ts +73 -23
  262. package/src/chain/blocks/payloadEnvelopeInput/payloadEnvelopeInput.ts +10 -2
  263. package/src/chain/blocks/payloadEnvelopeInput/types.ts +1 -0
  264. package/src/chain/blocks/payloadEnvelopeProcessor.ts +2 -2
  265. package/src/chain/blocks/types.ts +15 -25
  266. package/src/chain/blocks/utils/chainSegment.ts +114 -17
  267. package/src/chain/blocks/verifyBlock.ts +70 -9
  268. package/src/chain/blocks/verifyBlocksExecutionPayloads.ts +6 -4
  269. package/src/chain/blocks/verifyBlocksSanityChecks.ts +26 -7
  270. package/src/chain/blocks/verifyExecutionPayloadEnvelope.ts +134 -0
  271. package/src/chain/blocks/verifyPayloadsDataAvailability.ts +7 -4
  272. package/src/chain/blocks/writePayloadEnvelopeInputToDb.ts +9 -18
  273. package/src/chain/chain.ts +48 -26
  274. package/src/chain/emitter.ts +3 -14
  275. package/src/chain/errors/blockError.ts +4 -1
  276. package/src/chain/errors/executionPayloadBid.ts +6 -0
  277. package/src/chain/errors/executionPayloadEnvelope.ts +6 -0
  278. package/src/chain/errors/index.ts +1 -0
  279. package/src/chain/errors/proposerPreferences.ts +47 -0
  280. package/src/chain/forkChoice/index.ts +2 -22
  281. package/src/chain/interface.ts +11 -3
  282. package/src/chain/opPools/payloadAttestationPool.ts +29 -8
  283. package/src/chain/prepareNextSlot.ts +36 -14
  284. package/src/chain/produceBlock/produceBlockBody.ts +59 -13
  285. package/src/chain/regen/interface.ts +1 -0
  286. package/src/chain/regen/queued.ts +2 -7
  287. package/src/chain/regen/regen.ts +2 -7
  288. package/src/chain/seenCache/index.ts +1 -0
  289. package/src/chain/seenCache/seenPayloadEnvelopeInput.ts +71 -20
  290. package/src/chain/seenCache/seenProposerPreferences.ts +32 -0
  291. package/src/chain/validation/block.ts +1 -0
  292. package/src/chain/validation/executionPayloadBid.ts +25 -8
  293. package/src/chain/validation/executionPayloadEnvelope.ts +20 -10
  294. package/src/chain/validation/proposerPreferences.ts +110 -0
  295. package/src/db/repositories/executionPayloadEnvelopeArchive.ts +1 -1
  296. package/src/execution/engine/mock.ts +5 -1
  297. package/src/metrics/metrics/lodestar.ts +4 -0
  298. package/src/network/gossip/interface.ts +6 -0
  299. package/src/network/gossip/scoringParameters.ts +14 -1
  300. package/src/network/gossip/topic.ts +6 -0
  301. package/src/network/interface.ts +1 -0
  302. package/src/network/network.ts +12 -1
  303. package/src/network/processor/gossipHandlers.ts +56 -20
  304. package/src/network/processor/gossipQueues/index.ts +5 -0
  305. package/src/network/processor/index.ts +6 -5
  306. package/src/network/reqresp/handlers/beaconBlocksByRange.ts +14 -6
  307. package/src/network/reqresp/handlers/blobSidecarsByRange.ts +11 -5
  308. package/src/network/reqresp/handlers/dataColumnSidecarsByRange.ts +17 -5
  309. package/src/network/reqresp/handlers/executionPayloadEnvelopesByRange.ts +7 -4
  310. package/src/node/nodejs.ts +2 -2
  311. package/src/sync/constants.ts +4 -4
  312. package/src/sync/range/batch.ts +204 -49
  313. package/src/sync/range/chain.ts +69 -11
  314. package/src/sync/range/range.ts +18 -6
  315. package/src/sync/types.ts +72 -0
  316. package/src/sync/unknownBlock.ts +762 -57
  317. package/src/sync/utils/downloadByRange.ts +272 -39
  318. package/src/sync/utils/downloadByRoot.ts +24 -2
  319. package/src/sync/utils/pendingBlocksTree.ts +0 -15
  320. package/src/util/sszBytes.ts +25 -5
@@ -287,607 +287,27 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
287
287
  signature: import("@chainsafe/ssz").ByteVectorType;
288
288
  }> | import("@chainsafe/ssz").ContainerType<{
289
289
  message: import("@chainsafe/ssz").ContainerType<{
290
- slot: import("@chainsafe/ssz").UintNumberType;
291
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
292
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
293
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
294
- body: import("@chainsafe/ssz").ContainerType<{
295
- randaoReveal: import("@chainsafe/ssz").ByteVectorType;
296
- eth1Data: import("@chainsafe/ssz").ContainerType<{
297
- depositRoot: import("@chainsafe/ssz").ByteVectorType;
298
- depositCount: import("@chainsafe/ssz").UintNumberType;
299
- blockHash: import("@chainsafe/ssz").ByteVectorType;
300
- }>;
301
- graffiti: import("@chainsafe/ssz").ByteVectorType;
302
- proposerSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
303
- signedHeader1: import("@chainsafe/ssz").ContainerType<{
304
- message: import("@chainsafe/ssz").ContainerType<{
305
- slot: import("@chainsafe/ssz").UintBigintType;
306
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
307
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
308
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
309
- bodyRoot: import("@chainsafe/ssz").ByteVectorType;
310
- }>;
311
- signature: import("@chainsafe/ssz").ByteVectorType;
312
- }>;
313
- signedHeader2: import("@chainsafe/ssz").ContainerType<{
314
- message: import("@chainsafe/ssz").ContainerType<{
315
- slot: import("@chainsafe/ssz").UintBigintType;
316
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
317
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
318
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
319
- bodyRoot: import("@chainsafe/ssz").ByteVectorType;
320
- }>;
321
- signature: import("@chainsafe/ssz").ByteVectorType;
322
- }>;
323
- }>>;
324
- attesterSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
325
- attestation1: import("@chainsafe/ssz").ContainerType<{
326
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
327
- data: import("@chainsafe/ssz").ContainerType<{
328
- slot: import("@chainsafe/ssz").UintBigintType;
329
- index: import("@chainsafe/ssz").UintBigintType;
330
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
331
- source: import("@chainsafe/ssz").ContainerType<{
332
- epoch: import("@chainsafe/ssz").UintBigintType;
333
- root: import("@chainsafe/ssz").ByteVectorType;
334
- }>;
335
- target: import("@chainsafe/ssz").ContainerType<{
336
- epoch: import("@chainsafe/ssz").UintBigintType;
337
- root: import("@chainsafe/ssz").ByteVectorType;
338
- }>;
339
- }>;
340
- signature: import("@chainsafe/ssz").ByteVectorType;
341
- }>;
342
- attestation2: import("@chainsafe/ssz").ContainerType<{
343
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
344
- data: import("@chainsafe/ssz").ContainerType<{
345
- slot: import("@chainsafe/ssz").UintBigintType;
346
- index: import("@chainsafe/ssz").UintBigintType;
347
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
348
- source: import("@chainsafe/ssz").ContainerType<{
349
- epoch: import("@chainsafe/ssz").UintBigintType;
350
- root: import("@chainsafe/ssz").ByteVectorType;
351
- }>;
352
- target: import("@chainsafe/ssz").ContainerType<{
353
- epoch: import("@chainsafe/ssz").UintBigintType;
354
- root: import("@chainsafe/ssz").ByteVectorType;
355
- }>;
356
- }>;
357
- signature: import("@chainsafe/ssz").ByteVectorType;
358
- }>;
359
- }>>;
360
- attestations: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
361
- aggregationBits: import("@chainsafe/ssz").BitListType;
362
- data: import("@chainsafe/ssz").ContainerType<{
363
- slot: import("@chainsafe/ssz").UintNumberType;
364
- index: import("@chainsafe/ssz").UintNumberType;
365
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
366
- source: import("@chainsafe/ssz").ContainerType<{
367
- epoch: import("@chainsafe/ssz").UintNumberType;
368
- root: import("@chainsafe/ssz").ByteVectorType;
369
- }>;
370
- target: import("@chainsafe/ssz").ContainerType<{
371
- epoch: import("@chainsafe/ssz").UintNumberType;
372
- root: import("@chainsafe/ssz").ByteVectorType;
373
- }>;
374
- }>;
375
- signature: import("@chainsafe/ssz").ByteVectorType;
376
- }>>;
377
- deposits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
378
- proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
379
- data: import("@chainsafe/ssz").ContainerType<{
380
- pubkey: import("@chainsafe/ssz").ByteVectorType;
381
- withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
382
- amount: import("@chainsafe/ssz").UintNumberType;
383
- signature: import("@chainsafe/ssz").ByteVectorType;
384
- }>;
385
- }>>;
386
- voluntaryExits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
387
- message: import("@chainsafe/ssz").ContainerType<{
388
- epoch: import("@chainsafe/ssz").UintNumberType;
389
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
390
- }>;
391
- signature: import("@chainsafe/ssz").ByteVectorType;
392
- }>>;
393
- syncAggregate: import("@chainsafe/ssz").ContainerType<{
394
- syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
395
- syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
396
- }>;
397
- executionPayload: import("@chainsafe/ssz").ContainerType<{
398
- parentHash: import("@chainsafe/ssz").ByteVectorType;
399
- feeRecipient: import("@lodestar/types").ExecutionAddressType;
400
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
401
- receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
402
- logsBloom: import("@chainsafe/ssz").ByteVectorType;
403
- prevRandao: import("@chainsafe/ssz").ByteVectorType;
404
- blockNumber: import("@chainsafe/ssz").UintNumberType;
405
- gasLimit: import("@chainsafe/ssz").UintNumberType;
406
- gasUsed: import("@chainsafe/ssz").UintNumberType;
407
- timestamp: import("@chainsafe/ssz").UintNumberType;
408
- extraData: import("@chainsafe/ssz").ByteListType;
409
- baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
410
- blockHash: import("@chainsafe/ssz").ByteVectorType;
411
- transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
412
- }>;
413
- }>;
414
- }>;
415
- signature: import("@chainsafe/ssz").ByteVectorType;
416
- }> | import("@chainsafe/ssz").ContainerType<{
417
- message: import("@chainsafe/ssz").ContainerType<{
418
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
419
- fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
420
- toExecutionAddress: import("@lodestar/types").ExecutionAddressType;
421
- }>;
422
- signature: import("@chainsafe/ssz").ByteVectorType;
423
- }> | import("@chainsafe/ssz").ContainerType<{
424
- message: import("@chainsafe/ssz").ContainerType<{
425
- slot: import("@chainsafe/ssz").UintNumberType;
426
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
427
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
428
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
429
- body: import("@chainsafe/ssz").ContainerType<{
430
- randaoReveal: import("@chainsafe/ssz").ByteVectorType;
431
- eth1Data: import("@chainsafe/ssz").ContainerType<{
432
- depositRoot: import("@chainsafe/ssz").ByteVectorType;
433
- depositCount: import("@chainsafe/ssz").UintNumberType;
434
- blockHash: import("@chainsafe/ssz").ByteVectorType;
435
- }>;
436
- graffiti: import("@chainsafe/ssz").ByteVectorType;
437
- proposerSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
438
- signedHeader1: import("@chainsafe/ssz").ContainerType<{
439
- message: import("@chainsafe/ssz").ContainerType<{
440
- slot: import("@chainsafe/ssz").UintBigintType;
441
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
442
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
443
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
444
- bodyRoot: import("@chainsafe/ssz").ByteVectorType;
445
- }>;
446
- signature: import("@chainsafe/ssz").ByteVectorType;
447
- }>;
448
- signedHeader2: import("@chainsafe/ssz").ContainerType<{
449
- message: import("@chainsafe/ssz").ContainerType<{
450
- slot: import("@chainsafe/ssz").UintBigintType;
451
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
452
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
453
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
454
- bodyRoot: import("@chainsafe/ssz").ByteVectorType;
455
- }>;
456
- signature: import("@chainsafe/ssz").ByteVectorType;
457
- }>;
458
- }>>;
459
- attesterSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
460
- attestation1: import("@chainsafe/ssz").ContainerType<{
461
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
462
- data: import("@chainsafe/ssz").ContainerType<{
463
- slot: import("@chainsafe/ssz").UintBigintType;
464
- index: import("@chainsafe/ssz").UintBigintType;
465
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
466
- source: import("@chainsafe/ssz").ContainerType<{
467
- epoch: import("@chainsafe/ssz").UintBigintType;
468
- root: import("@chainsafe/ssz").ByteVectorType;
469
- }>;
470
- target: import("@chainsafe/ssz").ContainerType<{
471
- epoch: import("@chainsafe/ssz").UintBigintType;
472
- root: import("@chainsafe/ssz").ByteVectorType;
473
- }>;
474
- }>;
475
- signature: import("@chainsafe/ssz").ByteVectorType;
476
- }>;
477
- attestation2: import("@chainsafe/ssz").ContainerType<{
478
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
479
- data: import("@chainsafe/ssz").ContainerType<{
480
- slot: import("@chainsafe/ssz").UintBigintType;
481
- index: import("@chainsafe/ssz").UintBigintType;
482
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
483
- source: import("@chainsafe/ssz").ContainerType<{
484
- epoch: import("@chainsafe/ssz").UintBigintType;
485
- root: import("@chainsafe/ssz").ByteVectorType;
486
- }>;
487
- target: import("@chainsafe/ssz").ContainerType<{
488
- epoch: import("@chainsafe/ssz").UintBigintType;
489
- root: import("@chainsafe/ssz").ByteVectorType;
490
- }>;
491
- }>;
492
- signature: import("@chainsafe/ssz").ByteVectorType;
493
- }>;
494
- }>>;
495
- attestations: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
496
- aggregationBits: import("@chainsafe/ssz").BitListType;
497
- data: import("@chainsafe/ssz").ContainerType<{
498
- slot: import("@chainsafe/ssz").UintNumberType;
499
- index: import("@chainsafe/ssz").UintNumberType;
500
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
501
- source: import("@chainsafe/ssz").ContainerType<{
502
- epoch: import("@chainsafe/ssz").UintNumberType;
503
- root: import("@chainsafe/ssz").ByteVectorType;
504
- }>;
505
- target: import("@chainsafe/ssz").ContainerType<{
506
- epoch: import("@chainsafe/ssz").UintNumberType;
507
- root: import("@chainsafe/ssz").ByteVectorType;
508
- }>;
509
- }>;
510
- signature: import("@chainsafe/ssz").ByteVectorType;
511
- }>>;
512
- deposits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
513
- proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
514
- data: import("@chainsafe/ssz").ContainerType<{
515
- pubkey: import("@chainsafe/ssz").ByteVectorType;
516
- withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
517
- amount: import("@chainsafe/ssz").UintNumberType;
518
- signature: import("@chainsafe/ssz").ByteVectorType;
519
- }>;
520
- }>>;
521
- voluntaryExits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
522
- message: import("@chainsafe/ssz").ContainerType<{
523
- epoch: import("@chainsafe/ssz").UintNumberType;
524
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
525
- }>;
526
- signature: import("@chainsafe/ssz").ByteVectorType;
527
- }>>;
528
- syncAggregate: import("@chainsafe/ssz").ContainerType<{
529
- syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
530
- syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
531
- }>;
532
- executionPayload: import("@chainsafe/ssz").ContainerType<{
533
- parentHash: import("@chainsafe/ssz").ByteVectorType;
534
- feeRecipient: import("@lodestar/types").ExecutionAddressType;
535
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
536
- receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
537
- logsBloom: import("@chainsafe/ssz").ByteVectorType;
538
- prevRandao: import("@chainsafe/ssz").ByteVectorType;
539
- blockNumber: import("@chainsafe/ssz").UintNumberType;
540
- gasLimit: import("@chainsafe/ssz").UintNumberType;
541
- gasUsed: import("@chainsafe/ssz").UintNumberType;
542
- timestamp: import("@chainsafe/ssz").UintNumberType;
543
- extraData: import("@chainsafe/ssz").ByteListType;
544
- baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
545
- blockHash: import("@chainsafe/ssz").ByteVectorType;
546
- transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
547
- withdrawals: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
548
- index: import("@chainsafe/ssz").UintNumberType;
549
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
550
- address: import("@lodestar/types").ExecutionAddressType;
551
- amount: import("@chainsafe/ssz").UintBigintType;
552
- }>>;
553
- }>;
554
- blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
555
- message: import("@chainsafe/ssz").ContainerType<{
556
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
557
- fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
558
- toExecutionAddress: import("@lodestar/types").ExecutionAddressType;
559
- }>;
560
- signature: import("@chainsafe/ssz").ByteVectorType;
561
- }>>;
562
- }>;
563
- }>;
564
- signature: import("@chainsafe/ssz").ByteVectorType;
565
- }> | import("@chainsafe/ssz").ContainerType<{
566
- message: import("@chainsafe/ssz").ContainerType<{
567
- slot: import("@chainsafe/ssz").UintNumberType;
568
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
569
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
570
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
571
- body: import("@chainsafe/ssz").ContainerType<{
572
- randaoReveal: import("@chainsafe/ssz").ByteVectorType;
573
- eth1Data: import("@chainsafe/ssz").ContainerType<{
574
- depositRoot: import("@chainsafe/ssz").ByteVectorType;
575
- depositCount: import("@chainsafe/ssz").UintNumberType;
576
- blockHash: import("@chainsafe/ssz").ByteVectorType;
577
- }>;
578
- graffiti: import("@chainsafe/ssz").ByteVectorType;
579
- proposerSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
580
- signedHeader1: import("@chainsafe/ssz").ContainerType<{
581
- message: import("@chainsafe/ssz").ContainerType<{
582
- slot: import("@chainsafe/ssz").UintBigintType;
583
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
584
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
585
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
586
- bodyRoot: import("@chainsafe/ssz").ByteVectorType;
587
- }>;
588
- signature: import("@chainsafe/ssz").ByteVectorType;
589
- }>;
590
- signedHeader2: import("@chainsafe/ssz").ContainerType<{
591
- message: import("@chainsafe/ssz").ContainerType<{
592
- slot: import("@chainsafe/ssz").UintBigintType;
593
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
594
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
595
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
596
- bodyRoot: import("@chainsafe/ssz").ByteVectorType;
597
- }>;
598
- signature: import("@chainsafe/ssz").ByteVectorType;
599
- }>;
600
- }>>;
601
- attesterSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
602
- attestation1: 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
- attestation2: import("@chainsafe/ssz").ContainerType<{
620
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
621
- data: import("@chainsafe/ssz").ContainerType<{
622
- slot: import("@chainsafe/ssz").UintBigintType;
623
- index: import("@chainsafe/ssz").UintBigintType;
624
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
625
- source: import("@chainsafe/ssz").ContainerType<{
626
- epoch: import("@chainsafe/ssz").UintBigintType;
627
- root: import("@chainsafe/ssz").ByteVectorType;
628
- }>;
629
- target: import("@chainsafe/ssz").ContainerType<{
630
- epoch: import("@chainsafe/ssz").UintBigintType;
631
- root: import("@chainsafe/ssz").ByteVectorType;
632
- }>;
633
- }>;
634
- signature: import("@chainsafe/ssz").ByteVectorType;
635
- }>;
636
- }>>;
637
- attestations: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
638
- aggregationBits: import("@chainsafe/ssz").BitListType;
639
- data: import("@chainsafe/ssz").ContainerType<{
640
- slot: import("@chainsafe/ssz").UintNumberType;
641
- index: import("@chainsafe/ssz").UintNumberType;
642
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
643
- source: import("@chainsafe/ssz").ContainerType<{
644
- epoch: import("@chainsafe/ssz").UintNumberType;
645
- root: import("@chainsafe/ssz").ByteVectorType;
646
- }>;
647
- target: import("@chainsafe/ssz").ContainerType<{
648
- epoch: import("@chainsafe/ssz").UintNumberType;
649
- root: import("@chainsafe/ssz").ByteVectorType;
650
- }>;
651
- }>;
652
- signature: import("@chainsafe/ssz").ByteVectorType;
653
- }>>;
654
- deposits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
655
- proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
656
- data: import("@chainsafe/ssz").ContainerType<{
657
- pubkey: import("@chainsafe/ssz").ByteVectorType;
658
- withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
659
- amount: import("@chainsafe/ssz").UintNumberType;
660
- signature: import("@chainsafe/ssz").ByteVectorType;
661
- }>;
662
- }>>;
663
- voluntaryExits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
664
- message: import("@chainsafe/ssz").ContainerType<{
665
- epoch: import("@chainsafe/ssz").UintNumberType;
666
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
667
- }>;
668
- signature: import("@chainsafe/ssz").ByteVectorType;
669
- }>>;
670
- syncAggregate: import("@chainsafe/ssz").ContainerType<{
671
- syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
672
- syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
673
- }>;
674
- executionPayload: import("@chainsafe/ssz").ContainerType<{
675
- parentHash: import("@chainsafe/ssz").ByteVectorType;
676
- feeRecipient: import("@lodestar/types").ExecutionAddressType;
677
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
678
- receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
679
- logsBloom: import("@chainsafe/ssz").ByteVectorType;
680
- prevRandao: import("@chainsafe/ssz").ByteVectorType;
681
- blockNumber: import("@chainsafe/ssz").UintNumberType;
682
- gasLimit: import("@chainsafe/ssz").UintNumberType;
683
- gasUsed: import("@chainsafe/ssz").UintNumberType;
684
- timestamp: import("@chainsafe/ssz").UintNumberType;
685
- extraData: import("@chainsafe/ssz").ByteListType;
686
- baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
687
- blockHash: import("@chainsafe/ssz").ByteVectorType;
688
- transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
689
- withdrawals: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
690
- index: import("@chainsafe/ssz").UintNumberType;
691
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
692
- address: import("@lodestar/types").ExecutionAddressType;
693
- amount: import("@chainsafe/ssz").UintBigintType;
694
- }>>;
695
- blobGasUsed: import("@chainsafe/ssz").UintBigintType;
696
- excessBlobGas: import("@chainsafe/ssz").UintBigintType;
697
- }>;
698
- blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
699
- message: import("@chainsafe/ssz").ContainerType<{
700
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
701
- fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
702
- toExecutionAddress: import("@lodestar/types").ExecutionAddressType;
703
- }>;
704
- signature: import("@chainsafe/ssz").ByteVectorType;
705
- }>>;
706
- blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
707
- }>;
708
- }>;
709
- signature: import("@chainsafe/ssz").ByteVectorType;
710
- }> | import("@chainsafe/ssz").ContainerType<{
711
- index: import("@chainsafe/ssz").UintNumberType;
712
- blob: import("@chainsafe/ssz").ByteVectorType;
713
- kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
714
- kzgProof: import("@chainsafe/ssz").ByteVectorType;
715
- signedBlockHeader: import("@chainsafe/ssz").ContainerType<{
716
- message: import("@chainsafe/ssz").ContainerType<{
717
- slot: import("@chainsafe/ssz").UintNumberType;
718
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
719
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
720
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
721
- bodyRoot: import("@chainsafe/ssz").ByteVectorType;
722
- }>;
723
- signature: import("@chainsafe/ssz").ByteVectorType;
724
- }>;
725
- kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
726
- }> | import("@chainsafe/ssz").ContainerType<{
727
- message: import("@chainsafe/ssz").ContainerType<{
728
- slot: import("@chainsafe/ssz").UintNumberType;
729
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
730
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
731
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
732
- body: import("@chainsafe/ssz").ContainerType<{
733
- randaoReveal: import("@chainsafe/ssz").ByteVectorType;
734
- eth1Data: import("@chainsafe/ssz").ContainerType<{
735
- depositRoot: import("@chainsafe/ssz").ByteVectorType;
736
- depositCount: import("@chainsafe/ssz").UintNumberType;
737
- blockHash: import("@chainsafe/ssz").ByteVectorType;
738
- }>;
739
- graffiti: import("@chainsafe/ssz").ByteVectorType;
740
- proposerSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
741
- signedHeader1: import("@chainsafe/ssz").ContainerType<{
742
- message: import("@chainsafe/ssz").ContainerType<{
743
- slot: import("@chainsafe/ssz").UintBigintType;
744
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
745
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
746
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
747
- bodyRoot: import("@chainsafe/ssz").ByteVectorType;
748
- }>;
749
- signature: import("@chainsafe/ssz").ByteVectorType;
750
- }>;
751
- signedHeader2: import("@chainsafe/ssz").ContainerType<{
752
- message: import("@chainsafe/ssz").ContainerType<{
753
- slot: import("@chainsafe/ssz").UintBigintType;
754
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
755
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
756
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
757
- bodyRoot: import("@chainsafe/ssz").ByteVectorType;
758
- }>;
759
- signature: import("@chainsafe/ssz").ByteVectorType;
760
- }>;
761
- }>>;
762
- attesterSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
763
- attestation1: import("@chainsafe/ssz").ContainerType<{
764
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
765
- data: import("@chainsafe/ssz").ContainerType<{
766
- slot: import("@chainsafe/ssz").UintBigintType;
767
- index: import("@chainsafe/ssz").UintBigintType;
768
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
769
- source: import("@chainsafe/ssz").ContainerType<{
770
- epoch: import("@chainsafe/ssz").UintBigintType;
771
- root: import("@chainsafe/ssz").ByteVectorType;
772
- }>;
773
- target: import("@chainsafe/ssz").ContainerType<{
774
- epoch: import("@chainsafe/ssz").UintBigintType;
775
- root: import("@chainsafe/ssz").ByteVectorType;
776
- }>;
777
- }>;
778
- signature: import("@chainsafe/ssz").ByteVectorType;
779
- }>;
780
- attestation2: import("@chainsafe/ssz").ContainerType<{
781
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
782
- data: import("@chainsafe/ssz").ContainerType<{
783
- slot: import("@chainsafe/ssz").UintBigintType;
784
- index: import("@chainsafe/ssz").UintBigintType;
785
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
786
- source: import("@chainsafe/ssz").ContainerType<{
787
- epoch: import("@chainsafe/ssz").UintBigintType;
788
- root: import("@chainsafe/ssz").ByteVectorType;
789
- }>;
790
- target: import("@chainsafe/ssz").ContainerType<{
791
- epoch: import("@chainsafe/ssz").UintBigintType;
792
- root: import("@chainsafe/ssz").ByteVectorType;
793
- }>;
794
- }>;
795
- signature: import("@chainsafe/ssz").ByteVectorType;
796
- }>;
797
- }>>;
798
- attestations: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
799
- aggregationBits: import("@chainsafe/ssz").BitListType;
800
- data: import("@chainsafe/ssz").ContainerType<{
801
- slot: import("@chainsafe/ssz").UintNumberType;
802
- index: import("@chainsafe/ssz").UintNumberType;
803
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
804
- source: import("@chainsafe/ssz").ContainerType<{
805
- epoch: import("@chainsafe/ssz").UintNumberType;
806
- root: import("@chainsafe/ssz").ByteVectorType;
807
- }>;
808
- target: import("@chainsafe/ssz").ContainerType<{
809
- epoch: import("@chainsafe/ssz").UintNumberType;
810
- root: import("@chainsafe/ssz").ByteVectorType;
811
- }>;
812
- }>;
813
- signature: import("@chainsafe/ssz").ByteVectorType;
814
- committeeBits: import("@chainsafe/ssz").BitVectorType;
815
- }>>;
816
- deposits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
817
- proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
818
- data: import("@chainsafe/ssz").ContainerType<{
819
- pubkey: import("@chainsafe/ssz").ByteVectorType;
820
- withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
821
- amount: import("@chainsafe/ssz").UintNumberType;
822
- signature: import("@chainsafe/ssz").ByteVectorType;
823
- }>;
824
- }>>;
825
- voluntaryExits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
826
- message: import("@chainsafe/ssz").ContainerType<{
827
- epoch: import("@chainsafe/ssz").UintNumberType;
828
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
829
- }>;
830
- signature: import("@chainsafe/ssz").ByteVectorType;
831
- }>>;
832
- syncAggregate: import("@chainsafe/ssz").ContainerType<{
833
- syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
834
- syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
835
- }>;
836
- executionPayload: import("@chainsafe/ssz").ContainerType<{
837
- parentHash: import("@chainsafe/ssz").ByteVectorType;
838
- feeRecipient: import("@lodestar/types").ExecutionAddressType;
839
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
840
- receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
841
- logsBloom: import("@chainsafe/ssz").ByteVectorType;
842
- prevRandao: import("@chainsafe/ssz").ByteVectorType;
843
- blockNumber: import("@chainsafe/ssz").UintNumberType;
844
- gasLimit: import("@chainsafe/ssz").UintNumberType;
845
- gasUsed: import("@chainsafe/ssz").UintNumberType;
846
- timestamp: import("@chainsafe/ssz").UintNumberType;
847
- extraData: import("@chainsafe/ssz").ByteListType;
848
- baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
849
- blockHash: import("@chainsafe/ssz").ByteVectorType;
850
- transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
851
- withdrawals: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
852
- index: import("@chainsafe/ssz").UintNumberType;
853
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
854
- address: import("@lodestar/types").ExecutionAddressType;
855
- amount: import("@chainsafe/ssz").UintBigintType;
856
- }>>;
857
- blobGasUsed: import("@chainsafe/ssz").UintBigintType;
858
- excessBlobGas: import("@chainsafe/ssz").UintBigintType;
859
- }>;
860
- blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
861
- message: import("@chainsafe/ssz").ContainerType<{
862
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
863
- fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
864
- toExecutionAddress: import("@lodestar/types").ExecutionAddressType;
865
- }>;
866
- signature: import("@chainsafe/ssz").ByteVectorType;
867
- }>>;
868
- blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
869
- executionRequests: import("@chainsafe/ssz").ContainerType<{
870
- deposits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
871
- pubkey: import("@chainsafe/ssz").ByteVectorType;
872
- withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
873
- amount: import("@chainsafe/ssz").UintNumberType;
874
- signature: import("@chainsafe/ssz").ByteVectorType;
875
- index: import("@chainsafe/ssz").UintBigintType;
876
- }>>;
877
- withdrawals: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
878
- sourceAddress: import("@lodestar/types").ExecutionAddressType;
879
- validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
880
- amount: import("@chainsafe/ssz").UintBigintType;
881
- }>>;
882
- consolidations: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
883
- sourceAddress: import("@lodestar/types").ExecutionAddressType;
884
- sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
885
- targetPubkey: import("@chainsafe/ssz").ByteVectorType;
886
- }>>;
887
- }>;
888
- }>;
290
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
291
+ fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
292
+ toExecutionAddress: import("@lodestar/types").ExecutionAddressType;
889
293
  }>;
890
294
  signature: import("@chainsafe/ssz").ByteVectorType;
295
+ }> | import("@chainsafe/ssz").ContainerType<{
296
+ index: import("@chainsafe/ssz").UintNumberType;
297
+ blob: import("@chainsafe/ssz").ByteVectorType;
298
+ kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
299
+ kzgProof: import("@chainsafe/ssz").ByteVectorType;
300
+ signedBlockHeader: import("@chainsafe/ssz").ContainerType<{
301
+ message: import("@chainsafe/ssz").ContainerType<{
302
+ slot: import("@chainsafe/ssz").UintNumberType;
303
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
304
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
305
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
306
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
307
+ }>;
308
+ signature: import("@chainsafe/ssz").ByteVectorType;
309
+ }>;
310
+ kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
891
311
  }> | import("@chainsafe/ssz").ContainerType<{
892
312
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
893
313
  data: import("@chainsafe/ssz").ContainerType<{
@@ -897,6 +317,15 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
897
317
  blobDataAvailable: import("@chainsafe/ssz").BooleanType;
898
318
  }>;
899
319
  signature: import("@chainsafe/ssz").ByteVectorType;
320
+ }> | import("@chainsafe/ssz").ContainerType<{
321
+ message: import("@chainsafe/ssz").ContainerType<{
322
+ dependentRoot: import("@chainsafe/ssz").ByteVectorType;
323
+ proposalSlot: import("@chainsafe/ssz").UintNumberType;
324
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
325
+ feeRecipient: import("@lodestar/types").ExecutionAddressType;
326
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
327
+ }>;
328
+ signature: import("@chainsafe/ssz").ByteVectorType;
900
329
  }> | import("@chainsafe/ssz").ContainerType<{
901
330
  message: import("@chainsafe/ssz").ContainerType<{
902
331
  parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
@@ -910,6 +339,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
910
339
  value: import("@chainsafe/ssz").UintNumberType;
911
340
  executionPayment: import("@chainsafe/ssz").UintNumberType;
912
341
  blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
342
+ executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
913
343
  }>;
914
344
  signature: import("@chainsafe/ssz").ByteVectorType;
915
345
  }> | import("@chainsafe/ssz").ContainerType<{
@@ -961,155 +391,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
961
391
  }>;
962
392
  builderIndex: import("@chainsafe/ssz").UintNumberType;
963
393
  beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
964
- slot: import("@chainsafe/ssz").UintNumberType;
965
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
966
- }>;
967
- signature: import("@chainsafe/ssz").ByteVectorType;
968
- }> | import("@chainsafe/ssz").ContainerType<{
969
- message: import("@chainsafe/ssz").ContainerType<{
970
- slot: import("@chainsafe/ssz").UintNumberType;
971
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
972
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
973
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
974
- body: import("@chainsafe/ssz").ContainerType<{
975
- randaoReveal: import("@chainsafe/ssz").ByteVectorType;
976
- eth1Data: import("@chainsafe/ssz").ContainerType<{
977
- depositRoot: import("@chainsafe/ssz").ByteVectorType;
978
- depositCount: import("@chainsafe/ssz").UintNumberType;
979
- blockHash: import("@chainsafe/ssz").ByteVectorType;
980
- }>;
981
- graffiti: import("@chainsafe/ssz").ByteVectorType;
982
- proposerSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
983
- signedHeader1: import("@chainsafe/ssz").ContainerType<{
984
- message: import("@chainsafe/ssz").ContainerType<{
985
- slot: import("@chainsafe/ssz").UintBigintType;
986
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
987
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
988
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
989
- bodyRoot: import("@chainsafe/ssz").ByteVectorType;
990
- }>;
991
- signature: import("@chainsafe/ssz").ByteVectorType;
992
- }>;
993
- signedHeader2: import("@chainsafe/ssz").ContainerType<{
994
- message: import("@chainsafe/ssz").ContainerType<{
995
- slot: import("@chainsafe/ssz").UintBigintType;
996
- proposerIndex: import("@chainsafe/ssz").UintNumberType;
997
- parentRoot: import("@chainsafe/ssz").ByteVectorType;
998
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
999
- bodyRoot: import("@chainsafe/ssz").ByteVectorType;
1000
- }>;
1001
- signature: import("@chainsafe/ssz").ByteVectorType;
1002
- }>;
1003
- }>>;
1004
- attesterSlashings: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
1005
- attestation1: import("@chainsafe/ssz").ContainerType<{
1006
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1007
- data: import("@chainsafe/ssz").ContainerType<{
1008
- slot: import("@chainsafe/ssz").UintBigintType;
1009
- index: import("@chainsafe/ssz").UintBigintType;
1010
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1011
- source: import("@chainsafe/ssz").ContainerType<{
1012
- epoch: import("@chainsafe/ssz").UintBigintType;
1013
- root: import("@chainsafe/ssz").ByteVectorType;
1014
- }>;
1015
- target: import("@chainsafe/ssz").ContainerType<{
1016
- epoch: import("@chainsafe/ssz").UintBigintType;
1017
- root: import("@chainsafe/ssz").ByteVectorType;
1018
- }>;
1019
- }>;
1020
- signature: import("@chainsafe/ssz").ByteVectorType;
1021
- }>;
1022
- attestation2: import("@chainsafe/ssz").ContainerType<{
1023
- attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1024
- data: import("@chainsafe/ssz").ContainerType<{
1025
- slot: import("@chainsafe/ssz").UintBigintType;
1026
- index: import("@chainsafe/ssz").UintBigintType;
1027
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1028
- source: import("@chainsafe/ssz").ContainerType<{
1029
- epoch: import("@chainsafe/ssz").UintBigintType;
1030
- root: import("@chainsafe/ssz").ByteVectorType;
1031
- }>;
1032
- target: import("@chainsafe/ssz").ContainerType<{
1033
- epoch: import("@chainsafe/ssz").UintBigintType;
1034
- root: import("@chainsafe/ssz").ByteVectorType;
1035
- }>;
1036
- }>;
1037
- signature: import("@chainsafe/ssz").ByteVectorType;
1038
- }>;
1039
- }>>;
1040
- attestations: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
1041
- aggregationBits: import("@chainsafe/ssz").BitListType;
1042
- data: import("@chainsafe/ssz").ContainerType<{
1043
- slot: import("@chainsafe/ssz").UintNumberType;
1044
- index: import("@chainsafe/ssz").UintNumberType;
1045
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1046
- source: import("@chainsafe/ssz").ContainerType<{
1047
- epoch: import("@chainsafe/ssz").UintNumberType;
1048
- root: import("@chainsafe/ssz").ByteVectorType;
1049
- }>;
1050
- target: import("@chainsafe/ssz").ContainerType<{
1051
- epoch: import("@chainsafe/ssz").UintNumberType;
1052
- root: import("@chainsafe/ssz").ByteVectorType;
1053
- }>;
1054
- }>;
1055
- signature: import("@chainsafe/ssz").ByteVectorType;
1056
- committeeBits: import("@chainsafe/ssz").BitVectorType;
1057
- }>>;
1058
- deposits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
1059
- proof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
1060
- data: import("@chainsafe/ssz").ContainerType<{
1061
- pubkey: import("@chainsafe/ssz").ByteVectorType;
1062
- withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
1063
- amount: import("@chainsafe/ssz").UintNumberType;
1064
- signature: import("@chainsafe/ssz").ByteVectorType;
1065
- }>;
1066
- }>>;
1067
- voluntaryExits: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
1068
- message: import("@chainsafe/ssz").ContainerType<{
1069
- epoch: import("@chainsafe/ssz").UintNumberType;
1070
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
1071
- }>;
1072
- signature: import("@chainsafe/ssz").ByteVectorType;
1073
- }>>;
1074
- syncAggregate: import("@chainsafe/ssz").ContainerType<{
1075
- syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
1076
- syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
1077
- }>;
1078
- blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
1079
- message: import("@chainsafe/ssz").ContainerType<{
1080
- validatorIndex: import("@chainsafe/ssz").UintNumberType;
1081
- fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
1082
- toExecutionAddress: import("@lodestar/types").ExecutionAddressType;
1083
- }>;
1084
- signature: import("@chainsafe/ssz").ByteVectorType;
1085
- }>>;
1086
- signedExecutionPayloadBid: import("@chainsafe/ssz").ContainerType<{
1087
- message: import("@chainsafe/ssz").ContainerType<{
1088
- parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
1089
- parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1090
- blockHash: import("@chainsafe/ssz").ByteVectorType;
1091
- prevRandao: import("@chainsafe/ssz").ByteVectorType;
1092
- feeRecipient: import("@lodestar/types").ExecutionAddressType;
1093
- gasLimit: import("@chainsafe/ssz").UintBigintType;
1094
- builderIndex: import("@chainsafe/ssz").UintNumberType;
1095
- slot: import("@chainsafe/ssz").UintNumberType;
1096
- value: import("@chainsafe/ssz").UintNumberType;
1097
- executionPayment: import("@chainsafe/ssz").UintNumberType;
1098
- blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
1099
- }>;
1100
- signature: import("@chainsafe/ssz").ByteVectorType;
1101
- }>;
1102
- payloadAttestations: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
1103
- aggregationBits: import("@chainsafe/ssz").BitVectorType;
1104
- data: import("@chainsafe/ssz").ContainerType<{
1105
- beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1106
- slot: import("@chainsafe/ssz").UintNumberType;
1107
- payloadPresent: import("@chainsafe/ssz").BooleanType;
1108
- blobDataAvailable: import("@chainsafe/ssz").BooleanType;
1109
- }>;
1110
- signature: import("@chainsafe/ssz").ByteVectorType;
1111
- }>>;
1112
- }>;
394
+ parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1113
395
  }>;
1114
396
  signature: import("@chainsafe/ssz").ByteVectorType;
1115
397
  }> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{