1
0
Files
btcpayserver-docker/docker-compose-generator/src/CryptoDefinition.cs
pm47 86ab6cdd21 Add Phoenixd support (#987)
* add phoenixd fragment

* define phoenixd as lightning implementation

* add btcpayserver section and hardcoded api password

* set correct phoenix datadir

* remove phoenixd->btcpayserver dependency

* use phoenixd 0.6.0

* added phoenix-cli scripts
2025-05-27 22:41:41 +09:00

12 lines
334 B
C#

namespace DockerGenerator
{
public class CryptoDefinition
{
public string Crypto { get; set; }
public string CryptoFragment { get; set; }
public string CLightningFragment { get; set; }
public string LNDFragment { get; set; }
public string EclairFragment { get; set; }
public string PhoenixdFragment { get; set; }
}
}