@odatano/core 0.3.24 → 0.3.25
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 +3 -3
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -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
|
|
145
|
-
curl -X POST
|
|
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.
|
|
3
|
+
"version": "0.3.25",
|
|
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"
|