@canton-network/wallet-gateway-remote 0.11.2 → 0.11.3
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"controller.d.ts","sourceRoot":"","sources":["../../src/user-api/controller.ts"],"names":[],"mappings":"AAyBA,OAAO,EACH,KAAK,EAIR,MAAM,mCAAmC,CAAA;AAC1C,OAAO,EAAE,MAAM,EAAE,MAAM,MAAM,CAAA;AAC7B,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAA;AAC5E,OAAO,EAGH,WAAW,EAId,MAAM,kCAAkC,CAAA;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AAChD,OAAO,EACH,sBAAsB,EACtB,eAAe,EAClB,MAAM,kCAAkC,CAAA;AAczC,KAAK,uBAAuB,GAAG,OAAO,CAClC,MAAM,CAAC,eAAe,EAAE,sBAAsB,CAAC,CAClD,CAAA;AAED,eAAO,MAAM,cAAc,GACvB,YAAY,UAAU,EACtB,SAAS,MAAM,EACf,OAAO,KAAK,EACZ,qBAAqB,mBAAmB,EACxC,aAAa,WAAW,GAAG,SAAS,EACpC,SAAS,uBAAuB,EAChC,SAAS,MAAM;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"controller.d.ts","sourceRoot":"","sources":["../../src/user-api/controller.ts"],"names":[],"mappings":"AAyBA,OAAO,EACH,KAAK,EAIR,MAAM,mCAAmC,CAAA;AAC1C,OAAO,EAAE,MAAM,EAAE,MAAM,MAAM,CAAA;AAC7B,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAA;AAC5E,OAAO,EAGH,WAAW,EAId,MAAM,kCAAkC,CAAA;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AAChD,OAAO,EACH,sBAAsB,EACtB,eAAe,EAClB,MAAM,kCAAkC,CAAA;AAczC,KAAK,uBAAuB,GAAG,OAAO,CAClC,MAAM,CAAC,eAAe,EAAE,sBAAsB,CAAC,CAClD,CAAA;AAED,eAAO,MAAM,cAAc,GACvB,YAAY,UAAU,EACtB,SAAS,MAAM,EACf,OAAO,KAAK,EACZ,qBAAqB,mBAAmB,EACxC,aAAa,WAAW,GAAG,SAAS,EACpC,SAAS,uBAAuB,EAChC,SAAS,MAAM;;;;;;;;;;;;;;;;;;;CAktBlB,CAAA"}
|
|
@@ -304,11 +304,22 @@ export const userController = (kernelInfo, userUrl, store, notificationService,
|
|
|
304
304
|
try {
|
|
305
305
|
const prep = ledgerPrepareParams(userId, partyId, synchronizerId, transaction.payload);
|
|
306
306
|
const res = await ledgerClient.postWithRetry('/v2/commands/submit-and-wait', prep);
|
|
307
|
-
|
|
308
|
-
status: 'executed',
|
|
307
|
+
const signedTx = {
|
|
309
308
|
commandId,
|
|
309
|
+
status: 'executed',
|
|
310
|
+
preparedTransaction: transaction.preparedTransaction,
|
|
311
|
+
preparedTransactionHash: transaction.preparedTransactionHash,
|
|
310
312
|
payload: res,
|
|
311
|
-
|
|
313
|
+
origin: transaction.origin ?? null,
|
|
314
|
+
...(transaction.createdAt && {
|
|
315
|
+
createdAt: transaction.createdAt,
|
|
316
|
+
}),
|
|
317
|
+
...(transaction.signedAt && {
|
|
318
|
+
signedAt: transaction.signedAt,
|
|
319
|
+
}),
|
|
320
|
+
};
|
|
321
|
+
store.setTransaction(signedTx);
|
|
322
|
+
notifier.emit('txChanged', signedTx);
|
|
312
323
|
return res;
|
|
313
324
|
}
|
|
314
325
|
catch (error) {
|