mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-21 02:54:20 +01:00
Blind authentication (#675)
* auth server * cleaning up * auth ledger class * class variables -> instance variables * annotations * add models and api route * custom amount and api prefix * add auth db * blind auth token working * jwt working * clean up * JWT works * using openid connect server * use oauth server with password flow * new realm * add keycloak docker * hopefully not garbage * auth works * auth kinda working * fix cli * auth works for send and receive * pass auth_db to Wallet * auth in info * refactor * fix supported * cache mint info * fix settings and endpoints * add description to .env.example * track changes for openid connect client * store mint in db * store credentials * clean up v1_api.py * load mint info into auth wallet * fix first login * authenticate if refresh token fails * clear auth also middleware * use regex * add cli command * pw works * persist keyset amounts * add errors.py * do not start auth server if disabled in config * upadte poetry * disvoery url * fix test * support device code flow * adopt latest spec changes * fix code flow * mint max bat dynamic * mypy ignore * fix test * do not serialize amount in authproof * all auth flows working * fix tests * submodule * refactor * test * dont sleep * test * add wallet auth tests * test differently * test only keycloak for now * fix creds * daemon * fix test * install everything * install jinja * delete wallet for every test * auth: use global rate limiter * test auth rate limit * keycloak hostname * move keycloak test data * reactivate all tests * add readme * load proofs * remove unused code * remove unused code * implement change suggestions by ok300 * add error codes * test errors
This commit is contained in:
669
cashu/mint/auth/crud.py
Normal file
669
cashu/mint/auth/crud.py
Normal file
@@ -0,0 +1,669 @@
|
||||
import json
|
||||
from abc import ABC, abstractmethod
|
||||
from typing import Any, Dict, List, Optional
|
||||
|
||||
from ...core.base import (
|
||||
BlindedSignature,
|
||||
MeltQuote,
|
||||
MintKeyset,
|
||||
MintQuote,
|
||||
Proof,
|
||||
)
|
||||
from ...core.db import (
|
||||
Connection,
|
||||
Database,
|
||||
)
|
||||
from .base import User
|
||||
|
||||
|
||||
class AuthLedgerCrud(ABC):
|
||||
"""
|
||||
Database interface for Nutshell auth ledger.
|
||||
"""
|
||||
|
||||
@abstractmethod
|
||||
async def create_user(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
user: User,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None: ...
|
||||
|
||||
@abstractmethod
|
||||
async def get_user(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
user_id: str,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> Optional[User]: ...
|
||||
|
||||
async def update_user(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
user_id: str,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None: ...
|
||||
|
||||
@abstractmethod
|
||||
async def get_keyset(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
id: str = "",
|
||||
derivation_path: str = "",
|
||||
seed: str = "",
|
||||
conn: Optional[Connection] = None,
|
||||
) -> List[MintKeyset]: ...
|
||||
|
||||
@abstractmethod
|
||||
async def get_proofs_used(
|
||||
self,
|
||||
*,
|
||||
Ys: List[str],
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> List[Proof]: ...
|
||||
|
||||
@abstractmethod
|
||||
async def invalidate_proof(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
proof: Proof,
|
||||
quote_id: Optional[str] = None,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None: ...
|
||||
|
||||
@abstractmethod
|
||||
async def get_proofs_pending(
|
||||
self,
|
||||
*,
|
||||
Ys: List[str],
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> List[Proof]: ...
|
||||
|
||||
@abstractmethod
|
||||
async def set_proof_pending(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
proof: Proof,
|
||||
quote_id: Optional[str] = None,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None: ...
|
||||
|
||||
@abstractmethod
|
||||
async def unset_proof_pending(
|
||||
self,
|
||||
*,
|
||||
proof: Proof,
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None: ...
|
||||
|
||||
@abstractmethod
|
||||
async def store_keyset(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
keyset: MintKeyset,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None: ...
|
||||
|
||||
@abstractmethod
|
||||
async def store_promise(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
amount: int,
|
||||
b_: str,
|
||||
c_: str,
|
||||
id: str,
|
||||
e: str = "",
|
||||
s: str = "",
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None: ...
|
||||
|
||||
@abstractmethod
|
||||
async def get_promise(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
b_: str,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> Optional[BlindedSignature]: ...
|
||||
|
||||
@abstractmethod
|
||||
async def get_promises(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
b_s: List[str],
|
||||
conn: Optional[Connection] = None,
|
||||
) -> List[BlindedSignature]: ...
|
||||
|
||||
|
||||
class AuthLedgerCrudSqlite(AuthLedgerCrud):
|
||||
"""Implementation of AuthLedgerCrud for sqlite.
|
||||
|
||||
Args:
|
||||
AuthLedgerCrud (ABC): Abstract base class for AuthLedgerCrud.
|
||||
"""
|
||||
|
||||
async def create_user(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
user: User,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None:
|
||||
await (conn or db).execute(
|
||||
f"""
|
||||
INSERT INTO {db.table_with_schema('users')}
|
||||
(id)
|
||||
VALUES (:id)
|
||||
""",
|
||||
{"id": user.id},
|
||||
)
|
||||
|
||||
async def get_user(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
user_id: str,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> Optional[User]:
|
||||
row = await (conn or db).fetchone(
|
||||
f"""
|
||||
SELECT * from {db.table_with_schema('users')}
|
||||
WHERE id = :user_id
|
||||
""",
|
||||
{"user_id": user_id},
|
||||
)
|
||||
return User(**row) if row else None
|
||||
|
||||
async def update_user(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
user_id: str,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None:
|
||||
await (conn or db).execute(
|
||||
f"""
|
||||
UPDATE {db.table_with_schema('users')}
|
||||
SET last_access = :last_access
|
||||
WHERE id = :user_id
|
||||
""",
|
||||
{
|
||||
"last_access": db.to_timestamp(db.timestamp_now_str()),
|
||||
"user_id": user_id,
|
||||
},
|
||||
)
|
||||
|
||||
async def store_promise(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
amount: int,
|
||||
b_: str,
|
||||
c_: str,
|
||||
id: str,
|
||||
e: str = "",
|
||||
s: str = "",
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None:
|
||||
await (conn or db).execute(
|
||||
f"""
|
||||
INSERT INTO {db.table_with_schema('promises')}
|
||||
(amount, b_, c_, dleq_e, dleq_s, id, created)
|
||||
VALUES (:amount, :b_, :c_, :dleq_e, :dleq_s, :id, :created)
|
||||
""",
|
||||
{
|
||||
"amount": amount,
|
||||
"b_": b_,
|
||||
"c_": c_,
|
||||
"dleq_e": e,
|
||||
"dleq_s": s,
|
||||
"id": id,
|
||||
"created": db.to_timestamp(db.timestamp_now_str()),
|
||||
},
|
||||
)
|
||||
|
||||
async def get_promise(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
b_: str,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> Optional[BlindedSignature]:
|
||||
row = await (conn or db).fetchone(
|
||||
f"""
|
||||
SELECT * from {db.table_with_schema('promises')}
|
||||
WHERE b_ = :b_
|
||||
""",
|
||||
{"b_": str(b_)},
|
||||
)
|
||||
return BlindedSignature.from_row(row) if row else None
|
||||
|
||||
async def get_promises(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
b_s: List[str],
|
||||
conn: Optional[Connection] = None,
|
||||
) -> List[BlindedSignature]:
|
||||
rows = await (conn or db).fetchall(
|
||||
f"""
|
||||
SELECT * from {db.table_with_schema('promises')}
|
||||
WHERE b_ IN ({','.join([':b_' + str(i) for i in range(len(b_s))])})
|
||||
""",
|
||||
{f"b_{i}": b_s[i] for i in range(len(b_s))},
|
||||
)
|
||||
return [BlindedSignature.from_row(r) for r in rows] if rows else []
|
||||
|
||||
async def invalidate_proof(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
proof: Proof,
|
||||
quote_id: Optional[str] = None,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None:
|
||||
await (conn or db).execute(
|
||||
f"""
|
||||
INSERT INTO {db.table_with_schema('proofs_used')}
|
||||
(amount, c, secret, y, id, witness, created, melt_quote)
|
||||
VALUES (:amount, :c, :secret, :y, :id, :witness, :created, :melt_quote)
|
||||
""",
|
||||
{
|
||||
"amount": proof.amount,
|
||||
"c": proof.C,
|
||||
"secret": proof.secret,
|
||||
"y": proof.Y,
|
||||
"id": proof.id,
|
||||
"witness": proof.witness,
|
||||
"created": db.to_timestamp(db.timestamp_now_str()),
|
||||
"melt_quote": quote_id,
|
||||
},
|
||||
)
|
||||
|
||||
async def get_all_melt_quotes_from_pending_proofs(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> List[MeltQuote]:
|
||||
rows = await (conn or db).fetchall(
|
||||
f"""
|
||||
SELECT * from {db.table_with_schema('melt_quotes')} WHERE quote in (SELECT DISTINCT melt_quote FROM {db.table_with_schema('proofs_pending')})
|
||||
"""
|
||||
)
|
||||
return [MeltQuote.from_row(r) for r in rows]
|
||||
|
||||
async def get_pending_proofs_for_quote(
|
||||
self,
|
||||
*,
|
||||
quote_id: str,
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> List[Proof]:
|
||||
rows = await (conn or db).fetchall(
|
||||
f"""
|
||||
SELECT * from {db.table_with_schema('proofs_pending')}
|
||||
WHERE melt_quote = :quote_id
|
||||
""",
|
||||
{"quote_id": quote_id},
|
||||
)
|
||||
return [Proof(**r) for r in rows]
|
||||
|
||||
async def get_proofs_pending(
|
||||
self,
|
||||
*,
|
||||
Ys: List[str],
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> List[Proof]:
|
||||
query = f"""
|
||||
SELECT * from {db.table_with_schema('proofs_pending')}
|
||||
WHERE y IN ({','.join([':y_' + str(i) for i in range(len(Ys))])})
|
||||
"""
|
||||
values = {f"y_{i}": Ys[i] for i in range(len(Ys))}
|
||||
rows = await (conn or db).fetchall(query, values)
|
||||
return [Proof(**r) for r in rows]
|
||||
|
||||
async def set_proof_pending(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
proof: Proof,
|
||||
quote_id: Optional[str] = None,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None:
|
||||
await (conn or db).execute(
|
||||
f"""
|
||||
INSERT INTO {db.table_with_schema('proofs_pending')}
|
||||
(amount, c, secret, y, id, witness, created, melt_quote)
|
||||
VALUES (:amount, :c, :secret, :y, :id, :witness, :created, :melt_quote)
|
||||
""",
|
||||
{
|
||||
"amount": proof.amount,
|
||||
"c": proof.C,
|
||||
"secret": proof.secret,
|
||||
"y": proof.Y,
|
||||
"id": proof.id,
|
||||
"witness": proof.witness,
|
||||
"created": db.to_timestamp(db.timestamp_now_str()),
|
||||
"melt_quote": quote_id,
|
||||
},
|
||||
)
|
||||
|
||||
async def unset_proof_pending(
|
||||
self,
|
||||
*,
|
||||
proof: Proof,
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None:
|
||||
await (conn or db).execute(
|
||||
f"""
|
||||
DELETE FROM {db.table_with_schema('proofs_pending')}
|
||||
WHERE secret = :secret
|
||||
""",
|
||||
{"secret": proof.secret},
|
||||
)
|
||||
|
||||
async def store_mint_quote(
|
||||
self,
|
||||
*,
|
||||
quote: MintQuote,
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None:
|
||||
await (conn or db).execute(
|
||||
f"""
|
||||
INSERT INTO {db.table_with_schema('mint_quotes')}
|
||||
(quote, method, request, checking_id, unit, amount, issued, paid, state, created_time, paid_time)
|
||||
VALUES (:quote, :method, :request, :checking_id, :unit, :amount, :issued, :paid, :state, :created_time, :paid_time)
|
||||
""",
|
||||
{
|
||||
"quote": quote.quote,
|
||||
"method": quote.method,
|
||||
"request": quote.request,
|
||||
"checking_id": quote.checking_id,
|
||||
"unit": quote.unit,
|
||||
"amount": quote.amount,
|
||||
"issued": quote.issued,
|
||||
"paid": quote.paid,
|
||||
"state": quote.state.name,
|
||||
"created_time": db.to_timestamp(
|
||||
db.timestamp_from_seconds(quote.created_time) or ""
|
||||
),
|
||||
"paid_time": db.to_timestamp(
|
||||
db.timestamp_from_seconds(quote.paid_time) or ""
|
||||
),
|
||||
},
|
||||
)
|
||||
|
||||
async def get_mint_quote(
|
||||
self,
|
||||
*,
|
||||
quote_id: Optional[str] = None,
|
||||
checking_id: Optional[str] = None,
|
||||
request: Optional[str] = None,
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> Optional[MintQuote]:
|
||||
clauses = []
|
||||
values: Dict[str, Any] = {}
|
||||
if quote_id:
|
||||
clauses.append("quote = :quote_id")
|
||||
values["quote_id"] = quote_id
|
||||
if checking_id:
|
||||
clauses.append("checking_id = :checking_id")
|
||||
values["checking_id"] = checking_id
|
||||
if request:
|
||||
clauses.append("request = :request")
|
||||
values["request"] = request
|
||||
if not any(clauses):
|
||||
raise ValueError("No search criteria")
|
||||
where = f"WHERE {' AND '.join(clauses)}"
|
||||
row = await (conn or db).fetchone(
|
||||
f"""
|
||||
SELECT * from {db.table_with_schema('mint_quotes')}
|
||||
{where}
|
||||
""",
|
||||
values,
|
||||
)
|
||||
if row is None:
|
||||
return None
|
||||
return MintQuote.from_row(row) if row else None
|
||||
|
||||
async def get_mint_quote_by_request(
|
||||
self,
|
||||
*,
|
||||
request: str,
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> Optional[MintQuote]:
|
||||
row = await (conn or db).fetchone(
|
||||
f"""
|
||||
SELECT * from {db.table_with_schema('mint_quotes')}
|
||||
WHERE request = :request
|
||||
""",
|
||||
{"request": request},
|
||||
)
|
||||
return MintQuote.from_row(row) if row else None
|
||||
|
||||
async def update_mint_quote(
|
||||
self,
|
||||
*,
|
||||
quote: MintQuote,
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None:
|
||||
await (conn or db).execute(
|
||||
f"UPDATE {db.table_with_schema('mint_quotes')} SET issued = :issued, paid = :paid, state = :state, paid_time = :paid_time WHERE quote = :quote",
|
||||
{
|
||||
"issued": quote.issued,
|
||||
"paid": quote.paid,
|
||||
"state": quote.state.name,
|
||||
"paid_time": db.to_timestamp(
|
||||
db.timestamp_from_seconds(quote.paid_time) or ""
|
||||
),
|
||||
"quote": quote.quote,
|
||||
},
|
||||
)
|
||||
|
||||
async def store_melt_quote(
|
||||
self,
|
||||
*,
|
||||
quote: MeltQuote,
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None:
|
||||
await (conn or db).execute(
|
||||
f"""
|
||||
INSERT INTO {db.table_with_schema('melt_quotes')}
|
||||
(quote, method, request, checking_id, unit, amount, fee_reserve, paid, state, created_time, paid_time, fee_paid, proof, change, expiry)
|
||||
VALUES (:quote, :method, :request, :checking_id, :unit, :amount, :fee_reserve, :paid, :state, :created_time, :paid_time, :fee_paid, :proof, :change, :expiry)
|
||||
""",
|
||||
{
|
||||
"quote": quote.quote,
|
||||
"method": quote.method,
|
||||
"request": quote.request,
|
||||
"checking_id": quote.checking_id,
|
||||
"unit": quote.unit,
|
||||
"amount": quote.amount,
|
||||
"fee_reserve": quote.fee_reserve or 0,
|
||||
"paid": quote.paid,
|
||||
"state": quote.state.name,
|
||||
"created_time": db.to_timestamp(
|
||||
db.timestamp_from_seconds(quote.created_time) or ""
|
||||
),
|
||||
"paid_time": db.to_timestamp(
|
||||
db.timestamp_from_seconds(quote.paid_time) or ""
|
||||
),
|
||||
"fee_paid": quote.fee_paid,
|
||||
"proof": quote.payment_preimage,
|
||||
"change": json.dumps(quote.change) if quote.change else None,
|
||||
"expiry": db.to_timestamp(
|
||||
db.timestamp_from_seconds(quote.expiry) or ""
|
||||
),
|
||||
},
|
||||
)
|
||||
|
||||
async def get_melt_quote(
|
||||
self,
|
||||
*,
|
||||
quote_id: Optional[str] = None,
|
||||
checking_id: Optional[str] = None,
|
||||
request: Optional[str] = None,
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> Optional[MeltQuote]:
|
||||
clauses = []
|
||||
values: Dict[str, Any] = {}
|
||||
if quote_id:
|
||||
clauses.append("quote = :quote_id")
|
||||
values["quote_id"] = quote_id
|
||||
if checking_id:
|
||||
clauses.append("checking_id = :checking_id")
|
||||
values["checking_id"] = checking_id
|
||||
if request:
|
||||
clauses.append("request = :request")
|
||||
values["request"] = request
|
||||
if not any(clauses):
|
||||
raise ValueError("No search criteria")
|
||||
where = f"WHERE {' AND '.join(clauses)}"
|
||||
row = await (conn or db).fetchone(
|
||||
f"""
|
||||
SELECT * from {db.table_with_schema('melt_quotes')}
|
||||
{where}
|
||||
""",
|
||||
values,
|
||||
)
|
||||
if row is None:
|
||||
return None
|
||||
return MeltQuote.from_row(row) if row else None
|
||||
|
||||
async def update_melt_quote(
|
||||
self,
|
||||
*,
|
||||
quote: MeltQuote,
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None:
|
||||
await (conn or db).execute(
|
||||
f"""
|
||||
UPDATE {db.table_with_schema('melt_quotes')} SET paid = :paid, state = :state, fee_paid = :fee_paid, paid_time = :paid_time, proof = :proof, change = :change WHERE quote = :quote
|
||||
""",
|
||||
{
|
||||
"paid": quote.paid,
|
||||
"state": quote.state.name,
|
||||
"fee_paid": quote.fee_paid,
|
||||
"paid_time": db.to_timestamp(
|
||||
db.timestamp_from_seconds(quote.paid_time) or ""
|
||||
),
|
||||
"proof": quote.payment_preimage,
|
||||
"change": (
|
||||
json.dumps([s.dict() for s in quote.change])
|
||||
if quote.change
|
||||
else None
|
||||
),
|
||||
"quote": quote.quote,
|
||||
},
|
||||
)
|
||||
|
||||
async def store_keyset(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
keyset: MintKeyset,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> None:
|
||||
await (conn or db).execute(
|
||||
f"""
|
||||
INSERT INTO {db.table_with_schema('keysets')}
|
||||
(id, seed, encrypted_seed, seed_encryption_method, derivation_path, valid_from, valid_to, first_seen, active, version, unit, input_fee_ppk)
|
||||
VALUES (:id, :seed, :encrypted_seed, :seed_encryption_method, :derivation_path, :valid_from, :valid_to, :first_seen, :active, :version, :unit, :input_fee_ppk)
|
||||
""",
|
||||
{
|
||||
"id": keyset.id,
|
||||
"seed": keyset.seed,
|
||||
"encrypted_seed": keyset.encrypted_seed,
|
||||
"seed_encryption_method": keyset.seed_encryption_method,
|
||||
"derivation_path": keyset.derivation_path,
|
||||
"valid_from": db.to_timestamp(
|
||||
keyset.valid_from or db.timestamp_now_str()
|
||||
),
|
||||
"valid_to": db.to_timestamp(keyset.valid_to or db.timestamp_now_str()),
|
||||
"first_seen": db.to_timestamp(
|
||||
keyset.first_seen or db.timestamp_now_str()
|
||||
),
|
||||
"active": True,
|
||||
"version": keyset.version,
|
||||
"unit": keyset.unit.name,
|
||||
"input_fee_ppk": keyset.input_fee_ppk,
|
||||
},
|
||||
)
|
||||
|
||||
async def get_keyset(
|
||||
self,
|
||||
*,
|
||||
db: Database,
|
||||
id: Optional[str] = None,
|
||||
derivation_path: Optional[str] = None,
|
||||
seed: Optional[str] = None,
|
||||
unit: Optional[str] = None,
|
||||
active: Optional[bool] = None,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> List[MintKeyset]:
|
||||
clauses = []
|
||||
values: Dict = {}
|
||||
if active is not None:
|
||||
clauses.append("active = :active")
|
||||
values["active"] = active
|
||||
if id is not None:
|
||||
clauses.append("id = :id")
|
||||
values["id"] = id
|
||||
if derivation_path is not None:
|
||||
clauses.append("derivation_path = :derivation_path")
|
||||
values["derivation_path"] = derivation_path
|
||||
if seed is not None:
|
||||
clauses.append("seed = :seed")
|
||||
values["seed"] = seed
|
||||
if unit is not None:
|
||||
clauses.append("unit = :unit")
|
||||
values["unit"] = unit
|
||||
where = ""
|
||||
if clauses:
|
||||
where = f"WHERE {' AND '.join(clauses)}"
|
||||
|
||||
rows = await (conn or db).fetchall( # type: ignore
|
||||
f"""
|
||||
SELECT * from {db.table_with_schema('keysets')}
|
||||
{where}
|
||||
""",
|
||||
values,
|
||||
)
|
||||
return [MintKeyset(**row) for row in rows]
|
||||
|
||||
async def get_proofs_used(
|
||||
self,
|
||||
*,
|
||||
Ys: List[str],
|
||||
db: Database,
|
||||
conn: Optional[Connection] = None,
|
||||
) -> List[Proof]:
|
||||
query = f"""
|
||||
SELECT * from {db.table_with_schema('proofs_used')}
|
||||
WHERE y IN ({','.join([':y_' + str(i) for i in range(len(Ys))])})
|
||||
"""
|
||||
values = {f"y_{i}": Ys[i] for i in range(len(Ys))}
|
||||
rows = await (conn or db).fetchall(query, values)
|
||||
return [Proof(**r) for r in rows] if rows else []
|
||||
Reference in New Issue
Block a user