mirror of
https://github.com/waku-org/js-waku.git
synced 2025-01-14 06:24:27 +00:00
5a967ecbcc
`Message` is a very generic name and JS does not offer strong namespace boundaries. Using `WakuMessage` avoid name clashing with classes of the consumer app.
10 lines
165 B
Protocol Buffer
10 lines
165 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package waku.v2;
|
|
|
|
message WakuMessageProto {
|
|
optional bytes payload = 1;
|
|
optional uint32 content_topic = 2;
|
|
optional uint32 version = 3;
|
|
}
|