Electrum Protocol Client for node.js.
To connect to Electrum over a Tor connection:
const client = new ElectrumClient(50001, "myonionaddress.onion", "tcp", {
proxy: {
host: "127.0.0.1",
port: 9050,
type: 5,
},
});
- https://github.com/you21979/node-electrum-client
- https://github.com/7kharov/node-electrum-client
- https://github.com/BlueWallet/rn-electrum-client
- persistence (ping strategy and reconnection)
- batch requests
- works in nodejs
Relies on net
so will only run in NodeJS environment.