@lodestar/beacon-node 1.34.0-dev.27285cdee9 → 1.34.0-dev.44611dcdcc
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.
- package/lib/api/impl/beacon/blocks/index.js +35 -34
- package/lib/api/impl/beacon/blocks/index.js.map +1 -1
- package/lib/api/impl/beacon/pool/index.js +3 -3
- package/lib/api/impl/beacon/pool/index.js.map +1 -1
- package/lib/api/impl/beacon/state/index.js +15 -16
- package/lib/api/impl/beacon/state/index.js.map +1 -1
- package/lib/api/impl/debug/index.js +2 -2
- package/lib/api/impl/debug/index.js.map +1 -1
- package/lib/api/impl/validator/index.js +37 -26
- package/lib/api/impl/validator/index.js.map +1 -1
- package/lib/api/impl/validator/utils.d.ts +3 -3
- package/lib/api/impl/validator/utils.js +2 -2
- package/lib/api/impl/validator/utils.js.map +1 -1
- package/lib/chain/archiveStore/utils/archiveBlocks.js +19 -20
- package/lib/chain/archiveStore/utils/archiveBlocks.js.map +1 -1
- package/lib/chain/blocks/utils/zebraBanner.d.ts +2 -0
- package/lib/chain/blocks/utils/zebraBanner.js +45 -0
- package/lib/chain/blocks/utils/zebraBanner.js.map +1 -0
- package/lib/chain/blocks/verifyBlock.js +18 -5
- package/lib/chain/blocks/verifyBlock.js.map +1 -1
- package/lib/chain/blocks/writeBlockInputToDb.js +7 -34
- package/lib/chain/blocks/writeBlockInputToDb.js.map +1 -1
- package/lib/chain/chain.d.ts +8 -80
- package/lib/chain/chain.js +51 -76
- package/lib/chain/chain.js.map +1 -1
- package/lib/chain/interface.d.ts +3 -10
- package/lib/chain/interface.js.map +1 -1
- package/lib/chain/prepareNextSlot.js +2 -1
- package/lib/chain/prepareNextSlot.js.map +1 -1
- package/lib/chain/produceBlock/produceBlockBody.d.ts +30 -18
- package/lib/chain/produceBlock/produceBlockBody.js +27 -32
- package/lib/chain/produceBlock/produceBlockBody.js.map +1 -1
- package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.d.ts +6 -4
- package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.js +21 -23
- package/lib/chain/produceBlock/validateBlobsAndKzgCommitments.js.map +1 -1
- package/lib/chain/validation/dataColumnSidecar.d.ts +2 -1
- package/lib/chain/validation/dataColumnSidecar.js +9 -8
- package/lib/chain/validation/dataColumnSidecar.js.map +1 -1
- package/lib/db/beacon.d.ts +3 -3
- package/lib/db/beacon.js +3 -3
- package/lib/db/beacon.js.map +1 -1
- package/lib/db/interface.d.ts +3 -3
- package/lib/db/repositories/dataColumnSidecar.d.ts +26 -0
- package/lib/db/repositories/dataColumnSidecar.js +39 -0
- package/lib/db/repositories/dataColumnSidecar.js.map +1 -0
- package/lib/db/repositories/dataColumnSidecarArchive.d.ts +24 -0
- package/lib/db/repositories/dataColumnSidecarArchive.js +39 -0
- package/lib/db/repositories/dataColumnSidecarArchive.js.map +1 -0
- package/lib/db/repositories/index.d.ts +2 -2
- package/lib/db/repositories/index.js +2 -2
- package/lib/db/repositories/index.js.map +1 -1
- package/lib/execution/builder/http.d.ts +20 -4
- package/lib/execution/builder/http.js +30 -11
- package/lib/execution/builder/http.js.map +1 -1
- package/lib/execution/builder/interface.d.ts +5 -4
- package/lib/execution/engine/http.d.ts +2 -2
- package/lib/execution/engine/http.js.map +1 -1
- package/lib/execution/engine/interface.d.ts +2 -11
- package/lib/execution/engine/mock.d.ts +4 -1
- package/lib/execution/engine/mock.js +54 -16
- package/lib/execution/engine/mock.js.map +1 -1
- package/lib/execution/engine/types.d.ts +5 -5
- package/lib/execution/engine/types.js +2 -2
- package/lib/execution/engine/types.js.map +1 -1
- package/lib/metrics/metrics/beacon.d.ts +1 -5
- package/lib/metrics/metrics/beacon.js +4 -14
- package/lib/metrics/metrics/beacon.js.map +1 -1
- package/lib/metrics/metrics/lodestar.d.ts +5 -0
- package/lib/metrics/metrics/lodestar.js +14 -0
- package/lib/metrics/metrics/lodestar.js.map +1 -1
- package/lib/network/core/networkCore.js +11 -6
- package/lib/network/core/networkCore.js.map +1 -1
- package/lib/network/gossip/topic.d.ts +579 -51
- package/lib/network/interface.d.ts +3 -3
- package/lib/network/network.d.ts +3 -3
- package/lib/network/network.js +1 -1
- package/lib/network/network.js.map +1 -1
- package/lib/network/options.js +2 -2
- package/lib/network/peers/discover.js +1 -1
- package/lib/network/peers/discover.js.map +1 -1
- package/lib/network/peers/peerManager.js +5 -5
- package/lib/network/peers/peerManager.js.map +1 -1
- package/lib/network/peers/utils/prioritizePeers.d.ts +2 -1
- package/lib/network/peers/utils/prioritizePeers.js +5 -5
- package/lib/network/peers/utils/prioritizePeers.js.map +1 -1
- package/lib/network/processor/gossipHandlers.js +9 -6
- package/lib/network/processor/gossipHandlers.js.map +1 -1
- package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.d.ts +6 -3
- package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.js +45 -17
- package/lib/network/reqresp/beaconBlocksMaybeBlobsByRange.js.map +1 -1
- package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.d.ts +7 -2
- package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.js +7 -7
- package/lib/network/reqresp/beaconBlocksMaybeBlobsByRoot.js.map +1 -1
- package/lib/network/reqresp/handlers/beaconBlocksByRange.js +3 -3
- package/lib/network/reqresp/handlers/beaconBlocksByRange.js.map +1 -1
- package/lib/network/reqresp/handlers/beaconBlocksByRoot.d.ts +2 -2
- package/lib/network/reqresp/handlers/beaconBlocksByRoot.js.map +1 -1
- package/lib/network/reqresp/handlers/blobSidecarsByRange.d.ts +2 -2
- package/lib/network/reqresp/handlers/blobSidecarsByRange.js +2 -3
- package/lib/network/reqresp/handlers/blobSidecarsByRange.js.map +1 -1
- package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.d.ts +3 -3
- package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.js +27 -46
- package/lib/network/reqresp/handlers/dataColumnSidecarsByRange.js.map +1 -1
- package/lib/network/reqresp/handlers/dataColumnSidecarsByRoot.d.ts +2 -2
- package/lib/network/reqresp/handlers/dataColumnSidecarsByRoot.js +7 -21
- package/lib/network/reqresp/handlers/dataColumnSidecarsByRoot.js.map +1 -1
- package/lib/network/reqresp/handlers/index.js +4 -3
- package/lib/network/reqresp/handlers/index.js.map +1 -1
- package/lib/network/reqresp/rateLimit.js +11 -5
- package/lib/network/reqresp/rateLimit.js.map +1 -1
- package/lib/network/reqresp/types.d.ts +3 -3
- package/lib/network/reqresp/types.js +3 -3
- package/lib/network/reqresp/types.js.map +1 -1
- package/lib/sync/range/chain.d.ts +1 -1
- package/lib/sync/range/chain.js +2 -2
- package/lib/sync/range/chain.js.map +1 -1
- package/lib/sync/range/range.js +2 -2
- package/lib/sync/range/range.js.map +1 -1
- package/lib/sync/range/utils/peerBalancer.d.ts +3 -1
- package/lib/sync/range/utils/peerBalancer.js +20 -1
- package/lib/sync/range/utils/peerBalancer.js.map +1 -1
- package/lib/sync/unknownBlock.d.ts +46 -4
- package/lib/sync/unknownBlock.js +305 -201
- package/lib/sync/unknownBlock.js.map +1 -1
- package/lib/util/blobs.d.ts +3 -13
- package/lib/util/blobs.js +9 -47
- package/lib/util/blobs.js.map +1 -1
- package/lib/util/dataColumns.d.ts +7 -5
- package/lib/util/dataColumns.js +32 -27
- package/lib/util/dataColumns.js.map +1 -1
- package/lib/util/types.d.ts +7 -0
- package/lib/util/types.js +3 -0
- package/lib/util/types.js.map +1 -1
- package/package.json +16 -16
- package/lib/db/repositories/dataColumnSidecars.d.ts +0 -47
- package/lib/db/repositories/dataColumnSidecars.js +0 -40
- package/lib/db/repositories/dataColumnSidecars.js.map +0 -1
- package/lib/db/repositories/dataColumnSidecarsArchive.d.ts +0 -15
- package/lib/db/repositories/dataColumnSidecarsArchive.js +0 -23
- package/lib/db/repositories/dataColumnSidecarsArchive.js.map +0 -1
|
@@ -21,6 +21,22 @@ export declare class GossipTopicCache implements IGossipTopicCache {
|
|
|
21
21
|
*/
|
|
22
22
|
export declare function stringifyGossipTopic(forkDigestContext: ForkDigestContext, topic: GossipTopic): string;
|
|
23
23
|
export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe/ssz").ContainerType<{
|
|
24
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
25
|
+
column: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
26
|
+
kzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
27
|
+
kzgProofs: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
28
|
+
signedBlockHeader: import("@chainsafe/ssz").ContainerType<{
|
|
29
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
30
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
31
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
32
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
33
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
34
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
35
|
+
}>;
|
|
36
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
37
|
+
}>;
|
|
38
|
+
kzgCommitmentsInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
39
|
+
}> | import("@chainsafe/ssz").ContainerType<{
|
|
24
40
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
25
41
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
26
42
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -323,23 +339,30 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
323
339
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
324
340
|
}>;
|
|
325
341
|
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
326
|
-
}> | import("@chainsafe/ssz").
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
342
|
+
}> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
|
|
343
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
344
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
345
|
+
aggregate: import("@chainsafe/ssz").ContainerType<{
|
|
346
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
347
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
348
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
349
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
350
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
351
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
352
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
353
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
354
|
+
}>;
|
|
355
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
356
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
357
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
358
|
+
}>;
|
|
359
|
+
}>;
|
|
360
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
338
361
|
}>;
|
|
339
|
-
|
|
362
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
340
363
|
}>;
|
|
341
|
-
|
|
342
|
-
}> | import("@chainsafe/ssz").
|
|
364
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
365
|
+
}> | import("@chainsafe/ssz").ValueOfFields<{
|
|
343
366
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
344
367
|
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
345
368
|
aggregate: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -450,6 +473,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
450
473
|
}>;
|
|
451
474
|
}>;
|
|
452
475
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
476
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
453
477
|
}>;
|
|
454
478
|
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
455
479
|
}>;
|
|
@@ -665,6 +689,30 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
665
689
|
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
666
690
|
}>;
|
|
667
691
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
692
|
+
}> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
693
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
694
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
695
|
+
aggregate: import("@chainsafe/ssz").ContainerType<{
|
|
696
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
697
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
698
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
699
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
700
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
701
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
702
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
703
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
704
|
+
}>;
|
|
705
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
706
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
707
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
708
|
+
}>;
|
|
709
|
+
}>;
|
|
710
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
711
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
712
|
+
}>;
|
|
713
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
714
|
+
}>;
|
|
715
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
668
716
|
}>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
669
717
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
670
718
|
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -828,6 +876,30 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
828
876
|
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
829
877
|
}>;
|
|
830
878
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
879
|
+
}> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
880
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
881
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
882
|
+
aggregate: import("@chainsafe/ssz").ContainerType<{
|
|
883
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
884
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
885
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
886
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
887
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
888
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
889
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
890
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
891
|
+
}>;
|
|
892
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
893
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
894
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
895
|
+
}>;
|
|
896
|
+
}>;
|
|
897
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
898
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
899
|
+
}>;
|
|
900
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
901
|
+
}>;
|
|
902
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
831
903
|
}>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
|
|
832
904
|
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
833
905
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -942,6 +1014,23 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
942
1014
|
}>;
|
|
943
1015
|
}>;
|
|
944
1016
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1017
|
+
}> | import("@chainsafe/ssz").ValueOfFields<{
|
|
1018
|
+
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1019
|
+
attesterIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1020
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
1021
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1022
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1023
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1024
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
1025
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1026
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1027
|
+
}>;
|
|
1028
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
1029
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1030
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1031
|
+
}>;
|
|
1032
|
+
}>;
|
|
1033
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
945
1034
|
}>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
946
1035
|
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
947
1036
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -1056,6 +1145,23 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1056
1145
|
}>;
|
|
1057
1146
|
}>;
|
|
1058
1147
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1148
|
+
}> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
1149
|
+
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1150
|
+
attesterIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1151
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
1152
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1153
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1154
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1155
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
1156
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1157
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1158
|
+
}>;
|
|
1159
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
1160
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1161
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1162
|
+
}>;
|
|
1163
|
+
}>;
|
|
1164
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1059
1165
|
}>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
1060
1166
|
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
1061
1167
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -1170,6 +1276,23 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1170
1276
|
}>;
|
|
1171
1277
|
}>;
|
|
1172
1278
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1279
|
+
}> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
1280
|
+
committeeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1281
|
+
attesterIndex: import("@chainsafe/ssz").UintNumberType;
|
|
1282
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
1283
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
1284
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
1285
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1286
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
1287
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1288
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1289
|
+
}>;
|
|
1290
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
1291
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
1292
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1293
|
+
}>;
|
|
1294
|
+
}>;
|
|
1295
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1173
1296
|
}>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
|
|
1174
1297
|
attestation1: import("@chainsafe/ssz").ContainerType<{
|
|
1175
1298
|
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
@@ -1415,6 +1538,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1415
1538
|
}>;
|
|
1416
1539
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1417
1540
|
}>;
|
|
1541
|
+
}> | import("@chainsafe/ssz").ValueOfFields<{
|
|
1542
|
+
attestation1: import("@chainsafe/ssz").ContainerType<{
|
|
1543
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1544
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
1545
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1546
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
1547
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1548
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
1549
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1550
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1551
|
+
}>;
|
|
1552
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
1553
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1554
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1555
|
+
}>;
|
|
1556
|
+
}>;
|
|
1557
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1558
|
+
}>;
|
|
1559
|
+
attestation2: import("@chainsafe/ssz").ContainerType<{
|
|
1560
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1561
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
1562
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1563
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
1564
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1565
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
1566
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1567
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1568
|
+
}>;
|
|
1569
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
1570
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1571
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1572
|
+
}>;
|
|
1573
|
+
}>;
|
|
1574
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1575
|
+
}>;
|
|
1418
1576
|
}>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
1419
1577
|
attestation1: import("@chainsafe/ssz").ContainerType<{
|
|
1420
1578
|
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
@@ -1660,7 +1818,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1660
1818
|
}>;
|
|
1661
1819
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1662
1820
|
}>;
|
|
1663
|
-
}
|
|
1821
|
+
}> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
1664
1822
|
attestation1: import("@chainsafe/ssz").ContainerType<{
|
|
1665
1823
|
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1666
1824
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -1695,7 +1853,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1695
1853
|
}>;
|
|
1696
1854
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1697
1855
|
}>;
|
|
1698
|
-
}
|
|
1856
|
+
}>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
1699
1857
|
attestation1: import("@chainsafe/ssz").ContainerType<{
|
|
1700
1858
|
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1701
1859
|
data: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -1905,45 +2063,115 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1905
2063
|
}>;
|
|
1906
2064
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1907
2065
|
}>;
|
|
1908
|
-
}
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
slot: import("@chainsafe/ssz").
|
|
2066
|
+
}> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
2067
|
+
attestation1: import("@chainsafe/ssz").ContainerType<{
|
|
2068
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
2069
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
2070
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
2071
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
1913
2072
|
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
2073
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
2074
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
2075
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
2076
|
+
}>;
|
|
2077
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
2078
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
2079
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
2080
|
+
}>;
|
|
1917
2081
|
}>;
|
|
1918
|
-
|
|
2082
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1919
2083
|
}>;
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
2084
|
+
attestation2: import("@chainsafe/ssz").ContainerType<{
|
|
2085
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
2086
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
2087
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
2088
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
2089
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2090
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
2091
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
2092
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
2093
|
+
}>;
|
|
2094
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
2095
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
2096
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
2097
|
+
}>;
|
|
1934
2098
|
}>;
|
|
2099
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1935
2100
|
}>;
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
2101
|
+
}> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
2102
|
+
attestation1: import("@chainsafe/ssz").ContainerType<{
|
|
2103
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
2104
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
2105
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
2106
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
2107
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2108
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
2109
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
2110
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
2111
|
+
}>;
|
|
2112
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
2113
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
2114
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
2115
|
+
}>;
|
|
2116
|
+
}>;
|
|
2117
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
2118
|
+
}>;
|
|
2119
|
+
attestation2: import("@chainsafe/ssz").ContainerType<{
|
|
2120
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
2121
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
2122
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
2123
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
2124
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2125
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
2126
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
2127
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
2128
|
+
}>;
|
|
2129
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
2130
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
2131
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
2132
|
+
}>;
|
|
2133
|
+
}>;
|
|
2134
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
2135
|
+
}>;
|
|
2136
|
+
}>> | import("@chainsafe/ssz").ContainerType<{
|
|
2137
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
2138
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
2139
|
+
contribution: import("@chainsafe/ssz").ContainerType<{
|
|
2140
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
2141
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2142
|
+
subcommitteeIndex: import("@chainsafe/ssz").UintNumberType;
|
|
2143
|
+
aggregationBits: import("@chainsafe/ssz").BitVectorType;
|
|
2144
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
2145
|
+
}>;
|
|
2146
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
2147
|
+
}>;
|
|
2148
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
2149
|
+
}> | import("@chainsafe/ssz").ContainerType<{
|
|
2150
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
2151
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2152
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
2153
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
2154
|
+
}> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
|
|
2155
|
+
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
2156
|
+
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
2157
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
2158
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
2159
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2160
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2161
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2162
|
+
}>;
|
|
2163
|
+
}>;
|
|
2164
|
+
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
2165
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
2166
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
2167
|
+
}>;
|
|
2168
|
+
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
2169
|
+
}> | import("@chainsafe/ssz").ValueOfFields<{
|
|
2170
|
+
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
2171
|
+
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
2172
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
2173
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
2174
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1947
2175
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1948
2176
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1949
2177
|
}>;
|
|
@@ -2091,6 +2319,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
2091
2319
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
2092
2320
|
}>;
|
|
2093
2321
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
2322
|
+
}> | import("@chainsafe/ssz").ValueOfFields<{
|
|
2323
|
+
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
2324
|
+
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
2325
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
2326
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
2327
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2328
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2329
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2330
|
+
}>;
|
|
2331
|
+
execution: import("@chainsafe/ssz").ContainerType<{
|
|
2332
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
2333
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
2334
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2335
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2336
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2337
|
+
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
2338
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2339
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2340
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
2341
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
2342
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
2343
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
2344
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
2345
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
2346
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
2347
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
2348
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2349
|
+
}>;
|
|
2350
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
2351
|
+
}>;
|
|
2352
|
+
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
2353
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
2354
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
2355
|
+
}>;
|
|
2356
|
+
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
2094
2357
|
}>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
2095
2358
|
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
2096
2359
|
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -2259,6 +2522,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
2259
2522
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
2260
2523
|
}>;
|
|
2261
2524
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
2525
|
+
}> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
2526
|
+
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
2527
|
+
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
2528
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
2529
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
2530
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2531
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2532
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2533
|
+
}>;
|
|
2534
|
+
execution: import("@chainsafe/ssz").ContainerType<{
|
|
2535
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
2536
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
2537
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2538
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2539
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2540
|
+
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
2541
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2542
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2543
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
2544
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
2545
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
2546
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
2547
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
2548
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
2549
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
2550
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
2551
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2552
|
+
}>;
|
|
2553
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
2554
|
+
}>;
|
|
2555
|
+
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
2556
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
2557
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
2558
|
+
}>;
|
|
2559
|
+
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
2262
2560
|
}>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
2263
2561
|
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
2264
2562
|
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -2427,6 +2725,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
2427
2725
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
2428
2726
|
}>;
|
|
2429
2727
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
2728
|
+
}> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
2729
|
+
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
2730
|
+
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
2731
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
2732
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
2733
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2734
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2735
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2736
|
+
}>;
|
|
2737
|
+
execution: import("@chainsafe/ssz").ContainerType<{
|
|
2738
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
2739
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
2740
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2741
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2742
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2743
|
+
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
2744
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2745
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2746
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
2747
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
2748
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
2749
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
2750
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
2751
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
2752
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
2753
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
2754
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2755
|
+
}>;
|
|
2756
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
2757
|
+
}>;
|
|
2758
|
+
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
2759
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
2760
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
2761
|
+
}>;
|
|
2762
|
+
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
2430
2763
|
}>> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
|
|
2431
2764
|
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
2432
2765
|
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -2733,6 +3066,71 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
2733
3066
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
2734
3067
|
}>;
|
|
2735
3068
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
3069
|
+
}> | import("@chainsafe/ssz").ValueOfFields<{
|
|
3070
|
+
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
3071
|
+
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
3072
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
3073
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
3074
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3075
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3076
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3077
|
+
}>;
|
|
3078
|
+
execution: import("@chainsafe/ssz").ContainerType<{
|
|
3079
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
3080
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
3081
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3082
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3083
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3084
|
+
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
3085
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3086
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3087
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
3088
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
3089
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
3090
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
3091
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
3092
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
3093
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
3094
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
3095
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3096
|
+
}>;
|
|
3097
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
3098
|
+
}>;
|
|
3099
|
+
finalizedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
3100
|
+
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
3101
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
3102
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
3103
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3104
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3105
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3106
|
+
}>;
|
|
3107
|
+
execution: import("@chainsafe/ssz").ContainerType<{
|
|
3108
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
3109
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
3110
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3111
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3112
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3113
|
+
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
3114
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3115
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3116
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
3117
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
3118
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
3119
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
3120
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
3121
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
3122
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
3123
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
3124
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3125
|
+
}>;
|
|
3126
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
3127
|
+
}>;
|
|
3128
|
+
finalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
3129
|
+
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
3130
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
3131
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
3132
|
+
}>;
|
|
3133
|
+
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
2736
3134
|
}>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
2737
3135
|
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
2738
3136
|
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -3039,6 +3437,71 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
3039
3437
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
3040
3438
|
}>;
|
|
3041
3439
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
3440
|
+
}> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
3441
|
+
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
3442
|
+
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
3443
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
3444
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
3445
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3446
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3447
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3448
|
+
}>;
|
|
3449
|
+
execution: import("@chainsafe/ssz").ContainerType<{
|
|
3450
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
3451
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
3452
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3453
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3454
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3455
|
+
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
3456
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3457
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3458
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
3459
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
3460
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
3461
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
3462
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
3463
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
3464
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
3465
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
3466
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3467
|
+
}>;
|
|
3468
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
3469
|
+
}>;
|
|
3470
|
+
finalizedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
3471
|
+
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
3472
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
3473
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
3474
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3475
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3476
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3477
|
+
}>;
|
|
3478
|
+
execution: import("@chainsafe/ssz").ContainerType<{
|
|
3479
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
3480
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
3481
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3482
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3483
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3484
|
+
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
3485
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3486
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3487
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
3488
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
3489
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
3490
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
3491
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
3492
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
3493
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
3494
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
3495
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3496
|
+
}>;
|
|
3497
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
3498
|
+
}>;
|
|
3499
|
+
finalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
3500
|
+
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
3501
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
3502
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
3503
|
+
}>;
|
|
3504
|
+
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
3042
3505
|
}>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
3043
3506
|
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
3044
3507
|
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
@@ -3345,6 +3808,71 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
3345
3808
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
3346
3809
|
}>;
|
|
3347
3810
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
3811
|
+
}> | import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
3812
|
+
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
3813
|
+
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
3814
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
3815
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
3816
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3817
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3818
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3819
|
+
}>;
|
|
3820
|
+
execution: import("@chainsafe/ssz").ContainerType<{
|
|
3821
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
3822
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
3823
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3824
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3825
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3826
|
+
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
3827
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3828
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3829
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
3830
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
3831
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
3832
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
3833
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
3834
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
3835
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
3836
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
3837
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3838
|
+
}>;
|
|
3839
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
3840
|
+
}>;
|
|
3841
|
+
finalizedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
3842
|
+
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
3843
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
3844
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
3845
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3846
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3847
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3848
|
+
}>;
|
|
3849
|
+
execution: import("@chainsafe/ssz").ContainerType<{
|
|
3850
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
3851
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
3852
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3853
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3854
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3855
|
+
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
3856
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3857
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
3858
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
3859
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
3860
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
3861
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
3862
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
3863
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
3864
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
3865
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
3866
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
3867
|
+
}>;
|
|
3868
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
3869
|
+
}>;
|
|
3870
|
+
finalityBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
3871
|
+
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
3872
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
3873
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
3874
|
+
}>;
|
|
3875
|
+
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
3348
3876
|
}>>;
|
|
3349
3877
|
/**
|
|
3350
3878
|
* Deserialize a gossip serialized data into an ssz object.
|