ecash-lib 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -103,3 +103,4 @@ console.log(toHex(rawTx));
103
103
  - 0.2.0 - Add `Script.fromAddress` method to convert cashaddr addresses to `Script`
104
104
  - 0.2.1 - Fix fee estimation for signatories that depend on tx outputs [D16673](https://reviews.bitcoinabc.org/D16673)
105
105
  - 1.0.0 - **(Breaking change)** Modify `GenesisInfo` so that `auth` and `data` types match [D17194](https://reviews.bitcoinabc.org/D17194)
106
+ - 1.0.1 - Include `ecashaddrjs` and `chronik-client` installations from `npmjs` instead of local, to prevent need for peer dependencies [D17215](https://reviews.bitcoinabc.org/D17215)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ecash-lib",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Library for eCash transaction building",
5
5
  "main": "./dist/indexNodeJs.js",
6
6
  "browser": "./dist/indexBrowser.js",
@@ -33,7 +33,7 @@
33
33
  "@types/mocha": "^10.0.6",
34
34
  "@types/node": "^20.12.7",
35
35
  "chai": "^5.1.0",
36
- "chronik-client": "file:../chronik-client",
36
+ "chronik-client": "^2.0.0",
37
37
  "eslint-plugin-header": "^3.1.1",
38
38
  "mocha": "^10.4.0",
39
39
  "mocha-junit-reporter": "^2.2.1",
@@ -45,6 +45,6 @@
45
45
  "typescript-eslint": "^7.6.0"
46
46
  },
47
47
  "dependencies": {
48
- "ecashaddrjs": "file:../ecashaddrjs"
48
+ "ecashaddrjs": "^1.6.2"
49
49
  }
50
50
  }