@aztec/sequencer-client 2.0.3-rc.16 → 2.0.3-rc.2
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/dest/config.d.ts +1 -2
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +0 -2
- package/package.json +26 -27
- package/src/config.ts +0 -3
package/dest/config.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { type L1ContractsConfig, type L1ReaderConfig } from '@aztec/ethereum';
|
|
2
2
|
import { type ConfigMappingsType } from '@aztec/foundation/config';
|
|
3
|
-
import { type KeyStoreConfig } from '@aztec/node-keystore';
|
|
4
3
|
import { type P2PConfig } from '@aztec/p2p';
|
|
5
4
|
import { type ChainConfig, type SequencerConfig } from '@aztec/stdlib/config';
|
|
6
5
|
import { type ValidatorClientConfig } from '@aztec/validator-client';
|
|
@@ -11,7 +10,7 @@ export declare const DEFAULT_ATTESTATION_PROPAGATION_TIME = 2;
|
|
|
11
10
|
/**
|
|
12
11
|
* Configuration settings for the SequencerClient.
|
|
13
12
|
*/
|
|
14
|
-
export type SequencerClientConfig = PublisherConfig &
|
|
13
|
+
export type SequencerClientConfig = PublisherConfig & ValidatorClientConfig & TxSenderConfig & SequencerConfig & L1ReaderConfig & ChainConfig & Pick<P2PConfig, 'txPublicSetupAllowList'> & Pick<L1ContractsConfig, 'ethereumSlotDuration' | 'aztecSlotDuration' | 'aztecEpochDuration'>;
|
|
15
14
|
export declare const sequencerConfigMappings: ConfigMappingsType<SequencerConfig>;
|
|
16
15
|
export declare const sequencerClientConfigMappings: ConfigMappingsType<SequencerClientConfig>;
|
|
17
16
|
/**
|
package/dest/config.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,iBAAiB,EACtB,KAAK,cAAc,EAGpB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,KAAK,kBAAkB,EAKxB,MAAM,0BAA0B,CAAC;AAElC,OAAO,EAAE,KAAK,
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,iBAAiB,EACtB,KAAK,cAAc,EAGpB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,KAAK,kBAAkB,EAKxB,MAAM,0BAA0B,CAAC;AAElC,OAAO,EAAE,KAAK,SAAS,EAAqB,MAAM,YAAY,CAAC;AAE/D,OAAO,EAAE,KAAK,WAAW,EAAE,KAAK,eAAe,EAAuB,MAAM,sBAAsB,CAAC;AACnG,OAAO,EAAE,KAAK,qBAAqB,EAAiC,MAAM,yBAAyB,CAAC;AAEpG,OAAO,EACL,KAAK,eAAe,EACpB,KAAK,cAAc,EAGpB,MAAM,uBAAuB,CAAC;AAE/B,cAAc,uBAAuB,CAAC;AACtC,YAAY,EAAE,eAAe,EAAE,CAAC;AAEhC,eAAO,MAAM,oCAAoC,IAAI,CAAC;AAEtD;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,eAAe,GACjD,qBAAqB,GACrB,cAAc,GACd,eAAe,GACf,cAAc,GACd,WAAW,GACX,IAAI,CAAC,SAAS,EAAE,wBAAwB,CAAC,GACzC,IAAI,CAAC,iBAAiB,EAAE,sBAAsB,GAAG,mBAAmB,GAAG,oBAAoB,CAAC,CAAC;AAE/F,eAAO,MAAM,uBAAuB,EAAE,kBAAkB,CAAC,eAAe,CAuGvE,CAAC;AAEF,eAAO,MAAM,6BAA6B,EAAE,kBAAkB,CAAC,qBAAqB,CAQnF,CAAC;AAEF;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,qBAAqB,CAExD"}
|
package/dest/config.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { l1ContractsConfigMappings, l1ReaderConfigMappings } from '@aztec/ethereum';
|
|
2
2
|
import { booleanConfigHelper, getConfigFromMappings, numberConfigHelper, pickConfigMappings } from '@aztec/foundation/config';
|
|
3
3
|
import { EthAddress } from '@aztec/foundation/eth-address';
|
|
4
|
-
import { keyStoreConfigMappings } from '@aztec/node-keystore';
|
|
5
4
|
import { p2pConfigMappings } from '@aztec/p2p';
|
|
6
5
|
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
7
6
|
import { chainConfigMappings } from '@aztec/stdlib/config';
|
|
@@ -113,7 +112,6 @@ export const sequencerConfigMappings = {
|
|
|
113
112
|
export const sequencerClientConfigMappings = {
|
|
114
113
|
...validatorClientConfigMappings,
|
|
115
114
|
...sequencerConfigMappings,
|
|
116
|
-
...keyStoreConfigMappings,
|
|
117
115
|
...l1ReaderConfigMappings,
|
|
118
116
|
...getTxSenderConfigMappings('SEQ'),
|
|
119
117
|
...getPublisherConfigMappings('SEQ'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/sequencer-client",
|
|
3
|
-
"version": "2.0.3-rc.
|
|
3
|
+
"version": "2.0.3-rc.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -26,38 +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": "2.0.3-rc.
|
|
30
|
-
"@aztec/bb-prover": "2.0.3-rc.
|
|
31
|
-
"@aztec/blob-lib": "2.0.3-rc.
|
|
32
|
-
"@aztec/blob-sink": "2.0.3-rc.
|
|
33
|
-
"@aztec/constants": "2.0.3-rc.
|
|
34
|
-
"@aztec/epoch-cache": "2.0.3-rc.
|
|
35
|
-
"@aztec/ethereum": "2.0.3-rc.
|
|
36
|
-
"@aztec/foundation": "2.0.3-rc.
|
|
37
|
-
"@aztec/l1-artifacts": "2.0.3-rc.
|
|
38
|
-
"@aztec/merkle-tree": "2.0.3-rc.
|
|
39
|
-
"@aztec/
|
|
40
|
-
"@aztec/noir-
|
|
41
|
-
"@aztec/noir-
|
|
42
|
-
"@aztec/noir-
|
|
43
|
-
"@aztec/
|
|
44
|
-
"@aztec/
|
|
45
|
-
"@aztec/
|
|
46
|
-
"@aztec/
|
|
47
|
-
"@aztec/
|
|
48
|
-
"@aztec/
|
|
49
|
-
"@aztec/
|
|
50
|
-
"@aztec/
|
|
51
|
-
"@aztec/
|
|
52
|
-
"@aztec/world-state": "2.0.3-rc.16",
|
|
29
|
+
"@aztec/aztec.js": "2.0.3-rc.2",
|
|
30
|
+
"@aztec/bb-prover": "2.0.3-rc.2",
|
|
31
|
+
"@aztec/blob-lib": "2.0.3-rc.2",
|
|
32
|
+
"@aztec/blob-sink": "2.0.3-rc.2",
|
|
33
|
+
"@aztec/constants": "2.0.3-rc.2",
|
|
34
|
+
"@aztec/epoch-cache": "2.0.3-rc.2",
|
|
35
|
+
"@aztec/ethereum": "2.0.3-rc.2",
|
|
36
|
+
"@aztec/foundation": "2.0.3-rc.2",
|
|
37
|
+
"@aztec/l1-artifacts": "2.0.3-rc.2",
|
|
38
|
+
"@aztec/merkle-tree": "2.0.3-rc.2",
|
|
39
|
+
"@aztec/noir-acvm_js": "2.0.3-rc.2",
|
|
40
|
+
"@aztec/noir-contracts.js": "2.0.3-rc.2",
|
|
41
|
+
"@aztec/noir-protocol-circuits-types": "2.0.3-rc.2",
|
|
42
|
+
"@aztec/noir-types": "2.0.3-rc.2",
|
|
43
|
+
"@aztec/p2p": "2.0.3-rc.2",
|
|
44
|
+
"@aztec/protocol-contracts": "2.0.3-rc.2",
|
|
45
|
+
"@aztec/prover-client": "2.0.3-rc.2",
|
|
46
|
+
"@aztec/simulator": "2.0.3-rc.2",
|
|
47
|
+
"@aztec/slasher": "2.0.3-rc.2",
|
|
48
|
+
"@aztec/stdlib": "2.0.3-rc.2",
|
|
49
|
+
"@aztec/telemetry-client": "2.0.3-rc.2",
|
|
50
|
+
"@aztec/validator-client": "2.0.3-rc.2",
|
|
51
|
+
"@aztec/world-state": "2.0.3-rc.2",
|
|
53
52
|
"lodash.chunk": "^4.2.0",
|
|
54
53
|
"lodash.pick": "^4.4.0",
|
|
55
54
|
"tslib": "^2.4.0",
|
|
56
55
|
"viem": "2.23.7"
|
|
57
56
|
},
|
|
58
57
|
"devDependencies": {
|
|
59
|
-
"@aztec/archiver": "2.0.3-rc.
|
|
60
|
-
"@aztec/kv-store": "2.0.3-rc.
|
|
58
|
+
"@aztec/archiver": "2.0.3-rc.2",
|
|
59
|
+
"@aztec/kv-store": "2.0.3-rc.2",
|
|
61
60
|
"@jest/globals": "^30.0.0",
|
|
62
61
|
"@types/jest": "^30.0.0",
|
|
63
62
|
"@types/lodash.chunk": "^4.2.7",
|
package/src/config.ts
CHANGED
|
@@ -12,7 +12,6 @@ import {
|
|
|
12
12
|
pickConfigMappings,
|
|
13
13
|
} from '@aztec/foundation/config';
|
|
14
14
|
import { EthAddress } from '@aztec/foundation/eth-address';
|
|
15
|
-
import { type KeyStoreConfig, keyStoreConfigMappings } from '@aztec/node-keystore';
|
|
16
15
|
import { type P2PConfig, p2pConfigMappings } from '@aztec/p2p';
|
|
17
16
|
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
18
17
|
import { type ChainConfig, type SequencerConfig, chainConfigMappings } from '@aztec/stdlib/config';
|
|
@@ -34,7 +33,6 @@ export const DEFAULT_ATTESTATION_PROPAGATION_TIME = 2;
|
|
|
34
33
|
* Configuration settings for the SequencerClient.
|
|
35
34
|
*/
|
|
36
35
|
export type SequencerClientConfig = PublisherConfig &
|
|
37
|
-
KeyStoreConfig &
|
|
38
36
|
ValidatorClientConfig &
|
|
39
37
|
TxSenderConfig &
|
|
40
38
|
SequencerConfig &
|
|
@@ -151,7 +149,6 @@ export const sequencerConfigMappings: ConfigMappingsType<SequencerConfig> = {
|
|
|
151
149
|
export const sequencerClientConfigMappings: ConfigMappingsType<SequencerClientConfig> = {
|
|
152
150
|
...validatorClientConfigMappings,
|
|
153
151
|
...sequencerConfigMappings,
|
|
154
|
-
...keyStoreConfigMappings,
|
|
155
152
|
...l1ReaderConfigMappings,
|
|
156
153
|
...getTxSenderConfigMappings('SEQ'),
|
|
157
154
|
...getPublisherConfigMappings('SEQ'),
|