Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Hydra.API.ServerOutput
Synopsis
- data TimedServerOutput tx = TimedServerOutput {}
- data DecommitInvalidReason tx
- = DecommitTxInvalid {
- localUTxO :: UTxOType tx
- validationError :: ValidationError
- | DecommitAlreadyInFlight {
- otherDecommitTxId :: TxIdType tx
- = DecommitTxInvalid {
- data ClientMessage tx
- = CommandFailed {
- clientInput :: ClientInput tx
- state :: HeadState tx
- | PostTxOnChainFailed {
- postChainTx :: PostChainTx tx
- postTxError :: PostTxError tx
- = CommandFailed {
- data Greetings tx = Greetings {
- me :: Party
- headStatus :: HeadStatus
- hydraHeadId :: Maybe HeadId
- snapshotUtxo :: Maybe (UTxOType tx)
- hydraNodeVersion :: String
- data InvalidInput = InvalidInput {}
- data ServerOutput tx
- = NetworkConnected
- | NetworkDisconnected
- | NetworkVersionMismatch { }
- | PeerConnected { }
- | PeerDisconnected { }
- | HeadIsInitializing { }
- | Committed { }
- | HeadIsOpen { }
- | HeadIsClosed {
- headId :: HeadId
- snapshotNumber :: SnapshotNumber
- contestationDeadline :: UTCTime
- | HeadIsContested {
- headId :: HeadId
- snapshotNumber :: SnapshotNumber
- contestationDeadline :: UTCTime
- | ReadyToFanout {
- headId :: HeadId
- | HeadIsAborted { }
- | HeadIsFinalized { }
- | TxValid {
- headId :: HeadId
- transactionId :: TxIdType tx
- transaction :: tx
- | TxInvalid {
- headId :: HeadId
- utxo :: UTxOType tx
- transaction :: tx
- validationError :: ValidationError
- | SnapshotConfirmed {
- headId :: HeadId
- snapshot :: Snapshot tx
- signatures :: MultiSignature (Snapshot tx)
- | IgnoredHeadInitializing {
- headId :: HeadId
- contestationPeriod :: ContestationPeriod
- parties :: [Party]
- participants :: [OnChainId]
- | DecommitRequested {
- headId :: HeadId
- decommitTx :: tx
- utxoToDecommit :: UTxOType tx
- | DecommitInvalid {
- headId :: HeadId
- decommitTx :: tx
- decommitInvalidReason :: DecommitInvalidReason tx
- | DecommitApproved {
- headId :: HeadId
- decommitTxId :: TxIdType tx
- utxoToDecommit :: UTxOType tx
- | DecommitFinalized {
- headId :: HeadId
- decommitTxId :: TxIdType tx
- | CommitRecorded {
- headId :: HeadId
- utxoToCommit :: UTxOType tx
- pendingDeposit :: TxIdType tx
- deadline :: UTCTime
- | CommitApproved {
- headId :: HeadId
- utxoToCommit :: UTxOType tx
- | CommitFinalized {
- headId :: HeadId
- depositTxId :: TxIdType tx
- | CommitRecovered {
- headId :: HeadId
- recoveredUTxO :: UTxOType tx
- recoveredTxId :: TxIdType tx
- | SnapshotSideLoaded {
- headId :: HeadId
- snapshotNumber :: SnapshotNumber
- data WithUTxO
- data WithAddressedTx
- data ServerOutputConfig = ServerOutputConfig {}
- prepareServerOutput :: IsChainState tx => ServerOutputConfig -> TimedServerOutput tx -> ByteString
- removeSnapshotUTxO :: ByteString -> ByteString
- handleUtxoInclusion :: ServerOutputConfig -> (a -> a) -> a -> a
- data HeadStatus
- = Idle
- | Initializing
- | Open
- | Closed
- | FanoutPossible
- | Final
- data CommitInfo
- = CannotCommit
- | NormalCommit HeadId
- | IncrementalCommit HeadId
Documentation
data TimedServerOutput tx Source #
The type of messages sent to clients by the Server
.
Constructors
TimedServerOutput | |
Instances
data DecommitInvalidReason tx Source #
Constructors
DecommitTxInvalid | |
Fields
| |
DecommitAlreadyInFlight | |
Fields
|
Instances
data ClientMessage tx Source #
Individual messages as produced by the HeadLogic
in
the ClientEffect
.
Constructors
CommandFailed | |
Fields
| |
PostTxOnChainFailed | |
Fields
|
Instances
A friendly welcome message which tells a client something about the
node. Currently used for knowing what signing key the server uses (it
only knows one), HeadStatus
and optionally (if HeadIsOpen
or
SnapshotConfirmed
message is emitted) UTxO's present in the Hydra Head.
Constructors
Greetings | |
Fields
|
Instances
data InvalidInput Source #
Constructors
InvalidInput | |
Instances
data ServerOutput tx Source #
Constructors
NetworkConnected | |
NetworkDisconnected | |
NetworkVersionMismatch | |
Fields | |
PeerConnected | |
PeerDisconnected | |
HeadIsInitializing | |
Committed | |
HeadIsOpen | |
HeadIsClosed | |
Fields
| |
HeadIsContested | |
Fields
| |
ReadyToFanout | |
Fields
| |
HeadIsAborted | |
HeadIsFinalized | |
TxValid | Given transaction has been seen as valid in the Head. It is expected to
eventually be part of a |
Fields
| |
TxInvalid | Given transaction was not not applicable to the given UTxO in time and has been dropped. |
Fields
| |
SnapshotConfirmed | Given snapshot was confirmed and included transactions can be considered final. |
Fields
| |
IgnoredHeadInitializing | |
Fields
| |
DecommitRequested | |
Fields
| |
DecommitInvalid | |
Fields
| |
DecommitApproved | |
Fields
| |
DecommitFinalized | |
Fields
| |
CommitRecorded | |
Fields
| |
CommitApproved | |
Fields
| |
CommitFinalized | |
Fields
| |
CommitRecovered | |
Fields
| |
SnapshotSideLoaded | Snapshot was side-loaded, and the included transactions can be considered final. The local state has been reset, meaning pending transactions were pruned. Any signing round has been discarded, and the snapshot leader has changed accordingly. |
Fields
|
Instances
Whether or not to include full UTxO in server outputs.
Constructors
WithUTxO | |
WithoutUTxO |
data WithAddressedTx Source #
Whether or not to filter transaction server outputs by given address.
Constructors
WithAddressedTx Text | |
WithoutAddressedTx |
Instances
Show WithAddressedTx Source # | |
Defined in Hydra.API.ServerOutput | |
Eq WithAddressedTx Source # | |
Defined in Hydra.API.ServerOutput Methods (==) :: WithAddressedTx -> WithAddressedTx -> Bool Source # (/=) :: WithAddressedTx -> WithAddressedTx -> Bool Source # |
data ServerOutputConfig Source #
Constructors
ServerOutputConfig | |
Fields |
Instances
Show ServerOutputConfig Source # | |
Defined in Hydra.API.ServerOutput | |
Eq ServerOutputConfig Source # | |
Defined in Hydra.API.ServerOutput Methods (==) :: ServerOutputConfig -> ServerOutputConfig -> Bool Source # (/=) :: ServerOutputConfig -> ServerOutputConfig -> Bool Source # |
Arguments
:: IsChainState tx | |
=> ServerOutputConfig | Decide on tx representation |
-> TimedServerOutput tx | Server output |
-> ByteString | Final output |
Replaces the json encoded tx field with it's cbor representation.
NOTE: we deliberately pattern match on all ServerOutput
constructors in
handleTxOutput
so that we don't forget to update this function if they
change.
handleUtxoInclusion :: ServerOutputConfig -> (a -> a) -> a -> a Source #
data HeadStatus Source #
All possible Hydra states displayed in the API server outputs.
Constructors
Idle | |
Initializing | |
Open | |
Closed | |
FanoutPossible | |
Final |
Instances
data CommitInfo Source #
All information needed to distinguish behavior of the commit endpoint.
Constructors
CannotCommit | |
NormalCommit HeadId | |
IncrementalCommit HeadId |