Files
solana-streamer/jito_protos/protos/block.proto
T
2025-04-02 13:39:59 +08:00

16 lines
373 B
Protocol Buffer
Executable File

syntax = "proto3";
package block;
import "shared.proto";
// Condensed block helpful for getting data around efficiently internal to our system.
message CondensedBlock {
shared.Header header = 1;
string previous_blockhash = 2;
string blockhash = 3;
uint64 parent_slot = 4;
repeated bytes versioned_transactions = 5;
uint64 slot = 6;
string commitment = 7;
}