@alexbosworth/blockchain 1.7.0 → 2.0.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/CHANGELOG.md +5 -1
- package/LICENSE +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
# Versions
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 2.0.0
|
|
4
4
|
|
|
5
5
|
- `idForTransactionComponents`: Add method to get transaction id for components
|
|
6
6
|
- `queryTransactions`: Add method to find transaction outputs matching a query
|
|
7
7
|
|
|
8
|
+
### Breaking Changes
|
|
9
|
+
|
|
10
|
+
- End support for Node.js v16, require v18+
|
|
11
|
+
|
|
8
12
|
## 1.6.0
|
|
9
13
|
|
|
10
14
|
- `previousBlockId`: Add method to get the previous block id from a block
|
package/LICENSE
CHANGED
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"description": "Blockchain data utility methods",
|
|
10
10
|
"engines": {
|
|
11
|
-
"node": ">=
|
|
11
|
+
"node": ">=18"
|
|
12
12
|
},
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"name": "@alexbosworth/blockchain",
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
"scripts": {
|
|
20
20
|
"test": "npx nyc@15.1.0 node --experimental-test-coverage --test test/hashes/*.js test/numbers/*.js test/script/*.js test/transactions/*.js"
|
|
21
21
|
},
|
|
22
|
-
"version": "
|
|
22
|
+
"version": "2.0.0"
|
|
23
23
|
}
|