mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-04 06:43:12 +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;
|
|
}
|