Skip to content

Commit 20bc4a8

Browse files
authored
feat(en): Cache remote config for en (#4367)
## What ❔ <!-- What are the changes this PR brings about? --> <!-- Example: This PR adds a PR template to the repo. --> <!-- (For bigger PRs adding more context is appreciated) --> ## Why ❔ <!-- Why are these changes done? What goal do they contribute to? What are the principles behind them? --> <!-- The `Why` has to be clear to non-Matter Labs entities running their own ZK Chain --> <!-- Example: PR templates ensure PR reviewers, observers, and future iterators are in context about the evolution of repos. --> ## Is this a breaking change? - [ ] Yes - [ ] No ## Operational changes <!-- Any config changes? Any new flags? Any changes to any scripts? --> <!-- Please add anything that non-Matter Labs entities running their own ZK Chain may need to know --> ## Checklist <!-- Check your PR fulfills the following items. --> <!-- For draft PRs check the boxes as you complete them. --> - [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [ ] Code has been formatted via `zkstack dev fmt` and `zkstack dev lint`. --------- Signed-off-by: Danil <[email protected]>
1 parent 491c3a1 commit 20bc4a8

File tree

37 files changed

+1008
-660
lines changed

37 files changed

+1008
-660
lines changed

chains/era/ZkStack.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ base_token:
1313
denominator: 1
1414
wallet_creation: Localhost
1515
evm_emulator: true
16+
tight_ports: false

core/Cargo.lock

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ members = [
8282
"lib/external_price_api",
8383
"lib/task_management",
8484
"lib/zk_os_merkle_tree",
85+
"lib/settlement_layer_data",
8586
"lib/test_contracts",
8687
# Test infrastructure
8788
"tests/loadnext",
@@ -319,6 +320,7 @@ zksync_crypto_primitives = { version = "29.0.0-non-semver-compat", path = "lib/c
319320
zksync_external_price_api = { version = "29.0.0-non-semver-compat", path = "lib/external_price_api" }
320321
zksync_task_management = { version = "29.0.0-non-semver-compat", path = "lib/task_management" }
321322
zk_os_merkle_tree = { version = "29.0.0-non-semver-compat", path = "lib/zk_os_merkle_tree" }
323+
zksync_settlement_layer_data = { version = "29.0.0-non-semver-compat", path = "lib/settlement_layer_data" }
322324

323325
# Framework and components
324326
zksync_node_framework = { version = "29.0.0-non-semver-compat", path = "lib/node_framework" }

core/bin/external_node/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ zksync_node_sync.workspace = true
3838
zksync_node_api_server.workspace = true
3939
zksync_node_consensus.workspace = true
4040
zksync_node_framework.workspace = true
41+
zksync_settlement_layer_data.workspace = true
4142
zksync_vlog = { workspace = true, features = ["node_framework"] }
4243

4344
zksync_consensus_roles.workspace = true

0 commit comments

Comments
 (0)