├── .env.example ├── .gitignore ├── AGENTS.md ├── CLAUDE.md ├── README.md ├── cross_exchange_arbitrage.py ├── docs ├── Order.md ├── OrderApi.md ├── account.md ├── api-reference.md ├── examples-guide.md ├── faq.md ├── get-started-for-programmers-1.md ├── get-started-for-programmers.md ├── grid-strategy-guide.md ├── rate-limits.md ├── supported-tokens.md ├── troubleshooting.md └── websocket.md ├── examples ├── README.md ├── analyze_minimum_order_amounts.py ├── create_cancel_order.py ├── create_market_order.py ├── get_info.py ├── grid_strategy_simulation.py ├── multi_symbol_trading.py ├── send_tx_batch.py ├── system_setup.py ├── ton_contract_trading.py ├── ws.py └── ws_async.py ├── grid_strategy.py ├── main.py ├── openapi.json ├── pylighter ├── __init__.py ├── client.py ├── httpx.py ├── market_utils.py ├── order_manager.py └── websocket_manager.py ├── pyproject.toml ├── reaper.md ├── reaper_strategy.py ├── switch_account_tier.py ├── utils ├── __init__.py └── logger_config.py └── uv.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/README.md -------------------------------------------------------------------------------- /cross_exchange_arbitrage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/cross_exchange_arbitrage.py -------------------------------------------------------------------------------- /docs/Order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/docs/Order.md -------------------------------------------------------------------------------- /docs/OrderApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/docs/OrderApi.md -------------------------------------------------------------------------------- /docs/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/docs/account.md -------------------------------------------------------------------------------- /docs/api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/docs/api-reference.md -------------------------------------------------------------------------------- /docs/examples-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/docs/examples-guide.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/get-started-for-programmers-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/docs/get-started-for-programmers-1.md -------------------------------------------------------------------------------- /docs/get-started-for-programmers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/docs/get-started-for-programmers.md -------------------------------------------------------------------------------- /docs/grid-strategy-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/docs/grid-strategy-guide.md -------------------------------------------------------------------------------- /docs/rate-limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/docs/rate-limits.md -------------------------------------------------------------------------------- /docs/supported-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/docs/supported-tokens.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/websocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/docs/websocket.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/analyze_minimum_order_amounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/examples/analyze_minimum_order_amounts.py -------------------------------------------------------------------------------- /examples/create_cancel_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/examples/create_cancel_order.py -------------------------------------------------------------------------------- /examples/create_market_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/examples/create_market_order.py -------------------------------------------------------------------------------- /examples/get_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/examples/get_info.py -------------------------------------------------------------------------------- /examples/grid_strategy_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/examples/grid_strategy_simulation.py -------------------------------------------------------------------------------- /examples/multi_symbol_trading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/examples/multi_symbol_trading.py -------------------------------------------------------------------------------- /examples/send_tx_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/examples/send_tx_batch.py -------------------------------------------------------------------------------- /examples/system_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/examples/system_setup.py -------------------------------------------------------------------------------- /examples/ton_contract_trading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/examples/ton_contract_trading.py -------------------------------------------------------------------------------- /examples/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/examples/ws.py -------------------------------------------------------------------------------- /examples/ws_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/examples/ws_async.py -------------------------------------------------------------------------------- /grid_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/grid_strategy.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/main.py -------------------------------------------------------------------------------- /openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/openapi.json -------------------------------------------------------------------------------- /pylighter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/pylighter/__init__.py -------------------------------------------------------------------------------- /pylighter/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/pylighter/client.py -------------------------------------------------------------------------------- /pylighter/httpx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/pylighter/httpx.py -------------------------------------------------------------------------------- /pylighter/market_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/pylighter/market_utils.py -------------------------------------------------------------------------------- /pylighter/order_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/pylighter/order_manager.py -------------------------------------------------------------------------------- /pylighter/websocket_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/pylighter/websocket_manager.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/pyproject.toml -------------------------------------------------------------------------------- /reaper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/reaper.md -------------------------------------------------------------------------------- /reaper_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/reaper_strategy.py -------------------------------------------------------------------------------- /switch_account_tier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/switch_account_tier.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/logger_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/utils/logger_config.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defi-maker/pylighter/HEAD/uv.lock --------------------------------------------------------------------------------