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
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"disable_deploy_in_validation_mode": false,
"enable_reverts": false,
"enable_casm_hash_migration": false,
"block_casm_hash_v1_declares": false,
"tx_event_limits": {
"max_data_length": 1000000000,
"max_keys_length": 1000000000,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"disable_deploy_in_validation_mode": false,
"enable_reverts": false,
"enable_casm_hash_migration": false,
"block_casm_hash_v1_declares": false,
"os_constants": {
"nop_entry_point_offset": -1,
"entry_point_type_external": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"disable_deploy_in_validation_mode": false,
"enable_reverts": false,
"enable_casm_hash_migration": false,
"block_casm_hash_v1_declares": false,
"os_constants": {
"nop_entry_point_offset": -1,
"entry_point_type_external": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"disable_deploy_in_validation_mode": false,
"enable_reverts": false,
"enable_casm_hash_migration": false,
"block_casm_hash_v1_declares": false,
"max_recursion_depth": 50,
"segment_arena_cells": false,
"os_constants": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
"max_recursion_depth": 50,
"enable_reverts": false,
"enable_casm_hash_migration": false,
"block_casm_hash_v1_declares": false,
"segment_arena_cells": false,
"os_constants": {
"constructor_entry_point_selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
"max_recursion_depth": 50,
"enable_reverts": false,
"enable_casm_hash_migration": false,
"block_casm_hash_v1_declares": false,
"segment_arena_cells": false,
"os_constants": {
"constructor_entry_point_selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"disable_deploy_in_validation_mode": false,
"enable_reverts": true,
"enable_casm_hash_migration": false,
"block_casm_hash_v1_declares": false,
"max_recursion_depth": 50,
"segment_arena_cells": false,
"os_constants": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"disable_deploy_in_validation_mode": false,
"enable_reverts": true,
"enable_casm_hash_migration": false,
"block_casm_hash_v1_declares": false,
"max_recursion_depth": 50,
"segment_arena_cells": false,
"os_constants": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"disable_deploy_in_validation_mode": false,
"enable_reverts": true,
"enable_casm_hash_migration": false,
"block_casm_hash_v1_declares": false,
"max_recursion_depth": 50,
"segment_arena_cells": false,
"os_constants": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"disable_deploy_in_validation_mode": true,
"enable_reverts": true,
"enable_casm_hash_migration": false,
"block_casm_hash_v1_declares": false,
"max_recursion_depth": 50,
"segment_arena_cells": false,
"os_constants": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"disable_deploy_in_validation_mode": true,
"enable_reverts": true,
"enable_casm_hash_migration": true,
"block_casm_hash_v1_declares": true,
"max_recursion_depth": 50,
"segment_arena_cells": false,
"os_constants": {
Expand Down
3 changes: 3 additions & 0 deletions crates/blockifier/src/blockifier_versioned_constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ pub struct RawVersionedConstants {
pub disable_deploy_in_validation_mode: bool,
pub enable_reverts: bool,
pub enable_casm_hash_migration: bool,
pub block_casm_hash_v1_declares: bool,
pub min_sierra_version_for_sierra_gas: SierraVersion,
pub enable_tip: bool,
pub segment_arena_cells: bool,
Expand Down Expand Up @@ -244,6 +245,7 @@ pub struct VersionedConstants {
pub disable_cairo0_redeclaration: bool,
pub enable_stateful_compression: bool,
pub enable_casm_hash_migration: bool,
pub block_casm_hash_v1_declares: bool,
pub comprehensive_state_diff: bool,
pub block_direct_execute_call: bool,
pub ignore_inner_event_resources: bool,
Expand Down Expand Up @@ -292,6 +294,7 @@ impl From<RawVersionedConstants> for VersionedConstants {
disable_deploy_in_validation_mode: raw_vc.disable_deploy_in_validation_mode,
enable_reverts: raw_vc.enable_reverts,
enable_casm_hash_migration: raw_vc.enable_casm_hash_migration,
block_casm_hash_v1_declares: raw_vc.block_casm_hash_v1_declares,
os_constants: Arc::new(os_constants),
vm_resource_fee_cost: Arc::new(raw_vc.vm_resource_fee_cost),
enable_tip: raw_vc.enable_tip,
Expand Down
Loading