Compare commits

..

No commits in common. "f7caa75228e7c6bf6549dfc42dbd0fae4b8d3f14" and "7e139e6a8e65c9262621c79ea7ff0263a8ce414e" have entirely different histories.

3 changed files with 25 additions and 8 deletions

View File

@ -99,11 +99,6 @@ class Pair(Struct, frozen=True, kw_only=True):
permissionSets: list[list[str]]
# https://developers.binance.com/docs/binance-spot-api-docs#2025-08-26
# will become non-optional 2025-08-28?
# https://developers.binance.com/docs/binance-spot-api-docs#future-changes
pegInstructionsAllowed: bool|None = None
filters: dict[
str,
str | int | float,

View File

@ -185,11 +185,33 @@ def pikerd(
loglevel=loglevel,
debug_mode=pdb,
enable_transports=['uds'],
) as service_mngr,
) as service_mngr, # normally delivers a ``Services`` handle
# AsyncExitStack() as stack,
):
assert service_mngr
# ?TODO? spawn all other sub-actor daemons according to
# TODO: spawn all other sub-actor daemons according to
# multiaddress endpoint spec defined by user config
assert service_mngr
# if tsdb:
# dname, conf = await stack.enter_async_context(
# service.marketstore.start_ahab_daemon(
# service_mngr,
# loglevel=loglevel,
# )
# )
# log.info(f'TSDB `{dname}` up with conf:\n{conf}')
# if es:
# dname, conf = await stack.enter_async_context(
# service.elastic.start_ahab_daemon(
# service_mngr,
# loglevel=loglevel,
# )
# )
# log.info(f'DB `{dname}` up with conf:\n{conf}')
await trio.sleep_forever()
trio.run(main)