mirror of
https://github.com/0xfnzero/solana-streamer.git
synced 2026-08-25 23:08:05 +00:00
16 lines
369 B
Protocol Buffer
16 lines
369 B
Protocol Buffer
syntax = "proto3";
|
|||
|
|
|
||
|
|
package trace_shred;
|
||
|
|
|
||
|
|
import "google/protobuf/timestamp.proto";
|
||
|
|
|
||
|
|
message TraceShred {
|
||
|
|
// source region, one of: https://jito-labs.gitbook.io/mev/systems/connecting/mainnet
|
||
|
|
string region = 1;
|
||
|
|
// timestamp of creation
|
||
|
|
google.protobuf.Timestamp created_at = 2;
|
||
|
|
// monotonically increases, resets upon service restart
|
||
|
|
uint32 seq_num = 3;
|
||
|
|
}
|
||
|
|
|