From 1c0c72c4f8e5a8b45d3dc31f7f4b21f5af8b053d Mon Sep 17 00:00:00 2001 From: David Edey Date: Thu, 18 Apr 2024 13:48:26 +0100 Subject: [PATCH] docs: Clarify LTS summarizeTransaction flexibility --- LTS.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/LTS.md b/LTS.md index 09e2ff3..6214dd8 100644 --- a/LTS.md +++ b/LTS.md @@ -344,10 +344,9 @@ import { LTSRadixEngineToolkit } from "@radixdlt/radix-engine-toolkit"; -let compiledIntent: Uint8Array = /* Some compiled intent */; -let transactionSummary = -await LTSRadixEngineToolkit.Transaction.summarizeTransaction( - compiledIntent +let compiled: Uint8Array = /* A compiled intent OR compiled signed intent OR compiled notarized tranaction */; +let transactionSummary = await LTSRadixEngineToolkit.Transaction.summarizeTransaction( + compiled ); console.log(transactionSummary); ```