Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ACINQ/phoenixd
https://github.com/ACINQ/phoenixd
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ACINQ/phoenixd
- Owner: ACINQ
- License: apache-2.0
- Created: 2024-03-08T17:44:24.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-10-21T16:04:43.000Z (3 months ago)
- Last Synced: 2024-10-31T18:52:03.313Z (3 months ago)
- Language: Kotlin
- Homepage: https://phoenix.acinq.co/server
- Size: 361 KB
- Stars: 113
- Watchers: 11
- Forks: 14
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bolt12 - Phoenixd - Phoenixd is the server equivalent of the popular phoenix wallet for mobile (Ecosystem / Lightning Implementations)
README
[![Kotlin](https://img.shields.io/badge/Kotlin-1.9.23-blue.svg?style=flat&logo=kotlin)](http://kotlinlang.org)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)
[![](https://img.shields.io/badge/www-Homepage-green.svg)](https://phoenix.acinq.co/server)
[![](https://img.shields.io/badge/www-API_doc-red.svg)](https://phoenix.acinq.co/server/api)# phoenixd
**phoenixd** is the server equivalent of the popular [phoenix wallet](https://github.com/ACINQ/phoenix) for mobile.
It is written in [Kotlin Multiplatform](https://kotlinlang.org/docs/multiplatform.html) and runs natively on Linux, MacOS (x86 and ARM), and Windows (WSL).## Build
### Native Linux/WSL
Requires `libsqlite-dev` and `libcurl4-gnutls-dev`, both compiled against `glibc 2.19`.
```shell
./gradlew packageLinuxX64
```### Native MacOS x64
```shell
./gradlew packageMacOSX64
```### Native MacOS arm64
```shell
./gradlew packageMacOSArm64
```### JVM
```shell
./gradlew distZip
```