Create waku_metadata.proto

This commit is contained in:
Alvaro Revuelta 2023-10-03 17:16:42 +02:00 committed by GitHub
parent 8943c3f86d
commit e0ab1ee9bc
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;
}