hydra-node-0.21.0: The Hydra node
Safe HaskellSafe-Inferred
LanguageGHC2021

Hydra.API.Server

Synopsis

Documentation

newtype Server tx m Source #

Handle to provide a means for sending server outputs to clients.

Constructors

Server 

Fields

withAPIServer :: forall tx. IsChainState tx => APIServerConfig -> Environment -> Party -> EventSource (StateEvent tx) IO -> Tracer IO APIServerLog -> Chain tx IO -> PParams LedgerEra -> ServerOutputFilter tx -> (ClientInput tx -> IO ()) -> ((EventSink (StateEvent tx) IO, Server tx IO) -> IO ()) -> IO () Source #

setupServerNotification :: IO (NotifyServerRunning, WaitForServer) Source #

Setup notification and waiter to ensure that something only runs after the server is actually listening.

mkTimedServerOutputFromStateEvent :: IsTx tx => StateEvent tx -> Maybe (TimedServerOutput tx) Source #

Defines the subset of StateEvent that should be sent as TimedServerOutput to clients.

projectPendingDeposits :: IsTx tx => [TxIdType tx] -> StateChanged tx -> [TxIdType tx] Source #

Projection to obtain the list of pending deposits.

projectCommitInfo :: CommitInfo -> StateChanged tx -> CommitInfo Source #

Projection to obtain CommitInfo needed to draft commit transactions. NOTE: We only want to project HeadId when the Head is in the Initializing state since this is when Head parties need to commit some funds.

projectInitializingHeadId :: Maybe HeadId -> StateChanged tx -> Maybe HeadId Source #

Projection to obtain the HeadId needed to draft a commit transaction. NOTE: We only want to project HeadId when the Head is in the Initializing state since this is when Head parties need to commit some funds.

projectHeadStatus :: HeadStatus -> StateChanged tx -> HeadStatus Source #

Projection function related to headStatus field in Greetings message.

projectSnapshotUtxo :: Monoid (UTxOType tx) => Maybe (UTxOType tx) -> StateChanged tx -> Maybe (UTxOType tx) Source #

Projection of latest confirmed snapshot UTxO.

projectSeenSnapshot :: SeenSnapshot tx -> StateChanged tx -> SeenSnapshot tx Source #

Projection of latest seen snapshot.

projectSnapshotConfirmed :: Maybe (ConfirmedSnapshot tx) -> StateChanged tx -> Maybe (ConfirmedSnapshot tx) Source #

Projection of latest confirmed snapshot.