This commit is contained in:
NextJS
2026-05-11 04:30:39 +00:00
parent 0f6e979aac
commit b2be61190f
13 changed files with 1361 additions and 6 deletions
+14
View File
@@ -30,3 +30,17 @@ export type DbSetting = {
key: string;
value: string | null;
};
/** Mirrors `public.transactions` (see schemas/transactions.md). */
export type DbTransaction = {
id: number;
created_at: string;
/** Payer; null — e.g. mint / supply (no debit account). */
from: number | null;
/** Payee; null — e.g. burn (credits nowhere). */
to: number | null;
/** BIGINT; may deserialize as string over JSON. */
amount: number | string;
remarks: string | null;
match_id: number | null;
};