@lodestar/beacon-node 1.47.0-dev.0bcaaaebb5 → 1.47.0-dev.101e2c290d
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.d.ts.map +1 -1
- package/lib/api/impl/beacon/blocks/index.js +6 -8
- package/lib/api/impl/beacon/blocks/index.js.map +1 -1
- package/lib/api/impl/beacon/pool/index.d.ts.map +1 -1
- package/lib/api/impl/beacon/pool/index.js +25 -2
- package/lib/api/impl/beacon/pool/index.js.map +1 -1
- package/lib/api/impl/beacon/state/utils.d.ts +2 -1
- package/lib/api/impl/beacon/state/utils.d.ts.map +1 -1
- package/lib/api/impl/beacon/state/utils.js.map +1 -1
- package/lib/api/impl/events/index.d.ts +1 -1
- package/lib/api/impl/events/index.d.ts.map +1 -1
- package/lib/api/impl/events/index.js +12 -3
- package/lib/api/impl/events/index.js.map +1 -1
- package/lib/api/impl/lodestar/index.js +1 -1
- package/lib/api/impl/lodestar/index.js.map +1 -1
- package/lib/api/impl/validator/index.js +1 -1
- package/lib/api/impl/validator/index.js.map +1 -1
- package/lib/api/rest/base.d.ts.map +1 -1
- package/lib/api/rest/base.js +7 -0
- package/lib/api/rest/base.js.map +1 -1
- package/lib/chain/archiveStore/archiveStore.js +1 -1
- package/lib/chain/archiveStore/archiveStore.js.map +1 -1
- package/lib/chain/archiveStore/historicalState/metrics.d.ts.map +1 -1
- package/lib/chain/archiveStore/historicalState/metrics.js +21 -0
- package/lib/chain/archiveStore/historicalState/metrics.js.map +1 -1
- package/lib/chain/blocks/importBlock.d.ts.map +1 -1
- package/lib/chain/blocks/importBlock.js +2 -7
- package/lib/chain/blocks/importBlock.js.map +1 -1
- package/lib/chain/blocks/importExecutionPayload.d.ts +3 -2
- package/lib/chain/blocks/importExecutionPayload.d.ts.map +1 -1
- package/lib/chain/blocks/importExecutionPayload.js +11 -9
- package/lib/chain/blocks/importExecutionPayload.js.map +1 -1
- package/lib/chain/blocks/index.d.ts.map +1 -1
- package/lib/chain/blocks/index.js +14 -6
- package/lib/chain/blocks/index.js.map +1 -1
- package/lib/chain/blocks/payloadEnvelopeInput/payloadEnvelopeInput.d.ts +2 -1
- package/lib/chain/blocks/payloadEnvelopeInput/payloadEnvelopeInput.d.ts.map +1 -1
- package/lib/chain/blocks/payloadEnvelopeInput/payloadEnvelopeInput.js +6 -2
- package/lib/chain/blocks/payloadEnvelopeInput/payloadEnvelopeInput.js.map +1 -1
- package/lib/chain/blocks/payloadEnvelopeInput/types.d.ts +14 -5
- package/lib/chain/blocks/payloadEnvelopeInput/types.d.ts.map +1 -1
- package/lib/chain/blocks/payloadEnvelopeInput/types.js +5 -0
- package/lib/chain/blocks/payloadEnvelopeInput/types.js.map +1 -1
- package/lib/chain/blocks/verifyBlocksStateTransitionOnly.d.ts.map +1 -1
- package/lib/chain/blocks/verifyBlocksStateTransitionOnly.js +22 -12
- package/lib/chain/blocks/verifyBlocksStateTransitionOnly.js.map +1 -1
- package/lib/chain/blocks/verifyExecutionPayloadEnvelope.d.ts +2 -2
- package/lib/chain/blocks/verifyExecutionPayloadEnvelope.d.ts.map +1 -1
- package/lib/chain/blocks/verifyExecutionPayloadEnvelope.js +2 -2
- package/lib/chain/blocks/verifyExecutionPayloadEnvelope.js.map +1 -1
- package/lib/chain/bls/index.d.ts +1 -1
- package/lib/chain/bls/index.d.ts.map +1 -1
- package/lib/chain/bls/interface.d.ts +5 -5
- package/lib/chain/bls/interface.d.ts.map +1 -1
- package/lib/chain/bls/multithread/index.d.ts +5 -11
- package/lib/chain/bls/multithread/index.d.ts.map +1 -1
- package/lib/chain/bls/multithread/index.js +116 -101
- package/lib/chain/bls/multithread/index.js.map +1 -1
- package/lib/chain/bls/multithread/jobItem.d.ts +5 -19
- package/lib/chain/bls/multithread/jobItem.d.ts.map +1 -1
- package/lib/chain/bls/multithread/jobItem.js +10 -65
- package/lib/chain/bls/multithread/jobItem.js.map +1 -1
- package/lib/chain/bls/multithread/types.d.ts +29 -8
- package/lib/chain/bls/multithread/types.d.ts.map +1 -1
- package/lib/chain/bls/multithread/types.js +12 -0
- package/lib/chain/bls/multithread/types.js.map +1 -1
- package/lib/chain/bls/multithread/utils.d.ts +4 -0
- package/lib/chain/bls/multithread/utils.d.ts.map +1 -1
- package/lib/chain/bls/multithread/utils.js +10 -0
- package/lib/chain/bls/multithread/utils.js.map +1 -1
- package/lib/chain/bls/multithread/worker.js +49 -23
- package/lib/chain/bls/multithread/worker.js.map +1 -1
- package/lib/chain/bls/singleThread.d.ts +4 -10
- package/lib/chain/bls/singleThread.d.ts.map +1 -1
- package/lib/chain/bls/singleThread.js +8 -45
- package/lib/chain/bls/singleThread.js.map +1 -1
- package/lib/chain/bls/utils.d.ts +4 -4
- package/lib/chain/bls/utils.d.ts.map +1 -1
- package/lib/chain/bls/utils.js +18 -19
- package/lib/chain/bls/utils.js.map +1 -1
- package/lib/chain/builderCircuitBreaker.d.ts +6 -5
- package/lib/chain/builderCircuitBreaker.d.ts.map +1 -1
- package/lib/chain/builderCircuitBreaker.js +28 -15
- package/lib/chain/builderCircuitBreaker.js.map +1 -1
- package/lib/chain/chain.d.ts +4 -2
- package/lib/chain/chain.d.ts.map +1 -1
- package/lib/chain/chain.js +16 -6
- package/lib/chain/chain.js.map +1 -1
- package/lib/chain/errors/blockError.d.ts +1 -0
- package/lib/chain/errors/blockError.d.ts.map +1 -1
- package/lib/chain/errors/blockError.js +6 -1
- package/lib/chain/errors/blockError.js.map +1 -1
- package/lib/chain/errors/proposerPreferences.d.ts +6 -0
- package/lib/chain/errors/proposerPreferences.d.ts.map +1 -1
- package/lib/chain/errors/proposerPreferences.js +1 -0
- package/lib/chain/errors/proposerPreferences.js.map +1 -1
- package/lib/chain/forkChoice/index.d.ts.map +1 -1
- package/lib/chain/forkChoice/index.js +4 -0
- package/lib/chain/forkChoice/index.js.map +1 -1
- package/lib/chain/interface.d.ts +4 -2
- package/lib/chain/interface.d.ts.map +1 -1
- package/lib/chain/interface.js.map +1 -1
- package/lib/chain/opPools/aggregatedAttestationPool.js +1 -1
- package/lib/chain/opPools/aggregatedAttestationPool.js.map +1 -1
- package/lib/chain/opPools/attestationPool.d.ts +1 -1
- package/lib/chain/opPools/attestationPool.d.ts.map +1 -1
- package/lib/chain/opPools/attestationPool.js +1 -1
- package/lib/chain/opPools/attestationPool.js.map +1 -1
- package/lib/chain/opPools/deferredVoluntaryExitPool.d.ts +16 -0
- package/lib/chain/opPools/deferredVoluntaryExitPool.d.ts.map +1 -0
- package/lib/chain/opPools/deferredVoluntaryExitPool.js +57 -0
- package/lib/chain/opPools/deferredVoluntaryExitPool.js.map +1 -0
- package/lib/chain/opPools/index.d.ts +1 -0
- package/lib/chain/opPools/index.d.ts.map +1 -1
- package/lib/chain/opPools/index.js +1 -0
- package/lib/chain/opPools/index.js.map +1 -1
- package/lib/chain/opPools/payloadAttestationPool.js +3 -3
- package/lib/chain/opPools/payloadAttestationPool.js.map +1 -1
- package/lib/chain/opPools/syncCommitteeMessagePool.js +1 -1
- package/lib/chain/opPools/syncCommitteeMessagePool.js.map +1 -1
- package/lib/chain/opPools/syncContributionAndProofPool.js +1 -1
- package/lib/chain/opPools/syncContributionAndProofPool.js.map +1 -1
- package/lib/chain/opPools/utils.d.ts +1 -1
- package/lib/chain/opPools/utils.d.ts.map +1 -1
- package/lib/chain/opPools/utils.js +1 -1
- package/lib/chain/opPools/utils.js.map +1 -1
- package/lib/chain/options.d.ts +1 -1
- package/lib/chain/options.d.ts.map +1 -1
- package/lib/chain/prepareNextSlot.d.ts.map +1 -1
- package/lib/chain/prepareNextSlot.js +24 -6
- package/lib/chain/prepareNextSlot.js.map +1 -1
- package/lib/chain/regen/interface.d.ts +4 -2
- package/lib/chain/regen/interface.d.ts.map +1 -1
- package/lib/chain/regen/interface.js +2 -0
- package/lib/chain/regen/interface.js.map +1 -1
- package/lib/chain/regen/queued.d.ts +2 -2
- package/lib/chain/regen/queued.d.ts.map +1 -1
- package/lib/chain/regen/queued.js +5 -5
- package/lib/chain/regen/queued.js.map +1 -1
- package/lib/chain/seenCache/seenAttesters.d.ts +9 -5
- package/lib/chain/seenCache/seenAttesters.d.ts.map +1 -1
- package/lib/chain/seenCache/seenAttesters.js +25 -4
- package/lib/chain/seenCache/seenAttesters.js.map +1 -1
- package/lib/chain/seenCache/seenPayloadEnvelopeInput.d.ts +28 -1
- package/lib/chain/seenCache/seenPayloadEnvelopeInput.d.ts.map +1 -1
- package/lib/chain/seenCache/seenPayloadEnvelopeInput.js +121 -13
- package/lib/chain/seenCache/seenPayloadEnvelopeInput.js.map +1 -1
- package/lib/chain/stateCache/fifoBlockStateCache.d.ts +5 -1
- package/lib/chain/stateCache/fifoBlockStateCache.d.ts.map +1 -1
- package/lib/chain/stateCache/fifoBlockStateCache.js +6 -0
- package/lib/chain/stateCache/fifoBlockStateCache.js.map +1 -1
- package/lib/chain/stateCache/persistentCheckpointsCache.d.ts +47 -5
- package/lib/chain/stateCache/persistentCheckpointsCache.d.ts.map +1 -1
- package/lib/chain/stateCache/persistentCheckpointsCache.js +117 -7
- package/lib/chain/stateCache/persistentCheckpointsCache.js.map +1 -1
- package/lib/chain/stateCache/types.d.ts +3 -3
- package/lib/chain/stateCache/types.d.ts.map +1 -1
- package/lib/chain/validation/attestation.d.ts.map +1 -1
- package/lib/chain/validation/attestation.js +1 -4
- package/lib/chain/validation/attestation.js.map +1 -1
- package/lib/chain/validation/attesterSlashing.d.ts.map +1 -1
- package/lib/chain/validation/attesterSlashing.js +1 -1
- package/lib/chain/validation/attesterSlashing.js.map +1 -1
- package/lib/chain/validation/executionPayloadBid.d.ts.map +1 -1
- package/lib/chain/validation/executionPayloadBid.js +1 -2
- package/lib/chain/validation/executionPayloadBid.js.map +1 -1
- package/lib/chain/validation/executionPayloadEnvelope.js +1 -1
- package/lib/chain/validation/executionPayloadEnvelope.js.map +1 -1
- package/lib/chain/validation/payloadAttestationMessage.d.ts.map +1 -1
- package/lib/chain/validation/payloadAttestationMessage.js +5 -14
- package/lib/chain/validation/payloadAttestationMessage.js.map +1 -1
- package/lib/chain/validation/proposerPreferences.d.ts +1 -1
- package/lib/chain/validation/proposerPreferences.d.ts.map +1 -1
- package/lib/chain/validation/proposerPreferences.js +13 -4
- package/lib/chain/validation/proposerPreferences.js.map +1 -1
- package/lib/chain/validation/proposerSlashing.js +1 -1
- package/lib/chain/validation/proposerSlashing.js.map +1 -1
- package/lib/chain/validation/voluntaryExit.d.ts +9 -1
- package/lib/chain/validation/voluntaryExit.d.ts.map +1 -1
- package/lib/chain/validation/voluntaryExit.js +46 -1
- package/lib/chain/validation/voluntaryExit.js.map +1 -1
- package/lib/execution/builder/http.d.ts +10 -7
- package/lib/execution/builder/http.d.ts.map +1 -1
- package/lib/execution/builder/http.js +11 -8
- package/lib/execution/builder/http.js.map +1 -1
- package/lib/metrics/metrics/beacon.d.ts +3 -3
- package/lib/metrics/metrics/beacon.d.ts.map +1 -1
- package/lib/metrics/metrics/beacon.js +9 -9
- package/lib/metrics/metrics/beacon.js.map +1 -1
- package/lib/metrics/metrics/lodestar.d.ts +72 -22
- package/lib/metrics/metrics/lodestar.d.ts.map +1 -1
- package/lib/metrics/metrics/lodestar.js +130 -52
- package/lib/metrics/metrics/lodestar.js.map +1 -1
- package/lib/network/gossip/topic.d.ts +13 -0
- package/lib/network/gossip/topic.d.ts.map +1 -1
- package/lib/network/gossip/topic.js +37 -0
- package/lib/network/gossip/topic.js.map +1 -1
- package/lib/network/libp2p/index.d.ts.map +1 -1
- package/lib/network/libp2p/index.js +10 -2
- package/lib/network/libp2p/index.js.map +1 -1
- package/lib/network/network.d.ts.map +1 -1
- package/lib/network/network.js +22 -43
- package/lib/network/network.js.map +1 -1
- package/lib/network/processor/constants.d.ts +7 -0
- package/lib/network/processor/constants.d.ts.map +1 -0
- package/lib/network/processor/constants.js +7 -0
- package/lib/network/processor/constants.js.map +1 -0
- package/lib/network/processor/gossipHandlers.d.ts.map +1 -1
- package/lib/network/processor/gossipHandlers.js +12 -3
- package/lib/network/processor/gossipHandlers.js.map +1 -1
- package/lib/network/processor/index.d.ts +3 -0
- package/lib/network/processor/index.d.ts.map +1 -1
- package/lib/network/processor/index.js +36 -15
- package/lib/network/processor/index.js.map +1 -1
- package/lib/network/reqresp/score.d.ts.map +1 -1
- package/lib/network/reqresp/score.js +5 -11
- package/lib/network/reqresp/score.js.map +1 -1
- package/lib/network/util.d.ts +0 -1
- package/lib/network/util.d.ts.map +1 -1
- package/lib/network/util.js +0 -4
- package/lib/network/util.js.map +1 -1
- package/lib/node/deferredVoluntaryExitPublisher.d.ts +15 -0
- package/lib/node/deferredVoluntaryExitPublisher.d.ts.map +1 -0
- package/lib/node/deferredVoluntaryExitPublisher.js +38 -0
- package/lib/node/deferredVoluntaryExitPublisher.js.map +1 -0
- package/lib/node/nodejs.d.ts +2 -1
- package/lib/node/nodejs.d.ts.map +1 -1
- package/lib/node/nodejs.js +2 -0
- package/lib/node/nodejs.js.map +1 -1
- package/lib/sync/range/batch.d.ts +23 -5
- package/lib/sync/range/batch.d.ts.map +1 -1
- package/lib/sync/range/batch.js +61 -22
- package/lib/sync/range/batch.js.map +1 -1
- package/lib/sync/range/chain.d.ts +2 -1
- package/lib/sync/range/chain.d.ts.map +1 -1
- package/lib/sync/range/chain.js +23 -10
- package/lib/sync/range/chain.js.map +1 -1
- package/lib/sync/types.d.ts +32 -0
- package/lib/sync/types.d.ts.map +1 -1
- package/lib/sync/types.js +33 -0
- package/lib/sync/types.js.map +1 -1
- package/lib/sync/unknownBlock.d.ts +13 -2
- package/lib/sync/unknownBlock.d.ts.map +1 -1
- package/lib/sync/unknownBlock.js +218 -63
- package/lib/sync/unknownBlock.js.map +1 -1
- package/lib/sync/utils/downloadByRange.d.ts.map +1 -1
- package/lib/sync/utils/downloadByRange.js +16 -11
- package/lib/sync/utils/downloadByRange.js.map +1 -1
- package/lib/sync/utils/downloadByRoot.d.ts.map +1 -1
- package/lib/sync/utils/downloadByRoot.js +3 -1
- package/lib/sync/utils/downloadByRoot.js.map +1 -1
- package/package.json +35 -35
- package/src/api/impl/beacon/blocks/index.ts +7 -8
- package/src/api/impl/beacon/pool/index.ts +27 -2
- package/src/api/impl/beacon/state/utils.ts +2 -1
- package/src/api/impl/events/index.ts +12 -4
- package/src/api/impl/lodestar/index.ts +1 -1
- package/src/api/impl/validator/index.ts +1 -1
- package/src/api/rest/base.ts +7 -0
- package/src/chain/archiveStore/archiveStore.ts +1 -1
- package/src/chain/archiveStore/historicalState/metrics.ts +22 -0
- package/src/chain/blocks/importBlock.ts +1 -6
- package/src/chain/blocks/importExecutionPayload.ts +12 -11
- package/src/chain/blocks/index.ts +18 -6
- package/src/chain/blocks/payloadEnvelopeInput/payloadEnvelopeInput.ts +8 -2
- package/src/chain/blocks/payloadEnvelopeInput/types.ts +17 -4
- package/src/chain/blocks/verifyBlocksStateTransitionOnly.ts +25 -16
- package/src/chain/blocks/verifyExecutionPayloadEnvelope.ts +1 -9
- package/src/chain/bls/index.ts +1 -1
- package/src/chain/bls/interface.ts +7 -3
- package/src/chain/bls/multithread/index.ts +148 -120
- package/src/chain/bls/multithread/jobItem.ts +12 -82
- package/src/chain/bls/multithread/types.ts +33 -8
- package/src/chain/bls/multithread/utils.ts +11 -0
- package/src/chain/bls/multithread/worker.ts +85 -27
- package/src/chain/bls/singleThread.ts +11 -55
- package/src/chain/bls/utils.ts +23 -24
- package/src/chain/builderCircuitBreaker.ts +31 -17
- package/src/chain/chain.ts +17 -6
- package/src/chain/errors/blockError.ts +8 -2
- package/src/chain/errors/proposerPreferences.ts +7 -0
- package/src/chain/forkChoice/index.ts +4 -0
- package/src/chain/interface.ts +4 -1
- package/src/chain/opPools/aggregatedAttestationPool.ts +1 -1
- package/src/chain/opPools/attestationPool.ts +1 -1
- package/src/chain/opPools/deferredVoluntaryExitPool.ts +65 -0
- package/src/chain/opPools/index.ts +1 -0
- package/src/chain/opPools/payloadAttestationPool.ts +3 -3
- package/src/chain/opPools/syncCommitteeMessagePool.ts +1 -1
- package/src/chain/opPools/syncContributionAndProofPool.ts +1 -1
- package/src/chain/opPools/utils.ts +1 -1
- package/src/chain/options.ts +1 -1
- package/src/chain/prepareNextSlot.ts +24 -6
- package/src/chain/regen/interface.ts +4 -2
- package/src/chain/regen/queued.ts +5 -5
- package/src/chain/seenCache/seenAttesters.ts +31 -5
- package/src/chain/seenCache/seenPayloadEnvelopeInput.ts +143 -14
- package/src/chain/stateCache/fifoBlockStateCache.ts +8 -1
- package/src/chain/stateCache/persistentCheckpointsCache.ts +133 -8
- package/src/chain/stateCache/types.ts +3 -3
- package/src/chain/validation/attestation.ts +1 -7
- package/src/chain/validation/attesterSlashing.ts +1 -8
- package/src/chain/validation/executionPayloadBid.ts +1 -2
- package/src/chain/validation/executionPayloadEnvelope.ts +0 -1
- package/src/chain/validation/payloadAttestationMessage.ts +6 -17
- package/src/chain/validation/proposerPreferences.ts +15 -5
- package/src/chain/validation/proposerSlashing.ts +1 -1
- package/src/chain/validation/voluntaryExit.ts +59 -2
- package/src/execution/builder/http.ts +11 -11
- package/src/metrics/metrics/beacon.ts +9 -9
- package/src/metrics/metrics/lodestar.ts +142 -57
- package/src/network/gossip/topic.ts +38 -0
- package/src/network/libp2p/index.ts +11 -2
- package/src/network/network.ts +27 -55
- package/src/network/processor/constants.ts +6 -0
- package/src/network/processor/gossipHandlers.ts +14 -1
- package/src/network/processor/index.ts +42 -19
- package/src/network/reqresp/score.ts +5 -11
- package/src/network/util.ts +0 -5
- package/src/node/deferredVoluntaryExitPublisher.ts +54 -0
- package/src/node/nodejs.ts +5 -1
- package/src/sync/range/batch.ts +83 -28
- package/src/sync/range/chain.ts +26 -11
- package/src/sync/types.ts +36 -1
- package/src/sync/unknownBlock.ts +255 -70
- package/src/sync/utils/downloadByRange.ts +21 -12
- package/src/sync/utils/downloadByRoot.ts +3 -1
- package/lib/chain/bls/maybeBatch.d.ts +0 -12
- package/lib/chain/bls/maybeBatch.d.ts.map +0 -1
- package/lib/chain/bls/maybeBatch.js +0 -35
- package/lib/chain/bls/maybeBatch.js.map +0 -1
- package/src/chain/bls/maybeBatch.ts +0 -45
|
@@ -1,18 +1,32 @@
|
|
|
1
1
|
import {ChainForkConfig} from "@lodestar/config";
|
|
2
2
|
import {CheckpointWithHex, IForkChoice, PayloadStatus, ProtoBlock} from "@lodestar/fork-choice";
|
|
3
|
+
import {ForkPostGloas, SLOTS_PER_EPOCH, isForkPostGloas} from "@lodestar/params";
|
|
3
4
|
import {computeStartSlotAtEpoch} from "@lodestar/state-transition";
|
|
4
|
-
import {RootHex} from "@lodestar/types";
|
|
5
|
-
import {Logger} from "@lodestar/utils";
|
|
5
|
+
import {RootHex, SignedBeaconBlock} from "@lodestar/types";
|
|
6
|
+
import {Logger, fromHex} from "@lodestar/utils";
|
|
7
|
+
import {IBeaconDb} from "../../db/index.js";
|
|
6
8
|
import {Metrics} from "../../metrics/metrics.js";
|
|
9
|
+
import {MAX_LOOK_AHEAD_EPOCHS} from "../../sync/constants.js";
|
|
7
10
|
import {IClock} from "../../util/clock.js";
|
|
11
|
+
import {CustodyConfig} from "../../util/dataColumns.js";
|
|
8
12
|
import {SerializedCache} from "../../util/serializedCache.js";
|
|
9
13
|
import {isDaOutOfRange} from "../blocks/blockInput/index.js";
|
|
10
|
-
import {
|
|
14
|
+
import {
|
|
15
|
+
CreateFromBidProps,
|
|
16
|
+
CreateFromBlockProps,
|
|
17
|
+
PayloadEnvelopeInput,
|
|
18
|
+
PayloadEnvelopeInputPruneReason,
|
|
19
|
+
PayloadEnvelopeInputSource,
|
|
20
|
+
} from "../blocks/payloadEnvelopeInput/index.js";
|
|
11
21
|
import {ChainEvent, ChainEventEmitter} from "../emitter.js";
|
|
22
|
+
import {SeenBlockInput} from "./seenGossipBlockInput.js";
|
|
12
23
|
|
|
13
24
|
export type {PayloadEnvelopeInputState} from "../blocks/payloadEnvelopeInput/index.js";
|
|
14
25
|
export {PayloadEnvelopeInput} from "../blocks/payloadEnvelopeInput/index.js";
|
|
15
26
|
|
|
27
|
+
// Bound this cache by this max size, this is the same to SeenBlockInput
|
|
28
|
+
const MAX_PAYLOAD_ENVELOPE_INPUT_CACHE_SIZE = (MAX_LOOK_AHEAD_EPOCHS + 1) * SLOTS_PER_EPOCH;
|
|
29
|
+
|
|
16
30
|
export type SeenPayloadEnvelopeInputModules = {
|
|
17
31
|
config: ChainForkConfig;
|
|
18
32
|
clock: IClock;
|
|
@@ -20,6 +34,9 @@ export type SeenPayloadEnvelopeInputModules = {
|
|
|
20
34
|
chainEvents: ChainEventEmitter;
|
|
21
35
|
signal: AbortSignal;
|
|
22
36
|
serializedCache: SerializedCache;
|
|
37
|
+
db: IBeaconDb;
|
|
38
|
+
seenBlockInputCache: SeenBlockInput;
|
|
39
|
+
custodyConfig: CustodyConfig;
|
|
23
40
|
metrics: Metrics | null;
|
|
24
41
|
logger?: Logger;
|
|
25
42
|
};
|
|
@@ -40,9 +57,14 @@ export class SeenPayloadEnvelopeInput {
|
|
|
40
57
|
private readonly chainEvents: ChainEventEmitter;
|
|
41
58
|
private readonly signal: AbortSignal;
|
|
42
59
|
private readonly serializedCache: SerializedCache;
|
|
60
|
+
private readonly db: IBeaconDb;
|
|
61
|
+
private readonly seenBlockInputCache: SeenBlockInput;
|
|
62
|
+
private readonly custodyConfig: CustodyConfig;
|
|
43
63
|
private readonly metrics: Metrics | null;
|
|
44
64
|
private readonly logger?: Logger;
|
|
45
65
|
private payloadInputs = new Map<RootHex, PayloadEnvelopeInput>();
|
|
66
|
+
// Dedup concurrent DB reloads of the same root so callers share one reconstructed object.
|
|
67
|
+
private readonly reloading = new Map<RootHex, Promise<PayloadEnvelopeInput | undefined>>();
|
|
46
68
|
|
|
47
69
|
constructor({
|
|
48
70
|
config,
|
|
@@ -51,6 +73,9 @@ export class SeenPayloadEnvelopeInput {
|
|
|
51
73
|
chainEvents,
|
|
52
74
|
signal,
|
|
53
75
|
serializedCache,
|
|
76
|
+
db,
|
|
77
|
+
seenBlockInputCache,
|
|
78
|
+
custodyConfig,
|
|
54
79
|
metrics,
|
|
55
80
|
logger,
|
|
56
81
|
}: SeenPayloadEnvelopeInputModules) {
|
|
@@ -60,6 +85,9 @@ export class SeenPayloadEnvelopeInput {
|
|
|
60
85
|
this.chainEvents = chainEvents;
|
|
61
86
|
this.signal = signal;
|
|
62
87
|
this.serializedCache = serializedCache;
|
|
88
|
+
this.db = db;
|
|
89
|
+
this.seenBlockInputCache = seenBlockInputCache;
|
|
90
|
+
this.custodyConfig = custodyConfig;
|
|
63
91
|
this.metrics = metrics;
|
|
64
92
|
this.logger = logger;
|
|
65
93
|
|
|
@@ -86,7 +114,7 @@ export class SeenPayloadEnvelopeInput {
|
|
|
86
114
|
let deletedCount = 0;
|
|
87
115
|
for (const [, input] of this.payloadInputs) {
|
|
88
116
|
if (input.slot < finalizedSlot) {
|
|
89
|
-
this.evictPayloadInput(input);
|
|
117
|
+
this.evictPayloadInput(input, "finalized");
|
|
90
118
|
deletedCount++;
|
|
91
119
|
}
|
|
92
120
|
}
|
|
@@ -110,12 +138,13 @@ export class SeenPayloadEnvelopeInput {
|
|
|
110
138
|
const daOutOfRange = isDaOutOfRange(this.config, props.forkName, props.block.message.slot, this.clock.currentEpoch);
|
|
111
139
|
const input = PayloadEnvelopeInput.createFromBlock({...props, daOutOfRange});
|
|
112
140
|
this.payloadInputs.set(props.blockRootHex, input);
|
|
113
|
-
this.metrics?.seenCache.payloadEnvelopeInput.created.inc();
|
|
141
|
+
this.metrics?.seenCache.payloadEnvelopeInput.created.inc({source: props.source});
|
|
114
142
|
this.logger?.verbose("SeenPayloadEnvelopeInput.add created new entry", {
|
|
115
143
|
slot: input.slot,
|
|
116
144
|
root: props.blockRootHex,
|
|
117
145
|
daOutOfRange,
|
|
118
146
|
});
|
|
147
|
+
this.pruneToMaxSize();
|
|
119
148
|
return input;
|
|
120
149
|
}
|
|
121
150
|
|
|
@@ -131,12 +160,13 @@ export class SeenPayloadEnvelopeInput {
|
|
|
131
160
|
const daOutOfRange = isDaOutOfRange(this.config, props.forkName, props.slot, this.clock.currentEpoch);
|
|
132
161
|
const input = PayloadEnvelopeInput.createFromBid({...props, daOutOfRange});
|
|
133
162
|
this.payloadInputs.set(props.blockRootHex, input);
|
|
134
|
-
this.metrics?.seenCache.payloadEnvelopeInput.created.inc();
|
|
163
|
+
this.metrics?.seenCache.payloadEnvelopeInput.created.inc({source: props.source});
|
|
135
164
|
this.logger?.verbose("SeenPayloadEnvelopeInput.addFromBid created new entry", {
|
|
136
165
|
slot: input.slot,
|
|
137
166
|
root: props.blockRootHex,
|
|
138
167
|
daOutOfRange,
|
|
139
168
|
});
|
|
169
|
+
this.pruneToMaxSize();
|
|
140
170
|
return input;
|
|
141
171
|
}
|
|
142
172
|
|
|
@@ -144,6 +174,80 @@ export class SeenPayloadEnvelopeInput {
|
|
|
144
174
|
return this.payloadInputs.get(blockRootHex);
|
|
145
175
|
}
|
|
146
176
|
|
|
177
|
+
/**
|
|
178
|
+
* Like `get()`, but on a cache miss reconstruct the shell (bid + versionedHashes) from the block
|
|
179
|
+
* in `seenBlockInputCache` or the hot DB.
|
|
180
|
+
* This api is meant for BlockInputSync when a late/weird payloads for old blocks
|
|
181
|
+
*
|
|
182
|
+
* NOTE: the reconstructed entry is always EMPTY even when the block is actually FULL (its
|
|
183
|
+
* payload envelope + columns persisted in the DB). The consumer should consult fork choice if it needs to.
|
|
184
|
+
*/
|
|
185
|
+
async getOrReload(blockRootHex: RootHex): Promise<PayloadEnvelopeInput | undefined> {
|
|
186
|
+
const existing = this.payloadInputs.get(blockRootHex);
|
|
187
|
+
if (existing !== undefined) {
|
|
188
|
+
return existing;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
// Without this dedup, two concurrent misses each db.block.get + createFromBlock a DIFFERENT shell
|
|
192
|
+
// for the same root; processPayloadEnvelopeJob's WeakMap (keyed by object) can't dedup the import.
|
|
193
|
+
const inflight = this.reloading.get(blockRootHex);
|
|
194
|
+
if (inflight !== undefined) {
|
|
195
|
+
return inflight;
|
|
196
|
+
}
|
|
197
|
+
const promise = this.reloadFromDb(blockRootHex);
|
|
198
|
+
this.reloading.set(blockRootHex, promise);
|
|
199
|
+
try {
|
|
200
|
+
return await promise;
|
|
201
|
+
} finally {
|
|
202
|
+
this.reloading.delete(blockRootHex);
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
private async reloadFromDb(blockRootHex: RootHex): Promise<PayloadEnvelopeInput | undefined> {
|
|
207
|
+
// Only recover unfinalized, fork-choice-known blocks. Do not read the finalized archive. The gate
|
|
208
|
+
// also filters out un-imported blocks that may sit in seenBlockInputCache before validation.
|
|
209
|
+
if (!this.forkChoice.hasBlockHex(blockRootHex)) {
|
|
210
|
+
return undefined;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
// In-memory first: persistBlockInput writes db.block THEN prunes seenBlockInputCache, so a
|
|
214
|
+
// just-imported block whose async write (unfinalizedBlockWrites) has not flushed yet is still here;
|
|
215
|
+
// older blocks (already pruned from the cache) fall through to the hot db.
|
|
216
|
+
const cachedBlockInput = this.seenBlockInputCache.get(blockRootHex);
|
|
217
|
+
const block = cachedBlockInput?.hasBlock()
|
|
218
|
+
? cachedBlockInput.getBlock()
|
|
219
|
+
: await this.db.block.get(fromHex(blockRootHex));
|
|
220
|
+
if (block == null) {
|
|
221
|
+
return undefined;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
const forkName = this.config.getForkName(block.message.slot);
|
|
225
|
+
if (!isForkPostGloas(forkName)) {
|
|
226
|
+
return undefined;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
const daOutOfRange = isDaOutOfRange(this.config, forkName, block.message.slot, this.clock.currentEpoch);
|
|
230
|
+
const input = PayloadEnvelopeInput.createFromBlock({
|
|
231
|
+
blockRootHex,
|
|
232
|
+
block: block as SignedBeaconBlock<ForkPostGloas>,
|
|
233
|
+
forkName,
|
|
234
|
+
sampledColumns: this.custodyConfig.sampledColumns,
|
|
235
|
+
custodyColumns: this.custodyConfig.custodyColumns,
|
|
236
|
+
seenTimestampSec: Date.now() / 1000,
|
|
237
|
+
source: PayloadEnvelopeInputSource.reload,
|
|
238
|
+
daOutOfRange,
|
|
239
|
+
});
|
|
240
|
+
this.payloadInputs.set(blockRootHex, input);
|
|
241
|
+
this.metrics?.seenCache.payloadEnvelopeInput.created.inc({source: PayloadEnvelopeInputSource.reload});
|
|
242
|
+
this.logger?.verbose("SeenPayloadEnvelopeInput.getOrReload reconstructed entry from db", {
|
|
243
|
+
slot: input.slot,
|
|
244
|
+
root: blockRootHex,
|
|
245
|
+
});
|
|
246
|
+
// Set above (entry is at the back of the insertion order), so the cap never evicts what we just reloaded.
|
|
247
|
+
this.pruneToMaxSize();
|
|
248
|
+
return input;
|
|
249
|
+
}
|
|
250
|
+
|
|
147
251
|
hasPayload(blockRootHex: RootHex): boolean {
|
|
148
252
|
return this.payloadInputs.get(blockRootHex)?.hasPayloadEnvelope() ?? false;
|
|
149
253
|
}
|
|
@@ -155,8 +259,7 @@ export class SeenPayloadEnvelopeInput {
|
|
|
155
259
|
prune(blockRootHex: RootHex): void {
|
|
156
260
|
const input = this.payloadInputs.get(blockRootHex);
|
|
157
261
|
if (input) {
|
|
158
|
-
this.evictPayloadInput(input);
|
|
159
|
-
this.logger?.verbose("SeenPayloadEnvelopeInput.prune deleted", {slot: input.slot, root: blockRootHex});
|
|
262
|
+
this.evictPayloadInput(input, "prune");
|
|
160
263
|
}
|
|
161
264
|
}
|
|
162
265
|
|
|
@@ -170,17 +273,43 @@ export class SeenPayloadEnvelopeInput {
|
|
|
170
273
|
// ...and don't evict while columns are still being gathered: writeDataColumnsToDb awaits the
|
|
171
274
|
// same hasComputedAllData() before persisting. Such entries are pruned by a later call.
|
|
172
275
|
if (input?.hasComputedAllData()) {
|
|
173
|
-
this.evictPayloadInput(input);
|
|
174
|
-
this.logger?.verbose("SeenPayloadEnvelopeInput.pruneBelowParent deleted", {
|
|
175
|
-
slot: block.slot,
|
|
176
|
-
root: block.blockRoot,
|
|
177
|
-
});
|
|
276
|
+
this.evictPayloadInput(input, "belowParent");
|
|
178
277
|
}
|
|
179
278
|
}
|
|
180
279
|
}
|
|
181
280
|
}
|
|
182
281
|
|
|
183
|
-
|
|
282
|
+
/**
|
|
283
|
+
* Bound this cache to have at most MAX_PAYLOAD_ENVELOPE_INPUT_CACHE_SIZE items.
|
|
284
|
+
* Evicts by insertion order so a just-reloaded old-slot entry is not evicted right after.
|
|
285
|
+
* On unstable network, we may need to query an evicted item, UnknownBlockInput will recover
|
|
286
|
+
* it from db via getOrReload() api. Runs after every single insert, so it evicts ~1 per call.
|
|
287
|
+
*/
|
|
288
|
+
private pruneToMaxSize(): void {
|
|
289
|
+
let evicted = 0;
|
|
290
|
+
for (const input of this.payloadInputs.values()) {
|
|
291
|
+
if (this.payloadInputs.size <= MAX_PAYLOAD_ENVELOPE_INPUT_CACHE_SIZE) {
|
|
292
|
+
break;
|
|
293
|
+
}
|
|
294
|
+
this.evictPayloadInput(input, "cap");
|
|
295
|
+
evicted++;
|
|
296
|
+
}
|
|
297
|
+
if (evicted > 0) {
|
|
298
|
+
this.logger?.debug("SeenPayloadEnvelopeInput.pruneToMaxSize evicted", {
|
|
299
|
+
evicted,
|
|
300
|
+
size: this.payloadInputs.size,
|
|
301
|
+
max: MAX_PAYLOAD_ENVELOPE_INPUT_CACHE_SIZE,
|
|
302
|
+
});
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
private evictPayloadInput(payloadInput: PayloadEnvelopeInput, reason: PayloadEnvelopeInputPruneReason): void {
|
|
307
|
+
this.metrics?.seenCache.payloadEnvelopeInput.pruned.inc({reason});
|
|
308
|
+
this.logger?.debug("SeenPayloadEnvelopeInput evicted", {
|
|
309
|
+
slot: payloadInput.slot,
|
|
310
|
+
root: payloadInput.blockRootHex,
|
|
311
|
+
reason,
|
|
312
|
+
});
|
|
184
313
|
this.serializedCache.delete(payloadInput.getSerializedCacheKeys());
|
|
185
314
|
this.payloadInputs.delete(payloadInput.blockRootHex);
|
|
186
315
|
}
|
|
@@ -144,13 +144,20 @@ export class FIFOBlockStateCache implements BlockStateCache {
|
|
|
144
144
|
return this.cache.size;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
/**
|
|
148
|
+
* On a checkpoint event, prune the cache while keeping the head state.
|
|
149
|
+
*/
|
|
150
|
+
onCheckpoint(headStateRootHex: string): void {
|
|
151
|
+
this.prune(headStateRootHex);
|
|
152
|
+
}
|
|
153
|
+
|
|
147
154
|
/**
|
|
148
155
|
* Prune the cache from tail to keep the most recent n states consistently.
|
|
149
156
|
* The tail of the list is the oldest state, in case regen adds back the same state,
|
|
150
157
|
* it should stay next to head so that it won't be pruned right away.
|
|
151
158
|
* The FIFO cache helps with this.
|
|
152
159
|
*/
|
|
153
|
-
prune(lastAddedKey: string): void {
|
|
160
|
+
private prune(lastAddedKey: string): void {
|
|
154
161
|
while (this.keyOrder.length > this.maxStates) {
|
|
155
162
|
const key = this.keyOrder.last();
|
|
156
163
|
// it does not make sense to prune the last added state
|
|
@@ -14,7 +14,11 @@ import {BlockStateCache, CacheItemType, CheckpointHex, CheckpointStateCache} fro
|
|
|
14
14
|
export type PersistentCheckpointStateCacheOpts = {
|
|
15
15
|
/** Keep max n state epochs in memory, persist the rest to disk */
|
|
16
16
|
maxCPStateEpochsInMemory?: number;
|
|
17
|
-
/**
|
|
17
|
+
/**
|
|
18
|
+
* On-disk retention of persisted checkpoint states. Selects one of two modes:
|
|
19
|
+
* - `Infinity` (default) -> tiered retention mode
|
|
20
|
+
* - any finite `n` (>= 0) -> legacy flat retention (keep the last n dense epochs)
|
|
21
|
+
*/
|
|
18
22
|
maxCPStateEpochsOnDisk?: number;
|
|
19
23
|
};
|
|
20
24
|
|
|
@@ -64,6 +68,18 @@ export const DEFAULT_MAX_CP_STATE_EPOCHS_IN_MEMORY = 3;
|
|
|
64
68
|
*/
|
|
65
69
|
export const DEFAULT_MAX_CP_STATE_ON_DISK = Infinity;
|
|
66
70
|
|
|
71
|
+
// CP_STATE_TIER_BASE = spacing multiplier per tier AND per-tier capacity. Deciding capacity == base
|
|
72
|
+
// so that a full tier[n] always holds exactly ONE epoch aligned to tier[n+1]
|
|
73
|
+
// given tier[n] has span = 16 ^ n and tier[n+1] has span = 16 ^ (n+1)
|
|
74
|
+
// why 16?
|
|
75
|
+
// - tier 0 is the dense hot-regen window; it must exceed regen's MAX_EPOCH_TO_PROCESS (=5).
|
|
76
|
+
// - with a full 4 tiers = 64 epochs, we can cover ~ a year of continuous non-finality, and it'll grow very slowly after that
|
|
77
|
+
// - tier0 spans 16 epochs ≈ 1.7h, this is more than enough to handle reorg
|
|
78
|
+
// - tier1 spans 256 epochs ≈ 1.1d, ie we store 16 epochs of the previous day
|
|
79
|
+
// - tier2 spans 4096 epochs ≈ 18d, ie we store 16 epochs of the last ~2.5 weeks
|
|
80
|
+
// - tier3 spans 65536ep ≈ 291d, ie we store 16 epochs of the last 0.8 year
|
|
81
|
+
export const CP_STATE_TIER_BASE = 16;
|
|
82
|
+
|
|
67
83
|
// TODO GLOAS: re-evaluate this timing
|
|
68
84
|
const PROCESS_CHECKPOINT_STATES_BPS = 6667;
|
|
69
85
|
|
|
@@ -112,6 +128,19 @@ export class PersistentCheckpointStateCache implements CheckpointStateCache {
|
|
|
112
128
|
private preComputedCheckpointHits: number | null = null;
|
|
113
129
|
private readonly maxEpochsInMemory: number;
|
|
114
130
|
private readonly maxEpochsOnDisk: number;
|
|
131
|
+
/**
|
|
132
|
+
* Persist checkpoint states (epoch + root) by tiers
|
|
133
|
+
*
|
|
134
|
+
* ╔═════════ tier 2 ══════════╦═══════ tier 1 ═══════╦═══ tier 0 (dense) ══╗
|
|
135
|
+
* finalizedEpoch -> ║ keep 1 epoch per 256 ║ keep 1 epoch per 16 ║ keep every epoch ║ -> head
|
|
136
|
+
* ║ x·······x·······x······ ║ x···x···x···x··· ║ xxxxxxxxxxxxxxxxx ║
|
|
137
|
+
* ╚═══════════════════════════╩══════════════════════╩═════════════════════╝
|
|
138
|
+
*
|
|
139
|
+
* starting from tier 1, all epochs must be aligned to the finalized epoch
|
|
140
|
+
*/
|
|
141
|
+
private persistentTiers: Map<Epoch, Set<RootHex>>[] = [new Map()];
|
|
142
|
+
private finalizedEpoch: Epoch = 0;
|
|
143
|
+
private justifiedEpoch: Epoch = 0;
|
|
115
144
|
private readonly datastore: CPStateDatastore;
|
|
116
145
|
private readonly blockStateCache: BlockStateCache;
|
|
117
146
|
private readonly bufferPool?: BufferPool;
|
|
@@ -152,6 +181,13 @@ export class PersistentCheckpointStateCache implements CheckpointStateCache {
|
|
|
152
181
|
metrics.cpStateCache.size.set({type: CacheItemType.inMemory}, inMemoryCount);
|
|
153
182
|
metrics.cpStateCache.epochSize.set({type: CacheItemType.persisted}, persistentEpochs.size);
|
|
154
183
|
metrics.cpStateCache.epochSize.set({type: CacheItemType.inMemory}, memoryEpochs.size);
|
|
184
|
+
|
|
185
|
+
for (let tier = 0; tier < this.persistentTiers.length; tier++) {
|
|
186
|
+
let states = 0;
|
|
187
|
+
for (const roots of this.persistentTiers[tier].values()) states += roots.size;
|
|
188
|
+
metrics.cpStateCache.persistentTierEpochs.set({tier}, this.persistentTiers[tier].size);
|
|
189
|
+
metrics.cpStateCache.persistentTierStates.set({tier}, states);
|
|
190
|
+
}
|
|
155
191
|
});
|
|
156
192
|
}
|
|
157
193
|
this.logger = logger;
|
|
@@ -407,10 +443,77 @@ export class PersistentCheckpointStateCache implements CheckpointStateCache {
|
|
|
407
443
|
}
|
|
408
444
|
|
|
409
445
|
/**
|
|
410
|
-
* This is
|
|
446
|
+
* This is called on every checkpoint event to refresh the pinned finalized/justified epochs.
|
|
411
447
|
*/
|
|
412
|
-
|
|
413
|
-
|
|
448
|
+
onCheckpoint(finalizedEpoch: Epoch, justifiedEpoch: Epoch): void {
|
|
449
|
+
this.finalizedEpoch = finalizedEpoch;
|
|
450
|
+
this.justifiedEpoch = justifiedEpoch;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* This is called right after we persist a checkpoint state.
|
|
455
|
+
*/
|
|
456
|
+
private async onPersist(epoch: Epoch, rootHex: RootHex): Promise<void> {
|
|
457
|
+
let roots = this.persistentTiers[0].get(epoch);
|
|
458
|
+
if (roots === undefined) {
|
|
459
|
+
roots = new Set<RootHex>();
|
|
460
|
+
this.persistentTiers[0].set(epoch, roots);
|
|
461
|
+
}
|
|
462
|
+
roots.add(rootHex);
|
|
463
|
+
await this.prunePersistentTier(0);
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
/**
|
|
467
|
+
* When tier `n` overflows (> CP_STATE_TIER_BASE epochs), evict its oldest epoch and either promote it to tier `n + 1` (if aligned there) or delete it.
|
|
468
|
+
*
|
|
469
|
+
* before: persistentTiers[n] = { ..., e_old }
|
|
470
|
+
* persistentTiers[n+1] = { ... }
|
|
471
|
+
*
|
|
472
|
+
* after, if e_old aligns to n+1: | after, if e_old does NOT align to n+1:
|
|
473
|
+
* persistentTiers[n] = { ... } | persistentTiers[n] = { ... }
|
|
474
|
+
* persistentTiers[n+1] = { ..., e_old } | e_old and all its roots deleted from disk
|
|
475
|
+
*
|
|
476
|
+
* Since pruning a tier[n] may push an item at tier[n+1], we must call the function recursively.
|
|
477
|
+
*/
|
|
478
|
+
private async prunePersistentTier(tier: number): Promise<void> {
|
|
479
|
+
const tierMap = this.persistentTiers[tier];
|
|
480
|
+
while (tierMap.size > CP_STATE_TIER_BASE) {
|
|
481
|
+
// Evict the oldest epoch, but never the pinned justified epoch
|
|
482
|
+
const oldestEpoch = Math.min(...Array.from(tierMap.keys()).filter((epoch) => epoch !== this.justifiedEpoch));
|
|
483
|
+
const roots = tierMap.get(oldestEpoch) as Set<RootHex>;
|
|
484
|
+
tierMap.delete(oldestEpoch);
|
|
485
|
+
|
|
486
|
+
const rootHexes = Array.from(roots).join(",");
|
|
487
|
+
// `>= finalizedEpoch` guards the transient window where an epoch below the (fork-choice)
|
|
488
|
+
// finalized epoch has not yet been removed by pruneFinalized: its offset would be negative
|
|
489
|
+
// and JS `%` could spuriously report it as aligned. Such epochs are stale -> delete.
|
|
490
|
+
if (oldestEpoch >= this.finalizedEpoch && this.alignedForTier(oldestEpoch, tier + 1)) {
|
|
491
|
+
if (this.persistentTiers[tier + 1] === undefined) {
|
|
492
|
+
this.persistentTiers[tier + 1] = new Map<Epoch, Set<RootHex>>();
|
|
493
|
+
}
|
|
494
|
+
this.persistentTiers[tier + 1].set(oldestEpoch, roots);
|
|
495
|
+
this.logger.verbose("Migrated persistent checkpoint states to lower tier", {
|
|
496
|
+
epoch: oldestEpoch,
|
|
497
|
+
fromTier: tier,
|
|
498
|
+
toTier: tier + 1,
|
|
499
|
+
rootHexes,
|
|
500
|
+
});
|
|
501
|
+
await this.prunePersistentTier(tier + 1);
|
|
502
|
+
} else {
|
|
503
|
+
// the oldest epoch is not aligned to the next tier
|
|
504
|
+
await this.deleteAllEpochItems(oldestEpoch)
|
|
505
|
+
.then(() => this.logger.verbose("Pruned checkpoint states from disk", {epoch: oldestEpoch, tier, rootHexes}))
|
|
506
|
+
.catch((e) => this.logger.debug("Error delete all epoch items", {epoch: oldestEpoch, tier}, e as Error));
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
/**
|
|
512
|
+
* Starting from tier[1], it must be aligned to the finalized epoch
|
|
513
|
+
* ie given finalized epoch F, tier[n] only epochs of F + n*16, n = 1,2,3...
|
|
514
|
+
*/
|
|
515
|
+
private alignedForTier(epoch: Epoch, tier: number): boolean {
|
|
516
|
+
return (epoch - this.finalizedEpoch) % CP_STATE_TIER_BASE ** tier === 0;
|
|
414
517
|
}
|
|
415
518
|
|
|
416
519
|
/**
|
|
@@ -598,9 +701,16 @@ export class PersistentCheckpointStateCache implements CheckpointStateCache {
|
|
|
598
701
|
return seedBlockState;
|
|
599
702
|
}
|
|
600
703
|
|
|
601
|
-
clear(): void {
|
|
602
|
-
|
|
603
|
-
|
|
704
|
+
async clear(): Promise<void> {
|
|
705
|
+
// deleteAllEpochItems removes every root of an epoch from disk and clears the cache
|
|
706
|
+
await Promise.all(
|
|
707
|
+
Array.from(this.epochIndex.keys()).map((epoch) =>
|
|
708
|
+
this.deleteAllEpochItems(epoch).catch((e) =>
|
|
709
|
+
this.logger.debug("Error delete all epoch items on clear", {epoch}, e as Error)
|
|
710
|
+
)
|
|
711
|
+
)
|
|
712
|
+
);
|
|
713
|
+
this.persistentTiers = [new Map()];
|
|
604
714
|
}
|
|
605
715
|
|
|
606
716
|
/** ONLY FOR DEBUGGING PURPOSES. For lodestar debug API */
|
|
@@ -743,12 +853,18 @@ export class PersistentCheckpointStateCache implements CheckpointStateCache {
|
|
|
743
853
|
}
|
|
744
854
|
// overwrite cpKey, this means the state is deleted from memory
|
|
745
855
|
this.cache.set(cpKey, {type: CacheItemType.persisted, value: persistedKey});
|
|
856
|
+
if (this.isTieredMode) {
|
|
857
|
+
await this.onPersist(epoch, rootHex);
|
|
858
|
+
}
|
|
746
859
|
} else {
|
|
747
860
|
if (persistedKey) {
|
|
748
861
|
// persisted file will be eventually deleted by the archive task
|
|
749
862
|
// this also means the state is deleted from memory
|
|
750
863
|
this.cache.set(cpKey, {type: CacheItemType.persisted, value: persistedKey});
|
|
751
864
|
// do not update epochIndex
|
|
865
|
+
if (this.isTieredMode) {
|
|
866
|
+
await this.onPersist(epoch, rootHex);
|
|
867
|
+
}
|
|
752
868
|
} else {
|
|
753
869
|
// delete the state from memory
|
|
754
870
|
this.cache.delete(cpKey);
|
|
@@ -790,6 +906,10 @@ export class PersistentCheckpointStateCache implements CheckpointStateCache {
|
|
|
790
906
|
this.cache.delete(key);
|
|
791
907
|
}
|
|
792
908
|
this.epochIndex.delete(epoch);
|
|
909
|
+
// keep the on-disk retention tiers in sync so they never drift from epochIndex
|
|
910
|
+
for (const tierMap of this.persistentTiers) {
|
|
911
|
+
tierMap.delete(epoch);
|
|
912
|
+
}
|
|
793
913
|
this.logger.verbose("Pruned checkpoint states for epoch", {
|
|
794
914
|
epoch,
|
|
795
915
|
persistCount,
|
|
@@ -798,7 +918,7 @@ export class PersistentCheckpointStateCache implements CheckpointStateCache {
|
|
|
798
918
|
}
|
|
799
919
|
|
|
800
920
|
/**
|
|
801
|
-
*
|
|
921
|
+
* Legacy flat-window on-disk pruning, used only when a `maxEpochsOnDisk` is configured.
|
|
802
922
|
* Note that this should handle all possible errors and not throw.
|
|
803
923
|
*/
|
|
804
924
|
private prunePersistedStates(): void {
|
|
@@ -842,6 +962,11 @@ export class PersistentCheckpointStateCache implements CheckpointStateCache {
|
|
|
842
962
|
|
|
843
963
|
return null;
|
|
844
964
|
}
|
|
965
|
+
|
|
966
|
+
/** Tiered pruning is active with the default `Infinity` on-disk cap; a finite cap uses the flat path */
|
|
967
|
+
private get isTieredMode(): boolean {
|
|
968
|
+
return this.maxEpochsOnDisk === Infinity;
|
|
969
|
+
}
|
|
845
970
|
}
|
|
846
971
|
|
|
847
972
|
export function toCheckpointHex(checkpoint: phase0.Checkpoint): CheckpointHex {
|
|
@@ -29,7 +29,7 @@ export interface BlockStateCache {
|
|
|
29
29
|
getSeedState(): IBeaconStateView;
|
|
30
30
|
clear(): void;
|
|
31
31
|
size: number;
|
|
32
|
-
|
|
32
|
+
onCheckpoint(headStateRootHex: RootHex): void;
|
|
33
33
|
dumpSummary(): routes.lodestar.StateCacheItem[];
|
|
34
34
|
/** Expose beacon states stored in cache. Use with caution */
|
|
35
35
|
getStates(): IterableIterator<IBeaconStateView>;
|
|
@@ -65,9 +65,9 @@ export interface CheckpointStateCache {
|
|
|
65
65
|
getLatest(rootHex: RootHex, maxEpoch: Epoch): IBeaconStateView | null;
|
|
66
66
|
getOrReloadLatest(rootHex: RootHex, maxEpoch: Epoch): Promise<IBeaconStateView | null>;
|
|
67
67
|
updatePreComputedCheckpoint(rootHex: RootHex, epoch: Epoch): number | null;
|
|
68
|
-
|
|
68
|
+
onCheckpoint(finalizedEpoch: Epoch, justifiedEpoch: Epoch): void;
|
|
69
69
|
processState(blockRootHex: RootHex, state: IBeaconStateView): Promise<number>;
|
|
70
|
-
clear(): void
|
|
70
|
+
clear(): Promise<void>;
|
|
71
71
|
dumpSummary(): routes.lodestar.StateCacheItem[];
|
|
72
72
|
/** Expose beacon states stored in cache. Use with caution */
|
|
73
73
|
getStates(): IterableIterator<IBeaconStateView>;
|
|
@@ -142,13 +142,7 @@ export async function validateGossipAttestationsSameAttData(
|
|
|
142
142
|
const batchableBls = signatureSets.length >= chain.opts.minSameMessageSignatureSetsToBatch;
|
|
143
143
|
if (batchableBls) {
|
|
144
144
|
// all signature sets should have same signing root since we filtered in network processor
|
|
145
|
-
signatureValids = await chain.bls.verifySignatureSetsSameMessage(
|
|
146
|
-
signatureSets.map((set) => {
|
|
147
|
-
const publicKey = chain.pubkeyCache.getOrThrow(set.index);
|
|
148
|
-
return {publicKey, signature: set.signature};
|
|
149
|
-
}),
|
|
150
|
-
signatureSets[0].signingRoot
|
|
151
|
-
);
|
|
145
|
+
signatureValids = await chain.bls.verifySignatureSetsSameMessage(signatureSets, signatureSets[0].signingRoot);
|
|
152
146
|
} else {
|
|
153
147
|
// don't want to block the main thread if there are too few signatures
|
|
154
148
|
signatureValids = await Promise.all(
|
|
@@ -44,14 +44,7 @@ export async function validateAttesterSlashing(
|
|
|
44
44
|
// [REJECT] All of the conditions within process_attester_slashing pass validation.
|
|
45
45
|
try {
|
|
46
46
|
// verifySignature = false, verified in batch below
|
|
47
|
-
assertValidAttesterSlashing(
|
|
48
|
-
chain.config,
|
|
49
|
-
chain.pubkeyCache,
|
|
50
|
-
state.slot,
|
|
51
|
-
state.validatorCount,
|
|
52
|
-
attesterSlashing,
|
|
53
|
-
false
|
|
54
|
-
);
|
|
47
|
+
assertValidAttesterSlashing(chain.config, state.slot, state.validatorCount, attesterSlashing, false);
|
|
55
48
|
} catch (e) {
|
|
56
49
|
throw new AttesterSlashingError(GossipAction.REJECT, {
|
|
57
50
|
code: AttesterSlashingErrorCode.INVALID,
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import {PublicKey} from "@chainsafe/blst";
|
|
2
1
|
import {IForkChoice, ProtoBlock} from "@lodestar/fork-choice";
|
|
3
2
|
import {PAYLOAD_BUILDER_VERSION} from "@lodestar/params";
|
|
4
3
|
import {
|
|
@@ -345,7 +344,7 @@ async function validateExecutionPayloadBid(
|
|
|
345
344
|
|
|
346
345
|
// [REJECT] `signed_execution_payload_bid.signature` is valid with respect to the `bid.builder_index`.
|
|
347
346
|
const signatureSet = createSingleSignatureSetFromComponents(
|
|
348
|
-
|
|
347
|
+
builder.pubkey,
|
|
349
348
|
getExecutionPayloadBidSigningRoot(chain.config, bid),
|
|
350
349
|
signedExecutionPayloadBid.signature
|
|
351
350
|
);
|
|
@@ -170,7 +170,6 @@ async function validateExecutionPayloadEnvelope(
|
|
|
170
170
|
// by `verify_execution_payload_envelope_signature`.
|
|
171
171
|
const signatureSet = getExecutionPayloadEnvelopeSignatureSet(
|
|
172
172
|
chain.config,
|
|
173
|
-
chain.pubkeyCache,
|
|
174
173
|
blockState,
|
|
175
174
|
executionPayloadEnvelope,
|
|
176
175
|
payloadInput.proposerIndex
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
-
|
|
3
|
-
createSingleSignatureSetFromComponents,
|
|
2
|
+
createIndexedSignatureSetFromComponents,
|
|
4
3
|
getPayloadAttestationDataSigningRoot,
|
|
5
4
|
isStatePostGloas,
|
|
6
5
|
} from "@lodestar/state-transition";
|
|
@@ -36,7 +35,6 @@ async function validatePayloadAttestationMessage(
|
|
|
36
35
|
prioritizeBls = false
|
|
37
36
|
): Promise<PayloadAttestationValidationResult> {
|
|
38
37
|
const {data, validatorIndex} = payloadAttestationMessage;
|
|
39
|
-
const epoch = computeEpochAtSlot(data.slot);
|
|
40
38
|
|
|
41
39
|
// [IGNORE] The message's slot is for the current slot (with a `MAXIMUM_GOSSIP_CLOCK_DISPARITY` allowance), i.e. `data.slot == current_slot`.
|
|
42
40
|
if (!chain.clock.isCurrentSlotGivenGossipDisparity(data.slot)) {
|
|
@@ -48,9 +46,8 @@ async function validatePayloadAttestationMessage(
|
|
|
48
46
|
}
|
|
49
47
|
|
|
50
48
|
// [IGNORE] The `payload_attestation_message` is the first valid message received
|
|
51
|
-
// from the validator with index `payload_attestation_message.validator_index`.
|
|
52
|
-
|
|
53
|
-
if (chain.seenPayloadAttesters.isKnown(epoch, validatorIndex)) {
|
|
49
|
+
// for the slot from the validator with index `payload_attestation_message.validator_index`.
|
|
50
|
+
if (chain.seenPayloadAttesters.isKnown(data.slot, validatorIndex)) {
|
|
54
51
|
throw new PayloadAttestationError(GossipAction.IGNORE, {
|
|
55
52
|
code: PayloadAttestationErrorCode.PAYLOAD_ATTESTATION_ALREADY_KNOWN,
|
|
56
53
|
validatorIndex,
|
|
@@ -114,16 +111,8 @@ async function validatePayloadAttestationMessage(
|
|
|
114
111
|
}
|
|
115
112
|
|
|
116
113
|
// [REJECT] `payload_attestation_message.signature` is valid with respect to the validator's public key.
|
|
117
|
-
const
|
|
118
|
-
|
|
119
|
-
throw new PayloadAttestationError(GossipAction.REJECT, {
|
|
120
|
-
code: PayloadAttestationErrorCode.INVALID_ATTESTER,
|
|
121
|
-
attesterIndex: validatorIndex,
|
|
122
|
-
});
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
const signatureSet = createSingleSignatureSetFromComponents(
|
|
126
|
-
validatorPubkey,
|
|
114
|
+
const signatureSet = createIndexedSignatureSetFromComponents(
|
|
115
|
+
validatorIndex,
|
|
127
116
|
getPayloadAttestationDataSigningRoot(chain.config, data),
|
|
128
117
|
payloadAttestationMessage.signature
|
|
129
118
|
);
|
|
@@ -135,7 +124,7 @@ async function validatePayloadAttestationMessage(
|
|
|
135
124
|
}
|
|
136
125
|
|
|
137
126
|
// Valid
|
|
138
|
-
chain.seenPayloadAttesters.add(
|
|
127
|
+
chain.seenPayloadAttesters.add(data.slot, validatorIndex);
|
|
139
128
|
|
|
140
129
|
return {
|
|
141
130
|
attDataRootHex: toRootHex(ssz.gloas.PayloadAttestationData.hashTreeRoot(data)),
|