mirror of
https://github.com/0xfnzero/solana-streamer.git
synced 2026-08-18 19:38:04 +00:00
16 lines
369 B
Protocol Buffer
Executable File
16 lines
369 B
Protocol Buffer
Executable File
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;
|
|
}
|
|
|