@odatano/core 0.3.24 → 0.3.26

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 +4 -4
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -27,7 +27,7 @@ Cardano transaction building with dual-builder architecture (CSL & Buildooor), 4
27
27
 
28
28
  [Milestone 2: Transaction Build & Submit](https://milestones.projectcatalyst.io/projects/1400109/milestones/2)
29
29
 
30
- ### Milestone 3 (Pending March 2026)
30
+ ### Milestone 3 (Completed March 2026) ✅ - pending approval
31
31
  Extension of the transaction module & external workflow to export unsigned Cardano transactions via OData, enabling deterministic external signing (e.g. Cardano CLI or browser wallets) with full key separation and no private-key handling in the CAP service.
32
32
  Includes Plutus smart contract support (BuildPlutusSpendTransaction, SetCollateral), end-to-end external signer integration, SAP S/4HANA business process examples, enterprise use cases, a sample Fiori wallet viewer app, and comprehensive automated integration and security tests.
33
33
 
@@ -141,10 +141,10 @@ curl -X POST http://localhost:4004/odata/v4/cardano-sign/CreateSigningRequest \
141
141
  -H "Content-Type: application/json" \
142
142
  -d '{"buildId":"uuid-from-build-response"}'
143
143
 
144
- # Verify and submit externally signed transaction (bound action on SigningRequests)
145
- curl -X POST "http://localhost:4004/odata/v4/cardano-sign/SigningRequests('signing-request-id')/CardanoSignService.SubmitVerifiedTransaction" \
144
+ # Verify and submit externally signed transaction
145
+ curl -X POST http://localhost:4004/odata/v4/cardano-sign/SubmitVerifiedTransaction \
146
146
  -H "Content-Type: application/json" \
147
- -d '{"signedTxCbor":"84a400..."}'
147
+ -d '{"signingRequestId":"signing-request-id","signedTxCbor":"84a400..."}'
148
148
  ```
149
149
 
150
150
  **HSM Signing Operations (M3):**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odatano/core",
3
- "version": "0.3.24",
3
+ "version": "0.3.26",
4
4
  "description": "SAP CAP plugin for Cardano blockchain OData V4 integration",
5
5
  "imports": {
6
6
  "#cds-models/*": "./@cds-models/*/index.js"
@@ -19,7 +19,8 @@
19
19
  "@harmoniclabs/cardano-ledger-ts": "^0.4.6",
20
20
  "@sap/cds": ">=9",
21
21
  "axios": "^1.13.2",
22
- "bech32": "^2.0.0"
22
+ "bech32": "^2.0.0",
23
+ "blake2b": "^2.1.4"
23
24
  },
24
25
  "optionalDependencies": {
25
26
  "pkcs11js": "^2.1.6"