hacker-challenge/legacy_challenge/proto/challenge.proto
ghe0 d7b0c3fd2c
start rewrite based on ticket #2
keys go migrated to solana_sdk in a 01b889d
2024-09-10 03:11:46 +03:00

16 lines
299 B
Protocol Buffer

syntax = "proto3";
package challenge;
import "google/protobuf/timestamp.proto";
message NodeUpdate {
string ip = 1;
string keypair = 2;
google.protobuf.Timestamp updated_at = 3;
bool public = 4;
}
service Update {
rpc GetUpdates (stream NodeUpdate) returns (stream NodeUpdate);
}