Skip to content

Commit 2dbd5a4

Browse files
committed
changelog
2 parents 0f91122 + 8f5ce1d commit 2dbd5a4

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file. The format
55
## Table of Contents
66

77
- [Unreleased](#unreleased)
8+
- [1.8.13 - 2025-11-06](#1813---2025-11-06)
89
- [1.8.12 - 2025-11-06](#1812---2025-11-06)
910
- [1.8.11 - 2025-10-30](#1811---2025-10-30)
1011
- [1.8.10 - 2025-10-28](#1810---2025-10-28)
@@ -172,12 +173,22 @@ All notable changes to this project will be documented in this file. The format
172173

173174
---
174175

175-
### [1.8.12] - 2025-11-06
176+
### [1.8.13] - 2025-11-06
176177

177178
### Added
178179

179180
- LookupResolver: Support for custom overlay ranking to allow for expedited lookups and reputation tracking.
180181

182+
---
183+
184+
### [1.8.12] - 2025-11-06
185+
186+
### Fixed
187+
188+
- **WalletError**: unknownToJson now using isError and name rather than constructor.name
189+
190+
---
191+
181192
### [1.8.11] - 2025-10-30
182193

183194
### Fixed

docs/tutorials/advanced-transaction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This tutorial builds on your knowledge of basic `WalletClient` usage to explore
1717
## Prerequisites
1818

1919
- Complete the [Transaction Types and Data](./transaction-types.md) tutorial
20-
- Have a BRC-100 compliant wallet (such as the [MetaNet Desktop Wallet](https://metanet.bsvb.tech/)) installed and configured
20+
- Have a BRC-100 compliant wallet (such as the [MetaNet Desktop Wallet](https://desktop.bsvb.tech/)) installed and configured
2121
- Some BSV in your wallet
2222
- Understanding of Bitcoin transaction fundamentals
2323

@@ -569,4 +569,4 @@ These techniques enable you to build production-ready applications that efficien
569569

570570
- [Wallet Reference](../reference/wallet.md)
571571
- [BSV Blockchain Documentation](https://docs.bsvblockchain.org/)
572-
- [MetaNet Desktop Wallet](https://metanet.bsvb.tech/)
572+
- [MetaNet Desktop Wallet](https://desktop.bsvb.tech/)

docs/tutorials/first-transaction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In this tutorial, you'll learn how to create your first Bitcoin SV transactions
1818
1919
## Precondition
2020

21-
Install a BRC-100 compliant wallet such as the [MetaNet Desktop Wallet](https://metanet.bsvb.tech/). When you install it, you'll receive a small amount of funds to play with.
21+
Install a BRC-100 compliant wallet such as the [MetaNet Desktop Wallet](https://desktop.bsvb.tech/). When you install it, you'll receive a small amount of funds to play with.
2222

2323
## Step 1: Setting Up Your Environment
2424

docs/tutorials/transaction-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In the previous tutorial, you created a simple transaction that sent BSV to a si
1717
## Prerequisites
1818

1919
- Complete the [Your First BSV Transaction](./first-transaction.md) tutorial
20-
- Have a BRC-100 compliant wallet (such as [MetaNet Desktop Wallet](https://metanet.bsvb.tech/)) installed and configured
20+
- Have a BRC-100 compliant wallet (such as [MetaNet Desktop Wallet](https://desktop.bsvb.tech/)) installed and configured
2121
- Some BSV in your wallet
2222

2323
## Transaction with Multiple Outputs

src/wallet/WalletError.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ export class WalletError extends Error {
2626
*/
2727
static unknownToJson (error: any): string {
2828
let e: any | undefined
29-
if (typeof error.constructor.name === 'string' && String(error.constructor.name).startsWith('WERR_')) {
29+
if (error.isError === true && String(error.name).startsWith('WERR_')) {
3030
e = {
31-
name: error.constructor.name,
31+
name: error.name,
3232
message: error.message,
3333
isError: true
3434
}

0 commit comments

Comments
 (0)