github.com/evdatsion/aphelion-dpos-bft@v0.32.1/benchmarks/proto/test.proto (about)

     1  message ResultStatus {
     2    optional NodeInfo nodeInfo = 1;
     3    required PubKey pubKey = 2;
     4    required bytes latestBlockHash = 3;
     5    required int64 latestBlockHeight = 4;
     6    required int64 latestBlocktime = 5;
     7  }
     8  
     9  message NodeInfo {
    10    required ID id = 1;
    11    required string moniker = 2;
    12    required string network = 3;
    13    required string remoteAddr = 4;
    14    required string listenAddr = 5;
    15    required string version = 6;
    16    repeated string other = 7;
    17  }
    18  
    19  message ID {
    20    required string id = 1;
    21  }
    22  
    23  message PubKey {
    24    optional PubKeyEd25519 ed25519 = 1;
    25  }
    26  
    27  message PubKeyEd25519 {
    28    required bytes bytes = 1;
    29  }