File tree Expand file tree Collapse file tree 5 files changed +874
-12
lines changed
test/cardano-api-test/Test/Cardano/Api Expand file tree Collapse file tree 5 files changed +874
-12
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ module Cardano.Api.Experimental
2727
2828 -- ** Transaction fee related
2929 , estimateBalancedTxBody
30+ , evaluateTransactionFee
3031
3132 -- ** Era-related
3233 , BabbageEra
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ import Cardano.Ledger.Conway qualified as Ledger
5555import Cardano.Ledger.Core qualified as Ledger
5656import Cardano.Ledger.Hashes qualified as L
5757import Cardano.Ledger.State qualified as L
58+ import Cardano.Ledger.Val qualified as L
5859
5960import Control.Monad.Error.Class
6061import Data.Aeson (FromJSON (.. ), ToJSON , withText )
@@ -309,6 +310,7 @@ type EraCommonConstraints era =
309310 , L. EraTxCert (LedgerEra era )
310311 , L. EraTxOut (LedgerEra era )
311312 , L. EraUTxO (LedgerEra era )
313+ , L. Val (L. Value (LedgerEra era ))
312314 , L. Value (LedgerEra era ) ~ L. MaryValue
313315 , FromCBOR (ChainDepState (ConsensusProtocol era ))
314316 , L. NativeScript (LedgerEra era ) ~ L. Timelock (LedgerEra era )
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ module Cardano.Api.Experimental.Tx.Internal.BodyContent.New
2020 , TxVotingProcedures (.. )
2121 , TxWithdrawals (.. )
2222 , TxBodyContent (.. )
23+ , Datum (.. )
2324 , defaultTxBodyContent
2425 , collectTxBodyScriptWitnessRequirements
2526 , makeUnsignedTx
@@ -51,6 +52,9 @@ module Cardano.Api.Experimental.Tx.Internal.BodyContent.New
5152 , setTxVotingProcedures
5253 , setTxWithdrawals
5354
55+ -- * Internal conversions
56+ , convProposalProcedures
57+
5458 -- * Legacy conversions
5559 , legacyDatumToDatum
5660 , fromLegacyTxOut
You can’t perform that action at this time.
0 commit comments