You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some Electrum providers require path-based API keys in the WebSocket
URL (e.g. wss://host:port/api-key). The library previously constructed
URLs as protocol://host:port, discarding any path component.
Add an optional `path` parameter to the constructor chain
(ElectrumClient -> SocketClient -> WebSocketClient) and append it to
the WebSocket URL. The parameter is backwards-compatible and defaults
to an empty string. TCP/SSL clients are unaffected since paths are
only meaningful for WebSocket connections.
Update integration tests to use mainnet servers and support
path-based authentication via the ELECTRUMX_API_KEY env variable.
0 commit comments