diff --git a/CHANGELOG.md b/CHANGELOG.md index 9743d7070..07604d1d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -100,6 +100,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### Fixed +- `UseMnemonic` and `ConnectToGenericCip30` constructors now exported from + `Contract.Config` + ([#1546])(https://github.com/Plutonomicon/cardano-transaction-lib/pull/1546)) - `waitUntilSlot` can now be used with a slot far in the future ([#1490](https://github.com/Plutonomicon/cardano-transaction-lib/pull/1490)) - `Unable to convert Slot to POSIXTime` error of `waitUntilSlot` doesn't omit important error details anymore ([#1458](https://github.com/Plutonomicon/cardano-transaction-lib/issues/1458)) - Performance issues when using Eternl in multi-address mode ([#1440](https://github.com/Plutonomicon/cardano-transaction-lib/pull/1440)) diff --git a/src/Contract/Config.purs b/src/Contract/Config.purs index 22eb6ac7a..9bf4a5dee 100644 --- a/src/Contract/Config.purs +++ b/src/Contract/Config.purs @@ -82,6 +82,7 @@ import Ctl.Internal.Wallet.Spec , StakeKeyPresence(WithStakeKey, WithoutStakeKey) , WalletSpec ( UseKeys + , UseMnemonic , ConnectToNami , ConnectToGero , ConnectToFlint @@ -89,6 +90,7 @@ import Ctl.Internal.Wallet.Spec , ConnectToLode , ConnectToNuFi , ConnectToLace + , ConnectToGenericCip30 ) ) import Data.Log.Level (LogLevel(Trace, Debug, Info, Warn, Error))