@atomicfinance/bitcoin-dlc-provider 4.0.2 → 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.
@@ -1 +1,5 @@
1
-
1
+
2
+ 
3
+ > @atomicfinance/bitcoin-dlc-provider@4.1.0 build /Users/matthewblack/code/github.com/AtomicFinance/wip-ddk-ffi/bitcoin-abstraction-layer/packages/bitcoin-dlc-provider
4
+ > ../../node_modules/.bin/tsc --project tsconfig.json
5
+
@@ -0,0 +1,5 @@
1
+
2
+ 
3
+ > @atomicfinance/bitcoin-dlc-provider@4.0.3 lint:fix /Users/matthewblack/code/github.com/AtomicFinance/wip-ddk-ffi/bitcoin-abstraction-layer/packages/bitcoin-dlc-provider
4
+ > ../../node_modules/.bin/eslint --fix .
5
+
@@ -1 +1,5 @@
1
-
1
+
2
+ 
3
+ > @atomicfinance/bitcoin-dlc-provider@4.0.3 lint /Users/matthewblack/code/github.com/AtomicFinance/wip-ddk-ffi/bitcoin-abstraction-layer/packages/bitcoin-dlc-provider
4
+ > ../../node_modules/.bin/eslint .
5
+
@@ -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 --ignore-path ../../.eslintignore -c ../../.eslintrc.js .",
8
- "lint:fix": "../../node_modules/.bin/eslint --fix --ignore-path ../../.eslintignore -c ../../.eslintrc.js .",
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 --ignore-path ../../.eslintignore -c ../../.eslintrc.js .",
9
- "lint:fix": "../../node_modules/.bin/eslint --fix --ignore-path ../../.eslintignore -c ../../.eslintrc.js .",
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 --ignore-path ../../.eslintignore -c ../../.eslintrc.js .",
8
- "lint:fix": "../../node_modules/.bin/eslint --fix --ignore-path ../../.eslintignore -c ../../.eslintrc.js .",
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,32 @@
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
+
19
+ ## 4.0.3
20
+
21
+ ### Patch Changes
22
+
23
+ - c7e9691: Update import modules organize imports
24
+ - Updated dependencies [c7e9691]
25
+ - @atomicfinance/bitcoin-utils@4.0.3
26
+ - @atomicfinance/provider@4.0.3
27
+ - @atomicfinance/types@4.0.3
28
+ - @atomicfinance/utils@4.0.3
29
+
3
30
  ## 4.0.2
4
31
 
5
32
  ### Patch Changes
@@ -112,7 +139,7 @@
112
139
 
113
140
  ### Environment
114
141
  - Update Node.js to 18.18.2+
115
- - Run `yarn install` to update dependencies
142
+ - Run `pnpm install` to update dependencies
116
143
  - Review custom DLC implementations for compatibility
117
144
 
118
145
  This is a **major breaking change** requiring code updates in consuming applications.