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 @@ -1091,7 +1091,7 @@ pub global AVM_ADDRESSING_RELATIVE_L2_GAS: u32 = 3; // One range check

// Base L2 GAS
// Based on simulation time metrics
pub global L2_GAS_PER_NOTE_HASH: u32 = 2700;
pub global L2_GAS_PER_NOTE_HASH: u32 = 9200; // Bounded by long term storage requirements.
pub global L2_GAS_PER_NULLIFIER: u32 = 16000;
pub global L2_GAS_PER_L2_TO_L1_MSG: u32 = 5200;
pub global L2_GAS_PER_PRIVATE_LOG: u32 = 2500;
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/constants/src/constants.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ export const AVM_MAX_REGISTERS = 6;
export const AVM_ADDRESSING_BASE_RESOLUTION_L2_GAS = 3;
export const AVM_ADDRESSING_INDIRECT_L2_GAS = 3;
export const AVM_ADDRESSING_RELATIVE_L2_GAS = 3;
export const L2_GAS_PER_NOTE_HASH = 2700;
export const L2_GAS_PER_NOTE_HASH = 9200;
export const L2_GAS_PER_NULLIFIER = 16000;
export const L2_GAS_PER_L2_TO_L1_MSG = 5200;
export const L2_GAS_PER_PRIVATE_LOG = 2500;
Expand Down
Loading