Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions yarn-project/aztec-node/src/aztec-node/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import { EthAddress } from '@aztec/foundation/eth-address';
import { type DataStoreConfig, dataConfigMappings } from '@aztec/kv-store/config';
import {
type KeyStore,
type KeyStoreConfig,
type ValidatorKeyStore,
ethPrivateKeySchema,
keyStoreConfigMappings,
Expand Down Expand Up @@ -47,7 +46,6 @@ export type AztecNodeConfig = ArchiverConfig &
Pick<ProverClientUserConfig, 'bbBinaryPath' | 'bbWorkingDirectory' | 'realProofs'> &
P2PConfig &
DataStoreConfig &
KeyStoreConfig &
SentinelConfig &
SharedNodeConfig &
GenesisStateConfig &
Expand Down
1 change: 1 addition & 0 deletions yarn-project/sequencer-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"@aztec/foundation": "workspace:^",
"@aztec/l1-artifacts": "workspace:^",
"@aztec/merkle-tree": "workspace:^",
"@aztec/node-keystore": "workspace:^",
"@aztec/noir-acvm_js": "portal:../../noir/packages/acvm_js",
"@aztec/noir-contracts.js": "workspace:^",
"@aztec/noir-protocol-circuits-types": "workspace:^",
Expand Down
3 changes: 3 additions & 0 deletions yarn-project/sequencer-client/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
pickConfigMappings,
} from '@aztec/foundation/config';
import { EthAddress } from '@aztec/foundation/eth-address';
import { type KeyStoreConfig, keyStoreConfigMappings } from '@aztec/node-keystore';
import { type P2PConfig, p2pConfigMappings } from '@aztec/p2p';
import { AztecAddress } from '@aztec/stdlib/aztec-address';
import { type ChainConfig, type SequencerConfig, chainConfigMappings } from '@aztec/stdlib/config';
Expand All @@ -33,6 +34,7 @@ export const DEFAULT_ATTESTATION_PROPAGATION_TIME = 2;
* Configuration settings for the SequencerClient.
*/
export type SequencerClientConfig = PublisherConfig &
KeyStoreConfig &
ValidatorClientConfig &
TxSenderConfig &
SequencerConfig &
Expand Down Expand Up @@ -149,6 +151,7 @@ export const sequencerConfigMappings: ConfigMappingsType<SequencerConfig> = {
export const sequencerClientConfigMappings: ConfigMappingsType<SequencerClientConfig> = {
...validatorClientConfigMappings,
...sequencerConfigMappings,
...keyStoreConfigMappings,
...l1ReaderConfigMappings,
...getTxSenderConfigMappings('SEQ'),
...getPublisherConfigMappings('SEQ'),
Expand Down
3 changes: 3 additions & 0 deletions yarn-project/sequencer-client/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
{
"path": "../merkle-tree"
},
{
"path": "../node-keystore"
},
{
"path": "../noir-contracts.js"
},
Expand Down
1 change: 1 addition & 0 deletions yarn-project/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1314,6 +1314,7 @@ __metadata:
"@aztec/kv-store": "workspace:^"
"@aztec/l1-artifacts": "workspace:^"
"@aztec/merkle-tree": "workspace:^"
"@aztec/node-keystore": "workspace:^"
"@aztec/noir-acvm_js": "portal:../../noir/packages/acvm_js"
"@aztec/noir-contracts.js": "workspace:^"
"@aztec/noir-protocol-circuits-types": "workspace:^"
Expand Down
Loading