Files
hummingbot-dashboard/hbotrc/spec.py
2023-06-09 20:21:36 +01:00

22 lines
611 B
Python

class CommandTopicSpecs:
START: str = '/start'
STOP: str = '/stop'
CONFIG: str = '/config'
IMPORT: str = '/import'
STATUS: str = '/status'
HISTORY: str = '/history'
BALANCE_LIMIT: str = '/balance/limit'
BALANCE_PAPER: str = '/balance/paper'
COMMAND_SHORTCUT: str = '/command_shortcuts'
class TopicSpecs:
PREFIX: str = '{namespace}/{instance_id}'
COMMANDS: CommandTopicSpecs = CommandTopicSpecs()
LOGS: str = '/log'
MARKET_EVENTS: str = '/events'
NOTIFICATIONS: str = '/notify'
HEARTBEATS: str = '/hb'
EXTERNAL_EVENTS: str = '/external/event/*'