Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@codewarriorr/btcv-api-client
Advanced tools
TypeScript implementation of Electrum Protocol Client.
This is a library that can communicate with the ElectrumX Server
on tcp
, ssl
, ws
and wss
protocols.
Works in node.js and browser.
Implements BTCV methods described in Electrum Protocol methods documentation.
npm install --save @codewarriorr/btcv-api-client
const { BtcvApiClient } = require('@codewarriorr/btcv-api-client');
async function main() {
const config = {
host: '127.0.0.1',
port: 5002,
protocol: 'ssl',
};
const client = new BtcvApiClient(config);
try {
await client.connect();
const header = await client.getCurrentBlock();
console.log('Current header:', header);
} catch (err) {
console.error(err);
} finally {
await client.close();
}
}
main();
See more examples.
FAQs
BTCV Electrum protocol API client
The npm package @codewarriorr/btcv-api-client receives a total of 3 weekly downloads. As such, @codewarriorr/btcv-api-client popularity was classified as not popular.
We found that @codewarriorr/btcv-api-client demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.