Versions in this module Expand all Collapse all v0 v0.11.1 Aug 25, 2026 v0.10.0 Jul 25, 2026 Changes in this version + type SQLiteDB struct + func InitSQLite(path string) (*SQLiteDB, error) + func (sqlite *SQLiteDB) AddPendingProofs(proofs cashu.Proofs, quoteId string) error + func (sqlite *SQLiteDB) Close() error + func (sqlite *SQLiteDB) GetBlindSignature(B_ string) (cashu.BlindedSignature, error) + func (sqlite *SQLiteDB) GetBlindSignatures(B_s []string) (cashu.BlindedSignatures, error) + func (sqlite *SQLiteDB) GetIssuedEcash() (map[string]uint64, error) + func (sqlite *SQLiteDB) GetKeysets() ([]storage.DBKeyset, error) + func (sqlite *SQLiteDB) GetMeltQuote(quoteId string) (storage.MeltQuote, error) + func (sqlite *SQLiteDB) GetMeltQuoteByPaymentRequest(invoice string) (*storage.MeltQuote, error) + func (sqlite *SQLiteDB) GetMintQuote(quoteId string) (storage.MintQuote, error) + func (sqlite *SQLiteDB) GetMintQuoteByPaymentHash(paymentHash string) (storage.MintQuote, error) + func (sqlite *SQLiteDB) GetPendingProofs(Ys []string) ([]storage.DBProof, error) + func (sqlite *SQLiteDB) GetPendingProofsByQuote(quoteId string) ([]storage.DBProof, error) + func (sqlite *SQLiteDB) GetProofsUsed(Ys []string) ([]storage.DBProof, error) + func (sqlite *SQLiteDB) GetRedeemedEcash() (map[string]uint64, error) + func (sqlite *SQLiteDB) GetSeed() ([]byte, error) + func (sqlite *SQLiteDB) RemovePendingProofs(Ys []string) error + func (sqlite *SQLiteDB) SaveBlindSignatures(B_s []string, blindSignatures cashu.BlindedSignatures) error + func (sqlite *SQLiteDB) SaveKeyset(keyset storage.DBKeyset) error + func (sqlite *SQLiteDB) SaveMeltQuote(meltQuote storage.MeltQuote) error + func (sqlite *SQLiteDB) SaveMintQuote(mintQuote storage.MintQuote) error + func (sqlite *SQLiteDB) SaveProofs(proofs cashu.Proofs) error + func (sqlite *SQLiteDB) SaveSeed(seed []byte) error + func (sqlite *SQLiteDB) UpdateKeysetActive(id string, active bool) error + func (sqlite *SQLiteDB) UpdateMeltQuote(quoteId, preimage string, state nut05.State) error + func (sqlite *SQLiteDB) UpdateMintQuoteState(quoteId string, state nut04.State) error