ecash-agora 4.2.0 → 4.2.2

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 (3) hide show
  1. package/README.md +8 -0
  2. package/package.json +6 -7
  3. package/.nycrc +0 -4
package/README.md CHANGED
@@ -340,3 +340,11 @@ Running from `bitcoin-abc/modules/ecash-agora` if your build dir is `bitcoin-abc
340
340
  ### 4.2.0
341
341
 
342
342
  - Add optional `finalizationTimeoutSecs` to `AgoraOffer.take()`, `cancel()`, and `relist()`, and to `AgoraPartial.list()` and `AgoraOneshot.list()`, forwarding to ecash-wallet `BuiltAction.broadcast()` / Chronik `broadcastAndFinalizeTx(s)` [D20025](https://reviews.bitcoinabc.org/D20025)
343
+
344
+ ### 4.2.1 [D20201](https://reviews.bitcoinabc.org/D20201)
345
+
346
+ - Upgrade to `ecash-lib` 4.13.0 for Next.js-friendly WASM loading (embedded base64 on Node.js as well as the browser)
347
+
348
+ ### 4.2.2 [D20222](https://reviews.bitcoinabc.org/D20222)
349
+
350
+ - Upgrade to `ecash-wallet` 5.6.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ecash-agora",
3
- "version": "4.2.0",
3
+ "version": "4.2.2",
4
4
  "description": "Library for interacting with the eCash Agora protocol",
5
5
  "main": "./dist/index.js",
6
6
  "repository": {
@@ -20,7 +20,6 @@
20
20
  },
21
21
  "homepage": "https://github.com/Bitcoin-ABC/bitcoin-abc#readme",
22
22
  "devDependencies": {
23
- "@istanbuljs/nyc-config-typescript": "^1.0.2",
24
23
  "@types/chai": "^4.3.14",
25
24
  "@types/chai-as-promised": "^7.1.8",
26
25
  "@types/mocha": "^10.0.10",
@@ -29,22 +28,22 @@
29
28
  "chai-as-promised": "^7.1.1",
30
29
  "mocha": "^11.7.5",
31
30
  "mocha-junit-reporter": "^2.2.1",
32
- "nyc": "^18.0.0",
31
+ "c8": "^10.1.3",
33
32
  "source-map-support": "^0.5.21",
34
33
  "ts-node": "^10.9.2",
35
34
  "tsx": "^4.7.2",
36
35
  "typescript": "^5.9.3"
37
36
  },
38
37
  "dependencies": {
39
- "ecash-lib": "^4.12.0",
40
- "ecash-wallet": "^5.5.0",
41
- "chronik-client": "^4.3.0"
38
+ "ecash-lib": "^4.13.0",
39
+ "chronik-client": "^4.3.0",
40
+ "ecash-wallet": "^5.6.0"
42
41
  },
43
42
  "scripts": {
44
43
  "build": "tsc && tsc -p ./tsconfig.build.json",
45
44
  "test": "mocha --import=tsx ./src/*.test.ts ./src/**/*.test.ts",
46
45
  "integration-tests": "mocha --import=tsx ./tests/*.test.ts --timeout 60000",
47
- "coverage": "nyc npm run test",
46
+ "coverage": "c8 --all npm run test",
48
47
  "junit": "npm run test --reporter mocha-junit-reporter"
49
48
  }
50
49
  }
package/.nycrc DELETED
@@ -1,4 +0,0 @@
1
- {
2
- "extends": "@istanbuljs/nyc-config-typescript",
3
- "all": true
4
- }