mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-17 01:00:54 +00:00
58f739765e
* refactor: use int64 timestamps * fix: changed PB Timestamp index to 10
11 lines
181 B
Protocol Buffer
11 lines
181 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pb;
|
|
|
|
message WakuMessage {
|
|
bytes payload = 1;
|
|
string contentTopic = 2;
|
|
uint32 version = 3;
|
|
sint64 timestamp = 10;
|
|
bytes proof = 21;
|
|
} |