feat: opensats

This commit is contained in:
codytseng
2025-05-17 13:45:53 +08:00
parent d08e87ec10
commit 8d23c49908
19 changed files with 86 additions and 15 deletions

View File

@@ -180,7 +180,9 @@ class LightningService {
if (!item.comment && comment) item.comment = comment
}
})
this.recentSupportersCache = Array.from(map.values()).sort((a, b) => b.amount - a.amount)
this.recentSupportersCache = Array.from(map.values())
.filter((item) => item.amount >= 1000)
.sort((a, b) => b.amount - a.amount)
return this.recentSupportersCache
}