Skip to content
Open
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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@ network_params:
contribution_due_bps_gloas: 5000

# Payload availability deadline for Gloas fork
# Defaults to 7500 basis points (75% of slot duration)
payload_due_bps: 7500
# Defaults to 5000 basis points (50% of slot duration)
payload_due_bps: 5000

# Payload attestation due timing for Gloas fork
# Defaults to 7500 basis points (75% of slot duration)
Expand Down Expand Up @@ -867,8 +867,8 @@ network_params:
min_validator_withdrawability_delay: 256

# The minimum number of epochs for builder withdrawability delay
# Defaults to 8192, 2 for minimal preset
min_builder_withdrawability_delay: 8192
# Defaults to 64, 2 for minimal preset
min_builder_withdrawability_delay: 64

# The period of the shard committee
# Defaults to 256 epoch ~27 hours
Expand Down Expand Up @@ -1047,7 +1047,7 @@ network_params:
# Default to 4096
min_epochs_for_data_column_sidecars_requests: 4096

# Number of ePBS builders to register at genesis with 0x03 withdrawal credentials
# Number of ePBS builders to register at genesis with 0xB0 withdrawal credentials
# Requires gloas_fork_epoch to be 0 (GLOAS at genesis)
# Default to 0
builder_count: 0
Expand Down
2 changes: 1 addition & 1 deletion main.star
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ def run(plan, args={}):

if network_params.builder_count > 0:
plan.print(
"Builder configuration: {0} builder(s) registered at genesis with 0x03 credentials".format(
"Builder configuration: {0} builder(s) registered at genesis with 0xB0 credentials".format(
network_params.builder_count
)
)
Expand Down
2 changes: 1 addition & 1 deletion network_params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ network_params:
aggregate_due_bps_gloas: 5000
sync_message_due_bps_gloas: 2500
contribution_due_bps_gloas: 5000
payload_due_bps: 7500
payload_due_bps: 5000
payload_attestation_due_bps: 7500
view_freeze_cutoff_bps: 7500
inclusion_list_submission_due_bps: 6667
Expand Down
2 changes: 1 addition & 1 deletion src/mev/buildoor/buildoor_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def launch_buildoor(
]

# Builder BLS key: let buildoor derive it from the mnemonic at the given
# index (matching the 0x03 builder keys registered at genesis) when provided,
# index (matching the 0xB0 builder keys registered at genesis) when provided,
# otherwise fall back to the default static secret key.
if builder_mnemonic != None:
cmd.append("--builder-mnemonic={0}".format(builder_mnemonic))
Expand Down
8 changes: 4 additions & 4 deletions src/package_io/input_parser.star
Original file line number Diff line number Diff line change
Expand Up @@ -1799,7 +1799,7 @@ def parse_network_params(plan, input_args):
],
"start": actual_num_validators,
"count": result["network_params"]["builder_count"],
"wd_prefix": "0x03",
"wd_prefix": "0xB0",
"wd_address": result["network_params"]["withdrawal_address"],
}
if result["network_params"]["builder_balance"] > 0:
Expand Down Expand Up @@ -1913,13 +1913,13 @@ def default_network_params():
"ejection_balance": 16000000000,
"eth1_follow_distance": 2048,
"min_validator_withdrawability_delay": 256,
"min_builder_withdrawability_delay": 8192,
"min_builder_withdrawability_delay": 64,
"shard_committee_period": 256,
"attestation_due_bps_gloas": 2500,
"aggregate_due_bps_gloas": 5000,
"sync_message_due_bps_gloas": 2500,
"contribution_due_bps_gloas": 5000,
"payload_due_bps": 7500,
"payload_due_bps": 5000,
"payload_attestation_due_bps": 7500,
"view_freeze_cutoff_bps": 7500,
"inclusion_list_submission_due_bps": 6667,
Expand Down Expand Up @@ -2004,7 +2004,7 @@ def default_minimal_network_params():
"aggregate_due_bps_gloas": 5000,
"sync_message_due_bps_gloas": 2500,
"contribution_due_bps_gloas": 5000,
"payload_due_bps": 7500,
"payload_due_bps": 5000,
"payload_attestation_due_bps": 7500,
"view_freeze_cutoff_bps": 7500,
"inclusion_list_submission_due_bps": 6667,
Expand Down
Loading