Commit Graph

1376 Commits

Author SHA1 Message Date
David Caseria
8cfda577b6 Merge remote-tracking branch 'origin/get-active-mint-quotes' into get-active-mint-quotes 2025-07-16 14:01:20 -04:00
David Caseria
3ce8d6bb16 Merge remote-tracking branch 'upstream/main' into get-active-mint-quotes 2025-07-16 14:00:33 -04:00
thesimplekid
bc545fcd77 Merge pull request #874 from thesimplekid/bolt12_2
Bolt12 2
2025-07-13 20:17:37 +01:00
thesimplekid
ae6c107809 feat: bolt12 2025-07-13 18:48:35 +01:00
thesimplekid
34e91dc924 Merge pull request #888 from vnprc/main
fix: return the correct error when fetching mint config values
2025-07-13 16:54:49 +01:00
vnprc
180a7c41b7 fix: return the correct error when fetching config values
do not always return UnknownQuoteTTL
return UnknownMintInfo when appropriate
add a new UnknownConfigKey for unknown key values
unit tests to cover this functionality
2025-07-11 19:59:08 -04:00
David Caseria
2d08e6c080 Merge branch 'main' into get-active-mint-quotes 2025-07-11 16:50:17 -04:00
asmo
526cadf539 refactor mintd main function (#778) 2025-07-11 10:32:11 +01:00
David Caseria
a308702376 Filter active mint quotes for wallet 2025-07-10 14:58:00 -04:00
David Caseria
1cae6caae1 Merge remote-tracking branch 'upstream/main' into get-active-mint-quotes 2025-07-10 14:54:36 -04:00
thesimplekid
e2a2646f71 Merge pull request #876 from thesimplekid/mprocs
feat: mprocs regtest
2025-07-08 11:56:54 +01:00
thesimplekid
ea0b696db9 fix: cln mprocs logging 2025-07-08 11:33:21 +01:00
thesimplekid
0f586543bf Merge pull request #875 from thesimplekid/remove_rexie
feat: remove rexie
2025-07-08 11:11:38 +01:00
thesimplekid
a97eb84db6 chore: update docs 2025-07-08 11:09:20 +01:00
thesimplekid
e76b53a637 feat: mprocs inter only regtest 2025-07-08 11:03:40 +01:00
thesimplekid
4028824b1a feat: mprocs regtest 2025-07-08 10:48:22 +01:00
thesimplekid
44ca7e48dc feat: remove rexie 2025-07-07 13:53:05 +01:00
thesimplekid
dc3214894f Merge pull request #873 from thesimplekid/remove_mint_quote_startup_check
chore: remove start up pending mint check
2025-07-06 14:25:12 +01:00
thesimplekid
c4a8ea28c7 Merge pull request #872 from thesimplekid/remove_reb_feature
chore: remove unused redb
2025-07-06 14:24:57 +01:00
thesimplekid
d99f228acf chore: remove unused redb 2025-07-06 11:30:59 +01:00
thesimplekid
4e3af789f3 chore: remove start up pending mint check 2025-07-06 10:56:29 +01:00
David Caseria
54f53eb877 Fix get_active_mint_quotes logic 2025-07-03 16:39:12 -04:00
David Caseria
abb43c39b1 Wallet: Get active mint quotes 2025-07-03 16:07:14 -04:00
thesimplekid
cd63760324 Merge pull request #869 from gudnuf/fix/install-crypto-provider
fix: install CryptoProvider when starting RPC server
2025-07-03 08:06:44 +01:00
gudnuf
49c0e4f0e5 fix: install CryptoProvider when starting RPC server 2025-07-02 18:31:37 -07:00
thesimplekid
17a98f9152 Merge pull request #868 from gudnuf/chore/check-proof-state-config
chore: add `enabled_check_proof_state` to example.config.toml
2025-07-02 09:20:08 +01:00
thesimplekid
208001a9cf Merge pull request #864 from aki-mizu/main
fix GLIBC compatibility issue
2025-07-02 09:19:23 +01:00
gudnuf
074279214b chore: add \enabled_check_proof_state\ to example.config.toml 2025-07-01 09:43:05 -07:00
thesimplekid
eafd2c30fc Merge pull request #866 from gudnuf/fix/auth-cors
fix: add cors headers to auth routes
2025-07-01 08:10:38 +01:00
gudnuf
48c42e6260 fix: add cors headers to auth routes 2025-06-30 14:22:28 -07:00
thesimplekid
7aecdc667d Merge pull request #865 from mountdisk/main
chore: fix some minor issues in the comments
2025-06-30 13:45:24 +01:00
mountdisk
0e3b23534a chore: fix some minor issues in the comments
Signed-off-by: mountdisk <mountdisk@icloud.com>
2025-06-30 19:33:29 +08:00
Darrell
c7dfb43071 fix GLIBC compatibility issue 2025-06-30 08:17:55 +09:00
thesimplekid
4b82fa82a7 chore: release summary 2025-06-29 17:15:38 +01:00
thesimplekid
56ff5c3f19 chore: bump v0.11 2025-06-29 13:55:59 +01:00
thesimplekid
29ded742c2 feat: refund multi sig (#860) 2025-06-28 21:07:42 +01:00
thesimplekid
b4728d7257 feat: refund multi sig 2025-06-28 12:09:33 +01:00
C
238b09d56a Split the database trait into read and transactions. (#826)
* Split the database trait into read and transactions.

The transaction traits will encapsulate all database changes and also expect
READ-and-lock operations to read and lock records from the database for
exclusive access, thereby avoiding race conditions.

The Transaction trait expects a `rollback` operation on Drop unless the
transaction has been committed.

* fix: melt quote duplicate error

This change stops a second melt quote from being created
if there is an existing valid melt quote for an invoice already.
If the first melt quote has expired then we allow for a new melt quote to be created.

---------

Co-authored-by: thesimplekid <tsk@thesimplekid.com>
2025-06-28 12:07:47 +01:00
thesimplekid
3f84b3b4c8 Merge pull request #858 from thesimplekid/mint_error_code
fix: mint error codes
2025-06-27 22:48:07 +01:00
thesimplekid
9de3314817 fix: mint error codes 2025-06-27 21:49:44 +01:00
thesimplekid
ea227308b5 Merge pull request #855 from davidcaseria/send-options-max-proofs
Provide option to limit the send token size
2025-06-27 21:38:53 +01:00
thesimplekid
98929e4868 Merge pull request #856 from davidcaseria/amount-convert-unit
Add Amount::convert_unit convenience method
2025-06-27 21:12:10 +01:00
David Caseria
8d32af740e Add Amount::convert_unit convenience method 2025-06-27 15:28:39 -04:00
David Caseria
5fe8b11654 Provide option to limit the send token size 2025-06-27 11:45:00 -04:00
thesimplekid
dd81b9a947 fix: name of blinded_message col in blind_signature (#845) 2025-06-27 09:19:56 +01:00
thesimplekid
34d8ab763b fix: name of blinded_message col in blind_signature 2025-06-26 12:28:22 +01:00
gudnuf
78c3a9f807 fix: also check UNPAID mint quotes on startup (#844)
* fix: also check UNPAID mint quotes on startup

* chore: clippy warning

---------

Co-authored-by: thesimplekid <tsk@thesimplekid.com>
2025-06-26 11:50:53 +01:00
thesimplekid
a2b9a793a9 Merge pull request #842 from thesimplekid/remove_dead_code
chore: remove dead code
2025-06-25 21:36:52 +01:00
thesimplekid
fb789be08d Merge pull request #841 from thesimplekid/unit_wallets
fix: cdk-cli create wallets for units mint supports
2025-06-25 21:02:53 +01:00
thesimplekid
b42e95d2b1 chore: remove dead code 2025-06-25 20:05:58 +01:00