mirror of https://github.com/waku-org/js-waku.git
10 lines
161 B
Protocol Buffer
10 lines
161 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package waku.v2;
|
||
|
|
||
|
message WakuMessage {
|
||
|
optional bytes payload = 1;
|
||
|
optional fixed32 content_topic = 2;
|
||
|
optional uint32 version = 3;
|
||
|
}
|