Skip to content
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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

carbolymer
Copy link
Contributor

@carbolymer carbolymer commented Mar 19, 2025

Changelog

- description: |
    Sort transaction fields in CBOR representation
# uncomment types applicable to the change:
  type:
   - feature        # introduces a new feature
  # - breaking       # the API has changed in a breaking way
   - compatible     # the API has changed but is non-breaking
  # - optimisation   # measurable performance improvements
  # - refactoring    # QoL changes
  # - bugfix         # fixes a defect
  # - test           # fixes/modifies tests
  # - maintenance    # not directly related to the code
  # - release        # related to a new release preparation
  # - documentation  # change in code docs, haddocks...

Context

Implements:

Checklist

  • Commit sequence broadly makes sense and commits have useful messages
  • New tests are added if needed and existing tests are updated. See Running tests for more details
  • Self-reviewed the diff

@carbolymer carbolymer self-assigned this Mar 19, 2025
@carbolymer carbolymer force-pushed the mgalazyn/feature/sort-tx-maps branch from 3ec5bc6 to bbd8b1a Compare March 20, 2025 18:08
@carbolymer carbolymer force-pushed the mgalazyn/feature/sort-tx-maps branch from e788250 to 80d439d Compare March 27, 2025 14:21
@carbolymer carbolymer marked this pull request as ready for review March 27, 2025 14:25
Copy link
Contributor

@Jimbo4350 Jimbo4350 left a 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:
Copy link
Contributor

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.

Copy link
Contributor Author

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") $
Copy link
Contributor

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.

Copy link
Contributor Author

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
Copy link
Contributor

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.

Copy link
Contributor Author

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
Copy link
Contributor

@Jimbo4350 Jimbo4350 Mar 28, 2025

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.

Copy link
Contributor Author

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.

@carbolymer carbolymer force-pushed the mgalazyn/feature/sort-tx-maps branch from a4fd0cb to e840bd6 Compare March 31, 2025 15:11
@carbolymer carbolymer force-pushed the mgalazyn/feature/sort-tx-maps branch from e840bd6 to 43ecd64 Compare April 1, 2025 13:28
Copy link
Contributor

@Jimbo4350 Jimbo4350 left a 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)
Copy link
Contributor

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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants