@ -19,12 +19,14 @@ const ConnectionDetails = ({
< input
< input
type = "text"
type = "text"
id = "connectionHost"
id = "connectionHost"
placeholder = "Hostname / Port of the Lnd gRPC interface"
className = { ` ${ styles . host } ${ startLndHostError && styles . error } ` }
className = { ` ${ styles . host } ${ startLndHostError && styles . error } ` }
ref = { input => input }
ref = { input => input }
value = { connectionHost }
value = { connectionHost }
onChange = { event => setConnectionHost ( event . target . value ) }
onChange = { event => setConnectionHost ( event . target . value ) }
/ >
/ >
< p className = { styles . description } >
Hostname and port of the Lnd gRPC interface . Example : localhost : 10009
< / p >
< p className = { ` ${ startLndHostError && styles . visible } ${ styles . errorMessage } ` } >
< p className = { ` ${ startLndHostError && styles . visible } ${ styles . errorMessage } ` } >
{ startLndHostError }
{ startLndHostError }
< / p >
< / p >
@ -34,12 +36,12 @@ const ConnectionDetails = ({
< input
< input
type = "text"
type = "text"
id = "connectionCert"
id = "connectionCert"
placeholder = "Path to the lnd tls cert"
className = { ` ${ styles . cert } ${ startLndCertError && styles . error } ` }
className = { ` ${ styles . cert } ${ startLndCertError && styles . error } ` }
ref = { input => input }
ref = { input => input }
value = { connectionCert }
value = { connectionCert }
onChange = { event => setConnectionCert ( event . target . value ) }
onChange = { event => setConnectionCert ( event . target . value ) }
/ >
/ >
< p className = { styles . description } > Path to the lnd tls cert . Example : / p a t h / t o / t l s . c e r t < / p >
< p className = { ` ${ startLndCertError && styles . visible } ${ styles . errorMessage } ` } >
< p className = { ` ${ startLndCertError && styles . visible } ${ styles . errorMessage } ` } >
{ startLndCertError }
{ startLndCertError }
< / p >
< / p >
@ -49,12 +51,14 @@ const ConnectionDetails = ({
< input
< input
type = "text"
type = "text"
id = "connectionMacaroon"
id = "connectionMacaroon"
placeholder = "Path to the lnd macaroon file"
className = { ` ${ styles . macaroon } ${ startLndMacaroonError && styles . error } ` }
className = { ` ${ styles . macaroon } ${ startLndMacaroonError && styles . error } ` }
ref = { input => input }
ref = { input => input }
value = { connectionMacaroon }
value = { connectionMacaroon }
onChange = { event => setConnectionMacaroon ( event . target . value ) }
onChange = { event => setConnectionMacaroon ( event . target . value ) }
/ >
/ >
< p className = { styles . description } >
Path to the lnd macaroon file . Example : / p a t h / t o / a d m i n . m a c a r o o n
< / p >
< p className = { ` ${ startLndMacaroonError && styles . visible } ${ styles . errorMessage } ` } >
< p className = { ` ${ startLndMacaroonError && styles . visible } ${ styles . errorMessage } ` } >
{ startLndMacaroonError }
{ startLndMacaroonError }
< / p >
< / p >