Type alias OrchestratorState

OrchestratorState: {
    nextHopIndex: number;
    opIndex: number;
    systemConfirmationProof: ((brid) => Promise<Operation>);
    tx: GTX;
}

Type declaration

  • nextHopIndex: number

    the index in path where the next transaction is supposed to go

  • opIndex: number
  • systemConfirmationProof: ((brid) => Promise<Operation>)

    A function that returns a promise of an operation

    Returns

    a promise of an operation that is a system confirmation proof

      • (brid): Promise<Operation>
      • Parameters

        • brid: Buffer

          the brid of the chain to get the proof for

        Returns Promise<Operation>

  • tx: GTX