Skip to content

Commit 585bff5

Browse files
blockifier: change VC name to 0.15.0 (#9174)
1 parent 5d0091c commit 585bff5

File tree

11 files changed

+569
-17
lines changed

11 files changed

+569
-17
lines changed

crates/apollo_consensus_orchestrator/resources/central_blob.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"price_in_fri": "0xd"
3838
},
3939
"use_kzg_da": true,
40-
"starknet_version": "0.14.1"
40+
"starknet_version": "0.15.0"
4141
}
4242
},
4343
"compressed_state_diff": {
@@ -77,7 +77,7 @@
7777
"price_in_fri": "0xd"
7878
},
7979
"use_kzg_da": true,
80-
"starknet_version": "0.14.1"
80+
"starknet_version": "0.15.0"
8181
}
8282
},
8383
"bouncer_weights": {

crates/apollo_consensus_orchestrator/resources/central_state_diff.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"price_in_fri": "0xd"
3535
},
3636
"sequencer_address": "0x7",
37-
"starknet_version": "0.14.1",
37+
"starknet_version": "0.15.0",
3838
"use_kzg_da": true
3939
}
4040
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"gas_price_max_change_denominator": 48,
3+
"gas_target": 2000000000,
4+
"max_block_size": 4000000000,
5+
"min_gas_price": "0x186a0",
6+
"l1_gas_price_margin_percent": 10
7+
}

crates/apollo_consensus_orchestrator/src/cende/central_objects_test.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ fn block_info() -> BlockInfo {
223223
fn central_state_diff() -> CentralStateDiff {
224224
let state_diff = thin_state_diff();
225225
let block_info = block_info();
226-
let starknet_version = StarknetVersion::V0_14_1;
226+
let starknet_version = StarknetVersion::LATEST;
227227

228228
(state_diff, (block_info, starknet_version).into()).into()
229229
}
@@ -243,7 +243,7 @@ fn commitment_state_diff() -> CommitmentStateDiff {
243243
fn central_compressed_state_diff() -> CentralCompressedStateDiff {
244244
let state_diff = commitment_state_diff();
245245
let block_info = block_info();
246-
let starknet_version = StarknetVersion::V0_14_1;
246+
let starknet_version = StarknetVersion::LATEST;
247247

248248
(state_diff, (block_info, starknet_version).into()).into()
249249
}

crates/apollo_consensus_orchestrator/src/orchestrator_versioned_constants.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ define_versioned_constants!(
2727
VersionedConstantsError,
2828
(V0_14_0, "../resources/orchestrator_versioned_constants_0_14_0.json"),
2929
(V0_14_1, "../resources/orchestrator_versioned_constants_0_14_1.json"),
30+
(V0_15_0, "../resources/orchestrator_versioned_constants_0_15_0.json"),
3031
);
3132

3233
/// Error type for the Consensus' versioned constants.

crates/apollo_storage/src/serialization/serializers.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,7 @@ auto_storage_serde! {
421421
V0_13_6 = 22,
422422
V0_14_0 = 23,
423423
V0_14_1 = 24,
424+
V0_15_0 = 25,
424425
}
425426
pub struct StateDiffCommitment(pub PoseidonHash);
426427
pub struct Tip(pub u64);

crates/apollo_test_utils/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,7 @@ auto_impl_get_test_instance! {
501501
V0_13_6 = 22,
502502
V0_14_0 = 23,
503503
V0_14_1 = 24,
504+
V0_15_0 = 25,
504505
}
505506

506507
pub struct Calldata(pub Arc<Vec<Felt>>);

0 commit comments

Comments
 (0)