@lodestar/beacon-node 1.28.0-dev.8be81d6acf → 1.28.0-dev.929d0ea022

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.
@@ -1,4 +1,4 @@
1
- import { EPOCHS_PER_HISTORICAL_VECTOR } from "@lodestar/params";
1
+ import { EPOCHS_PER_HISTORICAL_VECTOR, isForkPostElectra } from "@lodestar/params";
2
2
  import { computeEpochAtSlot, computeStartSlotAtEpoch, getCurrentEpoch, getRandaoMix, } from "@lodestar/state-transition";
3
3
  import { getValidatorStatus } from "@lodestar/types";
4
4
  import { fromHex } from "@lodestar/utils";
@@ -236,6 +236,30 @@ export function getBeaconStateApi({ chain, config, }) {
236
236
  meta: { executionOptimistic, finalized },
237
237
  };
238
238
  },
239
+ async getPendingDeposits({ stateId }, context) {
240
+ const { state, executionOptimistic, finalized } = await getState(stateId);
241
+ const fork = config.getForkName(state.slot);
242
+ if (!isForkPostElectra(fork)) {
243
+ throw new ApiError(400, `Cannot retrieve pending deposits for pre-electra state fork=${fork}`);
244
+ }
245
+ const { pendingDeposits } = state;
246
+ return {
247
+ data: context?.returnBytes ? pendingDeposits.serialize() : pendingDeposits.toValue(),
248
+ meta: { executionOptimistic, finalized, version: fork },
249
+ };
250
+ },
251
+ async getPendingPartialWithdrawals({ stateId }, context) {
252
+ const { state, executionOptimistic, finalized } = await getState(stateId);
253
+ const fork = config.getForkName(state.slot);
254
+ if (!isForkPostElectra(fork)) {
255
+ throw new ApiError(400, `Cannot retrieve pending partial withdrawals for pre-electra state fork=${fork}`);
256
+ }
257
+ const { pendingPartialWithdrawals } = state;
258
+ return {
259
+ data: context?.returnBytes ? pendingPartialWithdrawals.serialize() : pendingPartialWithdrawals.toValue(),
260
+ meta: { executionOptimistic, finalized, version: fork },
261
+ };
262
+ },
239
263
  };
240
264
  }
241
265
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/api/impl/beacon/state/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/api/impl/beacon/state/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,4BAA4B,EAAE,iBAAiB,EAAC,MAAM,kBAAkB,CAAC;AACjF,OAAO,EAIL,kBAAkB,EAClB,uBAAuB,EACvB,eAAe,EACf,YAAY,GACb,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAC,kBAAkB,EAAC,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAC,OAAO,EAAC,MAAM,iBAAiB,CAAC;AACxC,OAAO,EAAC,QAAQ,EAAC,MAAM,iBAAiB,CAAC;AAEzC,OAAO,EAAC,6BAA6B,EAAE,gBAAgB,EAAE,sBAAsB,EAAE,mBAAmB,EAAC,MAAM,YAAY,CAAC;AAExH,MAAM,UAAU,iBAAiB,CAAC,EAChC,KAAK,EACL,MAAM,GAC+B;IACrC,KAAK,UAAU,QAAQ,CACrB,OAA8B;QAE9B,OAAO,gBAAgB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IAC1C,CAAC;IAED,OAAO;QACL,KAAK,CAAC,YAAY,CAAC,EAAC,OAAO,EAAC;YAC1B,MAAM,EAAC,KAAK,EAAE,mBAAmB,EAAE,SAAS,EAAC,GAAG,MAAM,QAAQ,CAAC,OAAO,CAAC,CAAC;YACxE,OAAO;gBACL,IAAI,EAAE,EAAC,IAAI,EAAE,KAAK,CAAC,YAAY,EAAE,EAAC;gBAClC,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAC;aACvC,CAAC;QACJ,CAAC;QAED,KAAK,CAAC,YAAY,CAAC,EAAC,OAAO,EAAC;YAC1B,MAAM,EAAC,KAAK,EAAE,mBAAmB,EAAE,SAAS,EAAC,GAAG,MAAM,QAAQ,CAAC,OAAO,CAAC,CAAC;YACxE,OAAO;gBACL,IAAI,EAAE,KAAK,CAAC,IAAI;gBAChB,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAC;aACvC,CAAC;QACJ,CAAC;QAED,KAAK,CAAC,cAAc,CAAC,EAAC,OAAO,EAAE,KAAK,EAAC;YACnC,MAAM,EAAC,KAAK,EAAE,mBAAmB,EAAE,SAAS,EAAC,GAAG,MAAM,QAAQ,CAAC,OAAO,CAAC,CAAC;YACxE,MAAM,UAAU,GAAG,kBAAkB,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YAClD,MAAM,SAAS,GAAG,KAAK,IAAI,UAAU,CAAC;YAEtC,IAAI,CAAC,CAAC,UAAU,GAAG,SAAS,GAAG,4BAA4B,IAAI,SAAS,IAAI,UAAU,CAAC,EAAE,CAAC;gBACxF,MAAM,IAAI,QAAQ,CAAC,GAAG,EAAE,iCAAiC,CAAC,CAAC;YAC7D,CAAC;YAED,MAAM,MAAM,GAAG,YAAY,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;YAE9C,OAAO;gBACL,IAAI,EAAE,EAAC,MAAM,EAAC;gBACd,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAC;aACvC,CAAC;QACJ,CAAC;QAED,KAAK,CAAC,2BAA2B,CAAC,EAAC,OAAO,EAAC;YACzC,MAAM,EAAC,KAAK,EAAE,mBAAmB,EAAE,SAAS,EAAC,GAAG,MAAM,QAAQ,CAAC,OAAO,CAAC,CAAC;YACxE,OAAO;gBACL,IAAI,EAAE;oBACJ,gBAAgB,EAAE,KAAK,CAAC,0BAA0B;oBAClD,iBAAiB,EAAE,KAAK,CAAC,2BAA2B;oBACpD,SAAS,EAAE,KAAK,CAAC,mBAAmB;iBACrC;gBACD,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAC;aACvC,CAAC;QACJ,CAAC;QAED,KAAK,CAAC,kBAAkB,CAAC,EAAC,OAAO,EAAE,YAAY,GAAG,EAAE,EAAE,QAAQ,GAAG,EAAE,EAAC;YAClE,MAAM,EAAC,KAAK,EAAE,mBAAmB,EAAE,SAAS,EAAC,GAAG,MAAM,gBAAgB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;YACvF,MAAM,YAAY,GAAG,eAAe,CAAC,KAAK,CAAC,CAAC;YAC5C,MAAM,EAAC,UAAU,EAAE,QAAQ,EAAC,GAAG,KAAK,CAAC,CAAC,oDAAoD;YAC1F,MAAM,EAAC,YAAY,EAAC,GAAG,KAAK,CAAC,YAAY,EAAE,CAAC,QAAQ,CAAC;YAErD,MAAM,kBAAkB,GAAsC,EAAE,CAAC;YACjE,IAAI,YAAY,CAAC,MAAM,EAAE,CAAC;gBACxB,KAAK,MAAM,EAAE,IAAI,YAAY,EAAE,CAAC;oBAC9B,MAAM,IAAI,GAAG,sBAAsB,CAAC,EAAE,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC;oBAC7D,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;wBACf,MAAM,cAAc,GAAG,IAAI,CAAC,cAAc,CAAC;wBAC3C,MAAM,SAAS,GAAG,UAAU,CAAC,WAAW,CAAC,cAAc,CAAC,CAAC;wBACzD,IAAI,QAAQ,CAAC,MAAM,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,kBAAkB,CAAC,SAAS,EAAE,YAAY,CAAC,CAAC,EAAE,CAAC;4BACvF,SAAS;wBACX,CAAC;wBACD,MAAM,iBAAiB,GAAG,mBAAmB,CAC3C,cAAc,EACd,SAAS,EACT,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,EAC5B,YAAY,CACb,CAAC;wBACF,kBAAkB,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;oBAC7C,CAAC;gBACH,CAAC;gBACD,OAAO;oBACL,IAAI,EAAE,kBAAkB;oBACxB,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAC;iBACvC,CAAC;YACJ,CAAC;YAED,IAAI,QAAQ,CAAC,MAAM,EAAE,CAAC;gBACpB,MAAM,kBAAkB,GAAG,6BAA6B,CAAC,QAAQ,EAAE,KAAK,EAAE,YAAY,EAAE,YAAY,CAAC,CAAC;gBACtG,OAAO;oBACL,IAAI,EAAE,kBAAkB;oBACxB,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAC;iBACvC,CAAC;YACJ,CAAC;YAED,4DAA4D;YAC5D,MAAM,aAAa,GAAG,KAAK,CAAC,UAAU,CAAC,oBAAoB,EAAE,CAAC;YAC9D,MAAM,WAAW,GAAG,KAAK,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC;YAC5C,MAAM,IAAI,GAAsC,EAAE,CAAC;YACnD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC9C,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,aAAa,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC;YACpF,CAAC;YAED,OAAO;gBACL,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAC;aACvC,CAAC;QACJ,CAAC;QAED,KAAK,CAAC,mBAAmB,CAAC,IAAI,EAAE,OAAO;YACrC,OAAO,IAAI,CAAC,kBAAkB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAChD,CAAC;QAED,KAAK,CAAC,4BAA4B,CAAC,EAAC,OAAO,EAAE,YAAY,GAAG,EAAE,EAAC;YAC7D,MAAM,EAAC,KAAK,EAAE,mBAAmB,EAAE,SAAS,EAAC,GAAG,MAAM,gBAAgB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;YACvF,MAAM,EAAC,YAAY,EAAC,GAAG,KAAK,CAAC,YAAY,EAAE,CAAC,QAAQ,CAAC;YAErD,IAAI,mBAAsD,CAAC;YAE3D,IAAI,YAAY,CAAC,MAAM,EAAE,CAAC;gBACxB,mBAAmB,GAAG,EAAE,CAAC;gBACzB,KAAK,MAAM,EAAE,IAAI,YAAY,EAAE,CAAC;oBAC9B,MAAM,IAAI,GAAG,sBAAsB,CAAC,EAAE,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC;oBAC7D,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;wBACf,MAAM,KAAK,GAAG,IAAI,CAAC,cAAc,CAAC;wBAClC,MAAM,EAAC,MAAM,EAAE,eAAe,EAAC,GAAG,KAAK,CAAC,UAAU,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;wBACtE,mBAAmB,CAAC,IAAI,CAAC,EAAC,KAAK,EAAE,MAAM,EAAE,eAAe,EAAC,CAAC,CAAC;oBAC7D,CAAC;gBACH,CAAC;YACH,CAAC;iBAAM,CAAC;gBACN,MAAM,aAAa,GAAG,KAAK,CAAC,UAAU,CAAC,oBAAoB,EAAE,CAAC;gBAC9D,mBAAmB,GAAG,IAAI,KAAK,CAAC,aAAa,CAAC,MAAM,CAAsC,CAAC;gBAC3F,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC9C,MAAM,EAAC,MAAM,EAAE,eAAe,EAAC,GAAG,aAAa,CAAC,CAAC,CAAC,CAAC;oBACnD,mBAAmB,CAAC,CAAC,CAAC,GAAG,EAAC,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,eAAe,EAAC,CAAC;gBAC/D,CAAC;YACH,CAAC;YAED,OAAO;gBACL,IAAI,EAAE,mBAAmB;gBACzB,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAC;aACvC,CAAC;QACJ,CAAC;QAED,KAAK,CAAC,iBAAiB,CAAC,EAAC,OAAO,EAAE,WAAW,EAAC;YAC5C,MAAM,EAAC,KAAK,EAAE,mBAAmB,EAAE,SAAS,EAAC,GAAG,MAAM,gBAAgB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;YACvF,MAAM,EAAC,YAAY,EAAC,GAAG,KAAK,CAAC,YAAY,EAAE,CAAC,QAAQ,CAAC;YAErD,MAAM,IAAI,GAAG,sBAAsB,CAAC,WAAW,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC;YACtE,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;gBAChB,MAAM,IAAI,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;YAC7C,CAAC;YAED,MAAM,cAAc,GAAG,IAAI,CAAC,cAAc,CAAC;YAC3C,OAAO;gBACL,IAAI,EAAE,mBAAmB,CACvB,cAAc,EACd,KAAK,CAAC,UAAU,CAAC,WAAW,CAAC,cAAc,CAAC,EAC5C,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,EAClC,eAAe,CAAC,KAAK,CAAC,CACvB;gBACD,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAC;aACvC,CAAC;QACJ,CAAC;QAED,KAAK,CAAC,yBAAyB,CAAC,EAAC,OAAO,EAAE,YAAY,GAAG,EAAE,EAAC;YAC1D,MAAM,EAAC,KAAK,EAAE,mBAAmB,EAAE,SAAS,EAAC,GAAG,MAAM,gBAAgB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;YAEvF,IAAI,YAAY,CAAC,MAAM,EAAE,CAAC;gBACxB,MAAM,SAAS,GAAG,KAAK,CAAC,YAAY,EAAE,CAAC;gBACvC,MAAM,QAAQ,GAAqC,EAAE,CAAC;gBACtD,KAAK,MAAM,EAAE,IAAI,YAAY,EAAE,CAAC;oBAC9B,IAAI,OAAO,EAAE,KAAK,QAAQ,EAAE,CAAC;wBAC3B,IAAI,KAAK,CAAC,UAAU,CAAC,MAAM,IAAI,EAAE,EAAE,CAAC;4BAClC,SAAS;wBACX,CAAC;wBACD,QAAQ,CAAC,IAAI,CAAC,EAAC,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,EAAC,CAAC,CAAC;oBAC9D,CAAC;yBAAM,CAAC;wBACN,MAAM,KAAK,GAAG,SAAS,CAAC,QAAQ,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC;wBAC/D,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,IAAI,KAAK,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC;4BACtD,QAAQ,CAAC,IAAI,CAAC,EAAC,KAAK,EAAE,OAAO,EAAE,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,CAAC,EAAC,CAAC,CAAC;wBAC7D,CAAC;oBACH,CAAC;gBACH,CAAC;gBACD,OAAO;oBACL,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAC;iBACvC,CAAC;YACJ,CAAC;YAED,4DAA4D;YAC5D,MAAM,WAAW,GAAG,KAAK,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC;YAC5C,MAAM,IAAI,GAAqC,EAAE,CAAC;YAClD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC5C,IAAI,CAAC,IAAI,CAAC,EAAC,KAAK,EAAE,CAAC,EAAE,OAAO,EAAE,WAAW,CAAC,CAAC,CAAC,EAAC,CAAC,CAAC;YACjD,CAAC;YACD,OAAO;gBACL,IAAI,EAAE,IAAI;gBACV,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAC;aACvC,CAAC;QACJ,CAAC;QAED,KAAK,CAAC,0BAA0B,CAAC,IAAI,EAAE,OAAO;YAC5C,OAAO,IAAI,CAAC,yBAAyB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QACvD,CAAC;QAED,KAAK,CAAC,kBAAkB,CAAC,EAAC,OAAO,EAAE,GAAG,OAAO,EAAC;YAC5C,MAAM,EAAC,KAAK,EAAE,mBAAmB,EAAE,SAAS,EAAC,GAAG,MAAM,gBAAgB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;YAEvF,MAAM,WAAW,GAAG,KAAgC,CAAC;YACrD,IAAI,WAAW,CAAC,QAAQ,KAAK,SAAS,EAAE,CAAC;gBACvC,MAAM,IAAI,QAAQ,CAAC,GAAG,EAAE,0CAA0C,OAAO,EAAE,CAAC,CAAC;YAC/E,CAAC;YAED,MAAM,KAAK,GAAG,OAAO,CAAC,KAAK,IAAI,kBAAkB,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YAC9D,MAAM,SAAS,GAAG,uBAAuB,CAAC,KAAK,CAAC,CAAC;YACjD,MAAM,YAAY,GAAG,WAAW,CAAC,QAAQ,CAAC,wBAAwB,CAAC,KAAK,CAAC,CAAC;YAC1E,MAAM,SAAS,GAAG,MAAM,KAAK,CAAC,cAAc,CAAC,GAAG,CAAC,KAAK,EAAE,YAAY,CAAC,CAAC;YACtE,IAAI,CAAC,SAAS,EAAE,CAAC;gBACf,MAAM,IAAI,QAAQ,CAChB,GAAG,EACH,yDAAyD,KAAK,sBAAsB,YAAY,EAAE,CACnG,CAAC;YACJ,CAAC;YACD,MAAM,UAAU,GAAG,SAAS,CAAC,UAAU,CAAC;YACxC,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC,cAAc,EAAE,WAAW,EAAE,EAAE;gBACxE,MAAM,IAAI,GAAG,SAAS,GAAG,WAAW,CAAC;gBACrC,IAAI,OAAO,CAAC,IAAI,KAAK,SAAS,IAAI,OAAO,CAAC,IAAI,KAAK,IAAI,EAAE,CAAC;oBACxD,OAAO,EAAE,CAAC;gBACZ,CAAC;gBACD,OAAO,cAAc,CAAC,OAAO,CAAC,CAAC,SAAS,EAAE,cAAc,EAAE,EAAE;oBAC1D,IAAI,OAAO,CAAC,KAAK,KAAK,SAAS,IAAI,OAAO,CAAC,KAAK,KAAK,cAAc,EAAE,CAAC;wBACpE,OAAO,EAAE,CAAC;oBACZ,CAAC;oBACD,OAAO;wBACL;4BACE,KAAK,EAAE,cAAc;4BACrB,IAAI;4BACJ,UAAU,EAAE,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC;yBAClC;qBACF,CAAC;gBACJ,CAAC,CAAC,CAAC;YACL,CAAC,CAAC,CAAC;YAEH,OAAO;gBACL,IAAI,EAAE,cAAc;gBACpB,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAC;aACvC,CAAC;QACJ,CAAC;QAED;;;WAGG;QACH,KAAK,CAAC,sBAAsB,CAAC,EAAC,OAAO,EAAE,KAAK,EAAC;YAC3C,wDAAwD;YACxD,MAAM,EAAC,KAAK,EAAE,mBAAmB,EAAE,SAAS,EAAC,GAAG,MAAM,gBAAgB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;YAEvF,4FAA4F;YAC5F,6GAA6G;YAC7G,MAAM,UAAU,GAAG,kBAAkB,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YAClD,IAAI,UAAU,GAAG,MAAM,CAAC,iBAAiB,EAAE,CAAC;gBAC1C,MAAM,IAAI,QAAQ,CAAC,GAAG,EAAE,0CAA0C,CAAC,CAAC;YACtE,CAAC;YAED,MAAM,WAAW,GAAG,KAAgC,CAAC;YACrD,IAAI,WAAW,CAAC,QAAQ,KAAK,SAAS,EAAE,CAAC;gBACvC,MAAM,IAAI,QAAQ,CAAC,GAAG,EAAE,0CAA0C,OAAO,EAAE,CAAC,CAAC;YAC/E,CAAC;YAED,MAAM,kBAAkB,GAAG,WAAW,CAAC,QAAQ,CAAC,8BAA8B,CAAC,KAAK,IAAI,UAAU,CAAC,CAAC;YAEpG,OAAO;gBACL,IAAI,EAAE;oBACJ,UAAU,EAAE,kBAAkB,CAAC,gBAAgB;oBAC/C,sEAAsE;oBACtE,mBAAmB,EAAE,EAAE;iBACxB;gBACD,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAC;aACvC,CAAC;QACJ,CAAC;QAED,KAAK,CAAC,kBAAkB,CAAC,EAAC,OAAO,EAAC,EAAE,OAAO;YACzC,MAAM,EAAC,KAAK,EAAE,mBAAmB,EAAE,SAAS,EAAC,GAAG,MAAM,QAAQ,CAAC,OAAO,CAAC,CAAC;YACxE,MAAM,IAAI,GAAG,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YAE5C,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,EAAE,CAAC;gBAC7B,MAAM,IAAI,QAAQ,CAAC,GAAG,EAAE,+DAA+D,IAAI,EAAE,CAAC,CAAC;YACjG,CAAC;YAED,MAAM,EAAC,eAAe,EAAC,GAAG,KAA2B,CAAC;YAEtD,OAAO;gBACL,IAAI,EAAE,OAAO,EAAE,WAAW,CAAC,CAAC,CAAC,eAAe,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,eAAe,CAAC,OAAO,EAAE;gBACpF,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAE,OAAO,EAAE,IAAI,EAAC;aACtD,CAAC;QACJ,CAAC;QAED,KAAK,CAAC,4BAA4B,CAAC,EAAC,OAAO,EAAC,EAAE,OAAO;YACnD,MAAM,EAAC,KAAK,EAAE,mBAAmB,EAAE,SAAS,EAAC,GAAG,MAAM,QAAQ,CAAC,OAAO,CAAC,CAAC;YACxE,MAAM,IAAI,GAAG,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YAE5C,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,EAAE,CAAC;gBAC7B,MAAM,IAAI,QAAQ,CAAC,GAAG,EAAE,0EAA0E,IAAI,EAAE,CAAC,CAAC;YAC5G,CAAC;YAED,MAAM,EAAC,yBAAyB,EAAC,GAAG,KAA2B,CAAC;YAEhE,OAAO;gBACL,IAAI,EAAE,OAAO,EAAE,WAAW,CAAC,CAAC,CAAC,yBAAyB,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,yBAAyB,CAAC,OAAO,EAAE;gBACxG,IAAI,EAAE,EAAC,mBAAmB,EAAE,SAAS,EAAE,OAAO,EAAE,IAAI,EAAC;aACtD,CAAC;QACJ,CAAC;KACF,CAAC;AACJ,CAAC"}
@@ -517,6 +517,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
517
517
  }>;
518
518
  signature: import("@chainsafe/ssz").ByteVectorType;
519
519
  }>;
520
+ }> | import("@chainsafe/ssz").ValueOfFields<{
521
+ attestation1: import("@chainsafe/ssz").ContainerType<{
522
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
523
+ data: import("@chainsafe/ssz").ContainerType<{
524
+ slot: import("@chainsafe/ssz").UintBigintType;
525
+ index: import("@chainsafe/ssz").UintBigintType;
526
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
527
+ source: import("@chainsafe/ssz").ContainerType<{
528
+ epoch: import("@chainsafe/ssz").UintBigintType;
529
+ root: import("@chainsafe/ssz").ByteVectorType;
530
+ }>;
531
+ target: import("@chainsafe/ssz").ContainerType<{
532
+ epoch: import("@chainsafe/ssz").UintBigintType;
533
+ root: import("@chainsafe/ssz").ByteVectorType;
534
+ }>;
535
+ }>;
536
+ signature: import("@chainsafe/ssz").ByteVectorType;
537
+ }>;
538
+ attestation2: import("@chainsafe/ssz").ContainerType<{
539
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
540
+ data: import("@chainsafe/ssz").ContainerType<{
541
+ slot: import("@chainsafe/ssz").UintBigintType;
542
+ index: import("@chainsafe/ssz").UintBigintType;
543
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
544
+ source: import("@chainsafe/ssz").ContainerType<{
545
+ epoch: import("@chainsafe/ssz").UintBigintType;
546
+ root: import("@chainsafe/ssz").ByteVectorType;
547
+ }>;
548
+ target: import("@chainsafe/ssz").ContainerType<{
549
+ epoch: import("@chainsafe/ssz").UintBigintType;
550
+ root: import("@chainsafe/ssz").ByteVectorType;
551
+ }>;
552
+ }>;
553
+ signature: import("@chainsafe/ssz").ByteVectorType;
554
+ }>;
520
555
  }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
521
556
  attestation1: import("@chainsafe/ssz").ContainerType<{
522
557
  attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
@@ -727,6 +762,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
727
762
  }>;
728
763
  signature: import("@chainsafe/ssz").ByteVectorType;
729
764
  }>;
765
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
766
+ attestation1: import("@chainsafe/ssz").ContainerType<{
767
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
768
+ data: import("@chainsafe/ssz").ContainerType<{
769
+ slot: import("@chainsafe/ssz").UintBigintType;
770
+ index: import("@chainsafe/ssz").UintBigintType;
771
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
772
+ source: import("@chainsafe/ssz").ContainerType<{
773
+ epoch: import("@chainsafe/ssz").UintBigintType;
774
+ root: import("@chainsafe/ssz").ByteVectorType;
775
+ }>;
776
+ target: import("@chainsafe/ssz").ContainerType<{
777
+ epoch: import("@chainsafe/ssz").UintBigintType;
778
+ root: import("@chainsafe/ssz").ByteVectorType;
779
+ }>;
780
+ }>;
781
+ signature: import("@chainsafe/ssz").ByteVectorType;
782
+ }>;
783
+ attestation2: import("@chainsafe/ssz").ContainerType<{
784
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
785
+ data: import("@chainsafe/ssz").ContainerType<{
786
+ slot: import("@chainsafe/ssz").UintBigintType;
787
+ index: import("@chainsafe/ssz").UintBigintType;
788
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
789
+ source: import("@chainsafe/ssz").ContainerType<{
790
+ epoch: import("@chainsafe/ssz").UintBigintType;
791
+ root: import("@chainsafe/ssz").ByteVectorType;
792
+ }>;
793
+ target: import("@chainsafe/ssz").ContainerType<{
794
+ epoch: import("@chainsafe/ssz").UintBigintType;
795
+ root: import("@chainsafe/ssz").ByteVectorType;
796
+ }>;
797
+ }>;
798
+ signature: import("@chainsafe/ssz").ByteVectorType;
799
+ }>;
730
800
  }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
731
801
  attestation1: import("@chainsafe/ssz").ContainerType<{
732
802
  attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
@@ -937,6 +1007,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
937
1007
  }>;
938
1008
  signature: import("@chainsafe/ssz").ByteVectorType;
939
1009
  }>;
1010
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1011
+ attestation1: import("@chainsafe/ssz").ContainerType<{
1012
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1013
+ data: import("@chainsafe/ssz").ContainerType<{
1014
+ slot: import("@chainsafe/ssz").UintBigintType;
1015
+ index: import("@chainsafe/ssz").UintBigintType;
1016
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1017
+ source: import("@chainsafe/ssz").ContainerType<{
1018
+ epoch: import("@chainsafe/ssz").UintBigintType;
1019
+ root: import("@chainsafe/ssz").ByteVectorType;
1020
+ }>;
1021
+ target: import("@chainsafe/ssz").ContainerType<{
1022
+ epoch: import("@chainsafe/ssz").UintBigintType;
1023
+ root: import("@chainsafe/ssz").ByteVectorType;
1024
+ }>;
1025
+ }>;
1026
+ signature: import("@chainsafe/ssz").ByteVectorType;
1027
+ }>;
1028
+ attestation2: import("@chainsafe/ssz").ContainerType<{
1029
+ attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
1030
+ data: import("@chainsafe/ssz").ContainerType<{
1031
+ slot: import("@chainsafe/ssz").UintBigintType;
1032
+ index: import("@chainsafe/ssz").UintBigintType;
1033
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1034
+ source: import("@chainsafe/ssz").ContainerType<{
1035
+ epoch: import("@chainsafe/ssz").UintBigintType;
1036
+ root: import("@chainsafe/ssz").ByteVectorType;
1037
+ }>;
1038
+ target: import("@chainsafe/ssz").ContainerType<{
1039
+ epoch: import("@chainsafe/ssz").UintBigintType;
1040
+ root: import("@chainsafe/ssz").ByteVectorType;
1041
+ }>;
1042
+ }>;
1043
+ signature: import("@chainsafe/ssz").ByteVectorType;
1044
+ }>;
940
1045
  }>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
941
1046
  message: import("@chainsafe/ssz").ContainerType<{
942
1047
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -1076,6 +1181,30 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1076
1181
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1077
1182
  }>;
1078
1183
  signature: import("@chainsafe/ssz").ByteVectorType;
1184
+ }> | import("@chainsafe/ssz").ValueOfFields<{
1185
+ message: import("@chainsafe/ssz").ContainerType<{
1186
+ aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1187
+ aggregate: import("@chainsafe/ssz").ContainerType<{
1188
+ aggregationBits: import("@chainsafe/ssz").BitListType;
1189
+ data: import("@chainsafe/ssz").ContainerType<{
1190
+ slot: import("@chainsafe/ssz").UintNumberType;
1191
+ index: import("@chainsafe/ssz").UintNumberType;
1192
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1193
+ source: import("@chainsafe/ssz").ContainerType<{
1194
+ epoch: import("@chainsafe/ssz").UintNumberType;
1195
+ root: import("@chainsafe/ssz").ByteVectorType;
1196
+ }>;
1197
+ target: import("@chainsafe/ssz").ContainerType<{
1198
+ epoch: import("@chainsafe/ssz").UintNumberType;
1199
+ root: import("@chainsafe/ssz").ByteVectorType;
1200
+ }>;
1201
+ }>;
1202
+ signature: import("@chainsafe/ssz").ByteVectorType;
1203
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
1204
+ }>;
1205
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
1206
+ }>;
1207
+ signature: import("@chainsafe/ssz").ByteVectorType;
1079
1208
  }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1080
1209
  message: import("@chainsafe/ssz").ContainerType<{
1081
1210
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -1215,6 +1344,30 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1215
1344
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1216
1345
  }>;
1217
1346
  signature: import("@chainsafe/ssz").ByteVectorType;
1347
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1348
+ message: import("@chainsafe/ssz").ContainerType<{
1349
+ aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1350
+ aggregate: import("@chainsafe/ssz").ContainerType<{
1351
+ aggregationBits: import("@chainsafe/ssz").BitListType;
1352
+ data: import("@chainsafe/ssz").ContainerType<{
1353
+ slot: import("@chainsafe/ssz").UintNumberType;
1354
+ index: import("@chainsafe/ssz").UintNumberType;
1355
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1356
+ source: import("@chainsafe/ssz").ContainerType<{
1357
+ epoch: import("@chainsafe/ssz").UintNumberType;
1358
+ root: import("@chainsafe/ssz").ByteVectorType;
1359
+ }>;
1360
+ target: import("@chainsafe/ssz").ContainerType<{
1361
+ epoch: import("@chainsafe/ssz").UintNumberType;
1362
+ root: import("@chainsafe/ssz").ByteVectorType;
1363
+ }>;
1364
+ }>;
1365
+ signature: import("@chainsafe/ssz").ByteVectorType;
1366
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
1367
+ }>;
1368
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
1369
+ }>;
1370
+ signature: import("@chainsafe/ssz").ByteVectorType;
1218
1371
  }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1219
1372
  message: import("@chainsafe/ssz").ContainerType<{
1220
1373
  aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -1354,6 +1507,30 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1354
1507
  selectionProof: import("@chainsafe/ssz").ByteVectorType;
1355
1508
  }>;
1356
1509
  signature: import("@chainsafe/ssz").ByteVectorType;
1510
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1511
+ message: import("@chainsafe/ssz").ContainerType<{
1512
+ aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
1513
+ aggregate: import("@chainsafe/ssz").ContainerType<{
1514
+ aggregationBits: import("@chainsafe/ssz").BitListType;
1515
+ data: import("@chainsafe/ssz").ContainerType<{
1516
+ slot: import("@chainsafe/ssz").UintNumberType;
1517
+ index: import("@chainsafe/ssz").UintNumberType;
1518
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1519
+ source: import("@chainsafe/ssz").ContainerType<{
1520
+ epoch: import("@chainsafe/ssz").UintNumberType;
1521
+ root: import("@chainsafe/ssz").ByteVectorType;
1522
+ }>;
1523
+ target: import("@chainsafe/ssz").ContainerType<{
1524
+ epoch: import("@chainsafe/ssz").UintNumberType;
1525
+ root: import("@chainsafe/ssz").ByteVectorType;
1526
+ }>;
1527
+ }>;
1528
+ signature: import("@chainsafe/ssz").ByteVectorType;
1529
+ committeeBits: import("@chainsafe/ssz").BitVectorType;
1530
+ }>;
1531
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
1532
+ }>;
1533
+ signature: import("@chainsafe/ssz").ByteVectorType;
1357
1534
  }>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
1358
1535
  aggregationBits: import("@chainsafe/ssz").BitListType;
1359
1536
  data: import("@chainsafe/ssz").ContainerType<{
@@ -1451,6 +1628,23 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1451
1628
  }>;
1452
1629
  }>;
1453
1630
  signature: import("@chainsafe/ssz").ByteVectorType;
1631
+ }> | import("@chainsafe/ssz").ValueOfFields<{
1632
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1633
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1634
+ data: import("@chainsafe/ssz").ContainerType<{
1635
+ slot: import("@chainsafe/ssz").UintNumberType;
1636
+ index: import("@chainsafe/ssz").UintNumberType;
1637
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1638
+ source: import("@chainsafe/ssz").ContainerType<{
1639
+ epoch: import("@chainsafe/ssz").UintNumberType;
1640
+ root: import("@chainsafe/ssz").ByteVectorType;
1641
+ }>;
1642
+ target: import("@chainsafe/ssz").ContainerType<{
1643
+ epoch: import("@chainsafe/ssz").UintNumberType;
1644
+ root: import("@chainsafe/ssz").ByteVectorType;
1645
+ }>;
1646
+ }>;
1647
+ signature: import("@chainsafe/ssz").ByteVectorType;
1454
1648
  }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1455
1649
  aggregationBits: import("@chainsafe/ssz").BitListType;
1456
1650
  data: import("@chainsafe/ssz").ContainerType<{
@@ -1548,6 +1742,23 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1548
1742
  }>;
1549
1743
  }>;
1550
1744
  signature: import("@chainsafe/ssz").ByteVectorType;
1745
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1746
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1747
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1748
+ data: import("@chainsafe/ssz").ContainerType<{
1749
+ slot: import("@chainsafe/ssz").UintNumberType;
1750
+ index: import("@chainsafe/ssz").UintNumberType;
1751
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1752
+ source: import("@chainsafe/ssz").ContainerType<{
1753
+ epoch: import("@chainsafe/ssz").UintNumberType;
1754
+ root: import("@chainsafe/ssz").ByteVectorType;
1755
+ }>;
1756
+ target: import("@chainsafe/ssz").ContainerType<{
1757
+ epoch: import("@chainsafe/ssz").UintNumberType;
1758
+ root: import("@chainsafe/ssz").ByteVectorType;
1759
+ }>;
1760
+ }>;
1761
+ signature: import("@chainsafe/ssz").ByteVectorType;
1551
1762
  }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1552
1763
  aggregationBits: import("@chainsafe/ssz").BitListType;
1553
1764
  data: import("@chainsafe/ssz").ContainerType<{
@@ -1645,6 +1856,23 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1645
1856
  }>;
1646
1857
  }>;
1647
1858
  signature: import("@chainsafe/ssz").ByteVectorType;
1859
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
1860
+ committeeIndex: import("@chainsafe/ssz").UintNumberType;
1861
+ attesterIndex: import("@chainsafe/ssz").UintNumberType;
1862
+ data: import("@chainsafe/ssz").ContainerType<{
1863
+ slot: import("@chainsafe/ssz").UintNumberType;
1864
+ index: import("@chainsafe/ssz").UintNumberType;
1865
+ beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
1866
+ source: import("@chainsafe/ssz").ContainerType<{
1867
+ epoch: import("@chainsafe/ssz").UintNumberType;
1868
+ root: import("@chainsafe/ssz").ByteVectorType;
1869
+ }>;
1870
+ target: import("@chainsafe/ssz").ContainerType<{
1871
+ epoch: import("@chainsafe/ssz").UintNumberType;
1872
+ root: import("@chainsafe/ssz").ByteVectorType;
1873
+ }>;
1874
+ }>;
1875
+ signature: import("@chainsafe/ssz").ByteVectorType;
1648
1876
  }>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
1649
1877
  attestedHeader: import("@chainsafe/ssz").ContainerType<{
1650
1878
  beacon: import("@chainsafe/ssz").ContainerType<{
@@ -1778,7 +2006,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1778
2006
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
1779
2007
  }>;
1780
2008
  signatureSlot: import("@chainsafe/ssz").UintNumberType;
1781
- }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2009
+ }> | import("@chainsafe/ssz").ValueOfFields<{
1782
2010
  attestedHeader: import("@chainsafe/ssz").ContainerType<{
1783
2011
  beacon: import("@chainsafe/ssz").ContainerType<{
1784
2012
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -1787,13 +2015,33 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1787
2015
  stateRoot: import("@chainsafe/ssz").ByteVectorType;
1788
2016
  bodyRoot: import("@chainsafe/ssz").ByteVectorType;
1789
2017
  }>;
2018
+ execution: import("@chainsafe/ssz").ContainerType<{
2019
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
2020
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
2021
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2022
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2023
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
2024
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
2025
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2026
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
2027
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
2028
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
2029
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
2030
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
2031
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
2032
+ timestamp: import("@chainsafe/ssz").UintNumberType;
2033
+ extraData: import("@chainsafe/ssz").ByteListType;
2034
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
2035
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
2036
+ }>;
2037
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
1790
2038
  }>;
1791
2039
  syncAggregate: import("@chainsafe/ssz").ContainerType<{
1792
2040
  syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
1793
2041
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
1794
2042
  }>;
1795
2043
  signatureSlot: import("@chainsafe/ssz").UintNumberType;
1796
- }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2044
+ }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
1797
2045
  attestedHeader: import("@chainsafe/ssz").ContainerType<{
1798
2046
  beacon: import("@chainsafe/ssz").ContainerType<{
1799
2047
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -1817,10 +2065,60 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
1817
2065
  stateRoot: import("@chainsafe/ssz").ByteVectorType;
1818
2066
  bodyRoot: import("@chainsafe/ssz").ByteVectorType;
1819
2067
  }>;
1820
- execution: import("@chainsafe/ssz").ContainerType<{
1821
- withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
1822
- transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
1823
- parentHash: import("@chainsafe/ssz").ByteVectorType;
2068
+ }>;
2069
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
2070
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
2071
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2072
+ }>;
2073
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
2074
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2075
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
2076
+ beacon: import("@chainsafe/ssz").ContainerType<{
2077
+ slot: import("@chainsafe/ssz").UintNumberType;
2078
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
2079
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
2080
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2081
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2082
+ }>;
2083
+ execution: import("@chainsafe/ssz").ContainerType<{
2084
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2085
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2086
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
2087
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
2088
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2089
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
2090
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
2091
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
2092
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
2093
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
2094
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
2095
+ timestamp: import("@chainsafe/ssz").UintNumberType;
2096
+ extraData: import("@chainsafe/ssz").ByteListType;
2097
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
2098
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
2099
+ }>;
2100
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
2101
+ }>;
2102
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
2103
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
2104
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2105
+ }>;
2106
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
2107
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2108
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
2109
+ beacon: import("@chainsafe/ssz").ContainerType<{
2110
+ slot: import("@chainsafe/ssz").UintNumberType;
2111
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
2112
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
2113
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2114
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2115
+ }>;
2116
+ execution: import("@chainsafe/ssz").ContainerType<{
2117
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
2118
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
2119
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2120
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2121
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
1824
2122
  feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
1825
2123
  stateRoot: import("@chainsafe/ssz").ByteVectorType;
1826
2124
  receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
@@ -2044,6 +2342,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
2044
2342
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2045
2343
  }>;
2046
2344
  signatureSlot: import("@chainsafe/ssz").UintNumberType;
2345
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
2346
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
2347
+ beacon: import("@chainsafe/ssz").ContainerType<{
2348
+ slot: import("@chainsafe/ssz").UintNumberType;
2349
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
2350
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
2351
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2352
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2353
+ }>;
2354
+ execution: import("@chainsafe/ssz").ContainerType<{
2355
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
2356
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
2357
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2358
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2359
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
2360
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
2361
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2362
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
2363
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
2364
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
2365
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
2366
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
2367
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
2368
+ timestamp: import("@chainsafe/ssz").UintNumberType;
2369
+ extraData: import("@chainsafe/ssz").ByteListType;
2370
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
2371
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
2372
+ }>;
2373
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
2374
+ }>;
2375
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
2376
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
2377
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2378
+ }>;
2379
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
2047
2380
  }>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
2048
2381
  attestedHeader: import("@chainsafe/ssz").ContainerType<{
2049
2382
  beacon: import("@chainsafe/ssz").ContainerType<{
@@ -2285,6 +2618,71 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
2285
2618
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2286
2619
  }>;
2287
2620
  signatureSlot: import("@chainsafe/ssz").UintNumberType;
2621
+ }> | import("@chainsafe/ssz").ValueOfFields<{
2622
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
2623
+ beacon: import("@chainsafe/ssz").ContainerType<{
2624
+ slot: import("@chainsafe/ssz").UintNumberType;
2625
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
2626
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
2627
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2628
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2629
+ }>;
2630
+ execution: import("@chainsafe/ssz").ContainerType<{
2631
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
2632
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
2633
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2634
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2635
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
2636
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
2637
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2638
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
2639
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
2640
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
2641
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
2642
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
2643
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
2644
+ timestamp: import("@chainsafe/ssz").UintNumberType;
2645
+ extraData: import("@chainsafe/ssz").ByteListType;
2646
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
2647
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
2648
+ }>;
2649
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
2650
+ }>;
2651
+ finalizedHeader: import("@chainsafe/ssz").ContainerType<{
2652
+ beacon: import("@chainsafe/ssz").ContainerType<{
2653
+ slot: import("@chainsafe/ssz").UintNumberType;
2654
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
2655
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
2656
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2657
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2658
+ }>;
2659
+ execution: import("@chainsafe/ssz").ContainerType<{
2660
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
2661
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
2662
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2663
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2664
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
2665
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
2666
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2667
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
2668
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
2669
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
2670
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
2671
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
2672
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
2673
+ timestamp: import("@chainsafe/ssz").UintNumberType;
2674
+ extraData: import("@chainsafe/ssz").ByteListType;
2675
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
2676
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
2677
+ }>;
2678
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
2679
+ }>;
2680
+ finalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
2681
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
2682
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
2683
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2684
+ }>;
2685
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
2288
2686
  }>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2289
2687
  attestedHeader: import("@chainsafe/ssz").ContainerType<{
2290
2688
  beacon: import("@chainsafe/ssz").ContainerType<{
@@ -2526,6 +2924,71 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
2526
2924
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2527
2925
  }>;
2528
2926
  signatureSlot: import("@chainsafe/ssz").UintNumberType;
2927
+ }> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
2928
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
2929
+ beacon: import("@chainsafe/ssz").ContainerType<{
2930
+ slot: import("@chainsafe/ssz").UintNumberType;
2931
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
2932
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
2933
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2934
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2935
+ }>;
2936
+ execution: import("@chainsafe/ssz").ContainerType<{
2937
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
2938
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
2939
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2940
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2941
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
2942
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
2943
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2944
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
2945
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
2946
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
2947
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
2948
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
2949
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
2950
+ timestamp: import("@chainsafe/ssz").UintNumberType;
2951
+ extraData: import("@chainsafe/ssz").ByteListType;
2952
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
2953
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
2954
+ }>;
2955
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
2956
+ }>;
2957
+ finalizedHeader: import("@chainsafe/ssz").ContainerType<{
2958
+ beacon: import("@chainsafe/ssz").ContainerType<{
2959
+ slot: import("@chainsafe/ssz").UintNumberType;
2960
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
2961
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
2962
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2963
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
2964
+ }>;
2965
+ execution: import("@chainsafe/ssz").ContainerType<{
2966
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
2967
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
2968
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
2969
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
2970
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
2971
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
2972
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
2973
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
2974
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
2975
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
2976
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
2977
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
2978
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
2979
+ timestamp: import("@chainsafe/ssz").UintNumberType;
2980
+ extraData: import("@chainsafe/ssz").ByteListType;
2981
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
2982
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
2983
+ }>;
2984
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
2985
+ }>;
2986
+ finalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
2987
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
2988
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
2989
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2990
+ }>;
2991
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
2529
2992
  }>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
2530
2993
  attestedHeader: import("@chainsafe/ssz").ContainerType<{
2531
2994
  beacon: import("@chainsafe/ssz").ContainerType<{
@@ -2767,6 +3230,71 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
2767
3230
  syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
2768
3231
  }>;
2769
3232
  signatureSlot: import("@chainsafe/ssz").UintNumberType;
3233
+ }> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
3234
+ attestedHeader: import("@chainsafe/ssz").ContainerType<{
3235
+ beacon: import("@chainsafe/ssz").ContainerType<{
3236
+ slot: import("@chainsafe/ssz").UintNumberType;
3237
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
3238
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
3239
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3240
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
3241
+ }>;
3242
+ execution: import("@chainsafe/ssz").ContainerType<{
3243
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
3244
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
3245
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
3246
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
3247
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
3248
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
3249
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3250
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
3251
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
3252
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
3253
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
3254
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
3255
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
3256
+ timestamp: import("@chainsafe/ssz").UintNumberType;
3257
+ extraData: import("@chainsafe/ssz").ByteListType;
3258
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
3259
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
3260
+ }>;
3261
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
3262
+ }>;
3263
+ finalizedHeader: import("@chainsafe/ssz").ContainerType<{
3264
+ beacon: import("@chainsafe/ssz").ContainerType<{
3265
+ slot: import("@chainsafe/ssz").UintNumberType;
3266
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
3267
+ parentRoot: import("@chainsafe/ssz").ByteVectorType;
3268
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3269
+ bodyRoot: import("@chainsafe/ssz").ByteVectorType;
3270
+ }>;
3271
+ execution: import("@chainsafe/ssz").ContainerType<{
3272
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
3273
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
3274
+ withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
3275
+ transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
3276
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
3277
+ feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
3278
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
3279
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
3280
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
3281
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
3282
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
3283
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
3284
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
3285
+ timestamp: import("@chainsafe/ssz").UintNumberType;
3286
+ extraData: import("@chainsafe/ssz").ByteListType;
3287
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
3288
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
3289
+ }>;
3290
+ executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
3291
+ }>;
3292
+ finalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
3293
+ syncAggregate: import("@chainsafe/ssz").ContainerType<{
3294
+ syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
3295
+ syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
3296
+ }>;
3297
+ signatureSlot: import("@chainsafe/ssz").UintNumberType;
2770
3298
  }>>;
2771
3299
  /**
2772
3300
  * Deserialize a gossip serialized data into an ssz object.
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "bugs": {
12
12
  "url": "https://github.com/ChainSafe/lodestar/issues"
13
13
  },
14
- "version": "1.28.0-dev.8be81d6acf",
14
+ "version": "1.28.0-dev.929d0ea022",
15
15
  "type": "module",
16
16
  "exports": {
17
17
  ".": {
@@ -120,18 +120,18 @@
120
120
  "@libp2p/peer-id-factory": "^4.1.0",
121
121
  "@libp2p/prometheus-metrics": "^3.0.21",
122
122
  "@libp2p/tcp": "9.0.23",
123
- "@lodestar/api": "1.28.0-dev.8be81d6acf",
124
- "@lodestar/config": "1.28.0-dev.8be81d6acf",
125
- "@lodestar/db": "1.28.0-dev.8be81d6acf",
126
- "@lodestar/fork-choice": "1.28.0-dev.8be81d6acf",
127
- "@lodestar/light-client": "1.28.0-dev.8be81d6acf",
128
- "@lodestar/logger": "1.28.0-dev.8be81d6acf",
129
- "@lodestar/params": "1.28.0-dev.8be81d6acf",
130
- "@lodestar/reqresp": "1.28.0-dev.8be81d6acf",
131
- "@lodestar/state-transition": "1.28.0-dev.8be81d6acf",
132
- "@lodestar/types": "1.28.0-dev.8be81d6acf",
133
- "@lodestar/utils": "1.28.0-dev.8be81d6acf",
134
- "@lodestar/validator": "1.28.0-dev.8be81d6acf",
123
+ "@lodestar/api": "1.28.0-dev.929d0ea022",
124
+ "@lodestar/config": "1.28.0-dev.929d0ea022",
125
+ "@lodestar/db": "1.28.0-dev.929d0ea022",
126
+ "@lodestar/fork-choice": "1.28.0-dev.929d0ea022",
127
+ "@lodestar/light-client": "1.28.0-dev.929d0ea022",
128
+ "@lodestar/logger": "1.28.0-dev.929d0ea022",
129
+ "@lodestar/params": "1.28.0-dev.929d0ea022",
130
+ "@lodestar/reqresp": "1.28.0-dev.929d0ea022",
131
+ "@lodestar/state-transition": "1.28.0-dev.929d0ea022",
132
+ "@lodestar/types": "1.28.0-dev.929d0ea022",
133
+ "@lodestar/utils": "1.28.0-dev.929d0ea022",
134
+ "@lodestar/validator": "1.28.0-dev.929d0ea022",
135
135
  "@multiformats/multiaddr": "^12.1.3",
136
136
  "c-kzg": "^2.1.2",
137
137
  "datastore-core": "^9.1.1",
@@ -168,5 +168,5 @@
168
168
  "beacon",
169
169
  "blockchain"
170
170
  ],
171
- "gitHead": "eb51f46304ee9727f57a7cc839b9af4c83f87a7a"
171
+ "gitHead": "33dd7c60743e8fa7c9f0c23430f4a42a7180881a"
172
172
  }