We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
NWC::uri
1 parent 04ca010 commit bead389Copy full SHA for bead389
crates/nwc/CHANGELOG.md
@@ -28,6 +28,7 @@
28
### Added
29
30
- Add `NWC::reconnect_relay` (https://github.com/rust-nostr/nostr/pull/1020)
31
+- Add `NWC::uri`
32
33
## v0.43.0 - 2025/07/28
34
crates/nwc/src/lib.rs
@@ -67,6 +67,12 @@ impl NWC {
67
}
68
69
70
+ /// Get URI
71
+ #[inline]
72
+ pub fn uri(&self) -> &NostrWalletConnectURI {
73
+ &self.uri
74
+ }
75
+
76
/// Get relays status
77
pub async fn status(&self) -> HashMap<RelayUrl, RelayStatus> {
78
let relays = self.pool.relays().await;
0 commit comments