From 834d2eebe82a3d227b5f4eaacfb6b81b0ecdf3dc Mon Sep 17 00:00:00 2001 From: Jordan Millar Date: Thu, 24 Oct 2024 15:33:57 -0400 Subject: [PATCH 1/4] Propagate TxOutDatumInTx constructor rename to TxOutSupplementalDatum --- .../src/Cardano/CLI/EraBased/Run/Transaction.hs | 2 +- cardano-cli/src/Cardano/CLI/Json/Friendly.hs | 17 +---------------- 2 files changed, 2 insertions(+), 17 deletions(-) diff --git a/cardano-cli/src/Cardano/CLI/EraBased/Run/Transaction.hs b/cardano-cli/src/Cardano/CLI/EraBased/Run/Transaction.hs index c59ace374..e4b1018e7 100644 --- a/cardano-cli/src/Cardano/CLI/EraBased/Run/Transaction.hs +++ b/cardano-cli/src/Cardano/CLI/EraBased/Run/Transaction.hs @@ -1313,7 +1313,7 @@ toTxAlonzoDatum supp cliDatum = pure (TxOutDatumHash supp $ hashScriptDataBytes sData) TxOutDatumByValue sDataOrFile -> do sData <- firstExceptT TxCmdScriptDataError $ readScriptDataOrFile sDataOrFile - pure (TxOutDatumInTx supp sData) + pure (TxOutSupplementalDatum supp sData) TxOutInlineDatumByValue sDataOrFile -> do let cEra = toCardanoEra supp forEraInEon cEra (txFeatureMismatch cEra TxFeatureInlineDatums) $ \babbageOnwards -> do diff --git a/cardano-cli/src/Cardano/CLI/Json/Friendly.hs b/cardano-cli/src/Cardano/CLI/Json/Friendly.hs index 8549ae2a2..8c95c4bf3 100644 --- a/cardano-cli/src/Cardano/CLI/Json/Friendly.hs +++ b/cardano-cli/src/Cardano/CLI/Json/Friendly.hs @@ -212,7 +212,6 @@ friendlyTxBodyImpl txValidityUpperBound txMetadata txAuxScripts - txSupplementalData txExtraKeyWits _txProtocolParams txWithdrawals @@ -252,10 +251,6 @@ friendlyTxBodyImpl era (`getRedeemerDetails` tb) ) - ++ ( monoidForEraInEon @AlonzoEraOnwards - era - (`friendlySupplementalDatums` txSupplementalData) - ) ++ ( monoidForEraInEon @ConwayEraOnwards era ( \cOnwards -> @@ -293,16 +288,6 @@ friendlyTxBodyImpl friendlyLedgerProposals cOnwards proposalProcedures = Array $ fromList $ map (friendlyLedgerProposal cOnwards) proposalProcedures --- | API doesn't yet show that supplemental datums are alonzo onwards. So we do it in this function prototype, --- even if we don't use the witness. -friendlySupplementalDatums - :: AlonzoEraOnwards era -> BuildTxWith build (TxSupplementalDatums era) -> [Aeson.Pair] -friendlySupplementalDatums _era = \case - ViewTx -> [] - BuildTxWith TxSupplementalDataNone -> [] - BuildTxWith (TxSupplementalDatums hashableScriptDatas) -> - ["supplemental datums" .= toJSON hashableScriptDatas] - friendlyLedgerProposal :: ConwayEraOnwards era -> L.ProposalProcedure (ShelleyLedgerEra era) -> Aeson.Value friendlyLedgerProposal cOnwards proposalProcedure = object $ friendlyProposalImpl cOnwards (Proposal proposalProcedure) @@ -483,7 +468,7 @@ friendlyTxOut era (TxOut addr amount mdatum script) = renderDatum = \case TxOutDatumNone -> Nothing TxOutDatumHash _ h -> Just $ toJSON h - TxOutDatumInTx _ sData -> Just $ scriptDataToJson ScriptDataJsonDetailedSchema sData + TxOutSupplementalDatum _ sData -> Just $ scriptDataToJson ScriptDataJsonDetailedSchema sData TxOutDatumInline _ sData -> Just $ scriptDataToJson ScriptDataJsonDetailedSchema sData friendlyStakeReference :: StakeAddressReference -> Aeson.Value From ae9bf7f1f38658015dfb0c1b6700460b64a850ef Mon Sep 17 00:00:00 2001 From: Jordan Millar Date: Thu, 24 Oct 2024 15:34:17 -0400 Subject: [PATCH 2/4] REMOVE ME: Bump SRP --- cabal.project | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cabal.project b/cabal.project index 9eb1804dc..aecabc005 100644 --- a/cabal.project +++ b/cabal.project @@ -57,3 +57,9 @@ write-ghc-environment-files: always -- IMPORTANT -- Do NOT add more source-repository-package stanzas here unless they are strictly -- temporary! Please read the section in CONTRIBUTING about updating dependencies. + +source-repository-package + type: git + location: https://github.com/IntersectMBO/cardano-api.git + tag: 22417a0f7fce857324dd01389afbeb9fee948cac + subdir: cardano-api \ No newline at end of file From 892cd76106b0458021536a92e10770681209de14 Mon Sep 17 00:00:00 2001 From: Jordan Millar Date: Thu, 24 Oct 2024 15:53:02 -0400 Subject: [PATCH 3/4] Rename "tx-out-datum-embed" to "tx-out-supplemental-datum" --- .../Cardano/CLI/EraBased/Options/Common.hs | 91 ++++++++++++++++--- 1 file changed, 77 insertions(+), 14 deletions(-) diff --git a/cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs b/cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs index a84a573e6..78cd344bc 100644 --- a/cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs +++ b/cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs @@ -1115,6 +1115,61 @@ pScriptDatumOrFile scriptFlagPrefix witctx = , Opt.help "Inline datum present at transaction input." ] +pScriptDataOrFileHidden + :: String + -- ^ data flag prefix + -> String + -- ^ value help text + -> String + -- ^ file help text + -> Parser ScriptDataOrFile +pScriptDataOrFileHidden dataFlagPrefix helpTextForValue helpTextForFile = + asum + [ pScriptDataCborFile + , pScriptDataFile + , pScriptDataValue + ] + where + pScriptDataCborFile = + fmap ScriptDataCborFile . Opt.strOption $ + mconcat + [ Opt.long (dataFlagPrefix ++ "-cbor-file") + , Opt.metavar "CBOR_FILE" + , Opt.help $ + mconcat + [ helpTextForFile + , " The file has to be in CBOR format." + ] + , Opt.internal + ] + + pScriptDataFile = + fmap ScriptDataJsonFile . Opt.strOption $ + mconcat + [ Opt.long (dataFlagPrefix ++ "-file") + , Opt.metavar "JSON_FILE" + , Opt.help $ + mconcat + [ helpTextForFile + , " The file must follow the detailed JSON schema for script data." + ] + , Opt.internal + ] + + pScriptDataValue = + fmap ScriptDataValue . Opt.option readerScriptData $ + mconcat + [ Opt.long (dataFlagPrefix ++ "-value") + , Opt.metavar "JSON_VALUE" + , Opt.help $ + mconcat + [ helpTextForValue + , " There is no schema: (almost) any JSON value is supported, including " + , "top-level strings and numbers." + ] + , Opt.internal + ] + pScriptDataOrFile :: String -- ^ data flag prefix @@ -1167,16 +1222,16 @@ pScriptDataOrFile dataFlagPrefix helpTextForValue helpTextForFile = ] ] - readerScriptData :: ReadM HashableScriptData - readerScriptData = do - v <- Opt.str - sDataValue <- - liftWith ("readerScriptData: " <>) $ - Aeson.eitherDecode v - liftWith (docToString . prettyError) $ - scriptDataJsonToHashable ScriptDataJsonNoSchema sDataValue - where - liftWith f = either (fail . f) pure +readerScriptData :: ReadM HashableScriptData +readerScriptData = do + v <- Opt.str + sDataValue <- + liftWith ("readerScriptData: " <>) $ + Aeson.eitherDecode v + liftWith (docToString . prettyError) $ + scriptDataJsonToHashable ScriptDataJsonNoSchema sDataValue + where + liftWith f = either (fail . f) pure pVoteFiles :: ShelleyBasedEra era @@ -2111,10 +2166,18 @@ pTxOutDatum = pTxOutDatumByValue = TxOutDatumByValue - <$> pScriptDataOrFile - "tx-out-datum-embed" - "The script datum to embed in the tx for this output, given here." - "The script datum to embed in the tx for this output, in the given file." + <$> asum + [ pScriptDataOrFile + "tx-out-supplemental-datum" + "The supplemental script datum to embed in the tx for this output, given here." + "The supplemental script datum to embed in the tx for this output, in the given file." + , -- The embed option was hidden because it's not obvious that this is a supplemental datum. + -- This can be removed eventually. + pScriptDataOrFileHidden + "tx-out-datum-embed" + "The script datum to embed in the tx for this output, given here." + "The script datum to embed in the tx for this output, in the given file." + ] pTxOutInlineDatumByValue = TxOutInlineDatumByValue From 55fdf6c7986b8e740582e89533af52da727a3ad1 Mon Sep 17 00:00:00 2001 From: Jordan Millar Date: Thu, 24 Oct 2024 16:05:53 -0400 Subject: [PATCH 4/4] Update golden files --- .../cardano-cli-golden/files/golden/help.cli | 162 +++++++++--------- .../help/allegra_transaction_build-raw.cli | 31 ++-- ...ransaction_calculate-min-required-utxo.cli | 31 ++-- ...llegra_transaction_calculate-min-value.cli | 31 ++-- .../help/alonzo_transaction_build-raw.cli | 31 ++-- ...ransaction_calculate-min-required-utxo.cli | 31 ++-- ...alonzo_transaction_calculate-min-value.cli | 31 ++-- .../babbage_transaction_build-estimate.cli | 31 ++-- .../help/babbage_transaction_build-raw.cli | 31 ++-- .../golden/help/babbage_transaction_build.cli | 31 ++-- ...ransaction_calculate-min-required-utxo.cli | 31 ++-- ...abbage_transaction_calculate-min-value.cli | 31 ++-- .../conway_transaction_build-estimate.cli | 31 ++-- .../help/conway_transaction_build-raw.cli | 31 ++-- .../golden/help/conway_transaction_build.cli | 31 ++-- ...ransaction_calculate-min-required-utxo.cli | 31 ++-- ...conway_transaction_calculate-min-value.cli | 31 ++-- .../latest_transaction_build-estimate.cli | 31 ++-- .../help/latest_transaction_build-raw.cli | 31 ++-- .../golden/help/latest_transaction_build.cli | 31 ++-- ...ransaction_calculate-min-required-utxo.cli | 31 ++-- ...latest_transaction_calculate-min-value.cli | 31 ++-- .../help/mary_transaction_build-raw.cli | 31 ++-- ...ransaction_calculate-min-required-utxo.cli | 31 ++-- .../mary_transaction_calculate-min-value.cli | 31 ++-- .../help/shelley_transaction_build-raw.cli | 31 ++-- ...ransaction_calculate-min-required-utxo.cli | 31 ++-- ...helley_transaction_calculate-min-value.cli | 31 ++-- 28 files changed, 513 insertions(+), 486 deletions(-) diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help.cli index d8f5e52f3..36fce2d71 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help.cli @@ -1618,9 +1618,9 @@ Usage: cardano-cli shelley transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -1774,9 +1774,9 @@ Usage: cardano-cli shelley transaction calculate-min-required-utxo --protocol-pa | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -1791,9 +1791,9 @@ Usage: cardano-cli shelley transaction calculate-min-value --protocol-params-fil | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -2690,9 +2690,9 @@ Usage: cardano-cli allegra transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -2846,9 +2846,9 @@ Usage: cardano-cli allegra transaction calculate-min-required-utxo --protocol-pa | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -2863,9 +2863,9 @@ Usage: cardano-cli allegra transaction calculate-min-value --protocol-params-fil | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -3754,9 +3754,9 @@ Usage: cardano-cli mary transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -3908,9 +3908,9 @@ Usage: cardano-cli mary transaction calculate-min-required-utxo --protocol-param | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -3925,9 +3925,9 @@ Usage: cardano-cli mary transaction calculate-min-value --protocol-params-file F | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -4829,9 +4829,9 @@ Usage: cardano-cli alonzo transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -4985,9 +4985,9 @@ Usage: cardano-cli alonzo transaction calculate-min-required-utxo --protocol-par | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -5002,9 +5002,9 @@ Usage: cardano-cli alonzo transaction calculate-min-value --protocol-params-file | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -5929,9 +5929,9 @@ Usage: cardano-cli babbage transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -6061,9 +6061,9 @@ Usage: cardano-cli babbage transaction build --socket-path SOCKET_PATH | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -6184,9 +6184,9 @@ Usage: cardano-cli babbage transaction build-estimate | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -6342,9 +6342,9 @@ Usage: cardano-cli babbage transaction calculate-min-required-utxo --protocol-pa | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -6359,9 +6359,9 @@ Usage: cardano-cli babbage transaction calculate-min-value --protocol-params-fil | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -7836,9 +7836,9 @@ Usage: cardano-cli conway transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -8001,9 +8001,9 @@ Usage: cardano-cli conway transaction build --socket-path SOCKET_PATH | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -8150,9 +8150,9 @@ Usage: cardano-cli conway transaction build-estimate | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -8341,9 +8341,9 @@ Usage: cardano-cli conway transaction calculate-min-required-utxo --protocol-par | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -8358,9 +8358,9 @@ Usage: cardano-cli conway transaction calculate-min-value --protocol-params-file | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -9835,9 +9835,9 @@ Usage: cardano-cli latest transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -10000,9 +10000,9 @@ Usage: cardano-cli latest transaction build --socket-path SOCKET_PATH | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -10149,9 +10149,9 @@ Usage: cardano-cli latest transaction build-estimate | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -10340,9 +10340,9 @@ Usage: cardano-cli latest transaction calculate-min-required-utxo --protocol-par | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -10357,9 +10357,9 @@ Usage: cardano-cli latest transaction calculate-min-value --protocol-params-file | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_transaction_build-raw.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_transaction_build-raw.cli index d41b35eb6..336e1b0df 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_transaction_build-raw.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_transaction_build-raw.cli @@ -43,9 +43,9 @@ Usage: cardano-cli allegra transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -235,18 +235,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_transaction_calculate-min-required-utxo.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_transaction_calculate-min-required-utxo.cli index 30e8b1b4e..fec86f4c2 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_transaction_calculate-min-required-utxo.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_transaction_calculate-min-required-utxo.cli @@ -4,9 +4,9 @@ Usage: cardano-cli allegra transaction calculate-min-required-utxo --protocol-pa | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_transaction_calculate-min-value.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_transaction_calculate-min-value.cli index 0dc47a360..3741604c0 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_transaction_calculate-min-value.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_transaction_calculate-min-value.cli @@ -4,9 +4,9 @@ Usage: cardano-cli allegra transaction calculate-min-value --protocol-params-fil | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_transaction_build-raw.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_transaction_build-raw.cli index 0a0e32399..54f6e1c20 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_transaction_build-raw.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_transaction_build-raw.cli @@ -43,9 +43,9 @@ Usage: cardano-cli alonzo transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -235,18 +235,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_transaction_calculate-min-required-utxo.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_transaction_calculate-min-required-utxo.cli index 3d261c305..12c2131b8 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_transaction_calculate-min-required-utxo.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_transaction_calculate-min-required-utxo.cli @@ -4,9 +4,9 @@ Usage: cardano-cli alonzo transaction calculate-min-required-utxo --protocol-par | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_transaction_calculate-min-value.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_transaction_calculate-min-value.cli index 7cdb07083..82aa80759 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_transaction_calculate-min-value.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_transaction_calculate-min-value.cli @@ -4,9 +4,9 @@ Usage: cardano-cli alonzo transaction calculate-min-value --protocol-params-file | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_build-estimate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_build-estimate.cli index 2bbe53e6d..f9493e25f 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_build-estimate.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_build-estimate.cli @@ -46,9 +46,9 @@ Usage: cardano-cli babbage transaction build-estimate | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -245,18 +245,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_build-raw.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_build-raw.cli index 447606512..4cae74ffb 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_build-raw.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_build-raw.cli @@ -43,9 +43,9 @@ Usage: cardano-cli babbage transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -235,18 +235,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_build.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_build.cli index b5cb8c289..d77387398 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_build.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_build.cli @@ -47,9 +47,9 @@ Usage: cardano-cli babbage transaction build --socket-path SOCKET_PATH | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -242,18 +242,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_calculate-min-required-utxo.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_calculate-min-required-utxo.cli index a84eb40fe..8833d9523 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_calculate-min-required-utxo.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_calculate-min-required-utxo.cli @@ -4,9 +4,9 @@ Usage: cardano-cli babbage transaction calculate-min-required-utxo --protocol-pa | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_calculate-min-value.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_calculate-min-value.cli index 119792d5c..6b228fb63 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_calculate-min-value.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_transaction_calculate-min-value.cli @@ -4,9 +4,9 @@ Usage: cardano-cli babbage transaction calculate-min-value --protocol-params-fil | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_build-estimate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_build-estimate.cli index 8e5179529..1a4cb1862 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_build-estimate.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_build-estimate.cli @@ -46,9 +46,9 @@ Usage: cardano-cli conway transaction build-estimate | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -278,18 +278,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_build-raw.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_build-raw.cli index 85eb8d4d2..36f958bb0 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_build-raw.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_build-raw.cli @@ -43,9 +43,9 @@ Usage: cardano-cli conway transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -268,18 +268,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_build.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_build.cli index f20cfc681..7f3556ec5 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_build.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_build.cli @@ -47,9 +47,9 @@ Usage: cardano-cli conway transaction build --socket-path SOCKET_PATH | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -268,18 +268,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_calculate-min-required-utxo.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_calculate-min-required-utxo.cli index 9aacee8e6..5555b4d15 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_calculate-min-required-utxo.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_calculate-min-required-utxo.cli @@ -4,9 +4,9 @@ Usage: cardano-cli conway transaction calculate-min-required-utxo --protocol-par | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_calculate-min-value.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_calculate-min-value.cli index 49ca4f147..c76b826a5 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_calculate-min-value.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_transaction_calculate-min-value.cli @@ -4,9 +4,9 @@ Usage: cardano-cli conway transaction calculate-min-value --protocol-params-file | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_build-estimate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_build-estimate.cli index a944d0774..3c7712cc5 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_build-estimate.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_build-estimate.cli @@ -46,9 +46,9 @@ Usage: cardano-cli latest transaction build-estimate | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -278,18 +278,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_build-raw.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_build-raw.cli index 7142dfae2..013d504bd 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_build-raw.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_build-raw.cli @@ -43,9 +43,9 @@ Usage: cardano-cli latest transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -268,18 +268,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_build.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_build.cli index 256b4ec1c..8a3e33fff 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_build.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_build.cli @@ -47,9 +47,9 @@ Usage: cardano-cli latest transaction build --socket-path SOCKET_PATH | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -268,18 +268,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_calculate-min-required-utxo.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_calculate-min-required-utxo.cli index 1422c5e6f..dd080b44c 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_calculate-min-required-utxo.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_calculate-min-required-utxo.cli @@ -4,9 +4,9 @@ Usage: cardano-cli latest transaction calculate-min-required-utxo --protocol-par | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_calculate-min-value.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_calculate-min-value.cli index b34545413..905757f99 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_calculate-min-value.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_transaction_calculate-min-value.cli @@ -4,9 +4,9 @@ Usage: cardano-cli latest transaction calculate-min-value --protocol-params-file | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_transaction_build-raw.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_transaction_build-raw.cli index bf5f201c6..d86ae9559 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_transaction_build-raw.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_transaction_build-raw.cli @@ -43,9 +43,9 @@ Usage: cardano-cli mary transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -235,18 +235,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_transaction_calculate-min-required-utxo.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_transaction_calculate-min-required-utxo.cli index 9448058cc..5a1c54557 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_transaction_calculate-min-required-utxo.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_transaction_calculate-min-required-utxo.cli @@ -4,9 +4,9 @@ Usage: cardano-cli mary transaction calculate-min-required-utxo --protocol-param | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_transaction_calculate-min-value.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_transaction_calculate-min-value.cli index 20334989b..ca89e684d 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_transaction_calculate-min-value.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_transaction_calculate-min-value.cli @@ -4,9 +4,9 @@ Usage: cardano-cli mary transaction calculate-min-value --protocol-params-file F | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_transaction_build-raw.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_transaction_build-raw.cli index 713f3e8ec..8c57f16c8 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_transaction_build-raw.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_transaction_build-raw.cli @@ -43,9 +43,9 @@ Usage: cardano-cli shelley transaction build-raw | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -235,18 +235,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_transaction_calculate-min-required-utxo.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_transaction_calculate-min-required-utxo.cli index b5ea8291d..93ba85815 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_transaction_calculate-min-required-utxo.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_transaction_calculate-min-required-utxo.cli @@ -4,9 +4,9 @@ Usage: cardano-cli shelley transaction calculate-min-required-utxo --protocol-pa | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_transaction_calculate-min-value.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_transaction_calculate-min-value.cli index 17de3eef2..11592b9c5 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_transaction_calculate-min-value.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_transaction_calculate-min-value.cli @@ -4,9 +4,9 @@ Usage: cardano-cli shelley transaction calculate-min-value --protocol-params-fil | --tx-out-datum-hash-cbor-file CBOR_FILE | --tx-out-datum-hash-file JSON_FILE | --tx-out-datum-hash-value JSON_VALUE - | --tx-out-datum-embed-cbor-file CBOR_FILE - | --tx-out-datum-embed-file JSON_FILE - | --tx-out-datum-embed-value JSON_VALUE + | --tx-out-supplemental-datum-cbor-file CBOR_FILE + | --tx-out-supplemental-datum-file JSON_FILE + | --tx-out-supplemental-datum-value JSON_VALUE | --tx-out-inline-datum-cbor-file CBOR_FILE | --tx-out-inline-datum-file JSON_FILE | --tx-out-inline-datum-value JSON_VALUE @@ -37,18 +37,19 @@ Available options: the script datum given here. There is no schema: (almost) any JSON value is supported, including top-level strings and numbers. - --tx-out-datum-embed-cbor-file CBOR_FILE - The script datum to embed in the tx for this output, - in the given file. The file has to be in CBOR format. - --tx-out-datum-embed-file JSON_FILE - The script datum to embed in the tx for this output, - in the given file. The file must follow the detailed - JSON schema for script data. - --tx-out-datum-embed-value JSON_VALUE - The script datum to embed in the tx for this output, - given here. There is no schema: (almost) any JSON - value is supported, including top-level strings and - numbers. + --tx-out-supplemental-datum-cbor-file CBOR_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file has to be in + CBOR format. + --tx-out-supplemental-datum-file JSON_FILE + The supplemental script datum to embed in the tx for + this output, in the given file. The file must follow + the detailed JSON schema for script data. + --tx-out-supplemental-datum-value JSON_VALUE + The supplemental script datum to embed in the tx for + this output, given here. There is no schema: (almost) + any JSON value is supported, including top-level + strings and numbers. --tx-out-inline-datum-cbor-file CBOR_FILE The script datum to embed in the tx output as an inline datum, in the given file. The file has to be