Files
sol-trade-sdk/jito_protos/protos/trace_shred.proto
T
2025-04-02 13:39:59 +08:00

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;
}