
Security News
/Research
Popular node-ipc npm Package Infected with Credential Stealer
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.
This library is still heavily under construction; expect frequent breaking API changes until v1.0.0
The Firefly Connector provides high-level JavaScript API to interact with the Firefly Hardware Wallet.
/home/ricmoo> npm install firefly
Due to the platform and environment-dependent nature of the hardware serial port, the transport needs to be established in a variety of ways.
In the browser, the Serial API in Chrome can be used. When connecting, a pop-up dialog box is shown, from which you can select your Firefly.
In node on macOS/linux, you will need to know the name of
the port in the /dev/ folder.
// Browser
import { DeviceEsp32c3 } from "firefly";
import { SerialPort } from "firefly/browser";
const serialPort = SerialPort.connect();
const device = new DeviceEsp32c3(serialPort)
// Node
import { DeviceEsp32c3 } from "firefly";
import { SerialPort } from "firefly/node";
const serialPort = SerialPort.connect("/dev/cu.usbmodem101");
const device = new DeviceEsp32c3(serialPort)
Once connected, you can use the various commands to operate against the firefly:
// Get the device info
await device.getDeviceInfo()
{
packageVersion: 0,
revision: 3,
description: 'ESP32-C3 (revision: 3)'
}
// Update the firmware (coming soon...)
// This will require you enter you password
//await device.updateFirmware(payload, progressCallback)
// Test the REPL service (comming soon...)
//await device.send("echo: foobar")
// "foobar"
# Get Device Info
/home/ricmoo> npx firefly info
packageVersion: 0,
revision: 3,
description: 'ESP32-C3 (revision: 3)'
# Update the firmware (coming soon...)
/home/ricmoo> npx firefly update-firmware firmware.bin
# Enter the REPL mode (coming soon...)
/home/ricmoo> npx firefly repl
echo foobar
foobar
MIT License.
FAQs
Communication library for Firefly Hardware Wallet.
We found that firefly 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.

Security News
/Research
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.