@atomicfinance/bitcoin-dlc-provider 4.0.3 → 4.1.0
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 +5 -1
- package/.turbo/turbo-lint$colon$fix.log +5 -0
- package/.turbo/turbo-lint.log +5 -1
- package/.yalc/@node-dlc/bitcoin/package.json +2 -2
- package/.yalc/@node-dlc/core/package.json +2 -2
- package/.yalc/@node-dlc/messaging/package.json +2 -2
- package/CHANGELOG.md +17 -1
- package/LICENSE +674 -0
- package/dist/BitcoinDlcProvider.d.ts +0 -1
- package/dist/BitcoinDlcProvider.js +23 -13
- package/dist/BitcoinDlcProvider.js.map +1 -1
- package/dist/utils/Utils.js +5 -5
- package/dist/utils/Utils.js.map +1 -1
- package/lib/BitcoinDlcProvider.ts +6 -6
- package/package.json +13 -14
package/.turbo/turbo-build.log
CHANGED
package/.turbo/turbo-lint.log
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
"description": "DLC bitcoin",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "../../node_modules/.bin/nyc --reporter=lcov --reporter=text --extension=.ts ../../node_modules/.bin/mocha --require ts-node/register --recursive \"__tests__/**/*.spec.*\"",
|
|
7
|
-
"lint": "../../node_modules/.bin/eslint
|
|
8
|
-
"lint:fix": "../../node_modules/.bin/eslint --fix
|
|
7
|
+
"lint": "../../node_modules/.bin/eslint .",
|
|
8
|
+
"lint:fix": "../../node_modules/.bin/eslint --fix .",
|
|
9
9
|
"build": "../../node_modules/.bin/tsc --project tsconfig.json"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start": "npm run build && node dist/index.js",
|
|
7
7
|
"test": "../../node_modules/.bin/nyc --reporter=lcov --reporter=text --extension=.ts ../../node_modules/.bin/mocha --require ts-node/register --recursive \"__tests__/**/*.spec.*\"",
|
|
8
|
-
"lint": "../../node_modules/.bin/eslint
|
|
9
|
-
"lint:fix": "../../node_modules/.bin/eslint --fix
|
|
8
|
+
"lint": "../../node_modules/.bin/eslint .",
|
|
9
|
+
"lint:fix": "../../node_modules/.bin/eslint --fix .",
|
|
10
10
|
"build": "../../node_modules/.bin/tsc --project tsconfig.json"
|
|
11
11
|
},
|
|
12
12
|
"keywords": [
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
"description": "DLC Messaging Protocol",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "../../node_modules/.bin/nyc --reporter=lcov --reporter=text --extension=.ts ../../node_modules/.bin/mocha --require ts-node/register --recursive \"__tests__/**/*.spec.*\"",
|
|
7
|
-
"lint": "../../node_modules/.bin/eslint
|
|
8
|
-
"lint:fix": "../../node_modules/.bin/eslint --fix
|
|
7
|
+
"lint": "../../node_modules/.bin/eslint .",
|
|
8
|
+
"lint:fix": "../../node_modules/.bin/eslint --fix .",
|
|
9
9
|
"build": "../../node_modules/.bin/tsc --project tsconfig.json"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atomicfinance/bitcoin-dlc-provider
|
|
2
2
|
|
|
3
|
+
## 4.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0224065: Switch from yarn to pnpm and update eslint config
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- b2394fa: Add alpha ddk support in BitcoinDdkProvider
|
|
12
|
+
- Updated dependencies [b2394fa]
|
|
13
|
+
- Updated dependencies [0224065]
|
|
14
|
+
- @atomicfinance/bitcoin-utils@4.1.0
|
|
15
|
+
- @atomicfinance/provider@4.1.0
|
|
16
|
+
- @atomicfinance/types@4.1.0
|
|
17
|
+
- @atomicfinance/utils@4.1.0
|
|
18
|
+
|
|
3
19
|
## 4.0.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -123,7 +139,7 @@
|
|
|
123
139
|
|
|
124
140
|
### Environment
|
|
125
141
|
- Update Node.js to 18.18.2+
|
|
126
|
-
- Run `
|
|
142
|
+
- Run `pnpm install` to update dependencies
|
|
127
143
|
- Review custom DLC implementations for compatibility
|
|
128
144
|
|
|
129
145
|
This is a **major breaking change** requiring code updates in consuming applications.
|