You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could we have a module for the specific UTxO type that is returned from querying via the cardano api that exports filtering and singleton functions. This module would be intended to be imported qualified, similarly to how people import the different types of haskell containers.
import qualified Cardano.Api.UTxO as UTxO
...
x = UTxO.singleton $
The text was updated successfully, but these errors were encountered:
In hydra we are using a lot of
Data.Map
style functions on a custom newtype definition for UTxO.https://github.com/cardano-scaling/hydra/blob/2943ad0e38e259d41dd547ba58844377ab51a73c/hydra-cardano-api/src/Cardano/Api/UTxO.hs#L55
Could we have a module for the specific UTxO type that is returned from querying via the cardano api that exports filtering and singleton functions. This module would be intended to be imported qualified, similarly to how people import the different types of haskell containers.
The text was updated successfully, but these errors were encountered: