xrpl
    Preparing search index...

    Interface ConsensusStream

    The consensus stream sends consensusPhase messages when the consensus process changes phase. The message contains the new phase of consensus the server is in.

    interface ConsensusStream {
        consensus: "open" | "establish" | "accepted";
        type: "consensusPhase";
    }

    Hierarchy

    • BaseStream
      • ConsensusStream
    Index

    Properties

    Properties

    consensus: "open" | "establish" | "accepted"

    The new consensus phase the server is in. Possible values are open, establish, and accepted.

    type: "consensusPhase"