github.com/celestiaorg/celestia-node@v0.15.0-beta.1/share/p2p/shrexeds/pb/extended_data_square.proto (about)

     1  syntax = "proto3";
     2  
     3  message EDSRequest {
     4    bytes hash = 1; // identifies the requested EDS.
     5  }
     6  
     7  enum Status {
     8    INVALID = 0;
     9    OK = 1; // data found
    10    NOT_FOUND = 2; // data not found
    11    INTERNAL = 3; // internal server error
    12  }
    13  
    14  message EDSResponse {
    15    Status status = 1;
    16  }