Files
substreams-explorers/beacon-explorer/proto/block_meta.proto
2024-03-27 21:24:55 -04:00

23 lines
346 B
Protocol Buffer

syntax = "proto3";
package beacon.block_meta.v1;
import "google/protobuf/timestamp.proto";
message BlockMeta {
uint64 slot = 1;
string root = 2;
string state_root = 3;
Spec spec = 4;
google.protobuf.Timestamp timestamp = 5;
}
enum Spec {
UNSPECIFIED = 0;
PHASE0 = 1;
ALTAIR = 2;
BELLATRIX = 3;
CAPELLA = 4;
DENEB = 5;
}