Interface IGraphInterval

Represents a graph interval.

See

  • id of type string represents the graph id.
  • is_final of type boolean represents if the graph is final.
  • is_stale of type boolean represents if the graph is stale.
  • is_in_blockclique of type boolean represents if the graph has been added to the blockclique.
  • slot of type ISlot represents the time slot when the graph was created.
  • creator of type string represents the creator of the graph.
  • parents of type Array<string> represents the parents of the graph.
interface IGraphInterval {
    creator: string;
    id: string;
    is_final: boolean;
    is_in_blockclique: boolean;
    is_stale: boolean;
    parents: string[];
    slot: ISlot;
}

Properties

creator: string
id: string
is_final: boolean
is_in_blockclique: boolean
is_stale: boolean
parents: string[]
slot: ISlot

Generated using TypeDoc