Enum EventType
An enumeration with the different events triggered by a node.
Assembly: Casper.Network.SDK.dll
Syntax
public enum EventType : int
Fields
Name |
Description |
All |
Add All to an event callback to catch all events triggered by a node.
|
ApiVersion |
Add ApiVersion to an event callback to catch this event containing the version of the node's API server.
This event will always be the first sent to a new client, and will have no associated event ID provided.
|
BlockAdded |
Add BlockAdded to an event callback to catch events due to a new Block generated by the network.
|
DeployAccepted |
Add DeployAccepted to an event callback to catch events due to a new Deploy received for processing in the network.
|
DeployExpired |
Add DeployExpired to an event callback to catch events due to an expired Deploy.
|
DeployProcessed |
Add DeployProcessed to an event callback to catch events due to a new Deploy processed by the network.
|
Fault |
Add Fault to an event callback to catch events due to a validator's fault in an era.
|
FinalitySignature |
Add FinalitySignature to an event callback to catch events due to block signature finalization.
|
Step |
Add Step to an event callback to catch events due to a new step.
|