Skip to content
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
13 changes: 7 additions & 6 deletions examples/demo-rollup/configs/mock_rollup_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ finalization_blocks = 0 # Defines how many blocks progress to finalization. Set
# failure_behavior = "none" # Configures failure injection for testing. Options: "none", or structured variants for testing

[da.block_producing.periodic]
block_time_ms = 1000
block_time_ms = 10000

# Alternative block producing modes:
# [da.block_producing.manual] # Manual block production mode
Expand Down Expand Up @@ -63,7 +63,7 @@ bind_port = 12346
# cors = "permissive" # CORS configuration: "permissive" or "restrictive"

[monitoring]
telegraf_address = "udp://127.0.0.1:8094"
telegraf_address = "udp://127.0.0.1:9095"
tokio_runtime_metrics_interval_millis = 500
# Defines how many measurements a rollup node will accumulate before sending it to the Telegraf.
# It is expected from the rollup node to produce metrics all the time,
Expand All @@ -78,11 +78,12 @@ tokio_runtime_metrics_interval_millis = 500
# max_pending_metrics = 1000

[proof_manager]
aggregated_proof_block_jump = 1
prover_address = "sov1lzkjgdaz08su3yevqu6ceywufl35se9f33kztu5cu2spja5hyyf"
max_number_of_transitions_in_db = 1000
prover_thread_count_override = 6
aggregated_proof_block_jump = 10
max_number_of_aggregated_proofs_in_memory = 2
max_number_of_transitions_in_memory = 100
max_number_of_aggregated_proofs_in_memory = 5
max_number_of_transitions_in_db = 1000
max_concurrent_proof_blobs = 1024

[sequencer]
Expand Down Expand Up @@ -145,4 +146,4 @@ ideal_lag_behind_finalized_slot = 3 # Ideal buffer of finalized slots to maintai

[sequencer.extension]
max_log_limit = 20000
# response_size_limit = 1017856 # Max response size for eth_getLogs in bytes (default: 1 MiB - 30 KiB for headers and overhead)
# response_size_limit = 1017856 # Max response size for eth_getLogs in bytes (default: 1 MiB - 30 KiB for headers and overhead)

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions examples/demo-rollup/provers/sp1/guest-celestia/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions examples/demo-rollup/provers/sp1/guest-mock/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading