Skip to content

Commit d17f072

Browse files
authored
docs: add Operator config file template for Sepolia Network (#2095)
1 parent a85f27f commit d17f072

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Common variables for all the services
2+
# 'production' only prints info and above. 'development' also prints debug
3+
environment: 'production'
4+
aligned_layer_deployment_config_file_path: './contracts/script/output/sepolia/alignedlayer_deployment_output.json'
5+
eigen_layer_deployment_config_file_path: './contracts/script/output/sepolia/eigenlayer_deployment_output.json'
6+
eth_rpc_url: 'https://ethereum-sepolia-rpc.publicnode.com' # DO NOT USE PUBLIC NODE IN PRODUCTION
7+
eth_rpc_url_fallback: 'https://ethereum-sepolia-rpc.publicnode.com'
8+
eth_ws_url: 'wss://ethereum-sepolia-rpc.publicnode.com' # DO NOT USE PUBLIC NODE IN PRODUCTION
9+
eth_ws_url_fallback: 'wss://ethereum-sepolia-rpc.publicnode.com'
10+
eigen_metrics_ip_port_address: 'localhost:9090'
11+
12+
## ECDSA Configurations
13+
ecdsa:
14+
private_key_store_path: '<ecdsa_key_store_location_path>'
15+
private_key_store_password: '<ecdsa_key_store_password>'
16+
17+
## BLS Configurations
18+
bls:
19+
private_key_store_path: '<bls_key_store_location_path>'
20+
private_key_store_password: '<bls_key_store_password>'
21+
22+
## Operator Configurations
23+
operator:
24+
aggregator_rpc_server_ip_port_address: sepolia.aggregator.alignedlayer.com:8090
25+
operator_tracker_ip_port_address: https://sepolia.telemetry.alignedlayer.com
26+
address: '<operator_address>'
27+
earnings_receiver_address: '<earnings_receiver_address>' #Can be the same as the operator.
28+
delegation_approver_address: '0x0000000000000000000000000000000000000000'
29+
staker_opt_out_window_blocks: 0
30+
metadata_url: <metadata_url>
31+
enable_metrics: true
32+
metrics_ip_port_address: localhost:9092
33+
max_batch_size: 268435456 # 256 MiB
34+
last_processed_batch_filepath: 'config-files/operator.last_processed_batch.json'
35+
poll_latest_batch_interval: 20s # Optional: The interval to poll for latest batches. Default: 20s if not specified

0 commit comments

Comments
 (0)