
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
helios-transport
Advanced tools
Ledger Hardware Wallet HNT JavaScript bindings.
yarn add helios-transport
import TransportBLE from '@ledgerhq/hw-transport-web-ble';
import TransportHID from '@ledgerhq/hw-transport-node-hid';
import { PaymentV1 } from '@helium/transactions';
import { Client } from '@helium/http';
import { HNT } from 'helios-transport';
// start web Bluetooth connection
const hnt = await TransportBLE.create()
.then((transport) => new HNT(transport));
// start node USB connection
const hnt = await TransportHID.create()
.then((transport) => new HNT(transport));
// base58 address
const base58Address = await hnt.getPublicKey().then((o) => o.b58);
// address_index support
const address = await hnt.getPublicKey(112);
// Prepare @helium-js PaymentV1 transaction
const paymentTxn = new PaymentV1({
payer: bob.address,
payee: alice,
amount: 10,
nonce: account.speculativeNonce + 1,
});
// create Ledger signature
const signedTxn = await hnt.signPaymentV1(paymentTxn);
paymentTxn.signature = signedTxn.signature;
// submit transaction
client.transactions.submit(paymentTxn.toString());
// Prepare @helium-js TokenBurnV1 transaction
const burnTxn = new burnTxn({
payer: bob.address,
payee: alice,
amount: 1,
nonce: account.speculativeNonce + 1,
memo: 'AAAAAAAAAAA=',
});
// create Ledger signature
const signature = await hnt.signBurnV1(burnTxn);
burnTxn.signature = signedTxn.signature;
// submit transaction
client.transactions.submit(burnTxn.toString());
This project is made great by its contributors.
FAQs
A Helium Network Ledger transport
We found that helios-transport 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.