Interface PendingOperationsV2

interface PendingOperationsV2 {
    branch_delayed: FailedProcessedOperation[];
    branch_refused: FailedProcessedOperation[];
    outdated: FailedProcessedOperation[];
    refused: FailedProcessedOperation[];
    unprocessed: Pick<OperationEntry,
        | "contents"
        | "branch"
        | "protocol"
        | "hash"
        | "signature">[];
    validated: Pick<OperationEntry,
        | "contents"
        | "branch"
        | "hash"
        | "signature">[];
}

Properties

branch_delayed: FailedProcessedOperation[]
branch_refused: FailedProcessedOperation[]
outdated: FailedProcessedOperation[]
refused: FailedProcessedOperation[]
unprocessed: Pick<OperationEntry,
    | "contents"
    | "branch"
    | "protocol"
    | "hash"
    | "signature">[]
validated: Pick<OperationEntry,
    | "contents"
    | "branch"
    | "hash"
    | "signature">[]