Sequencer is working (minimal parsing)
This commit is contained in:
@@ -3,9 +3,9 @@
|
||||
# Arbitrum node configuration
|
||||
arbitrum:
|
||||
# RPC endpoint for Arbitrum node
|
||||
rpc_endpoint: "https://arb1.arbitrum.io/rpc"
|
||||
rpc_endpoint: "${ARBITRUM_RPC_ENDPOINT}"
|
||||
# WebSocket endpoint for Arbitrum node (optional)
|
||||
ws_endpoint: ""
|
||||
ws_endpoint: "${ARBITRUM_WS_ENDPOINT}"
|
||||
# Chain ID for Arbitrum (42161 for mainnet)
|
||||
chain_id: 42161
|
||||
# Rate limiting configuration for RPC endpoint
|
||||
@@ -18,7 +18,7 @@ arbitrum:
|
||||
burst: 20
|
||||
# Fallback RPC endpoints
|
||||
fallback_endpoints:
|
||||
- url: "https://arbitrum-mainnet.infura.io/v3/YOUR_INFURA_KEY"
|
||||
- url: "${ARBITRUM_INFURA_ENDPOINT}"
|
||||
rate_limit:
|
||||
requests_per_second: 5
|
||||
max_concurrent: 3
|
||||
@@ -69,7 +69,7 @@ uniswap:
|
||||
# Logging configuration
|
||||
log:
|
||||
# Log level (debug, info, warn, error)
|
||||
level: "info"
|
||||
level: "debug"
|
||||
# Log format (json, text)
|
||||
format: "text"
|
||||
# Log file path (empty for stdout)
|
||||
|
||||
Reference in New Issue
Block a user