Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

open new branch: 0.13.5 #4544

Closed
wants to merge 2 commits into from
Closed
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
562 changes: 562 additions & 0 deletions crates/blockifier/resources/versioned_constants_0_13_5.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions crates/blockifier/src/versioned_constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ define_versioned_constants! {
(V0_13_2_1, "../resources/versioned_constants_0_13_2_1.json"),
(V0_13_3, "../resources/versioned_constants_0_13_3.json"),
(V0_13_4, "../resources/versioned_constants_0_13_4.json"),
(V0_13_5, "../resources/versioned_constants_0_13_5.json"),
}

pub type ResourceCost = Ratio<u64>;
Expand Down
1 change: 1 addition & 0 deletions crates/papyrus_storage/src/serialization/serializers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,7 @@ auto_storage_serde! {
V0_13_2_1 = 17,
V0_13_3 = 18,
V0_13_4 = 19,
V0_13_5 = 20,
}
pub struct StateDiffCommitment(pub PoseidonHash);
pub struct Tip(pub u64);
Expand Down
1 change: 1 addition & 0 deletions crates/papyrus_test_utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,7 @@ auto_impl_get_test_instance! {
V0_13_2_1 = 17,
V0_13_3 = 18,
V0_13_4 = 19,
V0_13_5 = 20,
}

pub struct Calldata(pub Arc<Vec<Felt>>);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"price_in_fri": "0xd"
},
"sequencer_address": "0x7",
"starknet_version": "0.13.4",
"starknet_version": "0.13.5",
"use_kzg_da": true
}
}
4 changes: 3 additions & 1 deletion crates/starknet_api/src/block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ starknet_version_enum! {
(V0_13_2_1, 0, 13, 2, 1),
(V0_13_3, 0, 13, 3),
(V0_13_4, 0, 13, 4),
V0_13_4
(V0_13_5, 0, 13, 5),
V0_13_5

}

impl Default for StarknetVersion {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,5 +336,5 @@
"actual_fee": "0xdc24bd9e78"
}
],
"starknet_version": "0.13.4"
}
"starknet_version": "0.13.5"
}
3 changes: 2 additions & 1 deletion scripts/merge_paths.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main-v0.13.2": "main-v0.13.4",
"main-v0.13.4": "main"
"main-v0.13.4": "main-v0.13.5",
"main-v0.13.5": "main"
}
Loading