Skip to content

Commit 2a24e6b

Browse files
deployment: add VC overrides to keys to be replaced (#14219)
1 parent f3763da commit 2a24e6b

6 files changed

Lines changed: 6 additions & 1 deletion

File tree

crates/apollo_deployments/resources/app_configs/replacer_general_config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"validate_resource_bounds": true,
1313
"validation_only": false,
1414
"validator_id": "$$$_VALIDATOR_ID_$$$",
15-
"versioned_constants_overrides.#is_none": true,
15+
"versioned_constants_overrides.#is_none": "$$$_VERSIONED_CONSTANTS_OVERRIDES-IS_NONE_$$$",
1616
"versioned_constants_overrides.invoke_tx_max_n_steps": 10000000,
1717
"versioned_constants_overrides.max_n_events": "$$$_VERSIONED_CONSTANTS_OVERRIDES-MAX_N_EVENTS_$$$",
1818
"versioned_constants_overrides.max_recursion_depth": 50,

crates/apollo_deployments/src/service.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ pub static KEYS_TO_BE_REPLACED: phf::Set<&'static str> = phf_set! {
103103
"state_sync_config.static_config.rpc_config.port",
104104
"strk_fee_token_address",
105105
"validator_id",
106+
"versioned_constants_overrides.#is_none",
106107
"versioned_constants_overrides.max_n_events",
107108
};
108109

deployments/sequencer/configs/overlays/hybrid/mainnet/common.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ config:
1111
recorder_url: http://starknet-mainnet.cende-recorder-proxy.starknet.io/
1212
starknet_url: https://feeder.alpha-mainnet.starknet.io/
1313
strk_fee_token_address: '0x04718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d'
14+
versioned_constants_overrides.#is_none: true
1415
versioned_constants_overrides.max_n_events: 1000
1516

1617
env:

deployments/sequencer/configs/overlays/hybrid/sepolia-alpha/common.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ config:
1111
recorder_url: http://starknet-sepolia-alpha.cende-recorder-proxy.starknet.io/
1212
starknet_url: https://feeder.alpha-sepolia.starknet.io/
1313
strk_fee_token_address: '0x04718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d'
14+
versioned_constants_overrides.#is_none: true
1415
versioned_constants_overrides.max_n_events: 1000
1516

1617
env:

deployments/sequencer/configs/overlays/hybrid/sepolia-integration/common.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ config:
1111
recorder_url: http://starknet-sepolia-integration.cende-recorder-proxy.starknet.io/
1212
starknet_url: https://feeder.integration-sepolia.starknet.io/
1313
strk_fee_token_address: '0x04718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d'
14+
versioned_constants_overrides.#is_none: true
1415
versioned_constants_overrides.max_n_events: 1000
1516

1617
env:

deployments/sequencer/configs/overlays/hybrid/testing/node-0/common.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ config:
1919
starknet_url: "https://integration-sepolia.starknet.io/"
2020
strk_fee_token_address: "0x1002"
2121
validator_id: "0x64"
22+
versioned_constants_overrides.#is_none: true
2223
versioned_constants_overrides.max_n_events: 1000
2324

2425
service:

0 commit comments

Comments
 (0)