![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
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.
@oasisprotocol/ionic-ledger-hw-transport-ble
Advanced tools
Ledger Hardware Wallet Bluetooth BLE transport for Ionic
Ledger Hardware Wallet Bluetooth BLE transport for Ionic.
yarn add @oasisprotocol/ionic-ledger-hw-transport-ble
@capacitor-community/bluetooth-le
+ configure your app for Bluetooth permissions (Open the link for documentation)global.Buffer = require("buffer").Buffer;
that can be placed in a polyfill.js
and imported with import "./polyfill";
at first line of the main JavaScript entry file.@oasisprotocol/ionic-ledger-hw-transport-ble
works like any of @ledgerhq/hw-transport
libraries.
The difference here is that the list() is costy and you likely don't want to always scan for devices, you would better save a selected device as "known" to suggest it to user later.
Important: you will also have to deal with specifics of Bluetooth BLE, for instance, you need to request the LOCATION permission on Android!
Here is a gist of the most important parts required.
import BleTransport from "@oasisprotocol/ionic-ledger-hw-transport-ble";
// Check if @capacitor-community/bluetooth-le is setup
BleTransport.isSupported()
// Check for bluetooth status
BleTransport.isEnabled()
const scannedDevices = BleTransport.list()
const [scannedDevice] = scannedDevices
const transport = await BleTransport.open(scannedDevice)
and now we can just use the transport like any other Ledger transport!
FAQs
Ledger Hardware Wallet Bluetooth BLE transport for Ionic
The npm package @oasisprotocol/ionic-ledger-hw-transport-ble receives a total of 47 weekly downloads. As such, @oasisprotocol/ionic-ledger-hw-transport-ble popularity was classified as not popular.
We found that @oasisprotocol/ionic-ledger-hw-transport-ble demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 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.
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.