mirror of
https://github.com/waku-org/js-waku.git
synced 2025-01-12 21:44:33 +00:00
10 lines
211 B
Protocol Buffer
10 lines
211 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package waku.v2;
|
|
|
|
message WakuMessage {
|
|
optional bytes payload = 1;
|
|
optional uint32 content_topic = 2; // Follow nim-waku implementation and not the spec
|
|
optional uint32 version = 3;
|
|
}
|