Electrum protocol client for React Native & Node.js
npm install @bitcoinerlab/electrum-clientElectrum Protocol Client for React Native
* https://github.com/BlueWallet/rn-electrum-client
* https://github.com/you21979/node-electrum-client
* https://github.com/7kharov/node-electrum-client
* persistence (ping strategy and reconnection)
* batch requests
* works in RN and nodejs
* both clearnet TCP and TLS
* zero dependencies
* https://electrumx-spesmilo.readthedocs.io/en/latest/protocol.html
For Nodejs you can just provide standard modules net & tls to constructor explicitly, this
library won't do require('net').
``javascript`
const net = require('net');
and then
`javascript`
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,package.json
one of the ways to shim it is via :
`json``
"react-native": {
"net": "react-native-tcp-socket",
"tls": "react-native-tcp-socket"
}
MIT