-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump cardano-api, cardano-node #245
Conversation
Build is broken, I suspect some bounds are wrong on a couple of CHaP packages |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -88,7 +87,6 @@ module Convex.CardanoApi.Lenses ( | |||
|
|||
-- * Datums | |||
_TxOutDatumInline, | |||
_TxOutDatumInTx, | |||
_TxOutDatumHash, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wasn't just TxOutDatumInTx
been renamed to TxOutSupplementalDatum
? Then, we
should have a prism for it.
@@ -416,16 +407,16 @@ _TxInsCollateralIso = iso from to | |||
[] -> C.TxInsCollateralNone | |||
xs -> C.TxInsCollateral C.alonzoBasedEra xs | |||
|
|||
_TxMintValue :: (C.IsMaryBasedEra era) => Iso' (TxMintValue BuildTx era) (Value, Map PolicyId (ScriptWitness WitCtxMint era)) | |||
_TxMintValue :: forall era build. (C.IsMaryBasedEra era) => Iso' (TxMintValue build era) (Map PolicyId [(C.AssetName, Quantity, BuildTxWith build (ScriptWitness WitCtxMint era))]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, you managed to generalize the BuildTx!
cardano-api
to 10.6.0.0Cardano.Api.Extras
that has thesubstituteExecutionUnits
function. We need to keep this until it is exported bycardano-api
.