mirror of
https://github.com/codex-storage/nim-codex.git
synced 2025-01-10 21:15:59 +00:00
6ce7e23767
* initial implementation of storage proofs upload * make sure proof verifies with after deserializing * add por store * rename por store to stp store * rename porstore to stpstore * add support for host discovery to discovery mock * add tags upload network tests
16 lines
214 B
Protocol Buffer
16 lines
214 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message StorageProofsMessage {
|
|
message Tag {
|
|
int64 idx = 1;
|
|
bytes tag = 2;
|
|
}
|
|
|
|
message TagsMessage {
|
|
bytes cid = 1;
|
|
repeated Tag tags = 2;
|
|
}
|
|
|
|
TagsMessage tagsMsg = 1;
|
|
}
|