- **clp_manager.py**: Renamed from 'uniswap_manager.py'. Standardized logic for Uniswap V3 liquidity provision. - **clp_hedger.py**: Renamed from 'unified_hedger.py'. Consolidated hedging logic including Delta Calculation fixes, EAC (Edge Avoidance), and Fishing order implementation. - **Cleanup**: Removed legacy 'aerodrome' folder and tools. - **Monitoring**: Added Telegram monitoring scripts. - **Config**: Updated gitignore to exclude market data CSVs.
35 lines
324 B
Plaintext
35 lines
324 B
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual Environment
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Project State
|
|
hedge_status.json
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
.project
|
|
.pydevproject
|
|
.settings/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|
|
|
|
# Data
|
|
*.csv
|
|
florida/market_data/
|