diff --git a/src/http/app.ts b/src/http/app.ts index 5a7adb7..cc743dc 100644 --- a/src/http/app.ts +++ b/src/http/app.ts @@ -16,7 +16,7 @@ export function createApp(options: AppOptions) { const app = express(); const { ethereum, db, amqp, logger } = options; - app.get('/health', async (_req, res) => { + app.get(['/health', '/healthcheck'], async (_req, res) => { const hotWalletAddress = ethereum.getHotWalletAddress(); const [blockNumber, ethBalanceWei, usdtBalanceUnits, postgres] = await Promise.allSettled([ ethereum.getCurrentBlockNumber(),