transfer v1

This commit is contained in:
SionoiS 2025-01-20 10:53:30 -05:00
parent 0751e39289
commit df0cfb1567
No known key found for this signature in database
GPG Key ID: C9458A8CB1852951

View File

@ -0,0 +1,11 @@
syntax = "proto3";
package waku.sync.transfer.v1;
import "waku/message/v1/message.proto";
message WakuMessageAndTopic {
// Full message content and associated pubsub_topic as value
optional waku.message.v1.WakuMessage message = 1;
optional string pubsub_topic = 2;
}