solana-stream-sdk 1.2.2

Rust SDK for Solana streaming data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
syntax = "proto3";

import "google/protobuf/timestamp.proto";

package shared;

message Header {
  google.protobuf.Timestamp ts = 1;
}

message Heartbeat {
  uint64 count = 1;
}

message Socket {
  string ip = 1;
  int64 port = 2;
}