diff --git a/CHANGELOG.md b/CHANGELOG.md index 074d0e93684..5abc571116d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,13 +24,14 @@ changes. - Renamed `HasInlineDatums` type class to `IsBabbageEraOnwards`. Use `babbageEraOnwards` to produce witnesses for features from babbage onwards. -- New top-level offline mode command, `offline` - - Initializes ledger via `--initial-utxo` parameter, and does not connect to a - cardano-node. +- New `offline` sub-command for `hydra-node`: + - Initializes a head with given `--initial-utxo` parameter, and does not + connect to the Cardano network. + - Transactions submitted on the L2 are validated as usual, where the offline + chain simulates time passing in slots. + - The `--ledger-genesis` option allows to give a shelley genesis file to + configure start time and slot length of the simulated chain time. -- Hydra.Options split into Hydra.Options.Common, Hydra.Options.Offline, - Hydra.Options.Online, re-exported from Hydra.Options. - - The `hydra-node` now also has a default `--node-id` (`"hydra-node-1"`) to simplify configuration. diff --git a/hydra-node/src/Hydra/Options.hs b/hydra-node/src/Hydra/Options.hs index 85b4328ef1a..cea3b0275b7 100644 --- a/hydra-node/src/Hydra/Options.hs +++ b/hydra-node/src/Hydra/Options.hs @@ -438,7 +438,7 @@ ledgerGenesisFileParser = <> metavar "FILE" <> value Nothing <> showDefault - <> help "File containing ledger genesis parameters for the simulated L1 in onffline mode." + <> help "File containing shelley genesis parameters for the simulated L1 in offline mode." ) directChainConfigParser :: Parser DirectChainConfig