from message tendermint.abci.Request

Hierarchy

Constructors

Properties

value:
    | {
        case: "echo";
        value: RequestEcho;
    }
    | {
        case: "flush";
        value: RequestFlush;
    }
    | {
        case: "info";
        value: RequestInfo;
    }
    | {
        case: "initChain";
        value: RequestInitChain;
    }
    | {
        case: "query";
        value: RequestQuery;
    }
    | {
        case: "beginBlock";
        value: RequestBeginBlock;
    }
    | {
        case: "checkTx";
        value: RequestCheckTx;
    }
    | {
        case: "deliverTx";
        value: RequestDeliverTx;
    }
    | {
        case: "endBlock";
        value: RequestEndBlock;
    }
    | {
        case: "commit";
        value: RequestCommit;
    }
    | {
        case: "listSnapshots";
        value: RequestListSnapshots;
    }
    | {
        case: "offerSnapshot";
        value: RequestOfferSnapshot;
    }
    | {
        case: "loadSnapshotChunk";
        value: RequestLoadSnapshotChunk;
    }
    | {
        case: "applySnapshotChunk";
        value: RequestApplySnapshotChunk;
    }
    | {
        case: "prepareProposal";
        value: RequestPrepareProposal;
    }
    | {
        case: "processProposal";
        value: RequestProcessProposal;
    }
    | {
        case: undefined;
        value?: undefined;
    } = ...

Type declaration

  • case: "echo"
  • value: RequestEcho

    from field: tendermint.abci.RequestEcho echo = 1;

Type declaration

  • case: "flush"
  • value: RequestFlush

    from field: tendermint.abci.RequestFlush flush = 2;

Type declaration

  • case: "info"
  • value: RequestInfo

    from field: tendermint.abci.RequestInfo info = 3;

Type declaration

  • case: "initChain"
  • value: RequestInitChain

    from field: tendermint.abci.RequestInitChain init_chain = 5;

Type declaration

  • case: "query"
  • value: RequestQuery

    from field: tendermint.abci.RequestQuery query = 6;

Type declaration

  • case: "beginBlock"
  • value: RequestBeginBlock

    from field: tendermint.abci.RequestBeginBlock begin_block = 7;

Type declaration

  • case: "checkTx"
  • value: RequestCheckTx

    from field: tendermint.abci.RequestCheckTx check_tx = 8;

Type declaration

  • case: "deliverTx"
  • value: RequestDeliverTx

    from field: tendermint.abci.RequestDeliverTx deliver_tx = 9;

Type declaration

  • case: "endBlock"
  • value: RequestEndBlock

    from field: tendermint.abci.RequestEndBlock end_block = 10;

Type declaration

  • case: "commit"
  • value: RequestCommit

    from field: tendermint.abci.RequestCommit commit = 11;

Type declaration

  • case: "listSnapshots"
  • value: RequestListSnapshots

    from field: tendermint.abci.RequestListSnapshots list_snapshots = 12;

Type declaration

  • case: "offerSnapshot"
  • value: RequestOfferSnapshot

    from field: tendermint.abci.RequestOfferSnapshot offer_snapshot = 13;

Type declaration

  • case: "loadSnapshotChunk"
  • value: RequestLoadSnapshotChunk

    from field: tendermint.abci.RequestLoadSnapshotChunk load_snapshot_chunk = 14;

Type declaration

  • case: "applySnapshotChunk"
  • value: RequestApplySnapshotChunk

    from field: tendermint.abci.RequestApplySnapshotChunk apply_snapshot_chunk = 15;

Type declaration

  • case: "prepareProposal"
  • value: RequestPrepareProposal

    from field: tendermint.abci.RequestPrepareProposal prepare_proposal = 16;

Type declaration

  • case: "processProposal"
  • value: RequestProcessProposal

    from field: tendermint.abci.RequestProcessProposal process_proposal = 17;

from oneof tendermint.abci.Request.value

fields: FieldList = ...
runtime: ProtoRuntime = proto3
typeName: "tendermint.abci.Request" = "tendermint.abci.Request"

Methods