From 66109e81dadd7d4bdf3210d30e478f7e2d7d8878 Mon Sep 17 00:00:00 2001 From: Koz Ross Date: Mon, 2 Oct 2023 07:21:01 +1300 Subject: [PATCH] Export UseMnemonic and ConnectToGenericCip30 from Contract.Config --- CHANGELOG.md | 2 ++ src/Contract/Config.purs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9743d7070..3f05391f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -100,6 +100,8 @@ 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` - `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))