@canton-network/core-signing-participant 0.1.2 → 0.2.0
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/dist/controller.d.ts.map +1 -1
- package/dist/controller.js +2 -0
- package/dist/controller.test.js +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/package.json +4 -4
package/dist/controller.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"controller.d.ts","sourceRoot":"","sources":["../src/controller.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"controller.d.ts","sourceRoot":"","sources":["../src/controller.ts"],"names":[],"mappings":"AAGA,OAAO,EAOH,SAAS,EAET,sBAAsB,EACtB,eAAe,EAIlB,MAAM,kCAAkC,CAAA;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAA;AAG9D,qBAAa,wBAAyB,YAAW,sBAAsB;IAC5D,SAAS,YAAqB;IAC9B,eAAe,kBAA8B;IAE7C,UAAU,GACb,SAAS,WAAW,CAAC,QAAQ,CAAC,GAAG,SAAS;;;;;;;;;MAiCxC;CACT"}
|
package/dist/controller.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// Copyright (c) 2025 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
1
3
|
import { buildController, PartyMode, SigningProvider, } from '@canton-network/core-signing-lib';
|
|
2
4
|
import { randomUUID } from 'node:crypto';
|
|
3
5
|
export class ParticipantSigningDriver {
|
package/dist/controller.test.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// Copyright (c) 2025 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
1
3
|
import { expect, test } from '@jest/globals';
|
|
2
4
|
import { ParticipantSigningDriver } from './controller.js';
|
|
3
5
|
const TEST_TRANSACTION = 'test-tx';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,iBAAiB,CAAA"}
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@canton-network/core-signing-participant",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"packageManager": "yarn@4.9.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Wallet Kernel driver for Canton participant internal parties",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"test": "yarn node --experimental-vm-modules $(yarn bin jest) --passWithNoTests"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@canton-network/core-ledger-client": "^0.
|
|
18
|
-
"@canton-network/core-signing-lib": "^0.
|
|
19
|
-
"@canton-network/core-wallet-auth": "^0.
|
|
17
|
+
"@canton-network/core-ledger-client": "^0.3.0",
|
|
18
|
+
"@canton-network/core-signing-lib": "^0.3.0",
|
|
19
|
+
"@canton-network/core-wallet-auth": "^0.2.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@jest/globals": "^29.0.0",
|