@atomicfinance/bitcoin-dlc-provider 4.1.13 → 4.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +27 -0
- package/package.json +5 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @atomicfinance/bitcoin-dlc-provider@4.
|
|
3
|
+
> @atomicfinance/bitcoin-dlc-provider@4.2.0 build /Users/matthewblack/code/github.com/AtomicFinance/bitcoin-abstraction-layer/packages/bitcoin-dlc-provider
|
|
4
4
|
> ../../node_modules/.bin/tsc --project tsconfig.json
|
|
5
5
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @atomicfinance/bitcoin-dlc-provider
|
|
2
2
|
|
|
3
|
+
## 4.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8d13721: Fix lexographic ordering dlc input pubkeys
|
|
8
|
+
- Updated dependencies [8d13721]
|
|
9
|
+
- @atomicfinance/bitcoin-utils@4.2.1
|
|
10
|
+
- @atomicfinance/provider@4.2.1
|
|
11
|
+
- @atomicfinance/types@4.2.1
|
|
12
|
+
- @atomicfinance/utils@4.2.1
|
|
13
|
+
|
|
14
|
+
## 4.2.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- ec43a60: Implement DDK DLC splicing support + util refactor
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- b718514: Refactor funding input sorting
|
|
23
|
+
- Updated dependencies [ec43a60]
|
|
24
|
+
- Updated dependencies [b718514]
|
|
25
|
+
- @atomicfinance/bitcoin-utils@4.2.0
|
|
26
|
+
- @atomicfinance/provider@4.2.0
|
|
27
|
+
- @atomicfinance/types@4.2.0
|
|
28
|
+
- @atomicfinance/utils@4.2.0
|
|
29
|
+
|
|
3
30
|
## 4.1.13
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atomicfinance/bitcoin-dlc-provider",
|
|
3
3
|
"umdName": "BitcoinDlcProvider",
|
|
4
|
-
"version": "4.1
|
|
4
|
+
"version": "4.2.1",
|
|
5
5
|
"description": "Bitcoin Abstraction Layer Dlc Provider",
|
|
6
6
|
"author": "Atomic Finance <info@atomic.finance>",
|
|
7
7
|
"homepage": "",
|
|
8
8
|
"license": "ISC",
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@atomicfinance/bitcoin-utils": "4.1
|
|
12
|
-
"@atomicfinance/provider": "^4.1
|
|
13
|
-
"@atomicfinance/types": "^4.1
|
|
14
|
-
"@atomicfinance/utils": "^4.1
|
|
11
|
+
"@atomicfinance/bitcoin-utils": "4.2.1",
|
|
12
|
+
"@atomicfinance/provider": "^4.2.1",
|
|
13
|
+
"@atomicfinance/types": "^4.2.1",
|
|
14
|
+
"@atomicfinance/utils": "^4.2.1",
|
|
15
15
|
"@node-dlc/bitcoin": "1.1.2",
|
|
16
16
|
"@node-dlc/bufio": "1.1.2",
|
|
17
17
|
"@node-dlc/core": "1.1.2",
|