@lodestar/beacon-node 1.34.0-dev.0c7dfe25ea → 1.34.0-dev.11ca515d52
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 +52 -40
- package/lib/api/impl/beacon/blocks/index.js.map +1 -1
- package/lib/api/impl/beacon/pool/index.js +5 -5
- 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/events/index.js +1 -1
- package/lib/api/impl/events/index.js.map +1 -1
- package/lib/api/impl/validator/index.js +64 -47
- 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/blowfishBanner.js +1 -0
- package/lib/chain/blocks/utils/blowfishBanner.js.map +1 -1
- package/lib/chain/blocks/utils/giraffeBanner.js +1 -0
- package/lib/chain/blocks/utils/giraffeBanner.js.map +1 -1
- package/lib/chain/blocks/utils/zebraBanner.d.ts +2 -0
- package/lib/chain/blocks/utils/zebraBanner.js +46 -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/bls/multithread/index.js +2 -2
- package/lib/chain/bls/multithread/index.js.map +1 -1
- package/lib/chain/chain.d.ts +8 -80
- package/lib/chain/chain.js +52 -84
- package/lib/chain/chain.js.map +1 -1
- package/lib/chain/forkChoice/index.d.ts +2 -1
- package/lib/chain/forkChoice/index.js +2 -2
- package/lib/chain/forkChoice/index.js.map +1 -1
- package/lib/chain/interface.d.ts +3 -10
- package/lib/chain/interface.js.map +1 -1
- package/lib/chain/opPools/aggregatedAttestationPool.js +13 -3
- package/lib/chain/opPools/aggregatedAttestationPool.js.map +1 -1
- package/lib/chain/opPools/attestationPool.d.ts +1 -1
- package/lib/chain/opPools/attestationPool.js +7 -7
- package/lib/chain/prepareNextSlot.js +4 -2
- 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/aggregateAndProof.d.ts +1 -1
- package/lib/chain/validation/aggregateAndProof.js +8 -8
- package/lib/chain/validation/aggregateAndProof.js.map +1 -1
- package/lib/chain/validation/attestation.d.ts +3 -3
- package/lib/chain/validation/attestation.js +10 -10
- package/lib/chain/validation/attestation.js.map +1 -1
- package/lib/chain/validation/dataColumnSidecar.d.ts +2 -1
- package/lib/chain/validation/dataColumnSidecar.js +17 -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/db/repositories/stateArchive.js +1 -1
- package/lib/db/repositories/stateArchive.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 +10 -5
- 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/execution/engine/utils.js +1 -1
- package/lib/execution/engine/utils.js.map +1 -1
- package/lib/metrics/metrics/beacon.d.ts +2 -28
- package/lib/metrics/metrics/beacon.js +9 -75
- package/lib/metrics/metrics/beacon.js.map +1 -1
- package/lib/metrics/metrics/lodestar.d.ts +6 -0
- package/lib/metrics/metrics/lodestar.js +14 -0
- package/lib/metrics/metrics/lodestar.js.map +1 -1
- package/lib/metrics/metrics.d.ts +2 -1
- package/lib/metrics/metrics.js +3 -0
- package/lib/metrics/metrics.js.map +1 -1
- package/lib/network/core/networkCore.js +0 -1
- package/lib/network/core/networkCore.js.map +1 -1
- package/lib/network/core/networkCoreWorkerHandler.js +1 -1
- package/lib/network/core/networkCoreWorkerHandler.js.map +1 -1
- package/lib/network/gossip/scoringParameters.js.map +1 -1
- package/lib/network/gossip/topic.d.ts +620 -92
- 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 +9 -6
- 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 +22 -19
- 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 +55 -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 +43 -35
- 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/network/reqresp/utils/dataColumnResponseValidation.d.ts +14 -0
- package/lib/network/reqresp/utils/dataColumnResponseValidation.js +56 -0
- package/lib/network/reqresp/utils/dataColumnResponseValidation.js.map +1 -0
- package/lib/sync/backfill/backfill.js +1 -1
- package/lib/sync/backfill/backfill.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 +36 -27
- package/lib/util/dataColumns.js.map +1 -1
- package/lib/util/queue/fnQueue.js +1 -1
- package/lib/util/queue/fnQueue.js.map +1 -1
- package/lib/util/queue/itemQueue.js +1 -1
- package/lib/util/queue/itemQueue.js.map +1 -1
- package/lib/util/sszBytes.d.ts +2 -0
- package/lib/util/sszBytes.js +23 -0
- package/lib/util/sszBytes.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 +17 -18
- 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,12 +21,61 @@ 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
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
26
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
27
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
28
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
29
41
|
body: import("@chainsafe/ssz").ContainerType<{
|
|
42
|
+
executionPayload: import("@chainsafe/ssz").ContainerType<{
|
|
43
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
44
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
45
|
+
withdrawals: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
46
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
47
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
48
|
+
address: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
49
|
+
amount: import("@chainsafe/ssz").UintBigintType;
|
|
50
|
+
}>>;
|
|
51
|
+
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
52
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
53
|
+
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
54
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
55
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
56
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
57
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
58
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
59
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
60
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
61
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
62
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
63
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
64
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
65
|
+
}>;
|
|
66
|
+
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
67
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
68
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
69
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
70
|
+
toExecutionAddress: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
71
|
+
}>;
|
|
72
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
73
|
+
}>>;
|
|
74
|
+
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
75
|
+
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
76
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
77
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
78
|
+
}>;
|
|
30
79
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
31
80
|
eth1Data: import("@chainsafe/ssz").ContainerType<{
|
|
32
81
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -126,82 +175,19 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
126
175
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
127
176
|
}>>;
|
|
128
177
|
}>;
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
message: import("@chainsafe/ssz").ContainerType<{
|
|
134
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
135
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
136
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
137
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
138
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
139
|
-
}>;
|
|
140
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
141
|
-
}>;
|
|
142
|
-
signedHeader2: import("@chainsafe/ssz").ContainerType<{
|
|
143
|
-
message: import("@chainsafe/ssz").ContainerType<{
|
|
144
|
-
slot: import("@chainsafe/ssz").UintBigintType;
|
|
145
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
146
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
147
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
148
|
-
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
149
|
-
}>;
|
|
150
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
151
|
-
}>;
|
|
152
|
-
}> | import("@chainsafe/ssz").ContainerType<{
|
|
153
|
-
message: import("@chainsafe/ssz").ContainerType<{
|
|
154
|
-
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
155
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
156
|
-
}>;
|
|
157
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
158
|
-
}> | import("@chainsafe/ssz").ContainerType<{
|
|
159
|
-
message: import("@chainsafe/ssz").ContainerType<{
|
|
160
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
161
|
-
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
162
|
-
toExecutionAddress: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
178
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
179
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
180
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
181
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
163
182
|
}>;
|
|
164
183
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
165
184
|
}> | import("@chainsafe/ssz").ContainerType<{
|
|
166
185
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
186
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
187
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
188
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
189
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
167
190
|
body: import("@chainsafe/ssz").ContainerType<{
|
|
168
|
-
executionPayload: import("@chainsafe/ssz").ContainerType<{
|
|
169
|
-
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
170
|
-
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
171
|
-
withdrawals: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
172
|
-
index: import("@chainsafe/ssz").UintNumberType;
|
|
173
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
174
|
-
address: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
175
|
-
amount: import("@chainsafe/ssz").UintBigintType;
|
|
176
|
-
}>>;
|
|
177
|
-
transactions: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteListType>;
|
|
178
|
-
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
179
|
-
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
180
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
181
|
-
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
182
|
-
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
183
|
-
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
184
|
-
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
185
|
-
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
186
|
-
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
187
|
-
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
188
|
-
extraData: import("@chainsafe/ssz").ByteListType;
|
|
189
|
-
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
190
|
-
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
191
|
-
}>;
|
|
192
|
-
blsToExecutionChanges: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ContainerType<{
|
|
193
|
-
message: import("@chainsafe/ssz").ContainerType<{
|
|
194
|
-
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
195
|
-
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
196
|
-
toExecutionAddress: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
197
|
-
}>;
|
|
198
|
-
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
199
|
-
}>>;
|
|
200
|
-
blobKzgCommitments: import("@chainsafe/ssz").ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
201
|
-
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
202
|
-
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
203
|
-
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
204
|
-
}>;
|
|
205
191
|
randaoReveal: import("@chainsafe/ssz").ByteVectorType;
|
|
206
192
|
eth1Data: import("@chainsafe/ssz").ContainerType<{
|
|
207
193
|
depositRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -301,20 +287,12 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
301
287
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
302
288
|
}>>;
|
|
303
289
|
}>;
|
|
304
|
-
slot: import("@chainsafe/ssz").UintNumberType;
|
|
305
|
-
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
306
|
-
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
307
|
-
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
308
290
|
}>;
|
|
309
291
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
310
292
|
}> | import("@chainsafe/ssz").ContainerType<{
|
|
311
|
-
|
|
312
|
-
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
313
|
-
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
314
|
-
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
315
|
-
signedBlockHeader: import("@chainsafe/ssz").ContainerType<{
|
|
293
|
+
signedHeader1: import("@chainsafe/ssz").ContainerType<{
|
|
316
294
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
317
|
-
slot: import("@chainsafe/ssz").
|
|
295
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
318
296
|
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
319
297
|
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
320
298
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -322,12 +300,34 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
322
300
|
}>;
|
|
323
301
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
324
302
|
}>;
|
|
325
|
-
|
|
303
|
+
signedHeader2: import("@chainsafe/ssz").ContainerType<{
|
|
304
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
305
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
306
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
307
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
308
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
309
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
310
|
+
}>;
|
|
311
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
312
|
+
}>;
|
|
313
|
+
}> | import("@chainsafe/ssz").ContainerType<{
|
|
314
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
315
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
316
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
317
|
+
}>;
|
|
318
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
319
|
+
}> | import("@chainsafe/ssz").ContainerType<{
|
|
320
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
321
|
+
validatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
322
|
+
fromBlsPubkey: import("@chainsafe/ssz").ByteVectorType;
|
|
323
|
+
toExecutionAddress: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
324
|
+
}>;
|
|
325
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
326
326
|
}> | import("@chainsafe/ssz").ContainerType<{
|
|
327
327
|
index: import("@chainsafe/ssz").UintNumberType;
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
328
|
+
blob: import("@chainsafe/ssz").ByteVectorType;
|
|
329
|
+
kzgCommitment: import("@chainsafe/ssz").ByteVectorType;
|
|
330
|
+
kzgProof: import("@chainsafe/ssz").ByteVectorType;
|
|
331
331
|
signedBlockHeader: import("@chainsafe/ssz").ContainerType<{
|
|
332
332
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
333
333
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -338,7 +338,7 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
338
338
|
}>;
|
|
339
339
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
340
340
|
}>;
|
|
341
|
-
|
|
341
|
+
kzgCommitmentInclusionProof: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
342
342
|
}> | import("@chainsafe/ssz").CompositeType<import("@chainsafe/ssz").ValueOfFields<{
|
|
343
343
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
344
344
|
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -502,6 +502,30 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
502
502
|
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
503
503
|
}>;
|
|
504
504
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
505
|
+
}> | import("@chainsafe/ssz").ValueOfFields<{
|
|
506
|
+
message: import("@chainsafe/ssz").ContainerType<{
|
|
507
|
+
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
508
|
+
aggregate: import("@chainsafe/ssz").ContainerType<{
|
|
509
|
+
aggregationBits: import("@chainsafe/ssz").BitListType;
|
|
510
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
511
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
512
|
+
index: import("@chainsafe/ssz").UintNumberType;
|
|
513
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
514
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
515
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
516
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
517
|
+
}>;
|
|
518
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
519
|
+
epoch: import("@chainsafe/ssz").UintNumberType;
|
|
520
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
521
|
+
}>;
|
|
522
|
+
}>;
|
|
523
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
524
|
+
committeeBits: import("@chainsafe/ssz").BitVectorType;
|
|
525
|
+
}>;
|
|
526
|
+
selectionProof: import("@chainsafe/ssz").ByteVectorType;
|
|
527
|
+
}>;
|
|
528
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
505
529
|
}>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
506
530
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
507
531
|
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -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,6 +1818,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1660
1818
|
}>;
|
|
1661
1819
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1662
1820
|
}>;
|
|
1821
|
+
}> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
1822
|
+
attestation1: import("@chainsafe/ssz").ContainerType<{
|
|
1823
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1824
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
1825
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1826
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
1827
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1828
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
1829
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1830
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1831
|
+
}>;
|
|
1832
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
1833
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1834
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1835
|
+
}>;
|
|
1836
|
+
}>;
|
|
1837
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1838
|
+
}>;
|
|
1839
|
+
attestation2: import("@chainsafe/ssz").ContainerType<{
|
|
1840
|
+
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
1841
|
+
data: import("@chainsafe/ssz").ContainerType<{
|
|
1842
|
+
slot: import("@chainsafe/ssz").UintBigintType;
|
|
1843
|
+
index: import("@chainsafe/ssz").UintBigintType;
|
|
1844
|
+
beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
1845
|
+
source: import("@chainsafe/ssz").ContainerType<{
|
|
1846
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1847
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1848
|
+
}>;
|
|
1849
|
+
target: import("@chainsafe/ssz").ContainerType<{
|
|
1850
|
+
epoch: import("@chainsafe/ssz").UintBigintType;
|
|
1851
|
+
root: import("@chainsafe/ssz").ByteVectorType;
|
|
1852
|
+
}>;
|
|
1853
|
+
}>;
|
|
1854
|
+
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1855
|
+
}>;
|
|
1663
1856
|
}>, import("@chainsafe/ssz/lib/viewDU/container.js").ContainerTreeViewDUType<{
|
|
1664
1857
|
attestation1: import("@chainsafe/ssz").ContainerType<{
|
|
1665
1858
|
attestingIndices: import("@chainsafe/ssz").ListBasicType<import("@chainsafe/ssz").UintNumberType>;
|
|
@@ -1905,6 +2098,41 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
1905
2098
|
}>;
|
|
1906
2099
|
signature: import("@chainsafe/ssz").ByteVectorType;
|
|
1907
2100
|
}>;
|
|
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
|
+
}>;
|
|
1908
2136
|
}>> | import("@chainsafe/ssz").ContainerType<{
|
|
1909
2137
|
message: import("@chainsafe/ssz").ContainerType<{
|
|
1910
2138
|
aggregatorIndex: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -2084,14 +2312,64 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
2084
2312
|
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
2085
2313
|
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2086
2314
|
}>;
|
|
2087
|
-
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
2315
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
2316
|
+
}>;
|
|
2317
|
+
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
2318
|
+
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
2319
|
+
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
2320
|
+
}>;
|
|
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;
|
|
2357
|
+
}>, import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
2358
|
+
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
2359
|
+
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
2360
|
+
slot: import("@chainsafe/ssz").UintNumberType;
|
|
2361
|
+
proposerIndex: import("@chainsafe/ssz").UintNumberType;
|
|
2362
|
+
parentRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2363
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2364
|
+
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2365
|
+
}>;
|
|
2088
2366
|
}>;
|
|
2089
2367
|
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
2090
2368
|
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
2091
2369
|
syncCommitteeSignature: import("@chainsafe/ssz").ByteVectorType;
|
|
2092
2370
|
}>;
|
|
2093
2371
|
signatureSlot: import("@chainsafe/ssz").UintNumberType;
|
|
2094
|
-
}
|
|
2372
|
+
}> | import("@chainsafe/ssz/lib/view/container.js").ContainerTreeViewType<{
|
|
2095
2373
|
attestedHeader: import("@chainsafe/ssz").ContainerType<{
|
|
2096
2374
|
beacon: import("@chainsafe/ssz").ContainerType<{
|
|
2097
2375
|
slot: import("@chainsafe/ssz").UintNumberType;
|
|
@@ -2115,6 +2393,24 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
2115
2393
|
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2116
2394
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2117
2395
|
}>;
|
|
2396
|
+
execution: import("@chainsafe/ssz").ContainerType<{
|
|
2397
|
+
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2398
|
+
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2399
|
+
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2400
|
+
feeRecipient: import("@lodestar/types/lib/utils/executionAddress.js").ExecutionAddressType;
|
|
2401
|
+
stateRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2402
|
+
receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2403
|
+
logsBloom: import("@chainsafe/ssz").ByteVectorType;
|
|
2404
|
+
prevRandao: import("@chainsafe/ssz").ByteVectorType;
|
|
2405
|
+
blockNumber: import("@chainsafe/ssz").UintNumberType;
|
|
2406
|
+
gasLimit: import("@chainsafe/ssz").UintNumberType;
|
|
2407
|
+
gasUsed: import("@chainsafe/ssz").UintNumberType;
|
|
2408
|
+
timestamp: import("@chainsafe/ssz").UintNumberType;
|
|
2409
|
+
extraData: import("@chainsafe/ssz").ByteListType;
|
|
2410
|
+
baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
|
|
2411
|
+
blockHash: import("@chainsafe/ssz").ByteVectorType;
|
|
2412
|
+
}>;
|
|
2413
|
+
executionBranch: import("@chainsafe/ssz").VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
|
|
2118
2414
|
}>;
|
|
2119
2415
|
syncAggregate: import("@chainsafe/ssz").ContainerType<{
|
|
2120
2416
|
syncCommitteeBits: import("@chainsafe/ssz").BitVectorType;
|
|
@@ -2131,6 +2427,8 @@ export declare function getGossipSSZType(topic: GossipTopic): import("@chainsafe
|
|
|
2131
2427
|
bodyRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2132
2428
|
}>;
|
|
2133
2429
|
execution: import("@chainsafe/ssz").ContainerType<{
|
|
2430
|
+
blobGasUsed: import("@chainsafe/ssz").UintBigintType;
|
|
2431
|
+
excessBlobGas: import("@chainsafe/ssz").UintBigintType;
|
|
2134
2432
|
withdrawalsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2135
2433
|
transactionsRoot: import("@chainsafe/ssz").ByteVectorType;
|
|
2136
2434
|
parentHash: import("@chainsafe/ssz").ByteVectorType;
|
|
@@ -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.
|