feat(staging): self-host DLOB service

This commit is contained in:
u1
2026-01-10 09:37:52 +01:00
parent 392458ad99
commit ead68a25cf
7 changed files with 183 additions and 4 deletions

View File

@@ -53,7 +53,7 @@ function resolveConfig() {
.trim()
.replace(/\/$/, '');
const markets = envList('DLOB_MARKETS', 'PUMP-PERP,SOL-PERP,BONK-PERP,BTC-PERP,ETH-PERP');
const markets = envList('DLOB_MARKETS', 'PUMP-PERP,SOL-PERP,1MBONK-PERP,BTC-PERP,ETH-PERP');
const depth = clampInt(process.env.DLOB_DEPTH, 1, 50, 10);
const pollMs = clampInt(process.env.DLOB_POLL_MS, 100, 10_000, 500);