@atomicfinance/types 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.
- 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/messaging/package.json +2 -2
- package/CHANGELOG.md +16 -0
- package/LICENSE +674 -0
- package/dist/bitcoin.d.ts +0 -1
- package/dist/bitcoin.js +2 -2
- package/dist/bitcoin.js.map +1 -1
- package/dist/cfd.d.ts +0 -13
- package/dist/cfd.js +0 -2
- package/dist/cfd.js.map +1 -1
- package/dist/ddk.d.ts +121 -0
- package/dist/ddk.js +4 -0
- package/dist/ddk.js.map +1 -0
- package/dist/dlc.d.ts +0 -1
- package/dist/dlc.js +0 -2
- package/dist/dlc.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +18 -7
- package/dist/index.js.map +1 -1
- package/dist/jsonrpc.d.ts +0 -9
- package/dist/models/Amount.js.map +1 -1
- package/dist/models/Input.d.ts +2 -2
- package/dist/models/Input.js +2 -1
- package/dist/models/Input.js.map +1 -1
- package/dist/models/Utxo.d.ts +2 -0
- package/dist/models/Utxo.js +9 -0
- package/dist/models/Utxo.js.map +1 -1
- package/dist/transaction.js +1 -1
- package/dist/transaction.js.map +1 -1
- package/lib/cfd.ts +0 -18
- package/lib/ddk.ts +430 -0
- package/lib/dlc.ts +0 -6
- package/lib/index.ts +1 -0
- package/lib/jsonrpc.ts +0 -10
- package/lib/models/Input.ts +1 -0
- package/lib/models/Utxo.ts +11 -0
- package/package.json +9 -10
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": [
|
|
@@ -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/types
|
|
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
|
+
|
|
13
|
+
## 4.0.3
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- c7e9691: Update import modules organize imports
|
|
18
|
+
|
|
3
19
|
## 4.0.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|