mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-21 19:14:19 +01:00
* first working version but some sats go missing * back at it * make format * restore to main * move mint database * fix some tests * make format * remove old _construct_outputs we reintroduced in merge with main * add type annotations * add wallet private key to tests * wallet: load proofs * fix tests * _generate_secrets with deterministic generation (temporary) * allow wallet initialization with custom private key * add pk to wallet api test * mint scope=module * remove private_key from test_wallet.py to see if it helps with the github tests * readd private keys to tests * workflow without env * add more private key! * readd env * ledger scope session * add default private key for testing * generate private keys if not available * testing * its working!!! * first iteration of bip32 working * get mint info and add many type annotations * tests * fix tests with bip32 * restore from multiple mints * disable profiler * make format * failed POST /mint do not increment secret counter * store derivation path in each token * fix tests * refactor migrations so private keys can be generated by the wallet with .with_db() classmethod * start fixing tests * all tests passing except those that need to set a specific private key * bip39 mnemonic to seed - with db but restore doesnt work yet with custom seed * mnemonic restore works * enter mnemonic in cli * fix tests to use different mnemonic * properly ask user for seed input * tests: dont ask for inputs * try to fix tests * fix cashu -d * fixing * bump version and add more text to mnemonic enter * add more comments * add many more comments and type annotations in the wallet * dont print generated mnemonic and dont wait for input * fix test * does this fix tests? * sigh.... * make format * do not restore from an initialized wallet * fix mnemonics * fix nitpicks * print wallet name if nonstandard wallet * fix merge error and remove comments * poetry lock and requirements * remove unused code * fix tests * mnemonic.lower() and add keyset id if not present for backwards compat * edit comment
196 lines
4.8 KiB
Python
196 lines
4.8 KiB
Python
from ..core.db import Database
|
|
|
|
|
|
async def m000_create_migrations_table(db: Database):
|
|
await db.execute(
|
|
"""
|
|
CREATE TABLE IF NOT EXISTS dbversions (
|
|
db TEXT PRIMARY KEY,
|
|
version INT NOT NULL
|
|
)
|
|
"""
|
|
)
|
|
|
|
|
|
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,
|
|
|
|
UNIQUE (secret)
|
|
|
|
);
|
|
"""
|
|
)
|
|
|
|
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 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 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 def m004_p2sh_locks(db: Database):
|
|
"""
|
|
Stores P2SH addresses and unlock scripts.
|
|
"""
|
|
await db.execute(
|
|
"""
|
|
CREATE TABLE IF NOT EXISTS p2sh (
|
|
address TEXT NOT NULL,
|
|
script TEXT NOT NULL,
|
|
signature TEXT NOT NULL,
|
|
used BOOL NOT NULL,
|
|
|
|
UNIQUE (address, script, signature)
|
|
|
|
);
|
|
"""
|
|
)
|
|
|
|
|
|
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,
|
|
|
|
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")
|
|
|
|
|
|
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},
|
|
|
|
UNIQUE (hash)
|
|
|
|
);
|
|
"""
|
|
)
|
|
|
|
|
|
async def m007_nostr(db: Database):
|
|
"""
|
|
Stores timestamps of nostr operations.
|
|
"""
|
|
await db.execute(
|
|
f"""
|
|
CREATE TABLE IF NOT EXISTS nostr (
|
|
type TEXT NOT NULL,
|
|
last TIMESTAMP DEFAULT NULL
|
|
)
|
|
"""
|
|
)
|
|
await db.execute(
|
|
f"""
|
|
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 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,
|
|
|
|
UNIQUE (seed, mnemonic)
|
|
);
|
|
"""
|
|
)
|
|
# await db.execute("INSERT INTO secret_derivation (counter) VALUES (0)")
|