Melt to amountless invoice (#497)

* feat: melt token with amountless

* fix: docs

* fix: extra migration
This commit is contained in:
thesimplekid
2025-04-04 13:16:27 +01:00
committed by GitHub
parent 09f339e6c6
commit d224cc57b5
16 changed files with 161 additions and 28 deletions

View File

@@ -35,9 +35,15 @@ message Mpp {
uint64 amount = 1;
}
message Amountless {
uint64 amount_msat = 1;
}
message MeltOptions {
oneof options {
Mpp mpp = 1;
Amountless amountless = 2;
}
}