├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── aster_intervals.json ├── aster_intervals_dump.json ├── aster_invalid_symbols.json ├── binance_intervals.json ├── binance_intervals_dump.json ├── exchanges ├── __init__.py ├── aster.py ├── backpack.py ├── base.py ├── binance.py ├── edgex.py ├── hyperliquid.py └── lighter.py ├── funding_core.py ├── requirements.txt ├── test.py ├── ui_components.py └── visit_log.jsonl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/app.py -------------------------------------------------------------------------------- /aster_intervals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/aster_intervals.json -------------------------------------------------------------------------------- /aster_intervals_dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/aster_intervals_dump.json -------------------------------------------------------------------------------- /aster_invalid_symbols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/aster_invalid_symbols.json -------------------------------------------------------------------------------- /binance_intervals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/binance_intervals.json -------------------------------------------------------------------------------- /binance_intervals_dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/binance_intervals_dump.json -------------------------------------------------------------------------------- /exchanges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exchanges/aster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/exchanges/aster.py -------------------------------------------------------------------------------- /exchanges/backpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/exchanges/backpack.py -------------------------------------------------------------------------------- /exchanges/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/exchanges/base.py -------------------------------------------------------------------------------- /exchanges/binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/exchanges/binance.py -------------------------------------------------------------------------------- /exchanges/edgex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/exchanges/edgex.py -------------------------------------------------------------------------------- /exchanges/hyperliquid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/exchanges/hyperliquid.py -------------------------------------------------------------------------------- /exchanges/lighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/exchanges/lighter.py -------------------------------------------------------------------------------- /funding_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/funding_core.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/test.py -------------------------------------------------------------------------------- /ui_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/ui_components.py -------------------------------------------------------------------------------- /visit_log.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoYuCry/Nova_funding_hub/HEAD/visit_log.jsonl --------------------------------------------------------------------------------