-
Notifications
You must be signed in to change notification settings - Fork 23
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
Sort transaction fields in CBOR representation #785
base: master
Are you sure you want to change the base?
Conversation
3ec5bc6
to
bbd8b1a
Compare
d4a321c
to
e773a09
Compare
2b767ad
to
e788250
Compare
e788250
to
80d439d
Compare
cardano-api/src/Cardano/Api/Internal/Serialise/Cbor/Canonical.hs
Outdated
Show resolved
Hide resolved
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, one comment about naming. I can approve after that's addressed.
import Data.List (sortBy) | ||
import Data.Tuple.Extra (both) | ||
|
||
-- | This function implements CBOR canonicalisation: |
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.
I would be clear we side step the other requirements of cip-21 by "canonicalizing" the bytes directly instead of "canonicalizing" a transaction body Haskell value. For instance we don't exclude proposal procedures and updates as stipulated in cip-21: https://github.com/cardano-foundation/CIPs/tree/master/CIP-0021#unsupported-entries.
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.
Added clarification.
-> Either DecoderError Term | ||
decodeTermFromBs input = do | ||
(leftover, result) <- | ||
first (DecoderErrorDeserialiseFailure "Cannot decode Term") $ |
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.
Term
has a Show
instance. May be worthwhile including it in the error message.
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.
But you don't have Term
at this stage. I think DecoderDeserialiseFailure
stores enough information to troubleshoot this:
DecoderErrorDeserialiseFailure :: Text -> CBOR.Read.DeserialiseFailure -> DecoderError
DeserialiseFailure :: ByteOffset -> String -> DeserialiseFailure
I can add the input argument which didn't get deserialised to the error message, in hex/base64 I guess.
-> File content Out | ||
-> Tx era | ||
-> IO (Either (FileError ()) ()) | ||
writeTxFileTextEnvelopeCanonicalCddl sbe = writeTxFileTextEnvelopeCddl' sbe True |
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.
Not in this PR but we need to remove all mention of CDDL from cardano-api
. I only introduced it because we had a non-CDDL transaction body format but that has been removed.
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.
I've created: #795
Feel free to add more clarifications there.
:: () | ||
=> ShelleyBasedEra era | ||
-> Bool |
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.
This should be a separate function. writeTxFileTextEnvelopeCanonical
or something like that as it's specific to the HW wallet. I don't see the need to parameterize this on a Bool
and call it in our non-canonicalized functions. If you insist on parameterizing it in this fashion then use a sum type instead of Bool
.
We should also point out with a comment that it's not fully cip-21 compliant. For example we don't support: https://github.com/cardano-foundation/CIPs/tree/master/CIP-0021#unsupported-entries and we shouldn't IMO.
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.
Refactored the functions. Added more information in haddock.
a4fd0cb
to
e840bd6
Compare
e840bd6
to
43ecd64
Compare
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 work 👍
canonicaliseTextEnvelopeCbor te = do | ||
let canonicalisedTxBs = | ||
either | ||
(\err -> error $ "Impossible - deserialisation of just serialised bytes failed " <> show err) |
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.
Although it's impossible I would prepend writeTxFileTextEnvelopeCanonicalCddl
to the error message.
serialiseTxLedgerCddl era' tx' = | ||
shelleyBasedEraConstraints era' $ | ||
serialiseToTextEnvelope (Just (TextEnvelopeDescr "Ledger Cddl Format")) tx' | ||
serialiseTxToTextEnvelope :: ShelleyBasedEra era -> Tx era -> TextEnvelope |
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.
👍
Changelog
Context
Implements:
Checklist