invoices: multi-crypto payment support
All checks were successful
Build and Deploy to Production / test (push) Successful in 18s
Build and Deploy to Production / build (push) Successful in 49s
Build and Deploy to Production / deploy (push) Successful in 31s

One asset per invoice from a registry (lib/crypto_asset.rb): BTC, LTC,
ETH, XMR, SOL, ALGO, USDT/USDC on ERC-20/TRC-20/BEP-20/Solana/Algorand.
Migration 003 generalizes the ltc_* columns to crypto_* + crypto_coin
(existing LTC invoices backfilled). QR payload adapts per asset: BIP21
amount URIs where supported, bare address for tokens with a network
hint on the PDF. Default addresses come from the CRYPTO_ADDRESSES
secret (JSON code=>address); LTC_ADDRESS still works as legacy.
This commit is contained in:
Sergei Poljanski 2026-07-03 02:01:57 +04:00
commit 0fbb6ee809
Signed by: asxpi
GPG key ID: 4F8851660FA4121B
20 changed files with 410 additions and 143 deletions

View file

@ -36,15 +36,40 @@
reindex();
});
// --- Litecoin: live rate fetch + auto amount ------------------------
const rateInput = document.getElementById('ltc_rate');
const amountInput = document.getElementById('ltc_amount');
const fetchBtn = document.getElementById('fetch-ltc-rate');
const rateStatus = document.getElementById('ltc-rate-status');
const rateCcy = document.getElementById('ltc-rate-ccy');
// --- Crypto: coin select, live rate fetch + auto amount -------------
const coinSel = document.getElementById('crypto_coin');
const addressInput = document.getElementById('crypto_address');
const rateInput = document.getElementById('crypto_rate');
const amountInput = document.getElementById('crypto_amount');
const fetchBtn = document.getElementById('fetch-crypto-rate');
const rateStatus = document.getElementById('crypto-rate-status');
const rateCcy = document.getElementById('crypto-rate-ccy');
const rateCoin = document.getElementById('crypto-rate-coin');
const currencySel = document.getElementById('currency');
const gelRateInput = document.getElementById('gel_rate');
// Default payout addresses per coin, rendered server-side from env.
let cryptoDefaults = {};
const defaultsEl = document.getElementById('crypto-defaults');
if (defaultsEl) {
try { cryptoDefaults = JSON.parse(defaultsEl.textContent); } catch (e) { /* leave empty */ }
}
// On coin change: swap in the new coin's default address, but never
// clobber a hand-entered one (only replace blank or known defaults).
if (coinSel && addressInput) {
coinSel.addEventListener('change', function () {
const val = addressInput.value.trim();
const isDefault = val === '' || Object.values(cryptoDefaults).indexOf(val) !== -1;
if (isDefault) addressInput.value = cryptoDefaults[coinSel.value] || '';
rateInput.value = '';
if (amountInput) amountInput.value = '';
amountTouched = false;
rateStatus.textContent = '';
syncCcyLabel();
});
}
function invoiceTotal() {
let total = 0;
tbody.querySelectorAll('tr.item-row').forEach((row) => {
@ -74,6 +99,7 @@
const ccy = currencySel ? currencySel.value : 'USD';
if (rateCcy) rateCcy.textContent = ccy;
if (gelRateCcy) gelRateCcy.textContent = ccy;
if (rateCoin && coinSel) rateCoin.textContent = coinSel.value;
}
syncCcyLabel();
if (currencySel) currencySel.addEventListener('change', syncCcyLabel);
@ -84,10 +110,11 @@
if (fetchBtn) {
fetchBtn.addEventListener('click', function () {
const ccy = currencySel ? currencySel.value : 'USD';
const params = new URLSearchParams({ currency: ccy });
const coin = coinSel ? coinSel.value : 'LTC';
const params = new URLSearchParams({ coin: coin, currency: ccy });
if (gelRateInput && gelRateInput.value) params.set('gel_rate', gelRateInput.value);
rateStatus.textContent = ' fetching…';
fetch('/admin/ltc-rate?' + params.toString(), { headers: { Accept: 'application/json' } })
fetch('/admin/crypto-rate?' + params.toString(), { headers: { Accept: 'application/json' } })
.then((r) => r.json().then((j) => ({ ok: r.ok, j })))
.then(({ ok, j }) => {
if (!ok) { rateStatus.textContent = ' ' + (j.error || 'failed'); return; }