-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #81 from bennyhodl/release-1-17
- Loading branch information
Showing
9 changed files
with
96 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.0.14](https://github.com/bennyhodl/dlcdevkit/compare/ddk-node-v0.0.13...ddk-node-v0.0.14) - 2025-01-17 | ||
|
||
### Added | ||
|
||
- add hmac authentication to the kormir client | ||
|
||
### Other | ||
|
||
- Hmac in Kormir client | ||
- transport nostr disconnect and sending messages after received | ||
- Automatically generate a ContractInput offer | ||
- use ddk json values in ddk-node | ||
- Async wallet | ||
- Make send message method async in trait | ||
- Balance command ddk-node | ||
- onchain walet sync | ||
- Stop signal and shutdown node on Ctl-C | ||
- include version for publishing crates | ||
- Add balance to ddk-node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
[package] | ||
name = "ddk-node" | ||
version = "0.0.13" | ||
version = "0.0.14" | ||
authors = ["benny b <[email protected]>"] | ||
description = "DDK node to facilitate DLC contracts." | ||
license = "MIT" | ||
repository = "https://github.com/bennyhodl/dlcdevkit" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
ddk = { version = "0.0.13", path = "../ddk", features = ["lightning", "marketplace", "sled", "kormir"] } | ||
ddk-manager = { version = "0.7.2", path = "../ddk-manager", features = ["use-serde"] } | ||
ddk-payouts = { version = "0.0.13", path = "../payouts" } | ||
ddk = { version = "0.0.14", path = "../ddk", features = ["lightning", "marketplace", "sled", "kormir"] } | ||
ddk-manager = { version = "0.7.3", path = "../ddk-manager", features = ["use-serde"] } | ||
ddk-payouts = { version = "0.0.14", path = "../payouts" } | ||
|
||
dlc = { version = "0.7.1", features = ["use-serde"] } | ||
dlc-messages = { version = "0.7.1", features = [ "use-serde"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.0.14](https://github.com/bennyhodl/dlcdevkit/compare/ddk-v0.0.13...ddk-v0.0.14) - 2025-01-17 | ||
|
||
### Added | ||
|
||
- add hmac authentication to the kormir client | ||
|
||
### Other | ||
|
||
- Hmac in Kormir client | ||
- update kormir with json responses | ||
- transport nostr disconnect and sending messages after received | ||
- process events after sending events | ||
- make ddk errors public | ||
- update nostr dependency | ||
- Async wallet | ||
- JSON Value for contracts | ||
- Working nostr implementation | ||
- Make send message method async in trait | ||
- Adding more logging | ||
- bug fix: process events | ||
- Lightning Transport v2 | ||
- Nostr transport v2 | ||
- bdk_wallet 1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.0.14](https://github.com/bennyhodl/dlcdevkit/compare/ddk-payouts-v0.0.13...ddk-payouts-v0.0.14) - 2025-01-17 | ||
|
||
### Other | ||
|
||
- updated the following local packages: ddk-manager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "ddk-payouts" | ||
version = "0.0.13" | ||
version = "0.0.14" | ||
authors = ["benny b <[email protected]>"] | ||
description = "Library to build payout functions for DLC contracts." | ||
license = "MIT" | ||
repository = "https://github.com/bennyhodl/dlcdevkit" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
ddk-manager = { version = "0.7.2", path = "../ddk-manager", features = ["use-serde"] } | ||
ddk-manager = { version = "0.7.3", path = "../ddk-manager", features = ["use-serde"] } | ||
|
||
dlc = { version = "0.7.1", features = ["use-serde"] } | ||
dlc-messages = { version = "0.7.1", features = ["use-serde"] } | ||
|