rename min_amount endpoint to min_deposit

This commit is contained in:
2026-07-05 20:47:12 -04:00
parent 2077b5b931
commit ea66de0693
2 changed files with 2 additions and 2 deletions

View File

@@ -444,7 +444,7 @@ async function fetchData() {
async function fetchMinAmount() {
const chain = getChain();
try {
const r = await fetch('/min_amount/' + chain);
const r = await fetch('/min_deposit/' + chain);
const val = parseInt(await r.text(), 10);
if (isNaN(val)) throw new Error('invalid');
minAmount = val;