| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Marconi.Types
Description
This module provides several type aliases and utility functions to deal with them.
Synopsis
- type TargetAddresses = NonEmpty (Address ShelleyAddr)
- type CurrentEra = BabbageEra
- pattern AsCurrentEra :: AsType CurrentEra
- pattern CurrentEra :: CardanoEra CurrentEra
- type TxOut = TxOut CtxTx CurrentEra
- type TxOutRef = TxIn
- txOutRef :: TxId -> TxIx -> TxIn
Addresses alias used to query marconi
type TargetAddresses = NonEmpty (Address ShelleyAddr) Source #
Typre represents non empty list of Bech32 Shelley compatable addresses
Aliases for the current Cardano era
type CurrentEra = BabbageEra Source #
An alias for the current era, to ease the transition from one era to the next one
pattern AsCurrentEra :: AsType CurrentEra Source #
pattern CurrentEra :: CardanoEra CurrentEra Source #
Aliases to ease concept mapping between plutus types and cardano types
A reference to a transaction output. This is a pair of a transaction reference, and an index indicating which of the outputs of that transaction we are referring to.