Add Binance symbol-sync validation and VPS requirements hardening#2
Open
Add Binance symbol-sync validation and VPS requirements hardening#2
Conversation
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
_normalize_symbol(),get_exchange_symbols()(5 minute cache) andvalidate_symbols()indarwin_agent/exchanges/binance.pyand applied normalization inget_candles,get_ticker,place_order,close_position, andset_leverage.validate_exchange_symbol_sync()indarwin_agent/main.pyand invoked it afterrouter.connect_all()somode=livefails fast on invalid/non-tradable Binance symbols.ExchangeRouterexposes backward-compatible hooks (connect_all,get_all_statuses,disconnect_all,close) and adjustedset_leverageresult propagation indarwin_agent/exchanges/router.py.MAINNET_VPS_RUNBOOK_ES.mdwith minimum VPS requirements, secure env handling,systemdservice, preflight checks and update/kill-switch procedures.test_binance_adapter_safety.py,test_main_runtime_compat.py, andtest_router_set_leverage.pycovering symbol normalization,exchangeInfocaching, validation behavior, and router hooks.Testing
pytest -q test_binance_adapter_safety.py test_main_runtime_compat.py test_router_set_leverage.pyand all tests passed (12 passed).python -m compileall -q darwin_agentwith no errors reported.Codex Task