syntax = "proto3";

message InfoOptions {
    optional string peer_id = 1;
}

message InfoResponse {
    string peer_id = 1;
    repeated string multiaddrs = 2;
    string agent_version = 3;
    string protocol_version = 4;
    repeated string protocols = 5;
}
