mirror of
https://github.com/theodore-song/polymarket-analyst.git
synced 2026-08-24 04:58:08 +00:00
9 lines
275 B
JavaScript
9 lines
275 B
JavaScript
import { auditLiquidity } from "../lib/liquidity-audit.js";
|
|
|
|
const report = await auditLiquidity({
|
|
marketLimit: Number(process.env.LIQUIDITY_MARKETS || 100),
|
|
minHoursToEnd: Number(process.env.LIQUIDITY_MIN_HOURS || 48),
|
|
});
|
|
|
|
console.log(JSON.stringify(report, null, 2));
|