js-waku/src/proto/message.proto
Franck Royer 82aba32f9e
Migrate from ts-proto to protons
The latter does not bring Buffer/Long and is ESM compatible.
2022-06-20 14:32:20 +10:00

10 lines
222 B
Protocol Buffer

syntax = "proto3";
message WakuMessage {
optional bytes payload = 1;
optional string content_topic = 2;
optional uint32 version = 3;
optional double timestamp_deprecated = 4;
optional sint64 timestamp = 10;
}