Skip to content

Commit

Permalink
empty liquidations endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
ewansheldon committed Mar 6, 2025
1 parent e80602a commit 06c822b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ const server = http.createServer(async (req, res) => {
res.end(JSON.stringify(await getVaultRedemptionData(req.url)));
} else if (supplyAddress(req.url)) {
res.end(JSON.stringify(await getSupplyData(req.url)))
} else if (req.url === '/liquidations') {
res.end(JSON.stringify([]))
}
// }

Expand Down

0 comments on commit 06c822b

Please sign in to comment.