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.
@synonymdev/bitkit-notification-client
Advanced tools
Client to interact with the bitkit-notification-server.
Sends a push notification to the Bitkit device that is associated with the nodeId.
import { BitkitNotificationsClient } from '@synonymdev/bitkit-notification-client';
const client = new BitkitNotificationsClient()
try {
const nodeId = '03864ef025fde8fb587d989186ce6a4a186895ee44a926bfc370e2c366597a3f8f'; // Lightning Node Id of Bitkit
const source = 'blocktank'; // Service name which sends this notification. Shown to the device.
const eventType = 'newPayment'; // Name of the event
const payload = { // Arbitrary data to send to the device. Max 3800 bytes, be careful.
"hello": "world"
}
await client.sendNotification(nodeId: string, eventType: string, payload: any, source: string)
} catch (e) {
const deviceNotFound = e.errorType !== 'deviceNotFound'
if (deviceNotFound) {
// Device is not registered to receive push notifications
} else {
// Genuine error
}
}
package.json
.CHANGELOG.md
.git tag v0.1.0
.git push origin v0.1.0
.npm run build
.npm publish
.FAQs
Bitkit Notification Server client
We found that @synonymdev/bitkit-notification-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers 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.