Create waku_metadata.proto (#18)

This commit is contained in:
Alvaro Revuelta 2023-10-03 18:10:49 +02:00 committed by GitHub
parent 8943c3f86d
commit b7c681bc79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,14 @@
syntax = "proto3";
// rfc: https://rfc.vac.dev/spec/66/
package waku.metadata.v1;
message WakuMetadataRequest {
optional uint32 cluster_id = 1;
repeated uint32 shards = 2;
}
message WakuMetadataResponse {
optional uint32 cluster_id = 1;
repeated uint32 shards = 2;
}