go-waku/waku/v2/protocol/waku_store.proto

39 lines
665 B
Protocol Buffer
Raw Normal View History

2021-03-18 16:40:47 +00:00
syntax = "proto3";
package protocol;
import "waku_message.proto";
message Index {
bytes digest = 1;
double receivedTime = 2;
}
message PagingInfo {
2021-04-07 21:16:29 +00:00
uint64 pageSize = 1;
2021-03-18 16:40:47 +00:00
Index cursor = 2;
enum Direction {
2021-04-07 21:16:29 +00:00
BACKWARD = 0;
FORWARD = 1;
2021-03-18 16:40:47 +00:00
}
Direction direction = 3;
}
message HistoryQuery {
repeated uint32 topics = 1;
2021-04-07 21:16:29 +00:00
PagingInfo pagingInfo = 2; // used for pagination
double startTime = 3;
double endTime = 4;
2021-03-18 16:40:47 +00:00
}
message HistoryResponse {
repeated WakuMessage messages = 1;
2021-04-07 21:16:29 +00:00
PagingInfo pagingInfo = 2; // used for pagination
2021-03-18 16:40:47 +00:00
}
message HistoryRPC {
string request_id = 1;
HistoryQuery query = 2;
HistoryResponse response = 3;
2021-04-07 21:16:29 +00:00
}