mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-15 08:14:33 +00:00
11 lines
180 B
Protocol Buffer
11 lines
180 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pb;
|
|
|
|
message WakuMessage {
|
|
bytes payload = 1;
|
|
string contentTopic = 2;
|
|
uint32 version = 3;
|
|
double timestamp = 4;
|
|
bytes proof = 21;
|
|
} |