Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

feat: Double the amount of bootloader tx slots and memory #85

Draft
wants to merge 1 commit into
base: dev
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion SystemConfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"GUARANTEED_PUBDATA_BYTES": 4000,
"MAX_PUBDATA_PER_BATCH": 110000,
"MAX_TRANSACTIONS_IN_BATCH": 1024,
"MAX_TRANSACTIONS_IN_BATCH": 2048,
"BATCH_OVERHEAD_L2_GAS": 1200000,
"BATCH_OVERHEAD_L1_GAS": 1000000,
"L2_TX_INTRINSIC_GAS": 14070,
Expand Down
2 changes: 1 addition & 1 deletion bootloader/bootloader.yul
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ object "Bootloader" {
/// for the sake of simplicity we will spend 32 bytes on each
/// of those for now.
function MAX_MEM_SIZE() -> ret {
ret := 0x1000000 // 2^24 bytes
ret := 0x2000000 // 2^25 bytes
}

function L1_TX_INTRINSIC_L2_GAS() -> ret {
Expand Down