+ {/* Balance */}
+
+ Balance:
+
+ {formatBalance(nwcConnection.balance)}
+
+
+
+ {/* Wallet Alias */}
+ {nwcConnection.info?.alias && (
+
+ Wallet:
+
+ {nwcConnection.info.alias}
+
+
+ )}
+
+ {/* Lightning Address */}
+ {nwcConnection.lud16 && (
+
+
+ Address:
+
+
+ {nwcConnection.lud16}
+
+
+ )}
+
+ {/* Supported Methods */}
+ {nwcConnection.info?.methods &&
+ nwcConnection.info.methods.length > 0 && (
+
+
+ Supported Methods:
+
+
+ {nwcConnection.info.methods.map((method) => (
+
+ {method}
+
+ ))}
+
+
+ )}
+
+ {/* Relays */}
+
+
Relays:
+
+ {nwcConnection.relays.map((relay) => (
+
+ {relay}
+
+ ))}
+
+
+
+ {/* Disconnect Button */}
+
+
+