[BREAKGLASS] Append-only mirror of github.com/bluewallet/rn-electrum-client
Go to file
2026-04-27 14:54:50 +01:00
lib perf: improve message parser 2026-04-27 14:54:50 +01:00
.gitignore REF: net & tls dependency inject 2021-01-08 18:35:17 +00:00
index.js fix: add blockchainBlock_header 2023-07-29 12:31:26 +01:00
LICENSE Initial commit 2017-06-22 15:40:36 +09:00
package.json FIX: dont hang forever if electrum threw 'Batch limit exceeded' error 2025-05-16 16:53:49 +01:00
README.md DOC 2024-02-04 14:42:32 +00:00
test.js FIX: tls for nodejs 2024-02-05 09:07:06 +00:00

rn-electrum-client

Electrum Protocol Client for React Native

based on

features

  • persistence (ping strategy and reconnection)
  • batch requests
  • works in RN and nodejs
  • both clearnet TCP and TLS
  • zero dependencies

protocol spec

usage

For Nodejs you can just provide standard modules net & tls to constructor explicitly, this library won't do require('net').

  const net = require('net');

and then

  const client = new ElectrumClient(net, false, 50001, 'electrum1.bluewallet.io', 'tcp');
  const ver = await client.initElectrum({ client: 'bluewallet', version: '1.4' });
  const balance = await client.blockchainScripthash_getBalance('716decbe1660861c3d93906cb1d98ee68b154fd4d23aed9783859c1271b52a9c');

For React Native luckily we have react-native-tcp-socket which mimics net & tls pretty closely, one of the ways to shim it is via package.json:

    "react-native": {
      "net": "react-native-tcp-socket",
      "tls": "react-native-tcp-socket"
    }

license

MIT