@aztec/sequencer-client 3.0.0-nightly.20251119 → 3.0.0-nightly.20251120
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.
|
@@ -4,7 +4,7 @@ function _ts_decorate(decorators, target, key, desc) {
|
|
|
4
4
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
5
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
6
|
}
|
|
7
|
-
import {
|
|
7
|
+
import { BLOBS_PER_CHECKPOINT, FIELDS_PER_BLOB, INITIAL_L2_BLOCK_NUM } from '@aztec/constants';
|
|
8
8
|
import { FormattedViemError, NoCommitteeError } from '@aztec/ethereum';
|
|
9
9
|
import { omit, pick } from '@aztec/foundation/collection';
|
|
10
10
|
import { randomInt } from '@aztec/foundation/crypto';
|
|
@@ -480,7 +480,7 @@ export { SequencerState };
|
|
|
480
480
|
maxTransactions: this.maxTxsPerBlock,
|
|
481
481
|
maxBlockSize: this.maxBlockSizeInBytes,
|
|
482
482
|
maxBlockGas: this.maxBlockGas,
|
|
483
|
-
maxBlobFields:
|
|
483
|
+
maxBlobFields: BLOBS_PER_CHECKPOINT * FIELDS_PER_BLOB,
|
|
484
484
|
deadline
|
|
485
485
|
};
|
|
486
486
|
}
|
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.20251120",
|
|
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.20251120",
|
|
30
|
+
"@aztec/bb-prover": "3.0.0-nightly.20251120",
|
|
31
|
+
"@aztec/blob-lib": "3.0.0-nightly.20251120",
|
|
32
|
+
"@aztec/blob-sink": "3.0.0-nightly.20251120",
|
|
33
|
+
"@aztec/constants": "3.0.0-nightly.20251120",
|
|
34
|
+
"@aztec/epoch-cache": "3.0.0-nightly.20251120",
|
|
35
|
+
"@aztec/ethereum": "3.0.0-nightly.20251120",
|
|
36
|
+
"@aztec/foundation": "3.0.0-nightly.20251120",
|
|
37
|
+
"@aztec/l1-artifacts": "3.0.0-nightly.20251120",
|
|
38
|
+
"@aztec/merkle-tree": "3.0.0-nightly.20251120",
|
|
39
|
+
"@aztec/node-keystore": "3.0.0-nightly.20251120",
|
|
40
|
+
"@aztec/noir-acvm_js": "3.0.0-nightly.20251120",
|
|
41
|
+
"@aztec/noir-contracts.js": "3.0.0-nightly.20251120",
|
|
42
|
+
"@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251120",
|
|
43
|
+
"@aztec/noir-types": "3.0.0-nightly.20251120",
|
|
44
|
+
"@aztec/p2p": "3.0.0-nightly.20251120",
|
|
45
|
+
"@aztec/protocol-contracts": "3.0.0-nightly.20251120",
|
|
46
|
+
"@aztec/prover-client": "3.0.0-nightly.20251120",
|
|
47
|
+
"@aztec/simulator": "3.0.0-nightly.20251120",
|
|
48
|
+
"@aztec/slasher": "3.0.0-nightly.20251120",
|
|
49
|
+
"@aztec/stdlib": "3.0.0-nightly.20251120",
|
|
50
|
+
"@aztec/telemetry-client": "3.0.0-nightly.20251120",
|
|
51
|
+
"@aztec/validator-client": "3.0.0-nightly.20251120",
|
|
52
|
+
"@aztec/world-state": "3.0.0-nightly.20251120",
|
|
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.20251120",
|
|
59
|
+
"@aztec/kv-store": "3.0.0-nightly.20251120",
|
|
60
60
|
"@jest/globals": "^30.0.0",
|
|
61
61
|
"@types/jest": "^30.0.0",
|
|
62
62
|
"@types/lodash.chunk": "^4.2.7",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { L2Block } from '@aztec/aztec.js/block';
|
|
2
|
-
import {
|
|
2
|
+
import { BLOBS_PER_CHECKPOINT, FIELDS_PER_BLOB, INITIAL_L2_BLOCK_NUM } from '@aztec/constants';
|
|
3
3
|
import type { EpochCache } from '@aztec/epoch-cache';
|
|
4
4
|
import { FormattedViemError, NoCommitteeError, type RollupContract } from '@aztec/ethereum';
|
|
5
5
|
import { omit, pick } from '@aztec/foundation/collection';
|
|
@@ -611,7 +611,7 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
611
611
|
maxTransactions: this.maxTxsPerBlock,
|
|
612
612
|
maxBlockSize: this.maxBlockSizeInBytes,
|
|
613
613
|
maxBlockGas: this.maxBlockGas,
|
|
614
|
-
maxBlobFields:
|
|
614
|
+
maxBlobFields: BLOBS_PER_CHECKPOINT * FIELDS_PER_BLOB,
|
|
615
615
|
deadline,
|
|
616
616
|
};
|
|
617
617
|
}
|