fedimint_gateway_common/
envs.rs

1/// Environment variable that specifies the URL to connect to LND. Necessary for
2/// LND configuration.
3pub const FM_LND_RPC_ADDR_ENV: &str = "FM_LND_RPC_ADDR";
4
5/// Environment variable that specifies the location of LND's TLS certificate.
6/// Necessary for LND configuration.
7pub const FM_LND_TLS_CERT_ENV: &str = "FM_LND_TLS_CERT";
8
9/// Environment variable that specifies the location of LND's macaroon.
10/// Necessary for LND configuration.
11pub const FM_LND_MACAROON_ENV: &str = "FM_LND_MACAROON";
12
13/// Environment variable the specifies the port that the LDK Node should use.
14/// Necessary for LDK configuration.
15pub const FM_PORT_LDK: &str = "FM_PORT_LDK";
16
17/// The alias for the LDK Node
18pub const FM_LDK_ALIAS_ENV: &str = "FM_LDK_ALIAS";