Module

Cardano.Ogmios.Mempool

A module for interacting with Ogmios' Local TX Monitor These functions only work with Ogmios backend (not Blockfrost!). https://ogmios.dev/mini-protocols/local-tx-monitor/

#fetchMempoolTxs

fetchMempoolTxs :: MempoolSnapshotAcquired -> MempoolM (Array Transaction)

Recursively request the next TX in the mempool until Ogmios does not respond with a new TX.

#withMempoolSnapshot

withMempoolSnapshot :: forall a. (MempoolSnapshotAcquired -> MempoolM a) -> MempoolM a

A bracket-style function for working with mempool snapshots - ensures release in the presence of exceptions

#MempoolEnv

type MempoolEnv = { customLogger :: Maybe (LogLevel -> Message -> Aff Unit), logLevel :: LogLevel, ogmiosWs :: OgmiosWebSocket, suppressLogs :: Boolean }

Instances

#MempoolM

Re-exports from Cardano.Ogmios.Internal.Mempool

#WebSocket

data WebSocket listeners

Constructors

#OgmiosListeners

#MempoolTransaction

#MempoolSizeAndCapacity

newtype MempoolSizeAndCapacity

The acquired snapshot’s size (in bytes), number of transactions, and capacity (in bytes).

Constructors

Instances

#ListenerSet

type ListenerSet (request :: Type) (response :: Type) = { addMessageListener :: ListenerId -> (Either OgmiosDecodeError response -> Effect Unit) -> Effect Unit, removeMessageListener :: ListenerId -> Effect Unit }

#ListenerId

#HasTxR

newtype HasTxR

Constructors

Instances

#underlyingWebSocket

#mkRequestAff

mkRequestAff :: forall (request :: Type) (response :: Type) (listeners :: Type). listeners -> JsWebSocket -> Logger -> JsonRpc2Call request response -> (listeners -> ListenerSet request response) -> request -> Aff response

#mkOgmiosWebSocketAff

#mkOgmiosCallType

mkOgmiosCallType :: forall (a :: Type) (i :: Type) (o :: Type). EncodeAeson (JsonRpc2Request a) => DecodeOgmios o => { method :: String, params :: i -> a } -> JsonRpc2Call i o

#mkListenerSet

mkListenerSet :: forall (request :: Type) (response :: Type). DecodeOgmios response => Dispatcher -> ListenerSet request response

#listeners

listeners :: forall (listeners :: Type). WebSocket listeners -> listeners

Modules