[BREAKGLASS] Append-only mirror of github.com/bluewallet/rn-electrum-client
Go to file
2020-08-29 11:18:02 +01:00
lib REF: reconnect improvements; remove unused code 2020-06-12 15:47:10 +01:00
.gitignore Initial commit 2017-06-22 15:40:36 +09:00
index.js FIX: deprecated methods 2020-08-29 11:18:02 +01:00
LICENSE Initial commit 2017-06-22 15:40:36 +09:00
package.json FIX: deprecated methods 2020-08-29 11:18:02 +01:00
README.md DOC 2019-05-23 13:31:14 +01: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

protocol spec

usage

Relies on react-native-tcp so it should be already installed and linked in RN project. net should be provided from outside, this library wont do require('net'). For RN it should be in shim.js:

  global.net = require('react-native-tcp');

For nodejs it should be provided before usage:

  global.net = require('net');