@aztec/sequencer-client 3.0.0-nightly.20251114 → 3.0.0-nightly.20251115
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"block_builder.d.ts","sourceRoot":"","sources":["../../src/sequencer/block_builder.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,0BAA0B,CAAC;AAInD,OAAO,EAAE,YAAY,EAAkB,MAAM,yBAAyB,CAAC;AAGvE,OAAO,EAGL,eAAe,EAEhB,MAAM,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"block_builder.d.ts","sourceRoot":"","sources":["../../src/sequencer/block_builder.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,0BAA0B,CAAC;AAInD,OAAO,EAAE,YAAY,EAAkB,MAAM,yBAAyB,CAAC;AAGvE,OAAO,EAGL,eAAe,EAEhB,MAAM,yBAAyB,CAAC;AAEjC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AACjE,OAAO,EAAE,KAAK,iBAAiB,EAAuB,MAAM,6BAA6B,CAAC;AAE1F,OAAO,KAAK,EACV,gBAAgB,EAChB,0BAA0B,EAC1B,qBAAqB,EACrB,yBAAyB,EACzB,qBAAqB,EACrB,wBAAwB,EACxB,sBAAsB,EACvB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,eAAe,EAAE,EAAE,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,KAAK,eAAe,EAAsB,MAAM,yBAAyB,CAAC;AAMnF,wBAAsB,UAAU,CAC9B,UAAU,EAAE,QAAQ,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,EAAE,CAAC,EAC5C,cAAc,EAAE,EAAE,EAAE,EACpB,kBAAkB,EAAE,eAAe,EACnC,IAAI,EAAE,qBAAqB,YAAK,EAChC,cAAc,EAAE,yBAAyB,EACzC,SAAS,EAAE,eAAe,EAC1B,SAAS,EAAE,wBAAwB,EACnC,WAAW,EAAE,IAAI,CAAC,iBAAiB,EAAE,eAAe,GAAG,cAAc,CAAC,EACtE,YAAY,EAAE,YAAY,EAC1B,eAAe,GAAE,eAAsC,GACtD,OAAO,CAAC,gBAAgB,CAAC,CA4C3B;AAWD,qBAAa,oBAAqB,YAAW,qBAAqB;IAE9D,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,UAAU;IAClB,OAAO,CAAC,kBAAkB;IAC1B,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,eAAe;gBAJf,MAAM,EAAE,0BAA0B,EAClC,UAAU,EAAE,sBAAsB,EAClC,kBAAkB,EAAE,kBAAkB,EACtC,YAAY,EAAE,YAAY,EAC1B,eAAe,GAAE,eAAsC;IAG1D,SAAS,IAAI,0BAA0B;IAIvC,YAAY,CAAC,MAAM,EAAE,OAAO,CAAC,0BAA0B,CAAC;IAIlD,oBAAoB,CAAC,eAAe,EAAE,eAAe,EAAE,IAAI,EAAE,yBAAyB;;;;YA2CrF,mBAAmB;IAU3B,UAAU,CACd,UAAU,EAAE,QAAQ,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,EAAE,CAAC,EAC5C,cAAc,EAAE,EAAE,EAAE,EACpB,eAAe,EAAE,eAAe,EAChC,IAAI,EAAE,qBAAqB,EAC3B,YAAY,CAAC,EAAE,yBAAyB,GACvC,OAAO,CAAC,gBAAgB,CAAC;IAwC5B,OAAO,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,yBAAyB,CAAC;CAGjE"}
|
|
@@ -7,6 +7,7 @@ import { Timer, elapsed } from '@aztec/foundation/timer';
|
|
|
7
7
|
import { getDefaultAllowedSetupFunctions } from '@aztec/p2p/msg_validators';
|
|
8
8
|
import { LightweightBlockFactory } from '@aztec/prover-client/block-factory';
|
|
9
9
|
import { GuardedMerkleTreeOperations, PublicContractsDB, PublicProcessor, TelemetryPublicTxSimulator } from '@aztec/simulator/server';
|
|
10
|
+
import { PublicSimulatorConfig } from '@aztec/stdlib/avm';
|
|
10
11
|
import { getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
|
|
11
12
|
import { Gas } from '@aztec/stdlib/gas';
|
|
12
13
|
import { getTelemetryClient } from '@aztec/telemetry-client';
|
|
@@ -81,11 +82,13 @@ export class FullNodeBlockBuilder {
|
|
|
81
82
|
const txPublicSetupAllowList = this.config.txPublicSetupAllowList ?? await getDefaultAllowedSetupFunctions();
|
|
82
83
|
const contractsDB = new PublicContractsDB(this.contractDataSource);
|
|
83
84
|
const guardedFork = new GuardedMerkleTreeOperations(fork);
|
|
84
|
-
const publicTxSimulator = new TelemetryPublicTxSimulator(guardedFork, contractsDB, globalVariables, this.telemetryClient, {
|
|
85
|
-
doMerkleOperations: true,
|
|
85
|
+
const publicTxSimulator = new TelemetryPublicTxSimulator(guardedFork, contractsDB, globalVariables, this.telemetryClient, PublicSimulatorConfig.from({
|
|
86
86
|
skipFeeEnforcement: false,
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
collectDebugLogs: false,
|
|
88
|
+
collectHints: false,
|
|
89
|
+
maxDebugLogMemoryReads: 0,
|
|
90
|
+
collectStatistics: false
|
|
91
|
+
}));
|
|
89
92
|
const processor = new PublicProcessor(globalVariables, guardedFork, contractsDB, publicTxSimulator, this.dateProvider, this.telemetryClient, undefined, this.config);
|
|
90
93
|
const validator = createValidatorForBlockBuilding(fork, this.contractDataSource, globalVariables, txPublicSetupAllowList);
|
|
91
94
|
return {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/sequencer-client",
|
|
3
|
-
"version": "3.0.0-nightly.
|
|
3
|
+
"version": "3.0.0-nightly.20251115",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -26,37 +26,37 @@
|
|
|
26
26
|
"test:integration:run": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --no-cache --config jest.integration.config.json"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@aztec/aztec.js": "3.0.0-nightly.
|
|
30
|
-
"@aztec/bb-prover": "3.0.0-nightly.
|
|
31
|
-
"@aztec/blob-lib": "3.0.0-nightly.
|
|
32
|
-
"@aztec/blob-sink": "3.0.0-nightly.
|
|
33
|
-
"@aztec/constants": "3.0.0-nightly.
|
|
34
|
-
"@aztec/epoch-cache": "3.0.0-nightly.
|
|
35
|
-
"@aztec/ethereum": "3.0.0-nightly.
|
|
36
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
37
|
-
"@aztec/l1-artifacts": "3.0.0-nightly.
|
|
38
|
-
"@aztec/merkle-tree": "3.0.0-nightly.
|
|
39
|
-
"@aztec/node-keystore": "3.0.0-nightly.
|
|
40
|
-
"@aztec/noir-acvm_js": "3.0.0-nightly.
|
|
41
|
-
"@aztec/noir-contracts.js": "3.0.0-nightly.
|
|
42
|
-
"@aztec/noir-protocol-circuits-types": "3.0.0-nightly.
|
|
43
|
-
"@aztec/noir-types": "3.0.0-nightly.
|
|
44
|
-
"@aztec/p2p": "3.0.0-nightly.
|
|
45
|
-
"@aztec/protocol-contracts": "3.0.0-nightly.
|
|
46
|
-
"@aztec/prover-client": "3.0.0-nightly.
|
|
47
|
-
"@aztec/simulator": "3.0.0-nightly.
|
|
48
|
-
"@aztec/slasher": "3.0.0-nightly.
|
|
49
|
-
"@aztec/stdlib": "3.0.0-nightly.
|
|
50
|
-
"@aztec/telemetry-client": "3.0.0-nightly.
|
|
51
|
-
"@aztec/validator-client": "3.0.0-nightly.
|
|
52
|
-
"@aztec/world-state": "3.0.0-nightly.
|
|
29
|
+
"@aztec/aztec.js": "3.0.0-nightly.20251115",
|
|
30
|
+
"@aztec/bb-prover": "3.0.0-nightly.20251115",
|
|
31
|
+
"@aztec/blob-lib": "3.0.0-nightly.20251115",
|
|
32
|
+
"@aztec/blob-sink": "3.0.0-nightly.20251115",
|
|
33
|
+
"@aztec/constants": "3.0.0-nightly.20251115",
|
|
34
|
+
"@aztec/epoch-cache": "3.0.0-nightly.20251115",
|
|
35
|
+
"@aztec/ethereum": "3.0.0-nightly.20251115",
|
|
36
|
+
"@aztec/foundation": "3.0.0-nightly.20251115",
|
|
37
|
+
"@aztec/l1-artifacts": "3.0.0-nightly.20251115",
|
|
38
|
+
"@aztec/merkle-tree": "3.0.0-nightly.20251115",
|
|
39
|
+
"@aztec/node-keystore": "3.0.0-nightly.20251115",
|
|
40
|
+
"@aztec/noir-acvm_js": "3.0.0-nightly.20251115",
|
|
41
|
+
"@aztec/noir-contracts.js": "3.0.0-nightly.20251115",
|
|
42
|
+
"@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251115",
|
|
43
|
+
"@aztec/noir-types": "3.0.0-nightly.20251115",
|
|
44
|
+
"@aztec/p2p": "3.0.0-nightly.20251115",
|
|
45
|
+
"@aztec/protocol-contracts": "3.0.0-nightly.20251115",
|
|
46
|
+
"@aztec/prover-client": "3.0.0-nightly.20251115",
|
|
47
|
+
"@aztec/simulator": "3.0.0-nightly.20251115",
|
|
48
|
+
"@aztec/slasher": "3.0.0-nightly.20251115",
|
|
49
|
+
"@aztec/stdlib": "3.0.0-nightly.20251115",
|
|
50
|
+
"@aztec/telemetry-client": "3.0.0-nightly.20251115",
|
|
51
|
+
"@aztec/validator-client": "3.0.0-nightly.20251115",
|
|
52
|
+
"@aztec/world-state": "3.0.0-nightly.20251115",
|
|
53
53
|
"lodash.chunk": "^4.2.0",
|
|
54
54
|
"tslib": "^2.4.0",
|
|
55
55
|
"viem": "npm:@spalladino/viem@2.38.2-eip7594.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@aztec/archiver": "3.0.0-nightly.
|
|
59
|
-
"@aztec/kv-store": "3.0.0-nightly.
|
|
58
|
+
"@aztec/archiver": "3.0.0-nightly.20251115",
|
|
59
|
+
"@aztec/kv-store": "3.0.0-nightly.20251115",
|
|
60
60
|
"@jest/globals": "^30.0.0",
|
|
61
61
|
"@types/jest": "^30.0.0",
|
|
62
62
|
"@types/lodash.chunk": "^4.2.7",
|
|
@@ -13,6 +13,7 @@ import {
|
|
|
13
13
|
PublicProcessor,
|
|
14
14
|
TelemetryPublicTxSimulator,
|
|
15
15
|
} from '@aztec/simulator/server';
|
|
16
|
+
import { PublicSimulatorConfig } from '@aztec/stdlib/avm';
|
|
16
17
|
import type { ContractDataSource } from '@aztec/stdlib/contract';
|
|
17
18
|
import { type L1RollupConstants, getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
|
|
18
19
|
import { Gas } from '@aztec/stdlib/gas';
|
|
@@ -125,11 +126,13 @@ export class FullNodeBlockBuilder implements IFullNodeBlockBuilder {
|
|
|
125
126
|
contractsDB,
|
|
126
127
|
globalVariables,
|
|
127
128
|
this.telemetryClient,
|
|
128
|
-
{
|
|
129
|
-
doMerkleOperations: true,
|
|
129
|
+
PublicSimulatorConfig.from({
|
|
130
130
|
skipFeeEnforcement: false,
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
collectDebugLogs: false,
|
|
132
|
+
collectHints: false,
|
|
133
|
+
maxDebugLogMemoryReads: 0,
|
|
134
|
+
collectStatistics: false,
|
|
135
|
+
}),
|
|
133
136
|
);
|
|
134
137
|
|
|
135
138
|
const processor = new PublicProcessor(
|