23 lines
487 B
Protocol Buffer
Raw Normal View History

2021-03-10 16:22:49 +11:00
syntax = "proto3";
message RateLimitProof {
bytes proof = 1;
bytes merkle_root = 2;
bytes epoch = 3;
bytes share_x = 4;
bytes share_y = 5;
bytes nullifier = 6;
bytes rlnIdentifier = 7;
}
2021-05-03 16:26:02 +10:00
message WakuMessage {
2021-03-10 16:22:49 +11:00
optional bytes payload = 1;
2021-04-08 22:32:36 +10:00
optional string content_topic = 2;
2021-03-10 16:22:49 +11:00
optional uint32 version = 3;
optional double timestamp_deprecated = 4;
optional sint64 timestamp = 10;
optional RateLimitProof rate_limit_proof = 21;
optional bool ephemeral = 31;
2021-03-10 16:22:49 +11:00
}