Monolith vs modular services for this bot? #2
Answered
by
machenxi
Jackhuang166
asked this question in
Q&A
-
|
Monolith vs modular services for this bot? |
Beta Was this translation helpful? Give feedback.
Answered by
machenxi
Sep 29, 2025
Replies: 1 comment
-
|
Build a single, well-modularized process for V1 (clear modules for ingest, strategy, executor, wallet, notifier). That keeps iteration fast and testing simple. Split into separate services only when you need independent scaling or isolation (e.g., separate signing service, mempool watcher, or analytics worker). Keep the signing surface tiny and language/runtime consistent for fewer integration issues. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Jackhuang166
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Build a single, well-modularized process for V1 (clear modules for ingest, strategy, executor, wallet, notifier). That keeps iteration fast and testing simple. Split into separate services only when you need independent scaling or isolation (e.g., separate signing service, mempool watcher, or analytics worker). Keep the signing surface tiny and language/runtime consistent for fewer integration issues.