├── .do └── app.yaml ├── .env.example ├── .github └── workflows │ ├── ci-cd.yml │ ├── monitoring.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── AI_INTEGRATION_PLAN.md ├── CI_CD_STATUS.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── Dockerfile.streaming ├── LICENSE ├── PHASE2_DEPLOYMENT_GUIDE.md ├── RATE_LIMITING_GUIDE.md ├── README.md ├── backend ├── .env.example ├── APIS.md ├── API_DOCUMENTATION.md ├── Dockerfile.api ├── Dockerfile.compound ├── Dockerfile.dexbrain ├── Dockerfile.logs ├── Dockerfile.metrics ├── Dockerfile.vault ├── GRAPH_API_SETUP.md ├── HISTORICAL_DATA_SETUP.md ├── README.md ├── ai │ └── vault_strategy_models.py ├── data_sources │ ├── dexbrain_data_ingestion.py │ ├── historical_position_fetcher.py │ └── ingestion_fix.py ├── db │ ├── initialize.py │ ├── migrations │ │ └── 001_create_user_management.sql │ └── schema.sql ├── demo_data_ingestion.py ├── dexbrain │ ├── advanced_data_collection.py │ ├── agent_registry.py │ ├── ai_agent.py │ ├── alchemy_position_collector.py │ ├── api_server.py │ ├── auth.py │ ├── blockchain │ │ ├── __init__.py │ │ └── base_connector.py │ ├── config.py │ ├── core.py │ ├── data_quality.py │ ├── datasets │ │ └── add_dataset.py │ ├── db_manager.py │ ├── enhanced_continuous_learning.py │ ├── enhanced_data_pipeline.py │ ├── hub.py │ ├── integrated_learning_service.py │ ├── learning_verification_system.py │ ├── models │ │ ├── __init__.py │ │ ├── enhanced_ml_models.py │ │ ├── knowledge_base.py │ │ └── ml_models.py │ ├── performance_scoring.py │ ├── production_ready_system.py │ ├── realtime_blockchain_pipeline.py │ ├── schemas.py │ └── training_pipeline.py ├── logging │ ├── log_aggregator.py │ └── log_config.py ├── mlops │ ├── ab_testing_framework.py │ └── continuous_training_orchestrator.py ├── railway.json ├── render.yaml ├── requirements.txt ├── services │ └── compound_service.py ├── streaming │ ├── flink_processor.py │ ├── kafka_consumer.py │ ├── kafka_producer.py │ └── online_learning_engine.py └── tests │ └── test_db_manager.py ├── contracts ├── README.md ├── core │ ├── ConfigurableDexterCompoundor.sol │ ├── DEXToken.sol │ ├── DexterCompoundor.sol │ ├── DexterLiquidityManager.sol │ ├── DexterMultiCompoundor.sol │ └── FeeDispenser.sol ├── events │ └── EventTracker.sol ├── factories │ └── VaultFactory.sol ├── fees │ └── FeeManager.sol ├── governance │ └── EmergencyAdmin.sol ├── interfaces │ ├── IDEXStaking.sol │ ├── IDEXToken.sol │ ├── IDexterLiquidityManager.sol │ └── IFeeDispenser.sol ├── lending │ ├── DexterVault.sol │ └── InterestRateModel.sol ├── libraries │ └── TWAPOracle.sol ├── liquidation │ └── LiquidationEngine.sol ├── optimization │ ├── GasOptimizationLib.sol │ ├── GasOptimizedDexterCompoundor.sol │ ├── GasOptimizedOperations.sol │ └── OptimizedStorage.sol ├── oracles │ ├── MLValidationOracle.sol │ └── PriceAggregator.sol ├── ranges │ └── MultiRangeManager.sol ├── strategies │ └── StrategyManager.sol ├── transformers │ ├── CompoundTransformer.sol │ ├── ITransformer.sol │ ├── RangeTransformer.sol │ └── TransformerRegistry.sol ├── utils │ ├── ConfigurationManager.sol │ ├── DexterV3Utils.sol │ └── EventEmissionGuide.sol ├── validation │ └── VaultClearing.sol └── vaults │ ├── DexterVault.sol │ └── IDexterVault.sol ├── dexter-liquidity ├── .coveragerc ├── .env.example ├── Dockerfile ├── README.md ├── agents │ ├── __init__.py │ ├── aggressive.py │ ├── base_agent.py │ ├── conservative.py │ ├── hyper_aggressive.py │ └── types.py ├── best_lstm_model_epoch_0.pt ├── best_lstm_model_epoch_1.pt ├── config │ ├── __init__.py │ └── settings.py ├── contracts │ ├── DEXtoken.txt │ ├── DexsterStakeManager.sol │ └── package.json ├── data │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-313.pyc │ │ ├── regime_detector.cpython-313.pyc │ │ └── volatility.cpython-313.pyc │ ├── completeness_checker.py │ ├── data_quality_dashboard.py │ ├── data_quality_monitor.py │ ├── fetchers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── base_fetcher.cpython-313.pyc │ │ │ ├── base_interface.cpython-313.pyc │ │ │ ├── meteora_fetcher.cpython-313.pyc │ │ │ └── uniswap_v4_fetcher.cpython-313.pyc │ │ ├── advanced_uniswap_fetcher.py │ │ ├── base_fetcher.py │ │ ├── base_interface.py │ │ └── uniswap_v4_fetcher.py │ ├── historical_backfill_service.py │ ├── parallel_regime_detector.py │ ├── regime_detector.py │ └── volatility.py ├── data_quality_integration_demo.py ├── docker-compose.yml ├── enhanced_performance_integration.py ├── env-template.txt ├── execution │ ├── __init__.py │ ├── execution_config.py │ └── manager.py ├── grafana │ ├── dashboards │ │ └── dexter_main.json │ └── provisioning │ │ ├── dashboards │ │ └── dashboards.yml │ │ └── datasources │ │ └── datasources.yml ├── main.py ├── mlruns │ └── 1 │ │ ├── 168d1972f1d74019b7955d3c7370972c │ │ └── artifacts │ │ │ ├── features.json │ │ │ └── test_model_model_card.json │ │ └── models │ │ └── m-1dac850819de48f993d8bfde8e8027c1 │ │ └── artifacts │ │ ├── MLmodel │ │ ├── conda.yaml │ │ ├── environment_variables.txt │ │ ├── input_example.json │ │ ├── model.pkl │ │ ├── python_env.yaml │ │ ├── requirements.txt │ │ └── serving_input_example.json ├── prometheus.yml ├── pytest.ini ├── requirements.txt ├── simple_data_quality_demo.py ├── tests │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-313.pyc │ │ └── test_uniswap_v4_fetcher.cpython-313-pytest-8.4.0.pyc │ ├── comprehensive_tests.py │ ├── execution_tests.py │ ├── integration │ │ ├── __init__.py │ │ └── test_fetchers.py │ ├── test_uniswap_v4_fetcher.py │ └── unit │ │ ├── __init__.py │ │ ├── test_agents.py │ │ ├── test_base_fetcher.py │ │ └── test_volatility.py ├── uniswap-v4 │ ├── .env.example │ ├── foundry.toml │ ├── package.json │ ├── src │ │ ├── DexterV4Hook.sol │ │ ├── SimpleDexterHook.sol │ │ ├── interfaces │ │ │ └── IDexterV4Hook.sol │ │ └── libraries │ │ │ └── DexterMath.sol │ └── test │ │ ├── DexterV4Hook.t.sol │ │ ├── SimpleDexterHook.t.sol │ │ └── utils │ │ └── HookMiner.sol └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-313.pyc │ ├── error_handler.cpython-313.pyc │ ├── memory_monitor.cpython-313.pyc │ ├── memory_profiler.cpython-313.pyc │ └── parallel_processor.cpython-313.pyc │ ├── cache.py │ ├── enhanced_performance_tracker.py │ ├── error_handler.py │ ├── memory_monitor.py │ ├── memory_profiler.py │ ├── parallel_processor.py │ ├── performance.py │ ├── performance_dashboard.py │ ├── performance_tracker.py │ ├── pool-abis.json │ ├── pool_share_calculator.py │ ├── portfolio_risk_analyzer.py │ └── statistics.py ├── dexter.json ├── docker-compose.streaming.yml ├── docker-compose.vault.yml ├── docs ├── INTEGRATION_COMPLETE.md ├── PUBLIC_STRUCTURE.md ├── ULTIMATE_DEXTER_README.md ├── USER_MANAGEMENT.md ├── deployment │ ├── DEPLOYMENT.md │ ├── DEPLOYMENT_STRATEGY.md │ ├── PRODUCTION_SETUP.md │ └── QUICKSTART.md └── implementation-summaries │ ├── DATA_QUALITY_SYSTEM_SUMMARY.md │ ├── PRIORITY_1_IMPLEMENTATION_SUMMARY.md │ ├── PRIORITY_2_IMPLEMENTATION_SUMMARY.md │ ├── PRIORITY_3_IMPLEMENTATION_SUMMARY.md │ ├── REVERT_IMPLEMENTATION_SUMMARY.md │ └── REVERT_INTEGRATION_TODO.md ├── monitoring ├── dexbrain-dashboard.json ├── grafana │ └── provisioning │ │ ├── dashboards │ │ ├── dashboard.yml │ │ └── dexter-ai-dashboard.json │ │ └── datasources │ │ └── prometheus.yml └── prometheus │ └── prometheus.yml ├── requirements.streaming.txt ├── scripts ├── README.md ├── monitoring │ ├── grafana_quick_fix.sh │ ├── import_dashboard.json │ ├── metrics_exporter.py │ └── test_grafana_setup.py └── utilities │ ├── backup_system.py │ ├── demo_alchemy_collection.py │ ├── enhanced_alchemy_service.py │ ├── run_integrated_learning.py │ ├── simple_learning_demo.py │ ├── uniswap_position_harvester.py │ └── vercel-env-config.txt └── tests └── test_vault_integration.py /.do/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/.do/app.yaml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/ci-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/.github/workflows/ci-cd.yml -------------------------------------------------------------------------------- /.github/workflows/monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/.github/workflows/monitoring.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/.gitmodules -------------------------------------------------------------------------------- /AI_INTEGRATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/AI_INTEGRATION_PLAN.md -------------------------------------------------------------------------------- /CI_CD_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/CI_CD_STATUS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile.streaming: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/Dockerfile.streaming -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/LICENSE -------------------------------------------------------------------------------- /PHASE2_DEPLOYMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/PHASE2_DEPLOYMENT_GUIDE.md -------------------------------------------------------------------------------- /RATE_LIMITING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/RATE_LIMITING_GUIDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/APIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/APIS.md -------------------------------------------------------------------------------- /backend/API_DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/API_DOCUMENTATION.md -------------------------------------------------------------------------------- /backend/Dockerfile.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/Dockerfile.api -------------------------------------------------------------------------------- /backend/Dockerfile.compound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/Dockerfile.compound -------------------------------------------------------------------------------- /backend/Dockerfile.dexbrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/Dockerfile.dexbrain -------------------------------------------------------------------------------- /backend/Dockerfile.logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/Dockerfile.logs -------------------------------------------------------------------------------- /backend/Dockerfile.metrics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/Dockerfile.metrics -------------------------------------------------------------------------------- /backend/Dockerfile.vault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/Dockerfile.vault -------------------------------------------------------------------------------- /backend/GRAPH_API_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/GRAPH_API_SETUP.md -------------------------------------------------------------------------------- /backend/HISTORICAL_DATA_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/HISTORICAL_DATA_SETUP.md -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/ai/vault_strategy_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/ai/vault_strategy_models.py -------------------------------------------------------------------------------- /backend/data_sources/dexbrain_data_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/data_sources/dexbrain_data_ingestion.py -------------------------------------------------------------------------------- /backend/data_sources/historical_position_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/data_sources/historical_position_fetcher.py -------------------------------------------------------------------------------- /backend/data_sources/ingestion_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/data_sources/ingestion_fix.py -------------------------------------------------------------------------------- /backend/db/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/db/initialize.py -------------------------------------------------------------------------------- /backend/db/migrations/001_create_user_management.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/db/migrations/001_create_user_management.sql -------------------------------------------------------------------------------- /backend/db/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/db/schema.sql -------------------------------------------------------------------------------- /backend/demo_data_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/demo_data_ingestion.py -------------------------------------------------------------------------------- /backend/dexbrain/advanced_data_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/advanced_data_collection.py -------------------------------------------------------------------------------- /backend/dexbrain/agent_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/agent_registry.py -------------------------------------------------------------------------------- /backend/dexbrain/ai_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/ai_agent.py -------------------------------------------------------------------------------- /backend/dexbrain/alchemy_position_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/alchemy_position_collector.py -------------------------------------------------------------------------------- /backend/dexbrain/api_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/api_server.py -------------------------------------------------------------------------------- /backend/dexbrain/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/auth.py -------------------------------------------------------------------------------- /backend/dexbrain/blockchain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/blockchain/__init__.py -------------------------------------------------------------------------------- /backend/dexbrain/blockchain/base_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/blockchain/base_connector.py -------------------------------------------------------------------------------- /backend/dexbrain/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/config.py -------------------------------------------------------------------------------- /backend/dexbrain/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/core.py -------------------------------------------------------------------------------- /backend/dexbrain/data_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/data_quality.py -------------------------------------------------------------------------------- /backend/dexbrain/datasets/add_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/datasets/add_dataset.py -------------------------------------------------------------------------------- /backend/dexbrain/db_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/db_manager.py -------------------------------------------------------------------------------- /backend/dexbrain/enhanced_continuous_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/enhanced_continuous_learning.py -------------------------------------------------------------------------------- /backend/dexbrain/enhanced_data_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/enhanced_data_pipeline.py -------------------------------------------------------------------------------- /backend/dexbrain/hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/hub.py -------------------------------------------------------------------------------- /backend/dexbrain/integrated_learning_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/integrated_learning_service.py -------------------------------------------------------------------------------- /backend/dexbrain/learning_verification_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/learning_verification_system.py -------------------------------------------------------------------------------- /backend/dexbrain/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/models/__init__.py -------------------------------------------------------------------------------- /backend/dexbrain/models/enhanced_ml_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/models/enhanced_ml_models.py -------------------------------------------------------------------------------- /backend/dexbrain/models/knowledge_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/models/knowledge_base.py -------------------------------------------------------------------------------- /backend/dexbrain/models/ml_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/models/ml_models.py -------------------------------------------------------------------------------- /backend/dexbrain/performance_scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/performance_scoring.py -------------------------------------------------------------------------------- /backend/dexbrain/production_ready_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/production_ready_system.py -------------------------------------------------------------------------------- /backend/dexbrain/realtime_blockchain_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/realtime_blockchain_pipeline.py -------------------------------------------------------------------------------- /backend/dexbrain/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/schemas.py -------------------------------------------------------------------------------- /backend/dexbrain/training_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/dexbrain/training_pipeline.py -------------------------------------------------------------------------------- /backend/logging/log_aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/logging/log_aggregator.py -------------------------------------------------------------------------------- /backend/logging/log_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/logging/log_config.py -------------------------------------------------------------------------------- /backend/mlops/ab_testing_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/mlops/ab_testing_framework.py -------------------------------------------------------------------------------- /backend/mlops/continuous_training_orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/mlops/continuous_training_orchestrator.py -------------------------------------------------------------------------------- /backend/railway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/railway.json -------------------------------------------------------------------------------- /backend/render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/render.yaml -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/services/compound_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/services/compound_service.py -------------------------------------------------------------------------------- /backend/streaming/flink_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/streaming/flink_processor.py -------------------------------------------------------------------------------- /backend/streaming/kafka_consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/streaming/kafka_consumer.py -------------------------------------------------------------------------------- /backend/streaming/kafka_producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/streaming/kafka_producer.py -------------------------------------------------------------------------------- /backend/streaming/online_learning_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/streaming/online_learning_engine.py -------------------------------------------------------------------------------- /backend/tests/test_db_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/backend/tests/test_db_manager.py -------------------------------------------------------------------------------- /contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/README.md -------------------------------------------------------------------------------- /contracts/core/ConfigurableDexterCompoundor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/core/ConfigurableDexterCompoundor.sol -------------------------------------------------------------------------------- /contracts/core/DEXToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/core/DEXToken.sol -------------------------------------------------------------------------------- /contracts/core/DexterCompoundor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/core/DexterCompoundor.sol -------------------------------------------------------------------------------- /contracts/core/DexterLiquidityManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/core/DexterLiquidityManager.sol -------------------------------------------------------------------------------- /contracts/core/DexterMultiCompoundor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/core/DexterMultiCompoundor.sol -------------------------------------------------------------------------------- /contracts/core/FeeDispenser.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/core/FeeDispenser.sol -------------------------------------------------------------------------------- /contracts/events/EventTracker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/events/EventTracker.sol -------------------------------------------------------------------------------- /contracts/factories/VaultFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/factories/VaultFactory.sol -------------------------------------------------------------------------------- /contracts/fees/FeeManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/fees/FeeManager.sol -------------------------------------------------------------------------------- /contracts/governance/EmergencyAdmin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/governance/EmergencyAdmin.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDEXStaking.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/interfaces/IDEXStaking.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDEXToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/interfaces/IDEXToken.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDexterLiquidityManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/interfaces/IDexterLiquidityManager.sol -------------------------------------------------------------------------------- /contracts/interfaces/IFeeDispenser.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/interfaces/IFeeDispenser.sol -------------------------------------------------------------------------------- /contracts/lending/DexterVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/lending/DexterVault.sol -------------------------------------------------------------------------------- /contracts/lending/InterestRateModel.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/lending/InterestRateModel.sol -------------------------------------------------------------------------------- /contracts/libraries/TWAPOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/libraries/TWAPOracle.sol -------------------------------------------------------------------------------- /contracts/liquidation/LiquidationEngine.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/liquidation/LiquidationEngine.sol -------------------------------------------------------------------------------- /contracts/optimization/GasOptimizationLib.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/optimization/GasOptimizationLib.sol -------------------------------------------------------------------------------- /contracts/optimization/GasOptimizedDexterCompoundor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/optimization/GasOptimizedDexterCompoundor.sol -------------------------------------------------------------------------------- /contracts/optimization/GasOptimizedOperations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/optimization/GasOptimizedOperations.sol -------------------------------------------------------------------------------- /contracts/optimization/OptimizedStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/optimization/OptimizedStorage.sol -------------------------------------------------------------------------------- /contracts/oracles/MLValidationOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/oracles/MLValidationOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/PriceAggregator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/oracles/PriceAggregator.sol -------------------------------------------------------------------------------- /contracts/ranges/MultiRangeManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/ranges/MultiRangeManager.sol -------------------------------------------------------------------------------- /contracts/strategies/StrategyManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/strategies/StrategyManager.sol -------------------------------------------------------------------------------- /contracts/transformers/CompoundTransformer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/transformers/CompoundTransformer.sol -------------------------------------------------------------------------------- /contracts/transformers/ITransformer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/transformers/ITransformer.sol -------------------------------------------------------------------------------- /contracts/transformers/RangeTransformer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/transformers/RangeTransformer.sol -------------------------------------------------------------------------------- /contracts/transformers/TransformerRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/transformers/TransformerRegistry.sol -------------------------------------------------------------------------------- /contracts/utils/ConfigurationManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/utils/ConfigurationManager.sol -------------------------------------------------------------------------------- /contracts/utils/DexterV3Utils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/utils/DexterV3Utils.sol -------------------------------------------------------------------------------- /contracts/utils/EventEmissionGuide.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/utils/EventEmissionGuide.sol -------------------------------------------------------------------------------- /contracts/validation/VaultClearing.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/validation/VaultClearing.sol -------------------------------------------------------------------------------- /contracts/vaults/DexterVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/vaults/DexterVault.sol -------------------------------------------------------------------------------- /contracts/vaults/IDexterVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/contracts/vaults/IDexterVault.sol -------------------------------------------------------------------------------- /dexter-liquidity/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/.coveragerc -------------------------------------------------------------------------------- /dexter-liquidity/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/.env.example -------------------------------------------------------------------------------- /dexter-liquidity/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/Dockerfile -------------------------------------------------------------------------------- /dexter-liquidity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/README.md -------------------------------------------------------------------------------- /dexter-liquidity/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/agents/__init__.py -------------------------------------------------------------------------------- /dexter-liquidity/agents/aggressive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/agents/aggressive.py -------------------------------------------------------------------------------- /dexter-liquidity/agents/base_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/agents/base_agent.py -------------------------------------------------------------------------------- /dexter-liquidity/agents/conservative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/agents/conservative.py -------------------------------------------------------------------------------- /dexter-liquidity/agents/hyper_aggressive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/agents/hyper_aggressive.py -------------------------------------------------------------------------------- /dexter-liquidity/agents/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/agents/types.py -------------------------------------------------------------------------------- /dexter-liquidity/best_lstm_model_epoch_0.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/best_lstm_model_epoch_0.pt -------------------------------------------------------------------------------- /dexter-liquidity/best_lstm_model_epoch_1.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/best_lstm_model_epoch_1.pt -------------------------------------------------------------------------------- /dexter-liquidity/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/config/__init__.py -------------------------------------------------------------------------------- /dexter-liquidity/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/config/settings.py -------------------------------------------------------------------------------- /dexter-liquidity/contracts/DEXtoken.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/contracts/DEXtoken.txt -------------------------------------------------------------------------------- /dexter-liquidity/contracts/DexsterStakeManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/contracts/DexsterStakeManager.sol -------------------------------------------------------------------------------- /dexter-liquidity/contracts/package.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dexter-liquidity/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/__init__.py -------------------------------------------------------------------------------- /dexter-liquidity/data/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/data/__pycache__/regime_detector.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/__pycache__/regime_detector.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/data/__pycache__/volatility.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/__pycache__/volatility.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/data/completeness_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/completeness_checker.py -------------------------------------------------------------------------------- /dexter-liquidity/data/data_quality_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/data_quality_dashboard.py -------------------------------------------------------------------------------- /dexter-liquidity/data/data_quality_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/data_quality_monitor.py -------------------------------------------------------------------------------- /dexter-liquidity/data/fetchers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/fetchers/__init__.py -------------------------------------------------------------------------------- /dexter-liquidity/data/fetchers/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/fetchers/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/data/fetchers/__pycache__/base_fetcher.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/fetchers/__pycache__/base_fetcher.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/data/fetchers/__pycache__/base_interface.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/fetchers/__pycache__/base_interface.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/data/fetchers/__pycache__/meteora_fetcher.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/fetchers/__pycache__/meteora_fetcher.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/data/fetchers/__pycache__/uniswap_v4_fetcher.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/fetchers/__pycache__/uniswap_v4_fetcher.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/data/fetchers/advanced_uniswap_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/fetchers/advanced_uniswap_fetcher.py -------------------------------------------------------------------------------- /dexter-liquidity/data/fetchers/base_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/fetchers/base_fetcher.py -------------------------------------------------------------------------------- /dexter-liquidity/data/fetchers/base_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/fetchers/base_interface.py -------------------------------------------------------------------------------- /dexter-liquidity/data/fetchers/uniswap_v4_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/fetchers/uniswap_v4_fetcher.py -------------------------------------------------------------------------------- /dexter-liquidity/data/historical_backfill_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/historical_backfill_service.py -------------------------------------------------------------------------------- /dexter-liquidity/data/parallel_regime_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/parallel_regime_detector.py -------------------------------------------------------------------------------- /dexter-liquidity/data/regime_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/regime_detector.py -------------------------------------------------------------------------------- /dexter-liquidity/data/volatility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data/volatility.py -------------------------------------------------------------------------------- /dexter-liquidity/data_quality_integration_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/data_quality_integration_demo.py -------------------------------------------------------------------------------- /dexter-liquidity/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/docker-compose.yml -------------------------------------------------------------------------------- /dexter-liquidity/enhanced_performance_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/enhanced_performance_integration.py -------------------------------------------------------------------------------- /dexter-liquidity/env-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/env-template.txt -------------------------------------------------------------------------------- /dexter-liquidity/execution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/execution/__init__.py -------------------------------------------------------------------------------- /dexter-liquidity/execution/execution_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/execution/execution_config.py -------------------------------------------------------------------------------- /dexter-liquidity/execution/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/execution/manager.py -------------------------------------------------------------------------------- /dexter-liquidity/grafana/dashboards/dexter_main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/grafana/dashboards/dexter_main.json -------------------------------------------------------------------------------- /dexter-liquidity/grafana/provisioning/dashboards/dashboards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/grafana/provisioning/dashboards/dashboards.yml -------------------------------------------------------------------------------- /dexter-liquidity/grafana/provisioning/datasources/datasources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/grafana/provisioning/datasources/datasources.yml -------------------------------------------------------------------------------- /dexter-liquidity/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/main.py -------------------------------------------------------------------------------- /dexter-liquidity/mlruns/1/168d1972f1d74019b7955d3c7370972c/artifacts/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/mlruns/1/168d1972f1d74019b7955d3c7370972c/artifacts/features.json -------------------------------------------------------------------------------- /dexter-liquidity/mlruns/1/168d1972f1d74019b7955d3c7370972c/artifacts/test_model_model_card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/mlruns/1/168d1972f1d74019b7955d3c7370972c/artifacts/test_model_model_card.json -------------------------------------------------------------------------------- /dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/MLmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/MLmodel -------------------------------------------------------------------------------- /dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/conda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/conda.yaml -------------------------------------------------------------------------------- /dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/environment_variables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/environment_variables.txt -------------------------------------------------------------------------------- /dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/input_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/input_example.json -------------------------------------------------------------------------------- /dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/model.pkl -------------------------------------------------------------------------------- /dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/python_env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/python_env.yaml -------------------------------------------------------------------------------- /dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/requirements.txt -------------------------------------------------------------------------------- /dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/serving_input_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/mlruns/1/models/m-1dac850819de48f993d8bfde8e8027c1/artifacts/serving_input_example.json -------------------------------------------------------------------------------- /dexter-liquidity/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/prometheus.yml -------------------------------------------------------------------------------- /dexter-liquidity/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/pytest.ini -------------------------------------------------------------------------------- /dexter-liquidity/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/requirements.txt -------------------------------------------------------------------------------- /dexter-liquidity/simple_data_quality_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/simple_data_quality_demo.py -------------------------------------------------------------------------------- /dexter-liquidity/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dexter-liquidity/tests/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/tests/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/tests/__pycache__/test_uniswap_v4_fetcher.cpython-313-pytest-8.4.0.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/tests/__pycache__/test_uniswap_v4_fetcher.cpython-313-pytest-8.4.0.pyc -------------------------------------------------------------------------------- /dexter-liquidity/tests/comprehensive_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/tests/comprehensive_tests.py -------------------------------------------------------------------------------- /dexter-liquidity/tests/execution_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/tests/execution_tests.py -------------------------------------------------------------------------------- /dexter-liquidity/tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dexter-liquidity/tests/integration/test_fetchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/tests/integration/test_fetchers.py -------------------------------------------------------------------------------- /dexter-liquidity/tests/test_uniswap_v4_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/tests/test_uniswap_v4_fetcher.py -------------------------------------------------------------------------------- /dexter-liquidity/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dexter-liquidity/tests/unit/test_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/tests/unit/test_agents.py -------------------------------------------------------------------------------- /dexter-liquidity/tests/unit/test_base_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/tests/unit/test_base_fetcher.py -------------------------------------------------------------------------------- /dexter-liquidity/tests/unit/test_volatility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/tests/unit/test_volatility.py -------------------------------------------------------------------------------- /dexter-liquidity/uniswap-v4/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/uniswap-v4/.env.example -------------------------------------------------------------------------------- /dexter-liquidity/uniswap-v4/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/uniswap-v4/foundry.toml -------------------------------------------------------------------------------- /dexter-liquidity/uniswap-v4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/uniswap-v4/package.json -------------------------------------------------------------------------------- /dexter-liquidity/uniswap-v4/src/DexterV4Hook.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/uniswap-v4/src/DexterV4Hook.sol -------------------------------------------------------------------------------- /dexter-liquidity/uniswap-v4/src/SimpleDexterHook.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/uniswap-v4/src/SimpleDexterHook.sol -------------------------------------------------------------------------------- /dexter-liquidity/uniswap-v4/src/interfaces/IDexterV4Hook.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/uniswap-v4/src/interfaces/IDexterV4Hook.sol -------------------------------------------------------------------------------- /dexter-liquidity/uniswap-v4/src/libraries/DexterMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/uniswap-v4/src/libraries/DexterMath.sol -------------------------------------------------------------------------------- /dexter-liquidity/uniswap-v4/test/DexterV4Hook.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/uniswap-v4/test/DexterV4Hook.t.sol -------------------------------------------------------------------------------- /dexter-liquidity/uniswap-v4/test/SimpleDexterHook.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/uniswap-v4/test/SimpleDexterHook.t.sol -------------------------------------------------------------------------------- /dexter-liquidity/uniswap-v4/test/utils/HookMiner.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/uniswap-v4/test/utils/HookMiner.sol -------------------------------------------------------------------------------- /dexter-liquidity/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/__init__.py -------------------------------------------------------------------------------- /dexter-liquidity/utils/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/utils/__pycache__/error_handler.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/__pycache__/error_handler.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/utils/__pycache__/memory_monitor.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/__pycache__/memory_monitor.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/utils/__pycache__/memory_profiler.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/__pycache__/memory_profiler.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/utils/__pycache__/parallel_processor.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/__pycache__/parallel_processor.cpython-313.pyc -------------------------------------------------------------------------------- /dexter-liquidity/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/cache.py -------------------------------------------------------------------------------- /dexter-liquidity/utils/enhanced_performance_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/enhanced_performance_tracker.py -------------------------------------------------------------------------------- /dexter-liquidity/utils/error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/error_handler.py -------------------------------------------------------------------------------- /dexter-liquidity/utils/memory_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/memory_monitor.py -------------------------------------------------------------------------------- /dexter-liquidity/utils/memory_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/memory_profiler.py -------------------------------------------------------------------------------- /dexter-liquidity/utils/parallel_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/parallel_processor.py -------------------------------------------------------------------------------- /dexter-liquidity/utils/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/performance.py -------------------------------------------------------------------------------- /dexter-liquidity/utils/performance_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/performance_dashboard.py -------------------------------------------------------------------------------- /dexter-liquidity/utils/performance_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/performance_tracker.py -------------------------------------------------------------------------------- /dexter-liquidity/utils/pool-abis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/pool-abis.json -------------------------------------------------------------------------------- /dexter-liquidity/utils/pool_share_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/pool_share_calculator.py -------------------------------------------------------------------------------- /dexter-liquidity/utils/portfolio_risk_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/portfolio_risk_analyzer.py -------------------------------------------------------------------------------- /dexter-liquidity/utils/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter-liquidity/utils/statistics.py -------------------------------------------------------------------------------- /dexter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/dexter.json -------------------------------------------------------------------------------- /docker-compose.streaming.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docker-compose.streaming.yml -------------------------------------------------------------------------------- /docker-compose.vault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docker-compose.vault.yml -------------------------------------------------------------------------------- /docs/INTEGRATION_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/INTEGRATION_COMPLETE.md -------------------------------------------------------------------------------- /docs/PUBLIC_STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/PUBLIC_STRUCTURE.md -------------------------------------------------------------------------------- /docs/ULTIMATE_DEXTER_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/ULTIMATE_DEXTER_README.md -------------------------------------------------------------------------------- /docs/USER_MANAGEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/USER_MANAGEMENT.md -------------------------------------------------------------------------------- /docs/deployment/DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/deployment/DEPLOYMENT.md -------------------------------------------------------------------------------- /docs/deployment/DEPLOYMENT_STRATEGY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/deployment/DEPLOYMENT_STRATEGY.md -------------------------------------------------------------------------------- /docs/deployment/PRODUCTION_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/deployment/PRODUCTION_SETUP.md -------------------------------------------------------------------------------- /docs/deployment/QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/deployment/QUICKSTART.md -------------------------------------------------------------------------------- /docs/implementation-summaries/DATA_QUALITY_SYSTEM_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/implementation-summaries/DATA_QUALITY_SYSTEM_SUMMARY.md -------------------------------------------------------------------------------- /docs/implementation-summaries/PRIORITY_1_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/implementation-summaries/PRIORITY_1_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/implementation-summaries/PRIORITY_2_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/implementation-summaries/PRIORITY_2_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/implementation-summaries/PRIORITY_3_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/implementation-summaries/PRIORITY_3_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/implementation-summaries/REVERT_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/implementation-summaries/REVERT_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/implementation-summaries/REVERT_INTEGRATION_TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/docs/implementation-summaries/REVERT_INTEGRATION_TODO.md -------------------------------------------------------------------------------- /monitoring/dexbrain-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/monitoring/dexbrain-dashboard.json -------------------------------------------------------------------------------- /monitoring/grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/monitoring/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /monitoring/grafana/provisioning/dashboards/dexter-ai-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/monitoring/grafana/provisioning/dashboards/dexter-ai-dashboard.json -------------------------------------------------------------------------------- /monitoring/grafana/provisioning/datasources/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/monitoring/grafana/provisioning/datasources/prometheus.yml -------------------------------------------------------------------------------- /monitoring/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/monitoring/prometheus/prometheus.yml -------------------------------------------------------------------------------- /requirements.streaming.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/requirements.streaming.txt -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/monitoring/grafana_quick_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/scripts/monitoring/grafana_quick_fix.sh -------------------------------------------------------------------------------- /scripts/monitoring/import_dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/scripts/monitoring/import_dashboard.json -------------------------------------------------------------------------------- /scripts/monitoring/metrics_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/scripts/monitoring/metrics_exporter.py -------------------------------------------------------------------------------- /scripts/monitoring/test_grafana_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/scripts/monitoring/test_grafana_setup.py -------------------------------------------------------------------------------- /scripts/utilities/backup_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/scripts/utilities/backup_system.py -------------------------------------------------------------------------------- /scripts/utilities/demo_alchemy_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/scripts/utilities/demo_alchemy_collection.py -------------------------------------------------------------------------------- /scripts/utilities/enhanced_alchemy_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/scripts/utilities/enhanced_alchemy_service.py -------------------------------------------------------------------------------- /scripts/utilities/run_integrated_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/scripts/utilities/run_integrated_learning.py -------------------------------------------------------------------------------- /scripts/utilities/simple_learning_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/scripts/utilities/simple_learning_demo.py -------------------------------------------------------------------------------- /scripts/utilities/uniswap_position_harvester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/scripts/utilities/uniswap_position_harvester.py -------------------------------------------------------------------------------- /scripts/utilities/vercel-env-config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/scripts/utilities/vercel-env-config.txt -------------------------------------------------------------------------------- /tests/test_vault_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltedMindz/Dexter/HEAD/tests/test_vault_integration.py --------------------------------------------------------------------------------