Skip to main content

HydraGreetingMessage

export type HydraGreetingMessage = {
  headStatus: "Idle"
    | "Initializing"
    | "Open"
    | "Closed"
    | "FanoutPossible"
    | "Final"
  hydraHeadId??: string
  hydraNodeVersion: string
  me: {vkey: string}
  snapshotUtxo??: Record<string, HydraTxOutput>
  tag: "Greetings"
  timestamp??: string
}