Module

Cardano.Kupmios

Re-exports from Cardano.Kupmios.KupmiosM

#ParKupmiosM

#KupmiosM

#KupmiosEnv

type KupmiosEnv = { config :: KupmiosConfig }

KupmiosEnv contains everything needed for KupmiosM to run.

Instances

#KupmiosConfig

type KupmiosConfig = { customLogger :: Maybe (LogLevel -> Message -> Aff Unit), kupoConfig :: ServerConfig, logLevel :: LogLevel, ogmiosConfig :: ServerConfig, suppressLogs :: Boolean }

KupmiosConfig contains a complete specification on how to initialize a KupmiosM environment. It includes:

  • server parameters for all the services
  • network ID
  • logging level
  • optional custom logger

#ClusterSetup

type ClusterSetup = { keys :: { payment :: PrivatePaymentKey, stake :: Maybe PrivateStakeKey }, kupoConfig :: ServerConfig, ogmiosConfig :: ServerConfig }

Cluster setup contains everything that is needed to run a Contract on a local cluster: paramters to connect to the services and private keys that are pre-funded with Ada on that cluster

#handleAffjaxResponse

handleAffjaxResponse :: forall (result :: Type). DecodeAeson result => Either Error (Response String) -> Either ClientError result

Re-exports from Cardano.Kupmios.Kupo

#getOutputAddressesByTxHash

getOutputAddressesByTxHash :: TransactionHash -> KupmiosM (Either ClientError (Array Address))

Specialized function to get addresses only, without resolving script references. Used internally.

Re-exports from Cardano.Kupmios.Logging

#Logger

#logTrace'

logTrace' :: forall (m :: Type -> Type). MonadLogger m => String -> m Unit

Re-exports from Cardano.Kupmios.Ogmios

#getChainTip

Re-exports from Cardano.Kupmios.Ogmios.CurrentEpoch

#getCurrentEpoch

getCurrentEpoch :: KupmiosM CurrentEpoch

Get the current Epoch. Details can be found https://ogmios.dev/api/ under "currentEpoch" query

Re-exports from Cardano.Kupmios.Ogmios.EraSummaries

#getEraSummaries

getEraSummaries :: KupmiosM EraSummaries

Get EraSummaries as used for Slot arithemetic. Details can be found https://ogmios.dev/api/ under "eraSummaries" query

Re-exports from Cardano.Kupmios.Ogmios.Helpers

#sysStartToOgmiosTimestamp

#sysStartFromOgmiosTimestampUnsafe

#sysStartFromOgmiosTimestamp

sysStartFromOgmiosTimestamp :: String -> Either String SystemStart

Attempts to parse SystemStart from Ogmios timestamp string.

Re-exports from Cardano.Kupmios.Ogmios.Pools

Modules