mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-24 03:54:21 +01:00
Wallet: Lightning interface (#318)
* mint does not start yet * fix import * revert mint db migrations * handle zero fee case * cli: adjust fee message * wallet: replace requests with httpx * clean up * rename http client decorator * fix pending check in main, todo: TEST PROXIES WITH HTTPX * fix up * use httpx for nostr as well * update packages to same versions as https://github.com/lnbits/lnbits/pull/1609/files * fix proof deserialization * check for string * tests passing * adjust wallet api tests * lockfile * add correct responses to Lightning interface and delete melt_id for proofs for which the payent has failed * fix create_invoice checking_id response * migrations atomic * proofs are stored automatically when created * make format * use bolt11 lib * stricter type checking * add fee response to payments * assert fees in test_melt * test that mint_id and melt_id is stored correctly in proofs and proofs_used * remove traces * refactor: Lightning interface into own file and LedgerCrud with typing * fix tests * fix payment response * rename variable
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
from ..core.db import Database
|
||||
from ..core.db import Connection, Database
|
||||
|
||||
|
||||
async def m000_create_migrations_table(db: Database):
|
||||
await db.execute("""
|
||||
async def m000_create_migrations_table(conn: Connection):
|
||||
await conn.execute("""
|
||||
CREATE TABLE IF NOT EXISTS dbversions (
|
||||
db TEXT PRIMARY KEY,
|
||||
version INT NOT NULL
|
||||
@@ -11,53 +11,54 @@ async def m000_create_migrations_table(db: Database):
|
||||
|
||||
|
||||
async def m001_initial(db: Database):
|
||||
await db.execute(f"""
|
||||
CREATE TABLE IF NOT EXISTS proofs (
|
||||
amount {db.big_int} NOT NULL,
|
||||
C TEXT NOT NULL,
|
||||
secret TEXT NOT NULL,
|
||||
async with db.connect() as conn:
|
||||
await conn.execute(f"""
|
||||
CREATE TABLE IF NOT EXISTS proofs (
|
||||
amount {db.big_int} NOT NULL,
|
||||
C TEXT NOT NULL,
|
||||
secret TEXT NOT NULL,
|
||||
|
||||
UNIQUE (secret)
|
||||
UNIQUE (secret)
|
||||
|
||||
);
|
||||
""")
|
||||
|
||||
await conn.execute(f"""
|
||||
CREATE TABLE IF NOT EXISTS proofs_used (
|
||||
amount {db.big_int} NOT NULL,
|
||||
C TEXT NOT NULL,
|
||||
secret TEXT NOT NULL,
|
||||
|
||||
UNIQUE (secret)
|
||||
|
||||
);
|
||||
""")
|
||||
|
||||
await conn.execute("""
|
||||
CREATE VIEW IF NOT EXISTS balance AS
|
||||
SELECT COALESCE(SUM(s), 0) AS balance FROM (
|
||||
SELECT SUM(amount) AS s
|
||||
FROM proofs
|
||||
WHERE amount > 0
|
||||
);
|
||||
""")
|
||||
|
||||
await db.execute(f"""
|
||||
CREATE TABLE IF NOT EXISTS proofs_used (
|
||||
amount {db.big_int} NOT NULL,
|
||||
C TEXT NOT NULL,
|
||||
secret TEXT NOT NULL,
|
||||
|
||||
UNIQUE (secret)
|
||||
|
||||
await conn.execute("""
|
||||
CREATE VIEW IF NOT EXISTS balance_used AS
|
||||
SELECT COALESCE(SUM(s), 0) AS used FROM (
|
||||
SELECT SUM(amount) AS s
|
||||
FROM proofs_used
|
||||
WHERE amount > 0
|
||||
);
|
||||
""")
|
||||
|
||||
await db.execute("""
|
||||
CREATE VIEW IF NOT EXISTS balance AS
|
||||
SELECT COALESCE(SUM(s), 0) AS balance FROM (
|
||||
SELECT SUM(amount) AS s
|
||||
FROM proofs
|
||||
WHERE amount > 0
|
||||
);
|
||||
""")
|
||||
|
||||
await db.execute("""
|
||||
CREATE VIEW IF NOT EXISTS balance_used AS
|
||||
SELECT COALESCE(SUM(s), 0) AS used FROM (
|
||||
SELECT SUM(amount) AS s
|
||||
FROM proofs_used
|
||||
WHERE amount > 0
|
||||
);
|
||||
""")
|
||||
|
||||
|
||||
async def m002_add_proofs_reserved(db: Database):
|
||||
"""
|
||||
Column for marking proofs as reserved when they are being sent.
|
||||
"""
|
||||
|
||||
await db.execute("ALTER TABLE proofs ADD COLUMN reserved BOOL")
|
||||
async with db.connect() as conn:
|
||||
await conn.execute("ALTER TABLE proofs ADD COLUMN reserved BOOL")
|
||||
|
||||
|
||||
async def m003_add_proofs_sendid_and_timestamps(db: Database):
|
||||
@@ -65,17 +66,19 @@ async def m003_add_proofs_sendid_and_timestamps(db: Database):
|
||||
Column with unique ID for each initiated send attempt
|
||||
so proofs can be later grouped together for each send attempt.
|
||||
"""
|
||||
await db.execute("ALTER TABLE proofs ADD COLUMN send_id TEXT")
|
||||
await db.execute("ALTER TABLE proofs ADD COLUMN time_created TIMESTAMP")
|
||||
await db.execute("ALTER TABLE proofs ADD COLUMN time_reserved TIMESTAMP")
|
||||
await db.execute("ALTER TABLE proofs_used ADD COLUMN time_used TIMESTAMP")
|
||||
async with db.connect() as conn:
|
||||
await conn.execute("ALTER TABLE proofs ADD COLUMN send_id TEXT")
|
||||
await conn.execute("ALTER TABLE proofs ADD COLUMN time_created TIMESTAMP")
|
||||
await conn.execute("ALTER TABLE proofs ADD COLUMN time_reserved TIMESTAMP")
|
||||
await conn.execute("ALTER TABLE proofs_used ADD COLUMN time_used TIMESTAMP")
|
||||
|
||||
|
||||
async def m004_p2sh_locks(db: Database):
|
||||
"""
|
||||
DEPRECATED: Stores P2SH addresses and unlock scripts.
|
||||
"""
|
||||
# await db.execute("""
|
||||
# async with db.connect() as conn:
|
||||
# await conn.execute("""
|
||||
# CREATE TABLE IF NOT EXISTS p2sh (
|
||||
# address TEXT NOT NULL,
|
||||
# script TEXT NOT NULL,
|
||||
@@ -92,91 +95,117 @@ async def m005_wallet_keysets(db: Database):
|
||||
"""
|
||||
Stores mint keysets from different mints and epochs.
|
||||
"""
|
||||
await db.execute(f"""
|
||||
CREATE TABLE IF NOT EXISTS keysets (
|
||||
id TEXT,
|
||||
mint_url TEXT,
|
||||
valid_from TIMESTAMP DEFAULT {db.timestamp_now},
|
||||
valid_to TIMESTAMP DEFAULT {db.timestamp_now},
|
||||
first_seen TIMESTAMP DEFAULT {db.timestamp_now},
|
||||
active BOOL DEFAULT TRUE,
|
||||
async with db.connect() as conn:
|
||||
await conn.execute(f"""
|
||||
CREATE TABLE IF NOT EXISTS keysets (
|
||||
id TEXT,
|
||||
mint_url TEXT,
|
||||
valid_from TIMESTAMP DEFAULT {db.timestamp_now},
|
||||
valid_to TIMESTAMP DEFAULT {db.timestamp_now},
|
||||
first_seen TIMESTAMP DEFAULT {db.timestamp_now},
|
||||
active BOOL DEFAULT TRUE,
|
||||
|
||||
UNIQUE (id, mint_url)
|
||||
UNIQUE (id, mint_url)
|
||||
|
||||
);
|
||||
""")
|
||||
);
|
||||
""")
|
||||
|
||||
await db.execute("ALTER TABLE proofs ADD COLUMN id TEXT")
|
||||
await db.execute("ALTER TABLE proofs_used ADD COLUMN id TEXT")
|
||||
await conn.execute("ALTER TABLE proofs ADD COLUMN id TEXT")
|
||||
await conn.execute("ALTER TABLE proofs_used ADD COLUMN id TEXT")
|
||||
|
||||
|
||||
async def m006_invoices(db: Database):
|
||||
"""
|
||||
Stores Lightning invoices.
|
||||
"""
|
||||
await db.execute(f"""
|
||||
CREATE TABLE IF NOT EXISTS invoices (
|
||||
amount INTEGER NOT NULL,
|
||||
pr TEXT NOT NULL,
|
||||
hash TEXT,
|
||||
preimage TEXT,
|
||||
paid BOOL DEFAULT FALSE,
|
||||
time_created TIMESTAMP DEFAULT {db.timestamp_now},
|
||||
time_paid TIMESTAMP DEFAULT {db.timestamp_now},
|
||||
async with db.connect() as conn:
|
||||
await conn.execute(f"""
|
||||
CREATE TABLE IF NOT EXISTS invoices (
|
||||
amount INTEGER NOT NULL,
|
||||
pr TEXT NOT NULL,
|
||||
hash TEXT,
|
||||
preimage TEXT,
|
||||
paid BOOL DEFAULT FALSE,
|
||||
time_created TIMESTAMP DEFAULT {db.timestamp_now},
|
||||
time_paid TIMESTAMP DEFAULT {db.timestamp_now},
|
||||
|
||||
UNIQUE (hash)
|
||||
UNIQUE (hash)
|
||||
|
||||
);
|
||||
""")
|
||||
);
|
||||
""")
|
||||
|
||||
|
||||
async def m007_nostr(db: Database):
|
||||
"""
|
||||
Stores timestamps of nostr operations.
|
||||
"""
|
||||
await db.execute("""
|
||||
CREATE TABLE IF NOT EXISTS nostr (
|
||||
type TEXT NOT NULL,
|
||||
last TIMESTAMP DEFAULT NULL
|
||||
)
|
||||
""")
|
||||
await db.execute(
|
||||
"""
|
||||
INSERT INTO nostr
|
||||
(type, last)
|
||||
VALUES (?, ?)
|
||||
""",
|
||||
(
|
||||
"dm",
|
||||
None,
|
||||
),
|
||||
)
|
||||
# async with db.connect() as conn:
|
||||
# await conn.execute("""
|
||||
# CREATE TABLE IF NOT EXISTS nostr (
|
||||
# type TEXT NOT NULL,
|
||||
# last TIMESTAMP DEFAULT NULL
|
||||
# )
|
||||
# """)
|
||||
# await conn.execute(
|
||||
# """
|
||||
# INSERT INTO nostr
|
||||
# (type, last)
|
||||
# VALUES (?, ?)
|
||||
# """,
|
||||
# (
|
||||
# "dm",
|
||||
# None,
|
||||
# ),
|
||||
# )
|
||||
|
||||
|
||||
async def m008_keysets_add_public_keys(db: Database):
|
||||
"""
|
||||
Stores public keys of mint in a new column of table keysets.
|
||||
"""
|
||||
await db.execute("ALTER TABLE keysets ADD COLUMN public_keys TEXT")
|
||||
async with db.connect() as conn:
|
||||
await conn.execute("ALTER TABLE keysets ADD COLUMN public_keys TEXT")
|
||||
|
||||
|
||||
async def m009_privatekey_and_determinstic_key_derivation(db: Database):
|
||||
await db.execute("ALTER TABLE keysets ADD COLUMN counter INTEGER DEFAULT 0")
|
||||
await db.execute("ALTER TABLE proofs ADD COLUMN derivation_path TEXT")
|
||||
await db.execute("ALTER TABLE proofs_used ADD COLUMN derivation_path TEXT")
|
||||
await db.execute("""
|
||||
CREATE TABLE IF NOT EXISTS seed (
|
||||
seed TEXT NOT NULL,
|
||||
mnemonic TEXT NOT NULL,
|
||||
async with db.connect() as conn:
|
||||
await conn.execute("ALTER TABLE keysets ADD COLUMN counter INTEGER DEFAULT 0")
|
||||
await conn.execute("ALTER TABLE proofs ADD COLUMN derivation_path TEXT")
|
||||
await conn.execute("ALTER TABLE proofs_used ADD COLUMN derivation_path TEXT")
|
||||
await conn.execute("""
|
||||
CREATE TABLE IF NOT EXISTS seed (
|
||||
seed TEXT NOT NULL,
|
||||
mnemonic TEXT NOT NULL,
|
||||
|
||||
UNIQUE (seed, mnemonic)
|
||||
);
|
||||
""")
|
||||
# await db.execute("INSERT INTO secret_derivation (counter) VALUES (0)")
|
||||
UNIQUE (seed, mnemonic)
|
||||
);
|
||||
""")
|
||||
# await conn.execute("INSERT INTO secret_derivation (counter) VALUES (0)")
|
||||
|
||||
|
||||
async def m010_add_proofs_dleq(db: Database):
|
||||
"""
|
||||
Columns to store DLEQ proofs for proofs.
|
||||
"""
|
||||
await db.execute("ALTER TABLE proofs ADD COLUMN dleq TEXT")
|
||||
async with db.connect() as conn:
|
||||
await conn.execute("ALTER TABLE proofs ADD COLUMN dleq TEXT")
|
||||
|
||||
|
||||
async def m010_add_ids_to_proofs_and_out_to_invoices(db: Database):
|
||||
"""
|
||||
Columns that store mint and melt id for proofs and invoices.
|
||||
"""
|
||||
async with db.connect() as conn:
|
||||
await conn.execute("ALTER TABLE proofs ADD COLUMN mint_id TEXT")
|
||||
await conn.execute("ALTER TABLE proofs_used ADD COLUMN mint_id TEXT")
|
||||
await conn.execute("ALTER TABLE proofs ADD COLUMN melt_id TEXT")
|
||||
await conn.execute("ALTER TABLE proofs_used ADD COLUMN melt_id TEXT")
|
||||
|
||||
# column in invoices for marking whether the invoice is incoming (out=False) or outgoing (out=True)
|
||||
await conn.execute("ALTER TABLE invoices ADD COLUMN out BOOL")
|
||||
# rename column pr to bolt11
|
||||
await conn.execute("ALTER TABLE invoices RENAME COLUMN pr TO bolt11")
|
||||
# rename column hash to payment_hash
|
||||
await conn.execute("ALTER TABLE invoices RENAME COLUMN hash TO id")
|
||||
# add column payment_hash
|
||||
await conn.execute("ALTER TABLE invoices ADD COLUMN payment_hash TEXT")
|
||||
|
||||
Reference in New Issue
Block a user