@aztec/validator-client 0.0.1-commit.24de95ac → 0.0.1-commit.3469e52
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/README.md +282 -0
- package/dest/block_proposal_handler.d.ts +26 -13
- package/dest/block_proposal_handler.d.ts.map +1 -1
- package/dest/block_proposal_handler.js +359 -84
- package/dest/checkpoint_builder.d.ts +67 -0
- package/dest/checkpoint_builder.d.ts.map +1 -0
- package/dest/checkpoint_builder.js +160 -0
- package/dest/config.d.ts +1 -1
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +18 -7
- package/dest/duties/validation_service.d.ts +42 -13
- package/dest/duties/validation_service.d.ts.map +1 -1
- package/dest/duties/validation_service.js +113 -31
- package/dest/factory.d.ts +13 -8
- package/dest/factory.d.ts.map +1 -1
- package/dest/factory.js +2 -2
- package/dest/index.d.ts +3 -1
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +2 -0
- package/dest/key_store/ha_key_store.d.ts +99 -0
- package/dest/key_store/ha_key_store.d.ts.map +1 -0
- package/dest/key_store/ha_key_store.js +208 -0
- package/dest/key_store/index.d.ts +2 -1
- package/dest/key_store/index.d.ts.map +1 -1
- package/dest/key_store/index.js +1 -0
- package/dest/key_store/interface.d.ts +36 -6
- package/dest/key_store/interface.d.ts.map +1 -1
- package/dest/key_store/local_key_store.d.ts +10 -5
- package/dest/key_store/local_key_store.d.ts.map +1 -1
- package/dest/key_store/local_key_store.js +9 -5
- package/dest/key_store/node_keystore_adapter.d.ts +18 -5
- package/dest/key_store/node_keystore_adapter.d.ts.map +1 -1
- package/dest/key_store/node_keystore_adapter.js +18 -4
- package/dest/key_store/web3signer_key_store.d.ts +10 -11
- package/dest/key_store/web3signer_key_store.d.ts.map +1 -1
- package/dest/key_store/web3signer_key_store.js +9 -5
- package/dest/metrics.d.ts +1 -1
- package/dest/metrics.d.ts.map +1 -1
- package/dest/metrics.js +8 -33
- package/dest/tx_validator/index.d.ts +3 -0
- package/dest/tx_validator/index.d.ts.map +1 -0
- package/dest/tx_validator/index.js +2 -0
- package/dest/tx_validator/nullifier_cache.d.ts +14 -0
- package/dest/tx_validator/nullifier_cache.d.ts.map +1 -0
- package/dest/tx_validator/nullifier_cache.js +24 -0
- package/dest/tx_validator/tx_validator_factory.d.ts +18 -0
- package/dest/tx_validator/tx_validator_factory.d.ts.map +1 -0
- package/dest/tx_validator/tx_validator_factory.js +54 -0
- package/dest/validator.d.ts +47 -18
- package/dest/validator.d.ts.map +1 -1
- package/dest/validator.js +365 -63
- package/package.json +22 -14
- package/src/block_proposal_handler.ts +293 -60
- package/src/checkpoint_builder.ts +284 -0
- package/src/config.ts +18 -6
- package/src/duties/validation_service.ts +157 -38
- package/src/factory.ts +17 -8
- package/src/index.ts +2 -0
- package/src/key_store/ha_key_store.ts +269 -0
- package/src/key_store/index.ts +1 -0
- package/src/key_store/interface.ts +44 -5
- package/src/key_store/local_key_store.ts +14 -5
- package/src/key_store/node_keystore_adapter.ts +28 -5
- package/src/key_store/web3signer_key_store.ts +18 -5
- package/src/metrics.ts +7 -34
- package/src/tx_validator/index.ts +2 -0
- package/src/tx_validator/nullifier_cache.ts +30 -0
- package/src/tx_validator/tx_validator_factory.ts +135 -0
- package/src/validator.ts +490 -91
|
@@ -1,67 +1,142 @@
|
|
|
1
|
+
function _ts_add_disposable_resource(env, value, async) {
|
|
2
|
+
if (value !== null && value !== void 0) {
|
|
3
|
+
if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
|
|
4
|
+
var dispose, inner;
|
|
5
|
+
if (async) {
|
|
6
|
+
if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
|
|
7
|
+
dispose = value[Symbol.asyncDispose];
|
|
8
|
+
}
|
|
9
|
+
if (dispose === void 0) {
|
|
10
|
+
if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
|
|
11
|
+
dispose = value[Symbol.dispose];
|
|
12
|
+
if (async) inner = dispose;
|
|
13
|
+
}
|
|
14
|
+
if (typeof dispose !== "function") throw new TypeError("Object not disposable.");
|
|
15
|
+
if (inner) dispose = function() {
|
|
16
|
+
try {
|
|
17
|
+
inner.call(this);
|
|
18
|
+
} catch (e) {
|
|
19
|
+
return Promise.reject(e);
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
env.stack.push({
|
|
23
|
+
value: value,
|
|
24
|
+
dispose: dispose,
|
|
25
|
+
async: async
|
|
26
|
+
});
|
|
27
|
+
} else if (async) {
|
|
28
|
+
env.stack.push({
|
|
29
|
+
async: true
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
return value;
|
|
33
|
+
}
|
|
34
|
+
function _ts_dispose_resources(env) {
|
|
35
|
+
var _SuppressedError = typeof SuppressedError === "function" ? SuppressedError : function(error, suppressed, message) {
|
|
36
|
+
var e = new Error(message);
|
|
37
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
38
|
+
};
|
|
39
|
+
return (_ts_dispose_resources = function _ts_dispose_resources(env) {
|
|
40
|
+
function fail(e) {
|
|
41
|
+
env.error = env.hasError ? new _SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
|
|
42
|
+
env.hasError = true;
|
|
43
|
+
}
|
|
44
|
+
var r, s = 0;
|
|
45
|
+
function next() {
|
|
46
|
+
while(r = env.stack.pop()){
|
|
47
|
+
try {
|
|
48
|
+
if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);
|
|
49
|
+
if (r.dispose) {
|
|
50
|
+
var result = r.dispose.call(r.value);
|
|
51
|
+
if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) {
|
|
52
|
+
fail(e);
|
|
53
|
+
return next();
|
|
54
|
+
});
|
|
55
|
+
} else s |= 1;
|
|
56
|
+
} catch (e) {
|
|
57
|
+
fail(e);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();
|
|
61
|
+
if (env.hasError) throw env.error;
|
|
62
|
+
}
|
|
63
|
+
return next();
|
|
64
|
+
})(env);
|
|
65
|
+
}
|
|
1
66
|
import { INITIAL_L2_BLOCK_NUM } from '@aztec/constants';
|
|
67
|
+
import { BlockNumber, CheckpointNumber, SlotNumber } from '@aztec/foundation/branded-types';
|
|
68
|
+
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
2
69
|
import { TimeoutError } from '@aztec/foundation/error';
|
|
3
|
-
import { Fr } from '@aztec/foundation/fields';
|
|
4
70
|
import { createLogger } from '@aztec/foundation/log';
|
|
5
71
|
import { retryUntil } from '@aztec/foundation/retry';
|
|
6
72
|
import { DateProvider, Timer } from '@aztec/foundation/timer';
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { ConsensusPayload } from '@aztec/stdlib/p2p';
|
|
10
|
-
import { GlobalVariables } from '@aztec/stdlib/tx';
|
|
73
|
+
import { getEpochAtSlot, getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
|
|
74
|
+
import { computeCheckpointOutHash, computeInHashFromL1ToL2Messages } from '@aztec/stdlib/messaging';
|
|
11
75
|
import { ReExFailedTxsError, ReExStateMismatchError, ReExTimeoutError, TransactionsNotAvailableError } from '@aztec/stdlib/validators';
|
|
12
76
|
import { getTelemetryClient } from '@aztec/telemetry-client';
|
|
13
77
|
export class BlockProposalHandler {
|
|
14
|
-
|
|
78
|
+
checkpointsBuilder;
|
|
79
|
+
worldState;
|
|
15
80
|
blockSource;
|
|
16
81
|
l1ToL2MessageSource;
|
|
17
82
|
txProvider;
|
|
18
83
|
blockProposalValidator;
|
|
84
|
+
epochCache;
|
|
19
85
|
config;
|
|
20
86
|
metrics;
|
|
21
87
|
dateProvider;
|
|
22
88
|
log;
|
|
23
89
|
tracer;
|
|
24
|
-
constructor(
|
|
25
|
-
this.
|
|
90
|
+
constructor(checkpointsBuilder, worldState, blockSource, l1ToL2MessageSource, txProvider, blockProposalValidator, epochCache, config, metrics, dateProvider = new DateProvider(), telemetry = getTelemetryClient(), log = createLogger('validator:block-proposal-handler')){
|
|
91
|
+
this.checkpointsBuilder = checkpointsBuilder;
|
|
92
|
+
this.worldState = worldState;
|
|
26
93
|
this.blockSource = blockSource;
|
|
27
94
|
this.l1ToL2MessageSource = l1ToL2MessageSource;
|
|
28
95
|
this.txProvider = txProvider;
|
|
29
96
|
this.blockProposalValidator = blockProposalValidator;
|
|
97
|
+
this.epochCache = epochCache;
|
|
30
98
|
this.config = config;
|
|
31
99
|
this.metrics = metrics;
|
|
32
100
|
this.dateProvider = dateProvider;
|
|
33
101
|
this.log = log;
|
|
102
|
+
if (config.fishermanMode) {
|
|
103
|
+
this.log = this.log.createChild('[FISHERMAN]');
|
|
104
|
+
}
|
|
34
105
|
this.tracer = telemetry.getTracer('BlockProposalHandler');
|
|
35
106
|
}
|
|
36
107
|
registerForReexecution(p2pClient) {
|
|
108
|
+
// Non-validator handler that re-executes for monitoring but does not attest.
|
|
109
|
+
// Returns boolean indicating whether the proposal was valid.
|
|
37
110
|
const handler = async (proposal, proposalSender)=>{
|
|
38
111
|
try {
|
|
39
112
|
const result = await this.handleBlockProposal(proposal, proposalSender, true);
|
|
40
113
|
if (result.isValid) {
|
|
41
|
-
this.log.info(`Non-validator reexecution completed for slot ${proposal.slotNumber
|
|
114
|
+
this.log.info(`Non-validator reexecution completed for slot ${proposal.slotNumber}`, {
|
|
42
115
|
blockNumber: result.blockNumber,
|
|
43
116
|
reexecutionTimeMs: result.reexecutionResult?.reexecutionTimeMs,
|
|
44
117
|
totalManaUsed: result.reexecutionResult?.totalManaUsed,
|
|
45
118
|
numTxs: result.reexecutionResult?.block?.body?.txEffects?.length ?? 0
|
|
46
119
|
});
|
|
120
|
+
return true;
|
|
47
121
|
} else {
|
|
48
|
-
this.log.warn(`Non-validator reexecution failed for slot ${proposal.slotNumber
|
|
122
|
+
this.log.warn(`Non-validator reexecution failed for slot ${proposal.slotNumber}`, {
|
|
49
123
|
blockNumber: result.blockNumber,
|
|
50
124
|
reason: result.reason
|
|
51
125
|
});
|
|
126
|
+
return false;
|
|
52
127
|
}
|
|
53
128
|
} catch (error) {
|
|
54
129
|
this.log.error('Error processing block proposal in non-validator handler', error);
|
|
130
|
+
return false;
|
|
55
131
|
}
|
|
56
|
-
return undefined; // Non-validator nodes don't return attestations
|
|
57
132
|
};
|
|
58
133
|
p2pClient.registerBlockProposalHandler(handler);
|
|
59
134
|
return this;
|
|
60
135
|
}
|
|
61
136
|
async handleBlockProposal(proposal, proposalSender, shouldReexecute) {
|
|
62
|
-
const slotNumber = proposal.slotNumber
|
|
137
|
+
const slotNumber = proposal.slotNumber;
|
|
63
138
|
const proposer = proposal.getSender();
|
|
64
|
-
const config = this.
|
|
139
|
+
const config = this.checkpointsBuilder.getConfig();
|
|
65
140
|
// Reject proposals with invalid signatures
|
|
66
141
|
if (!proposer) {
|
|
67
142
|
this.log.warn(`Received proposal with invalid signature for slot ${slotNumber}`);
|
|
@@ -110,7 +185,7 @@ export class BlockProposalHandler {
|
|
|
110
185
|
};
|
|
111
186
|
}
|
|
112
187
|
// Compute the block number based on the parent block
|
|
113
|
-
const blockNumber = parentBlockHeader === 'genesis' ? INITIAL_L2_BLOCK_NUM : parentBlockHeader.getBlockNumber() + 1;
|
|
188
|
+
const blockNumber = parentBlockHeader === 'genesis' ? BlockNumber(INITIAL_L2_BLOCK_NUM) : BlockNumber(parentBlockHeader.getBlockNumber() + 1);
|
|
114
189
|
// Check that this block number does not exist already
|
|
115
190
|
const existingBlock = await this.blockSource.getBlockHeader(blockNumber);
|
|
116
191
|
if (existingBlock) {
|
|
@@ -127,10 +202,20 @@ export class BlockProposalHandler {
|
|
|
127
202
|
pinnedPeer: proposalSender,
|
|
128
203
|
deadline: this.getReexecutionDeadline(slotNumber, config)
|
|
129
204
|
});
|
|
205
|
+
// Compute the checkpoint number for this block and validate checkpoint consistency
|
|
206
|
+
const checkpointResult = await this.computeCheckpointNumber(proposal, parentBlockHeader, proposalInfo);
|
|
207
|
+
if (checkpointResult.reason) {
|
|
208
|
+
return {
|
|
209
|
+
isValid: false,
|
|
210
|
+
blockNumber,
|
|
211
|
+
reason: checkpointResult.reason
|
|
212
|
+
};
|
|
213
|
+
}
|
|
214
|
+
const checkpointNumber = checkpointResult.checkpointNumber;
|
|
130
215
|
// Check that I have the same set of l1ToL2Messages as the proposal
|
|
131
|
-
const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(
|
|
132
|
-
const computedInHash =
|
|
133
|
-
const proposalInHash = proposal.
|
|
216
|
+
const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(checkpointNumber);
|
|
217
|
+
const computedInHash = computeInHashFromL1ToL2Messages(l1ToL2Messages);
|
|
218
|
+
const proposalInHash = proposal.inHash;
|
|
134
219
|
if (!computedInHash.equals(proposalInHash)) {
|
|
135
220
|
this.log.warn(`L1 to L2 messages in hash mismatch, skipping processing`, {
|
|
136
221
|
proposalInHash: proposalInHash.toString(),
|
|
@@ -158,9 +243,18 @@ export class BlockProposalHandler {
|
|
|
158
243
|
// Try re-executing the transactions in the proposal if needed
|
|
159
244
|
let reexecutionResult;
|
|
160
245
|
if (shouldReexecute) {
|
|
246
|
+
// Compute the previous checkpoint out hashes for the epoch.
|
|
247
|
+
// TODO(mbps): This assumes one block per checkpoint, which is only true for now.
|
|
248
|
+
// TODO: There can be a more efficient way to get the previous checkpoint out hashes without having to fetch all
|
|
249
|
+
// the blocks.
|
|
250
|
+
const epoch = getEpochAtSlot(slotNumber, this.epochCache.getL1Constants());
|
|
251
|
+
const previousBlocks = (await this.blockSource.getBlocksForEpoch(epoch)).filter((b)=>b.number < blockNumber).sort((a, b)=>a.number - b.number);
|
|
252
|
+
const previousCheckpointOutHashes = previousBlocks.map((b)=>computeCheckpointOutHash([
|
|
253
|
+
b.body.txEffects.map((tx)=>tx.l2ToL1Msgs)
|
|
254
|
+
]));
|
|
161
255
|
try {
|
|
162
256
|
this.log.verbose(`Re-executing transactions in the proposal`, proposalInfo);
|
|
163
|
-
reexecutionResult = await this.reexecuteTransactions(proposal, blockNumber, txs, l1ToL2Messages);
|
|
257
|
+
reexecutionResult = await this.reexecuteTransactions(proposal, blockNumber, checkpointNumber, txs, l1ToL2Messages, previousCheckpointOutHashes);
|
|
164
258
|
} catch (error) {
|
|
165
259
|
this.log.error(`Error reexecuting txs while processing block proposal`, error, proposalInfo);
|
|
166
260
|
const reason = this.getReexecuteFailureReason(error);
|
|
@@ -172,7 +266,12 @@ export class BlockProposalHandler {
|
|
|
172
266
|
};
|
|
173
267
|
}
|
|
174
268
|
}
|
|
175
|
-
this
|
|
269
|
+
// If we succeeded, push this block into the archiver (unless disabled)
|
|
270
|
+
// TODO(palla/mbps): Change default to false once block sync is stable.
|
|
271
|
+
if (reexecutionResult?.block && this.config.skipPushProposedBlocksToArchiver === false) {
|
|
272
|
+
await this.blockSource.addBlock(reexecutionResult?.block);
|
|
273
|
+
}
|
|
274
|
+
this.log.info(`Successfully processed block ${blockNumber} proposal at index ${proposal.indexWithinCheckpoint} on slot ${slotNumber}`, proposalInfo);
|
|
176
275
|
return {
|
|
177
276
|
isValid: true,
|
|
178
277
|
blockNumber,
|
|
@@ -180,9 +279,9 @@ export class BlockProposalHandler {
|
|
|
180
279
|
};
|
|
181
280
|
}
|
|
182
281
|
async getParentBlock(proposal) {
|
|
183
|
-
const parentArchive = proposal.
|
|
184
|
-
const slot = proposal.slotNumber
|
|
185
|
-
const config = this.
|
|
282
|
+
const parentArchive = proposal.blockHeader.lastArchive.root;
|
|
283
|
+
const slot = proposal.slotNumber;
|
|
284
|
+
const config = this.checkpointsBuilder.getConfig();
|
|
186
285
|
const { genesisArchiveRoot } = await this.blockSource.getGenesisValues();
|
|
187
286
|
if (parentArchive.equals(genesisArchiveRoot)) {
|
|
188
287
|
return 'genesis';
|
|
@@ -205,10 +304,163 @@ export class BlockProposalHandler {
|
|
|
205
304
|
return undefined;
|
|
206
305
|
}
|
|
207
306
|
}
|
|
307
|
+
async computeCheckpointNumber(proposal, parentBlockHeader, proposalInfo) {
|
|
308
|
+
if (parentBlockHeader === 'genesis') {
|
|
309
|
+
// First block is in checkpoint 1
|
|
310
|
+
if (proposal.indexWithinCheckpoint !== 0) {
|
|
311
|
+
this.log.warn(`First block proposal has non-zero indexWithinCheckpoint`, proposalInfo);
|
|
312
|
+
return {
|
|
313
|
+
reason: 'invalid_proposal'
|
|
314
|
+
};
|
|
315
|
+
}
|
|
316
|
+
return {
|
|
317
|
+
checkpointNumber: CheckpointNumber.INITIAL
|
|
318
|
+
};
|
|
319
|
+
}
|
|
320
|
+
// Get the parent block to find its checkpoint number
|
|
321
|
+
// TODO(palla/mbps): The block header should include the checkpoint number to avoid this lookup,
|
|
322
|
+
// or at least the L2BlockSource should return a different struct that includes it.
|
|
323
|
+
const parentBlockNumber = parentBlockHeader.getBlockNumber();
|
|
324
|
+
const parentBlock = await this.blockSource.getL2BlockNew(parentBlockNumber);
|
|
325
|
+
if (!parentBlock) {
|
|
326
|
+
this.log.warn(`Parent block ${parentBlockNumber} not found in archiver`, proposalInfo);
|
|
327
|
+
return {
|
|
328
|
+
reason: 'invalid_proposal'
|
|
329
|
+
};
|
|
330
|
+
}
|
|
331
|
+
if (proposal.indexWithinCheckpoint === 0) {
|
|
332
|
+
// If this is the first block in a new checkpoint, increment the checkpoint number
|
|
333
|
+
if (!(proposal.blockHeader.getSlot() > parentBlockHeader.getSlot())) {
|
|
334
|
+
this.log.warn(`Slot should be greater than parent block slot for first block in checkpoint`, proposalInfo);
|
|
335
|
+
return {
|
|
336
|
+
reason: 'invalid_proposal'
|
|
337
|
+
};
|
|
338
|
+
}
|
|
339
|
+
return {
|
|
340
|
+
checkpointNumber: CheckpointNumber(parentBlock.checkpointNumber + 1)
|
|
341
|
+
};
|
|
342
|
+
}
|
|
343
|
+
// Otherwise it should follow the previous block in the same checkpoint
|
|
344
|
+
if (proposal.indexWithinCheckpoint !== parentBlock.indexWithinCheckpoint + 1) {
|
|
345
|
+
this.log.warn(`Non-sequential indexWithinCheckpoint`, proposalInfo);
|
|
346
|
+
return {
|
|
347
|
+
reason: 'invalid_proposal'
|
|
348
|
+
};
|
|
349
|
+
}
|
|
350
|
+
if (proposal.blockHeader.getSlot() !== parentBlockHeader.getSlot()) {
|
|
351
|
+
this.log.warn(`Slot should be equal to parent block slot for non-first block in checkpoint`, proposalInfo);
|
|
352
|
+
return {
|
|
353
|
+
reason: 'invalid_proposal'
|
|
354
|
+
};
|
|
355
|
+
}
|
|
356
|
+
// For non-first blocks in a checkpoint, validate global variables match parent (except blockNumber)
|
|
357
|
+
const validationResult = this.validateNonFirstBlockInCheckpoint(proposal, parentBlock, proposalInfo);
|
|
358
|
+
if (validationResult) {
|
|
359
|
+
return validationResult;
|
|
360
|
+
}
|
|
361
|
+
return {
|
|
362
|
+
checkpointNumber: parentBlock.checkpointNumber
|
|
363
|
+
};
|
|
364
|
+
}
|
|
365
|
+
/**
|
|
366
|
+
* Validates that a non-first block in a checkpoint has consistent global variables with its parent.
|
|
367
|
+
* For blocks with indexWithinCheckpoint > 0, all global variables except blockNumber must match the parent.
|
|
368
|
+
* @returns A failure result if validation fails, undefined if validation passes
|
|
369
|
+
*/ validateNonFirstBlockInCheckpoint(proposal, parentBlock, proposalInfo) {
|
|
370
|
+
const proposalGlobals = proposal.blockHeader.globalVariables;
|
|
371
|
+
const parentGlobals = parentBlock.header.globalVariables;
|
|
372
|
+
// All global variables except blockNumber should match the parent
|
|
373
|
+
// blockNumber naturally increments between blocks
|
|
374
|
+
if (!proposalGlobals.chainId.equals(parentGlobals.chainId)) {
|
|
375
|
+
this.log.warn(`Non-first block in checkpoint has mismatched chainId`, {
|
|
376
|
+
...proposalInfo,
|
|
377
|
+
proposalChainId: proposalGlobals.chainId.toString(),
|
|
378
|
+
parentChainId: parentGlobals.chainId.toString()
|
|
379
|
+
});
|
|
380
|
+
return {
|
|
381
|
+
reason: 'global_variables_mismatch'
|
|
382
|
+
};
|
|
383
|
+
}
|
|
384
|
+
if (!proposalGlobals.version.equals(parentGlobals.version)) {
|
|
385
|
+
this.log.warn(`Non-first block in checkpoint has mismatched version`, {
|
|
386
|
+
...proposalInfo,
|
|
387
|
+
proposalVersion: proposalGlobals.version.toString(),
|
|
388
|
+
parentVersion: parentGlobals.version.toString()
|
|
389
|
+
});
|
|
390
|
+
return {
|
|
391
|
+
reason: 'global_variables_mismatch'
|
|
392
|
+
};
|
|
393
|
+
}
|
|
394
|
+
if (proposalGlobals.slotNumber !== parentGlobals.slotNumber) {
|
|
395
|
+
this.log.warn(`Non-first block in checkpoint has mismatched slotNumber`, {
|
|
396
|
+
...proposalInfo,
|
|
397
|
+
proposalSlotNumber: proposalGlobals.slotNumber,
|
|
398
|
+
parentSlotNumber: parentGlobals.slotNumber
|
|
399
|
+
});
|
|
400
|
+
return {
|
|
401
|
+
reason: 'global_variables_mismatch'
|
|
402
|
+
};
|
|
403
|
+
}
|
|
404
|
+
if (proposalGlobals.timestamp !== parentGlobals.timestamp) {
|
|
405
|
+
this.log.warn(`Non-first block in checkpoint has mismatched timestamp`, {
|
|
406
|
+
...proposalInfo,
|
|
407
|
+
proposalTimestamp: proposalGlobals.timestamp.toString(),
|
|
408
|
+
parentTimestamp: parentGlobals.timestamp.toString()
|
|
409
|
+
});
|
|
410
|
+
return {
|
|
411
|
+
reason: 'global_variables_mismatch'
|
|
412
|
+
};
|
|
413
|
+
}
|
|
414
|
+
if (!proposalGlobals.coinbase.equals(parentGlobals.coinbase)) {
|
|
415
|
+
this.log.warn(`Non-first block in checkpoint has mismatched coinbase`, {
|
|
416
|
+
...proposalInfo,
|
|
417
|
+
proposalCoinbase: proposalGlobals.coinbase.toString(),
|
|
418
|
+
parentCoinbase: parentGlobals.coinbase.toString()
|
|
419
|
+
});
|
|
420
|
+
return {
|
|
421
|
+
reason: 'global_variables_mismatch'
|
|
422
|
+
};
|
|
423
|
+
}
|
|
424
|
+
if (!proposalGlobals.feeRecipient.equals(parentGlobals.feeRecipient)) {
|
|
425
|
+
this.log.warn(`Non-first block in checkpoint has mismatched feeRecipient`, {
|
|
426
|
+
...proposalInfo,
|
|
427
|
+
proposalFeeRecipient: proposalGlobals.feeRecipient.toString(),
|
|
428
|
+
parentFeeRecipient: parentGlobals.feeRecipient.toString()
|
|
429
|
+
});
|
|
430
|
+
return {
|
|
431
|
+
reason: 'global_variables_mismatch'
|
|
432
|
+
};
|
|
433
|
+
}
|
|
434
|
+
if (!proposalGlobals.gasFees.equals(parentGlobals.gasFees)) {
|
|
435
|
+
this.log.warn(`Non-first block in checkpoint has mismatched gasFees`, {
|
|
436
|
+
...proposalInfo,
|
|
437
|
+
proposalGasFees: proposalGlobals.gasFees.toInspect(),
|
|
438
|
+
parentGasFees: parentGlobals.gasFees.toInspect()
|
|
439
|
+
});
|
|
440
|
+
return {
|
|
441
|
+
reason: 'global_variables_mismatch'
|
|
442
|
+
};
|
|
443
|
+
}
|
|
444
|
+
return undefined;
|
|
445
|
+
}
|
|
208
446
|
getReexecutionDeadline(slot, config) {
|
|
209
|
-
const nextSlotTimestampSeconds = Number(getTimestampForSlot(slot +
|
|
210
|
-
|
|
211
|
-
|
|
447
|
+
const nextSlotTimestampSeconds = Number(getTimestampForSlot(SlotNumber(slot + 1), config));
|
|
448
|
+
return new Date(nextSlotTimestampSeconds * 1000);
|
|
449
|
+
}
|
|
450
|
+
/**
|
|
451
|
+
* Gets all prior blocks in the same checkpoint (same slot and checkpoint number) up to but not including upToBlockNumber.
|
|
452
|
+
*/ async getBlocksInCheckpoint(slot, upToBlockNumber, checkpointNumber) {
|
|
453
|
+
const blocks = [];
|
|
454
|
+
let currentBlockNumber = BlockNumber(upToBlockNumber - 1);
|
|
455
|
+
while(currentBlockNumber >= INITIAL_L2_BLOCK_NUM){
|
|
456
|
+
const block = await this.blockSource.getL2BlockNew(currentBlockNumber);
|
|
457
|
+
if (!block || block.header.getSlot() !== slot || block.checkpointNumber !== checkpointNumber) {
|
|
458
|
+
break;
|
|
459
|
+
}
|
|
460
|
+
blocks.unshift(block);
|
|
461
|
+
currentBlockNumber = BlockNumber(currentBlockNumber - 1);
|
|
462
|
+
}
|
|
463
|
+
return blocks;
|
|
212
464
|
}
|
|
213
465
|
getReexecuteFailureReason(err) {
|
|
214
466
|
if (err instanceof ReExStateMismatchError) {
|
|
@@ -221,66 +473,89 @@ export class BlockProposalHandler {
|
|
|
221
473
|
return 'unknown_error';
|
|
222
474
|
}
|
|
223
475
|
}
|
|
224
|
-
async reexecuteTransactions(proposal, blockNumber, txs, l1ToL2Messages) {
|
|
225
|
-
const
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
blockNumber,
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
if (block.body.txEffects.length !== txHashes.length) {
|
|
263
|
-
this.metrics?.recordFailedReexecution(proposal);
|
|
264
|
-
throw new ReExTimeoutError();
|
|
265
|
-
}
|
|
266
|
-
// Throw a ReExStateMismatchError error if state updates do not match
|
|
267
|
-
const blockPayload = ConsensusPayload.fromBlock(block);
|
|
268
|
-
if (!blockPayload.equals(proposal.payload)) {
|
|
269
|
-
this.log.warn(`Re-execution state mismatch for slot ${slot}`, {
|
|
270
|
-
expected: blockPayload.toInspect(),
|
|
271
|
-
actual: proposal.payload.toInspect()
|
|
476
|
+
async reexecuteTransactions(proposal, blockNumber, checkpointNumber, txs, l1ToL2Messages, previousCheckpointOutHashes) {
|
|
477
|
+
const env = {
|
|
478
|
+
stack: [],
|
|
479
|
+
error: void 0,
|
|
480
|
+
hasError: false
|
|
481
|
+
};
|
|
482
|
+
try {
|
|
483
|
+
const { blockHeader, txHashes } = proposal;
|
|
484
|
+
// If we do not have all of the transactions, then we should fail
|
|
485
|
+
if (txs.length !== txHashes.length) {
|
|
486
|
+
const foundTxHashes = txs.map((tx)=>tx.getTxHash());
|
|
487
|
+
const missingTxHashes = txHashes.filter((txHash)=>!foundTxHashes.includes(txHash));
|
|
488
|
+
throw new TransactionsNotAvailableError(missingTxHashes);
|
|
489
|
+
}
|
|
490
|
+
const timer = new Timer();
|
|
491
|
+
const slot = proposal.slotNumber;
|
|
492
|
+
const config = this.checkpointsBuilder.getConfig();
|
|
493
|
+
// Get prior blocks in this checkpoint (same slot and checkpoint number)
|
|
494
|
+
const priorBlocks = await this.getBlocksInCheckpoint(slot, blockNumber, checkpointNumber);
|
|
495
|
+
// Fork before the block to be built
|
|
496
|
+
const parentBlockNumber = BlockNumber(blockNumber - 1);
|
|
497
|
+
const fork = _ts_add_disposable_resource(env, await this.worldState.fork(parentBlockNumber), false);
|
|
498
|
+
// Build checkpoint constants from proposal (excludes blockNumber and timestamp which are per-block)
|
|
499
|
+
const constants = {
|
|
500
|
+
chainId: new Fr(config.l1ChainId),
|
|
501
|
+
version: new Fr(config.rollupVersion),
|
|
502
|
+
slotNumber: slot,
|
|
503
|
+
coinbase: blockHeader.globalVariables.coinbase,
|
|
504
|
+
feeRecipient: blockHeader.globalVariables.feeRecipient,
|
|
505
|
+
gasFees: blockHeader.globalVariables.gasFees
|
|
506
|
+
};
|
|
507
|
+
// Create checkpoint builder with prior blocks
|
|
508
|
+
const checkpointBuilder = await this.checkpointsBuilder.openCheckpoint(checkpointNumber, constants, l1ToL2Messages, previousCheckpointOutHashes, fork, priorBlocks);
|
|
509
|
+
// Build the new block
|
|
510
|
+
const deadline = this.getReexecutionDeadline(slot, config);
|
|
511
|
+
const result = await checkpointBuilder.buildBlock(txs, blockNumber, blockHeader.globalVariables.timestamp, {
|
|
512
|
+
deadline,
|
|
513
|
+
expectedEndState: blockHeader.state
|
|
272
514
|
});
|
|
273
|
-
|
|
274
|
-
|
|
515
|
+
const { block, failedTxs } = result;
|
|
516
|
+
const numFailedTxs = failedTxs.length;
|
|
517
|
+
this.log.verbose(`Transaction re-execution complete for slot ${slot}`, {
|
|
518
|
+
numFailedTxs,
|
|
519
|
+
numProposalTxs: txHashes.length,
|
|
520
|
+
numProcessedTxs: block.body.txEffects.length,
|
|
521
|
+
slot
|
|
522
|
+
});
|
|
523
|
+
if (numFailedTxs > 0) {
|
|
524
|
+
this.metrics?.recordFailedReexecution(proposal);
|
|
525
|
+
throw new ReExFailedTxsError(numFailedTxs);
|
|
526
|
+
}
|
|
527
|
+
if (block.body.txEffects.length !== txHashes.length) {
|
|
528
|
+
this.metrics?.recordFailedReexecution(proposal);
|
|
529
|
+
throw new ReExTimeoutError();
|
|
530
|
+
}
|
|
531
|
+
// Throw a ReExStateMismatchError error if state updates do not match
|
|
532
|
+
// Compare the full block structure (archive and header) from the built block with the proposal
|
|
533
|
+
const archiveMatches = proposal.archive.equals(block.archive.root);
|
|
534
|
+
const headerMatches = proposal.blockHeader.equals(block.header);
|
|
535
|
+
if (!archiveMatches || !headerMatches) {
|
|
536
|
+
this.log.warn(`Re-execution state mismatch for slot ${slot}`, {
|
|
537
|
+
expectedArchive: block.archive.root.toString(),
|
|
538
|
+
actualArchive: proposal.archive.toString(),
|
|
539
|
+
expectedHeader: block.header.toInspect(),
|
|
540
|
+
actualHeader: proposal.blockHeader.toInspect()
|
|
541
|
+
});
|
|
542
|
+
this.metrics?.recordFailedReexecution(proposal);
|
|
543
|
+
throw new ReExStateMismatchError(proposal.archive, block.archive.root);
|
|
544
|
+
}
|
|
545
|
+
const reexecutionTimeMs = timer.ms();
|
|
546
|
+
const totalManaUsed = block.header.totalManaUsed.toNumber() / 1e6;
|
|
547
|
+
this.metrics?.recordReex(reexecutionTimeMs, txs.length, totalManaUsed);
|
|
548
|
+
return {
|
|
549
|
+
block,
|
|
550
|
+
failedTxs,
|
|
551
|
+
reexecutionTimeMs,
|
|
552
|
+
totalManaUsed
|
|
553
|
+
};
|
|
554
|
+
} catch (e) {
|
|
555
|
+
env.error = e;
|
|
556
|
+
env.hasError = true;
|
|
557
|
+
} finally{
|
|
558
|
+
_ts_dispose_resources(env);
|
|
275
559
|
}
|
|
276
|
-
const reexecutionTimeMs = timer.ms();
|
|
277
|
-
const totalManaUsed = block.header.totalManaUsed.toNumber() / 1e6;
|
|
278
|
-
this.metrics?.recordReex(reexecutionTimeMs, txs.length, totalManaUsed);
|
|
279
|
-
return {
|
|
280
|
-
block,
|
|
281
|
-
failedTxs,
|
|
282
|
-
reexecutionTimeMs,
|
|
283
|
-
totalManaUsed
|
|
284
|
-
};
|
|
285
560
|
}
|
|
286
561
|
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { BlockNumber, CheckpointNumber } from '@aztec/foundation/branded-types';
|
|
2
|
+
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
3
|
+
import { DateProvider, Timer } from '@aztec/foundation/timer';
|
|
4
|
+
import { LightweightCheckpointBuilder } from '@aztec/prover-client/light';
|
|
5
|
+
import { PublicProcessor } from '@aztec/simulator/server';
|
|
6
|
+
import { L2BlockNew } from '@aztec/stdlib/block';
|
|
7
|
+
import { Checkpoint } from '@aztec/stdlib/checkpoint';
|
|
8
|
+
import type { ContractDataSource } from '@aztec/stdlib/contract';
|
|
9
|
+
import type { L1RollupConstants } from '@aztec/stdlib/epoch-helpers';
|
|
10
|
+
import { type BuildBlockInCheckpointResult, type FullNodeBlockBuilderConfig, type ICheckpointBlockBuilder, type ICheckpointsBuilder, type MerkleTreeWriteOperations, type PublicProcessorLimits, type WorldStateSynchronizer } from '@aztec/stdlib/interfaces/server';
|
|
11
|
+
import { type CheckpointGlobalVariables, GlobalVariables, StateReference, Tx } from '@aztec/stdlib/tx';
|
|
12
|
+
import { type TelemetryClient } from '@aztec/telemetry-client';
|
|
13
|
+
export type { BuildBlockInCheckpointResult } from '@aztec/stdlib/interfaces/server';
|
|
14
|
+
/** Result of building a block within a checkpoint. Extends the base interface with timer. */
|
|
15
|
+
export interface BuildBlockInCheckpointResultWithTimer extends BuildBlockInCheckpointResult {
|
|
16
|
+
blockBuildingTimer: Timer;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Builder for a single checkpoint. Handles building blocks within the checkpoint
|
|
20
|
+
* and completing it.
|
|
21
|
+
*/
|
|
22
|
+
export declare class CheckpointBuilder implements ICheckpointBlockBuilder {
|
|
23
|
+
private checkpointBuilder;
|
|
24
|
+
private fork;
|
|
25
|
+
private config;
|
|
26
|
+
private contractDataSource;
|
|
27
|
+
private dateProvider;
|
|
28
|
+
private telemetryClient;
|
|
29
|
+
constructor(checkpointBuilder: LightweightCheckpointBuilder, fork: MerkleTreeWriteOperations, config: FullNodeBlockBuilderConfig, contractDataSource: ContractDataSource, dateProvider: DateProvider, telemetryClient: TelemetryClient);
|
|
30
|
+
getConstantData(): CheckpointGlobalVariables;
|
|
31
|
+
/**
|
|
32
|
+
* Builds a single block within this checkpoint.
|
|
33
|
+
*/
|
|
34
|
+
buildBlock(pendingTxs: Iterable<Tx> | AsyncIterable<Tx>, blockNumber: BlockNumber, timestamp: bigint, opts: PublicProcessorLimits & {
|
|
35
|
+
expectedEndState?: StateReference;
|
|
36
|
+
}): Promise<BuildBlockInCheckpointResultWithTimer>;
|
|
37
|
+
/** Completes the checkpoint and returns it. */
|
|
38
|
+
completeCheckpoint(): Promise<Checkpoint>;
|
|
39
|
+
/** Gets the checkpoint currently in progress. */
|
|
40
|
+
getCheckpoint(): Promise<Checkpoint>;
|
|
41
|
+
protected makeBlockBuilderDeps(globalVariables: GlobalVariables, fork: MerkleTreeWriteOperations): Promise<{
|
|
42
|
+
processor: PublicProcessor;
|
|
43
|
+
validator: import("@aztec/stdlib/interfaces/server").PublicProcessorValidator;
|
|
44
|
+
}>;
|
|
45
|
+
}
|
|
46
|
+
/** Factory for creating checkpoint builders. */
|
|
47
|
+
export declare class FullNodeCheckpointsBuilder implements ICheckpointsBuilder {
|
|
48
|
+
private config;
|
|
49
|
+
private worldState;
|
|
50
|
+
private contractDataSource;
|
|
51
|
+
private dateProvider;
|
|
52
|
+
private telemetryClient;
|
|
53
|
+
constructor(config: FullNodeBlockBuilderConfig & Pick<L1RollupConstants, 'l1GenesisTime' | 'slotDuration'>, worldState: WorldStateSynchronizer, contractDataSource: ContractDataSource, dateProvider: DateProvider, telemetryClient?: TelemetryClient);
|
|
54
|
+
getConfig(): FullNodeBlockBuilderConfig;
|
|
55
|
+
updateConfig(config: Partial<FullNodeBlockBuilderConfig>): void;
|
|
56
|
+
/**
|
|
57
|
+
* Starts a new checkpoint and returns a CheckpointBuilder to build blocks within it.
|
|
58
|
+
*/
|
|
59
|
+
startCheckpoint(checkpointNumber: CheckpointNumber, constants: CheckpointGlobalVariables, l1ToL2Messages: Fr[], previousCheckpointOutHashes: Fr[], fork: MerkleTreeWriteOperations): Promise<CheckpointBuilder>;
|
|
60
|
+
/**
|
|
61
|
+
* Opens a checkpoint, either starting fresh or resuming from existing blocks.
|
|
62
|
+
*/
|
|
63
|
+
openCheckpoint(checkpointNumber: CheckpointNumber, constants: CheckpointGlobalVariables, l1ToL2Messages: Fr[], previousCheckpointOutHashes: Fr[], fork: MerkleTreeWriteOperations, existingBlocks?: L2BlockNew[]): Promise<CheckpointBuilder>;
|
|
64
|
+
/** Returns a fork of the world state at the given block number. */
|
|
65
|
+
getFork(blockNumber: BlockNumber): Promise<MerkleTreeWriteOperations>;
|
|
66
|
+
}
|
|
67
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2twb2ludF9idWlsZGVyLmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvY2hlY2twb2ludF9idWlsZGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUVoRixPQUFPLEVBQUUsRUFBRSxFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFHcEQsT0FBTyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQVcsTUFBTSx5QkFBeUIsQ0FBQztBQUV2RSxPQUFPLEVBQUUsNEJBQTRCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUMxRSxPQUFPLEVBR0wsZUFBZSxFQUVoQixNQUFNLHlCQUF5QixDQUFDO0FBQ2pDLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNqRCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDdEQsT0FBTyxLQUFLLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNqRSxPQUFPLEtBQUssRUFBRSxpQkFBaUIsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBRXJFLE9BQU8sRUFDTCxLQUFLLDRCQUE0QixFQUNqQyxLQUFLLDBCQUEwQixFQUUvQixLQUFLLHVCQUF1QixFQUM1QixLQUFLLG1CQUFtQixFQUN4QixLQUFLLHlCQUF5QixFQUM5QixLQUFLLHFCQUFxQixFQUMxQixLQUFLLHNCQUFzQixFQUM1QixNQUFNLGlDQUFpQyxDQUFDO0FBRXpDLE9BQU8sRUFBRSxLQUFLLHlCQUF5QixFQUFFLGVBQWUsRUFBRSxjQUFjLEVBQUUsRUFBRSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDdkcsT0FBTyxFQUFFLEtBQUssZUFBZSxFQUFzQixNQUFNLHlCQUF5QixDQUFDO0FBS25GLFlBQVksRUFBRSw0QkFBNEIsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBSXBGLDZGQUE2RjtB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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"checkpoint_builder.d.ts","sourceRoot":"","sources":["../src/checkpoint_builder.ts"],"names":[],"mappings":"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"}
|