Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@bitcoinerlab/electrum-client
Advanced tools
Electrum protocol client for React Native & Node.js
Electrum Protocol Client for React Native
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"
}
MIT
FAQs
Electrum protocol client for React Native & Node.js
The npm package @bitcoinerlab/electrum-client receives a total of 100 weekly downloads. As such, @bitcoinerlab/electrum-client popularity was classified as not popular.
We found that @bitcoinerlab/electrum-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.