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.
- package/README.md +8 -0
- package/package.json +6 -7
- 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.
|
|
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
|
-
"
|
|
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.
|
|
40
|
-
"
|
|
41
|
-
"
|
|
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": "
|
|
46
|
+
"coverage": "c8 --all npm run test",
|
|
48
47
|
"junit": "npm run test --reporter mocha-junit-reporter"
|
|
49
48
|
}
|
|
50
49
|
}
|
package/.nycrc
DELETED