Skip to content

Commit

Permalink
chore(bolt-sidecar): cli arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
thedevbirb committed Oct 18, 2024
1 parent 1e124ce commit 30300ec
Showing 1 changed file with 21 additions and 23 deletions.
44 changes: 21 additions & 23 deletions src/mev/bolt_sidecar/bolt_sidecar_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -36,40 +36,38 @@ def launch_bolt_sidecar(
cmd=[
"--port",
str(BOLT_SIDECAR_COMMITMENTS_API_PORT),
# "--private-key",
# Random private key for testing, generated with `openssl rand -hex 32`
# "18d1c5302e734fd6fbfaa51828d42c4c6d3cbe020c42bab7dd15a2799cf00b82",
# "--keystore-password",
# validator_keystore_generator.PRYSM_PASSWORD,
"--keystore-secrets-path",
full_keystore_secrets_path,
"--keystore-path",
full_keystore_path,
"--constraints-url",
sidecar_config["constraints_api_url"],
"--constraints-proxy-port",
str(input_parser.FLASHBOTS_MEV_BOOST_PORT),
"--beacon-api-url",
sidecar_config["beacon_api_url"],
"--execution-api-url",
sidecar_config["execution_api_url"],
"--beacon-api-url",
sidecar_config["beacon_api_url"],
"--engine-api-url",
sidecar_config["engine_api_url"],
"--constraints-api-url",
sidecar_config["constraints_api_url"],
"--constraints-proxy-port",
str(input_parser.FLASHBOTS_MEV_BOOST_PORT),
"--validator-indexes",
"0..64",
"--engine-jwt-hex",
sidecar_config["jwt_hex"],
"--fee-recipient",
"0x0000000000000000000000000000000000000000",
"--jwt-hex",
sidecar_config["jwt_hex"],
"--builder_private_key",
# Random private key for testing
"0x240872ca0812e33503482a886e05dfe30ae9cf757bf5c040e70eac685e419c6e"
"--builder-private-key", # Random private key for testing
"0x20c815cb2d37561479c7b6cae9737356b144760d00f1387bff17df4a3712c262",
"--commitment-private-key", # Random private key for testing
"0x18d1c5302e734fd6fbfaa51828d42c4c6d3cbe020c42bab7dd15a2799cf00b82",
"--commitment-deadline",
str(100),
"--chain",
"kurtosis",
"--validator-indexes",
"0..64",
network_params.network,
"--slot-time",
str(network_params.seconds_per_slot),
# "--keystore-password",
# validator_keystore_generator.PRYSM_PASSWORD,
"--keystore-secrets-path",
full_keystore_secrets_path,
"--keystore-path",
full_keystore_path,
"--metrics-port",
str(BOLT_SIDECAR_METRICS_PORT),
],
Expand Down

0 comments on commit 30300ec

Please sign in to comment.