]> git.codecow.com Git - libnemo.git/commitdiff
Apply markdown lint fixes.
authorChris Duncan <chris@zoso.dev>
Sat, 25 Apr 2026 06:39:45 +0000 (23:39 -0700)
committerChris Duncan <chris@zoso.dev>
Sat, 25 Apr 2026 06:39:45 +0000 (23:39 -0700)
CHANGELOG.md

index d568deecaad6ed1e3300a83905d3e210e4d0ede9..e65c08c61af255a6f0e26951ac1fc0cee89b87c2 100644 (file)
@@ -74,19 +74,23 @@ Updated dependencies.
 An event detailing the current Ledger status is now emitted when the status is
 changed.
 
-```
-Ledger.addEventListener('ledgerstatuschanged', (event) => {
-       console.log(event.detail)
-       // output displays current status
-})
+```javascript
+Ledger.addEventListener("ledgerstatuschanged", (event) => {
+  console.log(event.detail);
+  // output displays current status
+});
 ```
 
 An event is also emitted when a wallet is locked or unlocked, including Ledger
 wallets.
 
-```
-myWallet.addEventListener('locked', () => { // no other event data... })
-myWallet.addEventListener('unlocked', () => { // no other event data... })
+```javascript
+myWallet.addEventListener("locked", () => {
+  /* no other event data... */
+});
+myWallet.addEventListener("unlocked", () => {
+  /* no other event data... */
+});
 ```
 
 ## v0.10.1
@@ -144,9 +148,9 @@ use, in order of preference, HID then Bluetooth then USB, and now, calling the
 `wallet.config()` method with a settings object can set the desired transport
 explicitly. For example:
 
-```
-const myLedger = await Wallet.create('Ledger')
-await myLedger.config({ connection: 'ble' }) // other options are 'hid' or 'usb'
+```javascript
+const myLedger = await Wallet.create("Ledger");
+await myLedger.config({ connection: "ble" }); // other options are 'hid' or 'usb'
 ```
 
 ### Other Changes
@@ -462,7 +466,8 @@ Workers, further isolating the keys from the main thread and any remote access.
 Proof-of-work required to publish blocks is now provided by the `nano-pow`
 package. This enables fast PoW using the best available browser GPU technology
 and frees up `libnemo` to focus on wallet, account, and block interactions. More
-information on `nano-pow` can be found [here](https://npmjs.com/nano-pow).
+information on `nano-pow` can be found at its
+[npm package page](https://npmjs.com/nano-pow).
 
 #### Persistent rolodex