diff --git a/config/config.yaml b/config/config.yaml index 11382b4..5163f61 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -106,4 +106,23 @@ contracts: authorized_dexes: - "0x1F98431c8aD98523631AE4a59f267346ea31F984" # Uniswap V3 - "0xf1D7CC64Fb4452F05c498126312eBE29f30Fbcf9" # Uniswap V2 - - "0xc35DADB65012eC5796536bD9864eD8773aBc74C4" # SushiSwap \ No newline at end of file + - "0xc35DADB65012eC5796536bD9864eD8773aBc74C4" # SushiSwap + +# Arbitrage configuration +arbitrage: + # Enable or disable arbitrage service + enabled: true + # Minimum profitable opportunity threshold in USD + min_profit_usd: 10.0 + # Maximum slippage allowed in percentage + max_slippage: 1.0 + # Maximum concurrent executions + max_concurrent_executions: 5 + # Execution timeout in seconds + execution_timeout: 60 + # Gas price multiplier for arbitrage transactions + gas_multiplier: 1.5 + # Enable flash swap arbitrage + enable_flash_swaps: true + # Maximum capital per execution in USD + max_capital_per_execution: 100000.0 \ No newline at end of file