Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file. The format
## Table of Contents

- [Unreleased](#unreleased)
- [1.6.21 - 2025-07-25](#1621---2025-07-25)
- [1.6.20 - 2025-07-22](#1620---2025-07-22)
- [1.6.19 - 2025-07-21](#1619---2025-07-21)
- [1.6.18 - 2025-07-20](#1618---2025-07-20)
Expand Down Expand Up @@ -149,6 +150,14 @@ All notable changes to this project will be documented in this file. The format

---

### [1.6.21] - 2025-07-25

### Added

- Added `Transaction.completeWithWallet` method

---

### [1.6.20] - 2025-07-22

### Fixed
Expand All @@ -157,6 +166,8 @@ All notable changes to this project will be documented in this file. The format
- Proper types for script evaluation errors (useful for programmatic access)
- Clear rspack errors and use latest version

---

### [1.6.19] - 2025-07-21

### Added
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ Argument Details

#### Method onData

Registers a callback to handle incoming messages.
Registers a callback to handle incoming messages.
This must be called before sending any messages to ensure responses can be processed.

```ts
Expand Down
14 changes: 8 additions & 6 deletions docs/reference/messages.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# API

Links: [API](#api), [Classes](#classes), [Functions](#functions), [Variables](#variables)
Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Variables](#variables)

## Interfaces

## Classes

Expand All @@ -15,7 +17,7 @@ Links: [API](#api), [Classes](#classes), [Functions](#functions), [Variables](#v
| [sign](#variable-sign) |
| [verify](#variable-verify) |

Links: [API](#api), [Classes](#classes), [Functions](#functions), [Variables](#variables)
Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Variables](#variables)

---

Expand Down Expand Up @@ -49,7 +51,7 @@ decrypt = (message: number[], recipient: PrivateKey): number[] => {

See also: [PrivateKey](./primitives.md#class-privatekey), [PublicKey](./primitives.md#class-publickey), [Reader](./primitives.md#class-reader), [SymmetricKey](./primitives.md#class-symmetrickey), [encode](./primitives.md#variable-encode), [toBase64](./primitives.md#function-tobase64), [toHex](./primitives.md#variable-tohex)

Links: [API](#api), [Classes](#classes), [Functions](#functions), [Variables](#variables)
Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Variables](#variables)

---
### Variable: encrypt
Expand Down Expand Up @@ -78,7 +80,7 @@ encrypt = (message: number[], sender: PrivateKey, recipient: PublicKey): number[

See also: [PrivateKey](./primitives.md#class-privatekey), [PublicKey](./primitives.md#class-publickey), [SymmetricKey](./primitives.md#class-symmetrickey), [encode](./primitives.md#variable-encode), [toArray](./primitives.md#variable-toarray), [toBase64](./primitives.md#function-tobase64)

Links: [API](#api), [Classes](#classes), [Functions](#functions), [Variables](#variables)
Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Variables](#variables)

---
### Variable: sign
Expand Down Expand Up @@ -111,7 +113,7 @@ sign = (message: number[], signer: PrivateKey, verifier?: PublicKey): number[] =

See also: [Curve](./primitives.md#class-curve), [PrivateKey](./primitives.md#class-privatekey), [PublicKey](./primitives.md#class-publickey), [encode](./primitives.md#variable-encode), [toArray](./primitives.md#variable-toarray), [toBase64](./primitives.md#function-tobase64)

Links: [API](#api), [Classes](#classes), [Functions](#functions), [Variables](#variables)
Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Variables](#variables)

---
### Variable: verify
Expand Down Expand Up @@ -151,6 +153,6 @@ verify = (message: number[], sig: number[], recipient?: PrivateKey): boolean =>

See also: [PrivateKey](./primitives.md#class-privatekey), [PublicKey](./primitives.md#class-publickey), [Reader](./primitives.md#class-reader), [Signature](./primitives.md#class-signature), [encode](./primitives.md#variable-encode), [toBase64](./primitives.md#function-tobase64), [toHex](./primitives.md#variable-tohex)

Links: [API](#api), [Classes](#classes), [Functions](#functions), [Variables](#variables)
Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Variables](#variables)

---
3 changes: 3 additions & 0 deletions docs/reference/overlay-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,9 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](

```ts
DEFAULT_SLAP_TRACKERS: string[] = [
"https://overlay-us-1.bsvb.tech",
"https://overlay-eu-1.bsvb.tech",
"https://overlay-ap-1.bsvb.tech",
"https://users.bapp.dev"
]
```
Expand Down
Loading