bd67bfc92e
A self-hostable Grin payment server for shops, creators, and sites: show a code, Grin lands in your wallet, with a verifiable Grin payment proof on receive. Workspace crates (gp-core / gp-nostr / gp-server / gp-wallet / gp-goblin-sender), a WooCommerce connector, a hosted /pay/<token> checkout, and NIP-44 v3 gift-wrapped payment DMs carried over the Nym mixnet. All secrets are read from the environment; none are committed.
26 lines
689 B
SQL
26 lines
689 B
SQL
-- Initial schema. Kept minimal per the plan (~3 tables total; the optional
|
|
-- webhook_delivery table arrives with the notifications milestone).
|
|
|
|
-- One row per received payment. Timestamps are ISO-8601 TEXT (UTC).
|
|
CREATE TABLE payment (
|
|
id TEXT PRIMARY KEY,
|
|
amount INTEGER NOT NULL,
|
|
payer TEXT,
|
|
slate_id TEXT,
|
|
kernel TEXT,
|
|
proof TEXT,
|
|
status TEXT NOT NULL,
|
|
confirmed_height INTEGER,
|
|
created_at TEXT NOT NULL
|
|
);
|
|
|
|
-- Optional order matching: only populated when payments map to invoices.
|
|
CREATE TABLE invoice (
|
|
id TEXT PRIMARY KEY,
|
|
ref TEXT,
|
|
expected_amount INTEGER,
|
|
expiry TEXT,
|
|
status TEXT NOT NULL,
|
|
created_at TEXT NOT NULL
|
|
);
|